Lines Matching refs:Low
36 int64_t Low, High; member
49 return I != Ranges.end() && I->Low <= R.Low; in IsInRanges()
63 ConstantInt* Low; member
68 : Low(low), High(high), BB(bb) {} in CaseRange()
92 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); in operator ()()
145 O << *B->Low << " -" << *B->High; in operator <<()
212 if (Begin->Low == LowerBound && Begin->High == UpperBound) { in switchConvert()
231 << Pivot.Low->getValue() in switchConvert()
238 ConstantInt *NewLowerBound = Pivot.Low; in switchConvert()
275 Val, Pivot.Low, "Pivot"); in switchConvert()
305 if (Leaf.Low == Leaf.High) { in newLeafBlock()
308 Leaf.Low, "SwitchLeaf"); in newLeafBlock()
311 if (Leaf.Low->isMinValue(true /*isSigned*/)) { in newLeafBlock()
315 } else if (Leaf.Low->isZero()) { in newLeafBlock()
321 Constant* NegLo = ConstantExpr::getNeg(Leaf.Low); in newLeafBlock()
341 Leaf.Low->getSExtValue(); in newLeafBlock()
369 int64_t nextValue = J->Low->getSExtValue(); in Clusterify()
388 if (I->Low != I->High) in Clusterify()
430 LowerBound = Cases.front().Low; in processSwitchInst()
440 int64_t Low = I.Low->getSExtValue(); in processSwitchInst() local
444 if (LastRange.Low == Low) { in processSwitchInst()
449 assert(Low > LastRange.Low); in processSwitchInst()
450 LastRange.High = Low - 1; in processSwitchInst()
458 int64_t N = High - Low + 1; in processSwitchInst()
469 assert(I->Low <= I->High); in processSwitchInst()
472 assert(Next->Low > I->High); in processSwitchInst()