Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:Op2

3058   BasicBlock *Op1, *Op2;
3072 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
3075 Inst = BranchInst::Create(Op1, Op2, Op0);
3383 Value *Op0, *Op1, *Op2;
3388 ParseTypeAndValue(Op2, PFS))
3391 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3394 Inst = SelectInst::Create(Op0, Op1, Op2);
3437 Value *Op0, *Op1, *Op2;
3442 ParseTypeAndValue(Op2, PFS))
3445 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
3448 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3456 Value *Op0, *Op1, *Op2;
3461 ParseTypeAndValue(Op2, PFS))
3464 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3467 Inst = new ShuffleVectorInst(Op0, Op1, Op2);