• Home
  • Raw
  • Download

Lines Matching refs:Op0

3027   Value *Op0;  in ParseBr()  local
3029 if (ParseTypeAndValue(Op0, Loc, PFS)) return true; in ParseBr()
3031 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) { in ParseBr()
3036 if (Op0->getType() != Type::getInt1Ty(Context)) in ParseBr()
3045 Inst = BranchInst::Create(Op1, Op2, Op0); in ParseBr()
3343 Value *Op0, *Op1, *Op2; in ParseSelect() local
3344 if (ParseTypeAndValue(Op0, Loc, PFS) || in ParseSelect()
3351 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2)) in ParseSelect()
3354 Inst = SelectInst::Create(Op0, Op1, Op2); in ParseSelect()
3380 Value *Op0, *Op1; in ParseExtractElement() local
3381 if (ParseTypeAndValue(Op0, Loc, PFS) || in ParseExtractElement()
3386 if (!ExtractElementInst::isValidOperands(Op0, Op1)) in ParseExtractElement()
3389 Inst = ExtractElementInst::Create(Op0, Op1); in ParseExtractElement()
3397 Value *Op0, *Op1, *Op2; in ParseInsertElement() local
3398 if (ParseTypeAndValue(Op0, Loc, PFS) || in ParseInsertElement()
3405 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2)) in ParseInsertElement()
3408 Inst = InsertElementInst::Create(Op0, Op1, Op2); in ParseInsertElement()
3416 Value *Op0, *Op1, *Op2; in ParseShuffleVector() local
3417 if (ParseTypeAndValue(Op0, Loc, PFS) || in ParseShuffleVector()
3424 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2)) in ParseShuffleVector()
3427 Inst = new ShuffleVectorInst(Op0, Op1, Op2); in ParseShuffleVector()
3435 Value *Op0, *Op1; in ParsePHI() local
3439 ParseValue(Ty, Op0, PFS) || in ParsePHI()
3448 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1))); in ParsePHI()
3459 ParseValue(Ty, Op0, PFS) || in ParsePHI()