Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:Op2

5131   BasicBlock *Op1, *Op2;
5145 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
5148 Inst = BranchInst::Create(Op1, Op2, Op0);
5648 Value *Op0, *Op1, *Op2;
5653 ParseTypeAndValue(Op2, PFS))
5656 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5659 Inst = SelectInst::Create(Op0, Op1, Op2);
5702 Value *Op0, *Op1, *Op2;
5707 ParseTypeAndValue(Op2, PFS))
5710 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
5713 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5721 Value *Op0, *Op1, *Op2;
5726 ParseTypeAndValue(Op2, PFS))
5729 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
5732 Inst = new ShuffleVectorInst(Op0, Op1, Op2);