Home | History | Annotate | Download | only in Utils

Lines Matching refs:ConstantInt

69                               ConstantInt *LowerBound, ConstantInt *UpperBound,
83 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
84 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
140 ConstantInt *LowerBound,
141 ConstantInt *UpperBound, Value *Val,
165 << cast<ConstantInt>(Pivot.Low)->getValue()
166 << " -" << cast<ConstantInt>(Pivot.High)->getValue() << "\n");
172 ConstantInt *NewLowerBound = cast<ConstantInt>(Pivot.Low);
173 ConstantInt *NewUpperBound;
181 NewUpperBound = ConstantInt::get(NewLowerBound->getContext(),
185 NewUpperBound = cast<ConstantInt>(LastLHS->High);
190 dbgs() << cast<ConstantInt>(LowerBound)->getSExtValue();
198 dbgs() << cast<ConstantInt>(UpperBound)->getSExtValue() << "\n";
245 if (cast<ConstantInt>(Leaf.Low)->isMinValue(true /*isSigned*/)) {
249 } else if (cast<ConstantInt>(Leaf.Low)->isZero()) {
274 uint64_t Range = cast<ConstantInt>(Leaf.High)->getSExtValue() -
275 cast<ConstantInt>(Leaf.Low)->getSExtValue();
303 int64_t nextValue = cast<ConstantInt>(J->Low)->getSExtValue();
304 int64_t currentValue = cast<ConstantInt>(I->High)->getSExtValue();
375 ConstantInt *UpperBound = nullptr;
376 ConstantInt *LowerBound = nullptr;
384 UpperBound = cast<ConstantInt>(LastCase->High);
385 LowerBound = cast<ConstantInt>(Cases.begin()->Low);