From 29381fb7cdba040facf562f4ea028400cd626d2b Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Fri, 27 Jul 2007 18:34:27 +0000 Subject: Use SmallPtrSet. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40560 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/InlineSimple.cpp | 5 +++-- lib/Transforms/Utils/BasicInliner.cpp | 3 +-- lib/Transforms/Utils/InlineCost.cpp | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/Transforms/IPO/InlineSimple.cpp b/lib/Transforms/IPO/InlineSimple.cpp index eea28a745c..38bf0610b3 100644 --- a/lib/Transforms/IPO/InlineSimple.cpp +++ b/lib/Transforms/IPO/InlineSimple.cpp @@ -23,14 +23,15 @@ #include "llvm/Transforms/IPO.h" #include "llvm/Transforms/IPO/InlinerPass.h" #include "llvm/Transforms/Utils/InlineCost.h" -#include +#include "llvm/ADT/SmallPtrSet.h" using namespace llvm; namespace { class VISIBILITY_HIDDEN SimpleInliner : public Inliner { - std::set NeverInline; // Functions that are never inlined + // Functions that are never inlined + SmallPtrSet NeverInline; InlineCostAnalyzer CA; public: SimpleInliner() : Inliner(&ID) {} diff --git a/lib/Transforms/Utils/BasicInliner.cpp b/lib/Transforms/Utils/BasicInliner.cpp index 871b1a504a..9325d5f2e0 100644 --- a/lib/Transforms/Utils/BasicInliner.cpp +++ b/lib/Transforms/Utils/BasicInliner.cpp @@ -23,7 +23,6 @@ #include "llvm/Support/Debug.h" #include "llvm/ADT/SmallPtrSet.h" #include -#include using namespace llvm; @@ -65,7 +64,7 @@ namespace llvm { private: TargetData *TD; std::vector Functions; - std::set NeverInline; + SmallPtrSet NeverInline; SmallPtrSet DeadFunctions; InlineCostAnalyzer CA; }; diff --git a/lib/Transforms/Utils/InlineCost.cpp b/lib/Transforms/Utils/InlineCost.cpp index 8b34427ac6..c568355a5f 100644 --- a/lib/Transforms/Utils/InlineCost.cpp +++ b/lib/Transforms/Utils/InlineCost.cpp @@ -141,7 +141,7 @@ void InlineCostAnalyzer::FunctionInfo::analyzeFunction(Function *F) { // getInlineCost - The heuristic used to determine if we should inline the // function call or not. // -int InlineCostAnalyzer::getInlineCost(CallSite CS, std::set &NeverInline) { +int InlineCostAnalyzer::getInlineCost(CallSite CS, SmallPtrSet &NeverInline) { Instruction *TheCall = CS.getInstruction(); Function *Callee = CS.getCalledFunction(); const Function *Caller = TheCall->getParent()->getParent(); -- cgit v1.2.3-70-g09d2