Home | History | Annotate | Download | only in Utils

Lines Matching refs:High

51       Constant* High;
54 CaseRange(Constant *low = 0, Constant *high = 0, BasicBlock *bb = 0) :
55 Low(low), High(high), BB(bb) { }
108 O << *B->Low << " -" << *B->High;
136 << cast<ConstantInt>(Pivot.High)->getValue() << "\n");
174 if (Leaf.Low == Leaf.High) {
182 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High,
186 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High,
194 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High);
209 uint64_t Range = cast<ConstantInt>(Leaf.High)->getSExtValue() -