Lines Matching refs:Low
36 int64_t Low, High; member
49 return I != Ranges.end() && I->Low <= R.Low; in IsInRanges()
70 ConstantInt* Low; member
75 : Low(low), High(high), BB(bb) {} in CaseRange()
99 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low); in operator ()()
143 O << *B->Low << " -" << *B->High; in operator <<()
209 if (Begin->Low == LowerBound && Begin->High == UpperBound) { in switchConvert()
228 << Pivot.Low->getValue() in switchConvert()
235 ConstantInt *NewLowerBound = Pivot.Low; in switchConvert()
272 Val, Pivot.Low, "Pivot"); in switchConvert()
306 if (Leaf.Low == Leaf.High) { in newLeafBlock()
309 Leaf.Low, "SwitchLeaf"); in newLeafBlock()
312 if (Leaf.Low->isMinValue(true /*isSigned*/)) { in newLeafBlock()
316 } else if (Leaf.Low->isZero()) { in newLeafBlock()
322 Constant* NegLo = ConstantExpr::getNeg(Leaf.Low); in newLeafBlock()
342 Leaf.Low->getSExtValue(); in newLeafBlock()
370 int64_t nextValue = J->Low->getSExtValue(); in Clusterify()
386 if (I->Low != I->High) in Clusterify()
428 LowerBound = Cases.front().Low; in processSwitchInst()
438 int64_t Low = I.Low->getSExtValue(); in processSwitchInst() local
442 if (LastRange.Low == Low) { in processSwitchInst()
447 assert(Low > LastRange.Low); in processSwitchInst()
448 LastRange.High = Low - 1; in processSwitchInst()
456 int64_t N = High - Low + 1; in processSwitchInst()
467 assert(I->Low <= I->High); in processSwitchInst()
470 assert(Next->Low > I->High); in processSwitchInst()