Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DScaledNumber.h844 int32_t ScaleShift = std::min(Shift, ScaledNumbers::MaxScale - Scale); in shiftLeft() local
845 Scale += ScaleShift; in shiftLeft()
846 if (ScaleShift == Shift) in shiftLeft()
854 Shift -= ScaleShift; in shiftLeft()
874 int32_t ScaleShift = std::min(Shift, Scale - ScaledNumbers::MinScale); in shiftRight() local
875 Scale -= ScaleShift; in shiftRight()
876 if (ScaleShift == Shift) in shiftRight()
880 Shift -= ScaleShift; in shiftRight()
/freebsd-12.1/contrib/llvm/lib/LTO/
H A DSummaryBasedOptimizations.cpp52 return Scaled64(Edge.second.RelBlockFreq, -CalleeInfo::ScaleShift); in computeSyntheticCounts()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h70 static constexpr int32_t ScaleShift = 8; member
93 Scaled64 Temp(BlockFreq, ScaleShift); in updateRelBlockFreq()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp35240 unsigned ScaleShift = countTrailingZeros(MulAmt); in combineMulSpecial() local
35241 if (ScaleShift >= 1 && ScaleShift < 4) { in combineMulSpecial()
35246 DAG.getConstant(ScaleShift, DL, MVT::i8)); in combineMulSpecial()