• Home
  • Raw
  • Download

Lines Matching refs:High

36     int64_t Low, High;  member
48 [](const IntRange &A, const IntRange &B) { return A.High < B.High; }); in IsInRanges()
70 ConstantInt* High; member
74 : Low(low), High(high), BB(bb) {} in CaseRange()
99 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High); in operator ()()
151 O << *B->Low << " -" << *B->High; in operator <<()
218 if (Begin->Low == LowerBound && Begin->High == UpperBound) { in switchConvert()
238 << " -" << Pivot.High->getValue() << "\n"); in switchConvert()
253 int64_t GapLow = LHS.back().High->getSExtValue() + 1; in switchConvert()
257 NewUpperBound = LHS.back().High; in switchConvert()
311 if (Leaf.Low == Leaf.High) { in newLeafBlock()
319 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High, in newLeafBlock()
323 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High, in newLeafBlock()
331 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High); in newLeafBlock()
346 uint64_t Range = Leaf.High->getSExtValue() - in newLeafBlock()
376 int64_t currentValue = I->High->getSExtValue(); in Clusterify()
384 I->High = J->High; in Clusterify()
394 if (I->Low != I->High) in Clusterify()
437 UpperBound = Cases.back().High; in processSwitchInst()
447 int64_t High = I.High->getSExtValue(); in processSwitchInst() local
456 LastRange.High = Low - 1; in processSwitchInst()
458 if (High != INT64_MAX) { in processSwitchInst()
459 IntRange R = { High + 1, INT64_MAX }; in processSwitchInst()
464 int64_t N = High - Low + 1; in processSwitchInst()
475 assert(I->Low <= I->High); in processSwitchInst()
478 assert(Next->Low > I->High); in processSwitchInst()