Home | History | Annotate | Download | only in Utils

Lines Matching defs:Low

50       Constant* Low;
54 CaseRange(Constant *low = 0, Constant *high = 0, BasicBlock *bb = 0) :
55 Low(low), High(high), BB(bb) { }
108 O << *B->Low << " -" << *B->High;
135 << cast<ConstantInt>(Pivot.Low)->getValue() << " -"
151 Val, Pivot.Low, "Pivot");
174 if (Leaf.Low == Leaf.High) {
177 Leaf.Low, "SwitchLeaf");
180 if (cast<ConstantInt>(Leaf.Low)->isMinValue(true /*isSigned*/)) {
184 } else if (cast<ConstantInt>(Leaf.Low)->isZero()) {
190 Constant* NegLo = ConstantExpr::getNeg(Leaf.Low);
210 cast<ConstantInt>(Leaf.Low)->getSExtValue();