Home | History | Annotate | Download | only in Instrumentation

Lines Matching refs:V1

977     //  S = (S1 & S2) | (V1 & S2) | (S1 & V2)
980 Value *V1 = I.getOperand(0);
982 if (V1->getType() != S1->getType()) {
983 V1 = IRB.CreateIntCast(V1, S1->getType(), false);
987 Value *V1S2 = IRB.CreateAnd(V1, S2);
999 // S = (S1 & S2) | (~V1 & S2) | (S1 & ~V2)
1002 Value *V1 = IRB.CreateNot(I.getOperand(0));
1004 if (V1->getType() != S1->getType()) {
1005 V1 = IRB.CreateIntCast(V1, S1->getType(), false);
1009 Value *V1S2 = IRB.CreateAnd(V1, S2);
1121 Value *V1 = IRB.CreateBitCast(V, Type::getIntNTy(*MS.C, srcSizeInBits));
1123 IRB.CreateIntCast(V1, Type::getIntNTy(*MS.C, dstSizeInBits), false);