Lines Matching defs:NewC
2056 Value *NewC =
2058 return new ICmpInst(Pred, OrOp0, NewC);
2077 Constant *NewC = ConstantInt::get(Or->getType(), C ^ (*MaskC));
2078 return new ICmpInst(Pred, And, NewC);
2089 Constant *NewC = ConstantInt::get(X->getType(), TrueIfSigned ? 1 : 0);
2090 return new ICmpInst(NewPred, X, NewC);
2175 Constant *NewC = ConstantInt::get(MulTy, C.sdiv(*MulC));
2176 return new ICmpInst(Pred, X, NewC);
2187 Constant *NewC = ConstantInt::get(MulTy, C.udiv(*MulC));
2188 return new ICmpInst(Pred, X, NewC);
2197 Constant *NewC = nullptr;
2206 NewC = ConstantInt::get(
2211 NewC = ConstantInt::get(
2216 NewC = ConstantInt::get(
2221 NewC = ConstantInt::get(
2226 return NewC ? new ICmpInst(Pred, X, NewC) : nullptr;
2442 Constant *NewC =
2447 NewC);
2491 Constant *NewC = ConstantInt::get(Shr->getType(), CmpLZ - ShiftLZ);
2493 return new ICmpInst(NewPred, Shr->getOperand(1), NewC);
3069 APInt NewC =
3076 return new ICmpInst(Pred, X, ConstantInt::get(Ty, NewC));
3404 Value *NewC = ConstantInt::get(EltTy, C->trunc(EltTy->getBitWidth()));
3405 return new ICmpInst(Pred, Extract, NewC);
6848 Constant *NewC = ConstantExpr::getAdd(C, OneOrNegOne);
6850 return std::make_pair(NewPred, NewC);
8313 Constant *NewC = ConstantFP::get(X->getType(), TruncC);
8314 return new FCmpInst(Pred, X, NewC, "", &I);