mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-26 12:20:42 +00:00
Use SmallPtrSet.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40560 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -23,7 +23,6 @@
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/ADT/SmallPtrSet.h"
|
||||
#include <vector>
|
||||
#include <set>
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
@@ -65,7 +64,7 @@ namespace llvm {
|
||||
private:
|
||||
TargetData *TD;
|
||||
std::vector<Function *> Functions;
|
||||
std::set<const Function *> NeverInline;
|
||||
SmallPtrSet<const Function *, 16> NeverInline;
|
||||
SmallPtrSet<Function *, 8> DeadFunctions;
|
||||
InlineCostAnalyzer CA;
|
||||
};
|
||||
|
||||
@@ -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<const Function *> &NeverInline) {
|
||||
int InlineCostAnalyzer::getInlineCost(CallSite CS, SmallPtrSet<const Function *, 16> &NeverInline) {
|
||||
Instruction *TheCall = CS.getInstruction();
|
||||
Function *Callee = CS.getCalledFunction();
|
||||
const Function *Caller = TheCall->getParent()->getParent();
|
||||
|
||||
Reference in New Issue
Block a user