reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/GCRootLowering.cpp
  199       if (!CI)
  202       Function *F = CI->getCalledFunction();
  207         Value *St = new StoreInst(CI->getArgOperand(0),
  208                                   CI->getArgOperand(2), CI);
  208                                   CI->getArgOperand(2), CI);
  209         CI->replaceAllUsesWith(St);
  210         CI->eraseFromParent();
  216         Value *Ld = new LoadInst(CI->getType(), CI->getArgOperand(1), "", CI);
  216         Value *Ld = new LoadInst(CI->getType(), CI->getArgOperand(1), "", CI);
  216         Value *Ld = new LoadInst(CI->getType(), CI->getArgOperand(1), "", CI);
  217         Ld->takeName(CI);
  218         CI->replaceAllUsesWith(Ld);
  219         CI->eraseFromParent();
  227             cast<AllocaInst>(CI->getArgOperand(0)->stripPointerCasts()));