HomeSort by relevance Sort by last modified time
    Searched refs:FunctionsToRemove (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 576 SmallVector<CallGraphNode*, 16> FunctionsToRemove;
590 FunctionsToRemove.push_back(CGN);
594 // from the program. Insert the dead ones in the FunctionsToRemove set.
657 if (FunctionsToRemove.empty())
667 array_pod_sort(FunctionsToRemove.begin(), FunctionsToRemove.end());
668 FunctionsToRemove.erase(std::unique(FunctionsToRemove.begin(),
669 FunctionsToRemove.end()),
670 FunctionsToRemove.end())
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
Inliner.cpp 717 SmallVector<CallGraphNode *, 16> FunctionsToRemove;
730 FunctionsToRemove.push_back(CGN);
734 // from the program. Insert the dead ones in the FunctionsToRemove set.
775 if (FunctionsToRemove.empty())
785 array_pod_sort(FunctionsToRemove.begin(), FunctionsToRemove.end());
786 FunctionsToRemove.erase(
787 std::unique(FunctionsToRemove.begin(), FunctionsToRemove.end()),
788 FunctionsToRemove.end())
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
Inliner.cpp 519 SmallPtrSet<CallGraphNode*, 16> FunctionsToRemove;
522 // from the program. Insert the dead ones in the FunctionsToRemove set.
551 FunctionsToRemove.insert(CGN);
562 for (SmallPtrSet<CallGraphNode*, 16>::iterator I = FunctionsToRemove.begin(),
563 E = FunctionsToRemove.end(); I != E; ++I) {

Completed in 308 milliseconds