Lines Matching refs:V2
1410 // S = (S1 & S2) | (V1 & S2) | (S1 & V2)
1414 Value *V2 = I.getOperand(1);
1417 V2 = IRB.CreateIntCast(V2, S2->getType(), false);
1421 Value *S1V2 = IRB.CreateAnd(S1, V2);
1432 // S = (S1 & S2) | (~V1 & S2) | (S1 & ~V2)
1436 Value *V2 = IRB.CreateNot(I.getOperand(1));
1439 V2 = IRB.CreateIntCast(V2, S2->getType(), false);
1443 Value *S1V2 = IRB.CreateAnd(S1, V2);
1560 Value *V2 =
1562 return IRB.CreateBitCast(V2, dstTy);
1607 APInt V2 = APInt(V.getBitWidth(), 1) << V.countTrailingZeros();
1608 Elements.push_back(ConstantInt::get(EltTy, V2));
1617 APInt V2 = APInt(V.getBitWidth(), 1) << V.countTrailingZeros();
1618 ShadowMul = ConstantInt::get(Ty, V2);
1842 Value *V2 = I.getOperand(1);
1843 Value *Shift = IRB.CreateBinOp(I.getOpcode(), S1, V2);
2150 Value *V2 = I.getOperand(1);
2152 {IRB.CreateBitCast(S1, V1->getType()), V2});