Lines Matching refs:V1
1410 // S = (S1 & S2) | (V1 & S2) | (S1 & V2)
1413 Value *V1 = I.getOperand(0);
1415 if (V1->getType() != S1->getType()) {
1416 V1 = IRB.CreateIntCast(V1, S1->getType(), false);
1420 Value *V1S2 = IRB.CreateAnd(V1, S2);
1432 // S = (S1 & S2) | (~V1 & S2) | (S1 & ~V2)
1435 Value *V1 = IRB.CreateNot(I.getOperand(0));
1437 if (V1->getType() != S1->getType()) {
1438 V1 = IRB.CreateIntCast(V1, S1->getType(), false);
1442 Value *V1S2 = IRB.CreateAnd(V1, S2);
1559 Value *V1 = IRB.CreateBitCast(V, Type::getIntNTy(*MS.C, srcSizeInBits));
1561 IRB.CreateIntCast(V1, Type::getIntNTy(*MS.C, dstSizeInBits), Signed);
2149 Value *V1 = I.getOperand(0);
2152 {IRB.CreateBitCast(S1, V1->getType()), V2});