Lines Matching defs:NewC
2031 Constant *NewC = ConstantFoldBinaryOpOperands(BO.getOpcode(), C0, C1, DL);
2032 if (!NewC)
2047 NewPhi->addIncoming(NewC, ConstBB);
2204 // Find constant NewC that has property:
2205 // shuffle(NewC, ShMask) = C
2208 // ShMask = <1,1,2,2> and C = <5,5,6,6> --> NewC = <undef,5,6,undef>
2256 Constant *NewC = ConstantVector::get(NewVecC);
2262 NewC = getSafeVectorConstantForBinop(Opcode, NewC, ConstOp1);
2264 // Op(shuffle(V1, Mask), C) -> shuffle(Op(V1, NewC), Mask)
2265 // Op(C, shuffle(V1, Mask)) -> shuffle(Op(NewC, V1), Mask)
2266 Value *NewLHS = ConstOp1 ? V1 : NewC;
2267 Value *NewRHS = ConstOp1 ? NewC : V1;
3050 std::optional<APInt> NewC;
3054 NewC = *C - countr_zero(TyAllocSize);
3060 NewC = Quot;
3067 NewC = Quot;
3070 if (NewC.has_value()) {
3073 ConstantInt::get(V->getType(), *NewC));