Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:Op2

3372   BasicBlock *Op1, *Op2;
3386 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
3389 Inst = BranchInst::Create(Op1, Op2, Op0);
3707 Value *Op0, *Op1, *Op2;
3712 ParseTypeAndValue(Op2, PFS))
3715 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3718 Inst = SelectInst::Create(Op0, Op1, Op2);
3761 Value *Op0, *Op1, *Op2;
3766 ParseTypeAndValue(Op2, PFS))
3769 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
3772 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3780 Value *Op0, *Op1, *Op2;
3785 ParseTypeAndValue(Op2, PFS))
3788 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3791 Inst = new ShuffleVectorInst(Op0, Op1, Op2);