HomeSort by relevance Sort by last modified time
    Searched defs:OldF (Results 1 - 5 of 5) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
MergeFunctions.cpp 833 const FunctionNode &OldF = *Result.first;
840 if ((OldF.getFunc()->isInterposable() && !NewFunction->isInterposable()) ||
841 (OldF.getFunc()->isInterposable() == NewFunction->isInterposable() &&
842 OldF.getFunc()->getName() > NewFunction->getName())) {
844 Function *F = OldF.getFunc();
847 assert(OldF.getFunc() != F && "Must have swapped the functions.");
850 LLVM_DEBUG(dbgs() << " " << OldF.getFunc()->getName()
854 mergeTwoFunctions(OldF.getFunc(), DeleteF);
    [all...]
ArgumentPromotion.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
MergeFunctions.cpp 818 const ComparableFunction &OldF = *Result.first;
821 assert(!OldF.getFunc()->mayBeOverridden() ||
824 DEBUG(dbgs() << " " << OldF.getFunc()->getName() << " == "
829 mergeTwoFunctions(OldF.getFunc(), DeleteF);
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp     [all...]
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 219 auto *OldF = cast<llvm::Function>(Entry);
233 OldF->replaceAllUsesWith(Replacement);
236 OldF->getParent()->getFunctionList().insertAfter(OldF->getIterator(),
239 OldF->eraseFromParent();
    [all...]

Completed in 424 milliseconds