Home | History | Annotate | Download | only in IR

Lines Matching refs:V2

1947 Constant *ConstantExpr::getSelect(Constant *C, Constant *V1, Constant *V2,
1949 assert(!SelectInst::areInvalidOperands(C, V1, V2)&&"Invalid select operands");
1951 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1957 Constant *ArgVec[] = { C, V1, V2 };
2103 Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
2105 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
2108 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2119 Constant *ArgVec[] = { V1, V2, Mask };