Lines Matching defs:V2
1224 // S = (S1 & S2) | (V1 & S2) | (S1 & V2)
1228 Value *V2 = I.getOperand(1);
1231 V2 = IRB.CreateIntCast(V2, S2->getType(), false);
1235 Value *S1V2 = IRB.CreateAnd(S1, V2);
1246 // S = (S1 & S2) | (~V1 & S2) | (S1 & ~V2)
1250 Value *V2 = IRB.CreateNot(I.getOperand(1));
1253 V2 = IRB.CreateIntCast(V2, S2->getType(), false);
1257 Value *S1V2 = IRB.CreateAnd(S1, V2);
1374 Value *V2 =
1376 return IRB.CreateBitCast(V2, dstTy);
1421 APInt V2 = APInt(V.getBitWidth(), 1) << V.countTrailingZeros();
1422 Elements.push_back(ConstantInt::get(EltTy, V2));
1428 APInt V2 = APInt(V.getBitWidth(), 1) << V.countTrailingZeros();
1429 ShadowMul = ConstantInt::get(Elt->getType(), V2);
1645 Value *V2 = I.getOperand(1);
1646 Value *Shift = IRB.CreateBinOp(I.getOpcode(), S1, V2);
1975 Value *V2 = I.getOperand(1);
1977 IRB.CreateBitCast(S1, V1->getType()), V2);