mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-24 12:55:45 +00:00
Almost complete rewrite of BU closure code
llvm-svn: 4693
This commit is contained in:
parent
8a3ae7a80d
commit
2ecb91e1c1
@ -102,10 +102,24 @@ public:
|
||||
AU.addRequired<LocalDataStructures>();
|
||||
}
|
||||
private:
|
||||
DSGraph &calculateGraph(Function &F, unsigned Indent);
|
||||
DSGraph &calculateGraph(Function &F);
|
||||
DSGraph &calculateSCCGraph(Function &F,
|
||||
std::set<Function*> &InlinedSCCFunctions);
|
||||
void calculateReachableGraphs(Function *F);
|
||||
|
||||
|
||||
DSGraph &getOrCreateGraph(Function *F);
|
||||
|
||||
unsigned calculateGraphs(Function *F, std::vector<Function*> &Stack,
|
||||
unsigned &NextID,
|
||||
std::map<Function*, unsigned> &ValMap);
|
||||
|
||||
|
||||
/*
|
||||
bool ResolveFunctionCalls(DSGraph &G, unsigned &FirstResolvableCall,
|
||||
std::map<Function*, DSCallSite> &InProcess,
|
||||
unsigned Indent);
|
||||
*/
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user