Lines Matching defs:NewC
2106 Value *NewC =
2108 return new ICmpInst(Pred, OrOp0, NewC);
2127 Constant *NewC = ConstantInt::get(Or->getType(), C ^ (*MaskC));
2128 return new ICmpInst(Pred, And, NewC);
2139 Constant *NewC = ConstantInt::get(X->getType(), TrueIfSigned ? 1 : 0);
2140 return new ICmpInst(NewPred, X, NewC);
2225 Constant *NewC = ConstantInt::get(MulTy, C.sdiv(*MulC));
2226 return new ICmpInst(Pred, X, NewC);
2237 Constant *NewC = ConstantInt::get(MulTy, C.udiv(*MulC));
2238 return new ICmpInst(Pred, X, NewC);
2247 Constant *NewC = nullptr;
2256 NewC = ConstantInt::get(
2261 NewC = ConstantInt::get(
2266 NewC = ConstantInt::get(
2271 NewC = ConstantInt::get(
2276 return NewC ? new ICmpInst(Pred, X, NewC) : nullptr;
2497 Constant *NewC =
2502 NewC);
2546 Constant *NewC = ConstantInt::get(Shr->getType(), CmpLZ - ShiftLZ);
2548 return new ICmpInst(NewPred, Shr->getOperand(1), NewC);
3155 APInt NewC =
3162 return new ICmpInst(Pred, X, ConstantInt::get(Ty, NewC));
3518 Value *NewC = ConstantInt::get(EltTy, C->trunc(EltTy->getBitWidth()));
3519 return new ICmpInst(Pred, Extract, NewC);
5120 Value *NewC = Builder.CreateSub(I.getOperand(1), BO0->getOperand(1));
5123 BO0->getOperand(0), NewC);
8559 Constant *NewC = ConstantFP::get(X->getType(), TruncC);
8560 return new FCmpInst(Pred, X, NewC, "", &I);