Lines Matching refs:Op2
3051 BasicBlock *Op1, *Op2; in ParseBr() local
3065 ParseTypeAndBasicBlock(Op2, Loc2, PFS)) in ParseBr()
3068 Inst = BranchInst::Create(Op1, Op2, Op0); in ParseBr()
3376 Value *Op0, *Op1, *Op2; in ParseSelect() local
3381 ParseTypeAndValue(Op2, PFS)) in ParseSelect()
3384 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2)) in ParseSelect()
3387 Inst = SelectInst::Create(Op0, Op1, Op2); in ParseSelect()
3430 Value *Op0, *Op1, *Op2; in ParseInsertElement() local
3435 ParseTypeAndValue(Op2, PFS)) in ParseInsertElement()
3438 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2)) in ParseInsertElement()
3441 Inst = InsertElementInst::Create(Op0, Op1, Op2); in ParseInsertElement()
3449 Value *Op0, *Op1, *Op2; in ParseShuffleVector() local
3454 ParseTypeAndValue(Op2, PFS)) in ParseShuffleVector()
3457 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2)) in ParseShuffleVector()
3460 Inst = new ShuffleVectorInst(Op0, Op1, Op2); in ParseShuffleVector()