Lines Matching refs:Create
208 Value *Ret = CallInst::Create(If, Term->getCondition(), "", Term); in openIf()
209 Term->setCondition(ExtractValueInst::Create(Ret, 0, "", Term)); in openIf()
210 push(Term->getSuccessor(1), ExtractValueInst::Create(Ret, 1, "", Term)); in openIf()
218 Value *Ret = CallInst::Create(Else, popSaved(), "", Term); in insertElse()
219 Term->setCondition(ExtractValueInst::Create(Ret, 0, "", Term)); in insertElse()
220 push(Term->getSuccessor(1), ExtractValueInst::Create(Ret, 1, "", Term)); in insertElse()
236 return CallInst::Create(IfBreak, Args, "", Insert); in handleLoopCondition()
245 return CallInst::Create(IfBreak, Args, "", Insert); in handleLoopCondition()
262 PHINode *Broken = PHINode::Create(IntMask, 0, "phi.broken", &Target->front()); in handleLoop()
280 Term->setCondition(CallInst::Create(Loop, Arg, "", Term)); in handleLoop()
317 CallInst::Create(EndCf, Exec, "", FirstInsertionPt); in closeControlFlow()