mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
* Make the DSGraph cloner automatically merge global nodes
* BUClosure doesn't have to worry about global nodes * TDClosure now works with global nodes * Reenable DNE on TD pass, now that globals work right git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4220 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -71,35 +71,6 @@ static void ResolveArguments(std::vector<DSNodeHandle> &Call, Function &F,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// MergeGlobalNodes - Merge all existing global nodes with globals
|
|
||||||
// inlined from the callee or with globals from the GlobalsGraph.
|
|
||||||
//
|
|
||||||
static void MergeGlobalNodes(DSGraph &Graph,
|
|
||||||
map<Value*, DSNodeHandle> &OldValMap) {
|
|
||||||
map<Value*, DSNodeHandle> &ValMap = Graph.getValueMap();
|
|
||||||
for (map<Value*, DSNodeHandle>::iterator I = ValMap.begin(), E = ValMap.end();
|
|
||||||
I != E; ++I)
|
|
||||||
if (GlobalValue *GV = dyn_cast<GlobalValue>(I->first)) {
|
|
||||||
map<Value*, DSNodeHandle>::iterator NHI = OldValMap.find(GV);
|
|
||||||
if (NHI != OldValMap.end()) // was it inlined from the callee?
|
|
||||||
I->second.mergeWith(NHI->second);
|
|
||||||
#if 0
|
|
||||||
else // get it from the GlobalsGraph
|
|
||||||
I->second.mergeWith(Graph.cloneGlobalInto(GV));
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add unused inlined global nodes into the value map
|
|
||||||
for (map<Value*, DSNodeHandle>::iterator I = OldValMap.begin(),
|
|
||||||
E = OldValMap.end(); I != E; ++I)
|
|
||||||
if (isa<GlobalValue>(I->first)) {
|
|
||||||
DSNodeHandle &NH = ValMap[I->first]; // If global is not in ValMap...
|
|
||||||
if (NH.getNode() == 0)
|
|
||||||
NH = I->second; // Add the one just inlined.
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
DSGraph &BUDataStructures::calculateGraph(Function &F) {
|
DSGraph &BUDataStructures::calculateGraph(Function &F) {
|
||||||
// Make sure this graph has not already been calculated, or that we don't get
|
// Make sure this graph has not already been calculated, or that we don't get
|
||||||
// into an infinite loop with mutually recursive functions.
|
// into an infinite loop with mutually recursive functions.
|
||||||
@@ -191,11 +162,6 @@ DSGraph &BUDataStructures::calculateGraph(Function &F) {
|
|||||||
if (Call[0].getNode()) // Handle the return value if present
|
if (Call[0].getNode()) // Handle the return value if present
|
||||||
RetVal.mergeWith(Call[0]);
|
RetVal.mergeWith(Call[0]);
|
||||||
|
|
||||||
// Merge global value nodes in the inlined graph with the global
|
|
||||||
// value nodes in the current graph if there are duplicates.
|
|
||||||
//
|
|
||||||
MergeGlobalNodes(*Graph, OldValMap);
|
|
||||||
|
|
||||||
// Erase the entry in the Callees vector
|
// Erase the entry in the Callees vector
|
||||||
Callees.erase(Callees.begin()+c--);
|
Callees.erase(Callees.begin()+c--);
|
||||||
|
|
||||||
|
@@ -439,14 +439,25 @@ DSNodeHandle DSGraph::cloneInto(const DSGraph &G,
|
|||||||
for (unsigned i = FN, e = Nodes.size(); i != e; ++i)
|
for (unsigned i = FN, e = Nodes.size(); i != e; ++i)
|
||||||
Nodes[i]->NodeType &= ~StripBits;
|
Nodes[i]->NodeType &= ~StripBits;
|
||||||
|
|
||||||
// Copy the value map...
|
// Copy the value map... and merge all of the global nodes...
|
||||||
for (std::map<Value*, DSNodeHandle>::const_iterator I = G.ValueMap.begin(),
|
for (std::map<Value*, DSNodeHandle>::const_iterator I = G.ValueMap.begin(),
|
||||||
E = G.ValueMap.end(); I != E; ++I)
|
E = G.ValueMap.end(); I != E; ++I) {
|
||||||
OldValMap[I->first] = DSNodeHandle(OldNodeMap[I->second.getNode()],
|
DSNodeHandle &H = OldValMap[I->first];
|
||||||
I->second.getOffset());
|
H = DSNodeHandle(OldNodeMap[I->second.getNode()], I->second.getOffset());
|
||||||
|
|
||||||
|
if (isa<GlobalValue>(I->first)) { // Is this a global?
|
||||||
|
std::map<Value*, DSNodeHandle>::iterator GVI = ValueMap.find(I->first);
|
||||||
|
if (GVI != ValueMap.end()) { // Is the global value in this fun already?
|
||||||
|
GVI->second.mergeWith(H);
|
||||||
|
} else {
|
||||||
|
ValueMap[I->first] = H; // Add global pointer to this graph
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
// Copy the function calls list...
|
// Copy the function calls list...
|
||||||
CopyFunctionCallsList(G.FunctionCalls, FunctionCalls, OldNodeMap);
|
CopyFunctionCallsList(G.FunctionCalls, FunctionCalls, OldNodeMap);
|
||||||
|
|
||||||
|
|
||||||
// Return the returned node pointer...
|
// Return the returned node pointer...
|
||||||
return DSNodeHandle(OldNodeMap[G.RetNode.getNode()], G.RetNode.getOffset());
|
return DSNodeHandle(OldNodeMap[G.RetNode.getNode()], G.RetNode.getOffset());
|
||||||
}
|
}
|
||||||
|
@@ -165,13 +165,6 @@ DSGraph &TDDataStructures::calculateGraph(Function &F) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ResolveCallSite(*Graph, CallSite);
|
ResolveCallSite(*Graph, CallSite);
|
||||||
|
|
||||||
#if 0
|
|
||||||
// If its not a self-recursive call, merge global nodes in the inlined
|
|
||||||
// graph with the corresponding global nodes in the current graph
|
|
||||||
if (&caller != &callee)
|
|
||||||
MergeGlobalNodes(calleeGraph, OldValMap);
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -180,9 +173,7 @@ DSGraph &TDDataStructures::calculateGraph(Function &F) {
|
|||||||
Graph->maskIncompleteMarkers();
|
Graph->maskIncompleteMarkers();
|
||||||
Graph->markIncompleteNodes(/*markFormals*/ !F.hasInternalLinkage()
|
Graph->markIncompleteNodes(/*markFormals*/ !F.hasInternalLinkage()
|
||||||
/*&& FIXME: NEED TO CHECK IF ALL CALLERS FOUND!*/);
|
/*&& FIXME: NEED TO CHECK IF ALL CALLERS FOUND!*/);
|
||||||
#if 0
|
|
||||||
Graph->removeDeadNodes(/*KeepAllGlobals*/ false, /*KeepCalls*/ false);
|
Graph->removeDeadNodes(/*KeepAllGlobals*/ false, /*KeepCalls*/ false);
|
||||||
#endif
|
|
||||||
|
|
||||||
DEBUG(std::cerr << " [TD] Done inlining callers for: " << F.getName() << " ["
|
DEBUG(std::cerr << " [TD] Done inlining callers for: " << F.getName() << " ["
|
||||||
<< Graph->getGraphSize() << "+" << Graph->getFunctionCalls().size()
|
<< Graph->getGraphSize() << "+" << Graph->getFunctionCalls().size()
|
||||||
|
Reference in New Issue
Block a user