Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/LTO/
H A DSummaryBasedOptimizations.cpp54 return Scaled64(Edge.second.RelBlockFreq, -CalleeInfo::ScaleShift); in computeSyntheticCounts()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DModuleSummaryIndex.h74 static constexpr int32_t ScaleShift = 8; member
97 Scaled64 Temp(BlockFreq, ScaleShift); in updateRelBlockFreq()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp47404 unsigned ScaleShift = countTrailingZeros(MulAmt); in combineMulSpecial() local
47405 if (ScaleShift >= 1 && ScaleShift < 4) { in combineMulSpecial()
47410 DAG.getConstant(ScaleShift, DL, MVT::i8)); in combineMulSpecial()