Home
last modified time | relevance | path

Searched refs:ScaleShift (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DScaledNumber.h843 int32_t ScaleShift = std::min(Shift, ScaledNumbers::MaxScale - Scale); in shiftLeft() local
844 Scale += ScaleShift; in shiftLeft()
845 if (ScaleShift == Shift) in shiftLeft()
853 Shift -= ScaleShift; in shiftLeft()
873 int32_t ScaleShift = std::min(Shift, Scale - ScaledNumbers::MinScale); in shiftRight() local
874 Scale -= ScaleShift; in shiftRight()
875 if (ScaleShift == Shift) in shiftRight()
879 Shift -= ScaleShift; in shiftRight()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/
H A DSummaryBasedOptimizations.cpp54 return Scaled64(Edge.second.RelBlockFreq, -CalleeInfo::ScaleShift); in computeSyntheticCounts()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h71 static constexpr int32_t ScaleShift = 8; member
94 Scaled64 Temp(BlockFreq, ScaleShift); in updateRelBlockFreq()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp42994 unsigned ScaleShift = countTrailingZeros(MulAmt); in combineMulSpecial() local
42995 if (ScaleShift >= 1 && ScaleShift < 4) { in combineMulSpecial()
43000 DAG.getConstant(ScaleShift, DL, MVT::i8)); in combineMulSpecial()