Lines Matching refs:CI
243 if (CallInst *CI = dyn_cast<CallInst>(I)) in CouldBecomeSafePoint() local
244 if (Function *F = CI->getCalledFunction()) in CouldBecomeSafePoint()
290 if (IntrinsicInst *CI = dyn_cast<IntrinsicInst>(II++)) { in PerformDefaultLowering() local
291 Function *F = CI->getCalledFunction(); in PerformDefaultLowering()
296 Value *St = new StoreInst(CI->getArgOperand(0), in PerformDefaultLowering()
297 CI->getArgOperand(2), CI); in PerformDefaultLowering()
298 CI->replaceAllUsesWith(St); in PerformDefaultLowering()
299 CI->eraseFromParent(); in PerformDefaultLowering()
305 Value *Ld = new LoadInst(CI->getArgOperand(1), "", CI); in PerformDefaultLowering()
306 Ld->takeName(CI); in PerformDefaultLowering()
307 CI->replaceAllUsesWith(Ld); in PerformDefaultLowering()
308 CI->eraseFromParent(); in PerformDefaultLowering()
316 CI->getArgOperand(0)->stripPointerCasts())); in PerformDefaultLowering()
360 void GCMachineCodeAnalysis::VisitCallPoint(MachineBasicBlock::iterator CI) { in VisitCallPoint() argument
363 MachineBasicBlock::iterator RAI = CI; in VisitCallPoint()
367 MCSymbol* Label = InsertLabel(*CI->getParent(), CI, CI->getDebugLoc()); in VisitCallPoint()
368 FI->addSafePoint(GC::PreCall, Label, CI->getDebugLoc()); in VisitCallPoint()
372 MCSymbol* Label = InsertLabel(*CI->getParent(), RAI, CI->getDebugLoc()); in VisitCallPoint()
373 FI->addSafePoint(GC::PostCall, Label, CI->getDebugLoc()); in VisitCallPoint()