Lines Matching defs:NewC
1967 Constant *NewC = ConstantFoldBinaryOpOperands(BO.getOpcode(), C0, C1, DL);
1968 if (!NewC)
1983 NewPhi->addIncoming(NewC, ConstBB);
2140 // Find constant NewC that has property:
2141 // shuffle(NewC, ShMask) = C
2144 // ShMask = <1,1,2,2> and C = <5,5,6,6> --> NewC = <undef,5,6,undef>
2192 Constant *NewC = ConstantVector::get(NewVecC);
2198 NewC = getSafeVectorConstantForBinop(Opcode, NewC, ConstOp1);
2200 // Op(shuffle(V1, Mask), C) -> shuffle(Op(V1, NewC), Mask)
2201 // Op(C, shuffle(V1, Mask)) -> shuffle(Op(NewC, V1), Mask)
2202 Value *NewLHS = ConstOp1 ? V1 : NewC;
2203 Value *NewRHS = ConstOp1 ? NewC : V1;
2964 std::optional<APInt> NewC;
2968 NewC = *C - countr_zero(TyAllocSize);
2974 NewC = Quot;
2981 NewC = Quot;
2984 if (NewC.has_value()) {
2987 ConstantInt::get(V->getType(), *NewC));