[llvm-commits] [llvm] r55789 - /llvm/trunk/lib/Analysis/IPA/GlobalsModRef.cpp
Duncan Sands
baldrick at free.fr
Thu Sep 4 12:16:21 PDT 2008
Author: baldrick
Date: Thu Sep 4 14:16:20 2008
New Revision: 55789
URL: http://llvm.org/viewvc/llvm-project?rev=55789&view=rev
Log:
Neaten this up a bit. No functionality change.
Modified:
llvm/trunk/lib/Analysis/IPA/GlobalsModRef.cpp
Modified: llvm/trunk/lib/Analysis/IPA/GlobalsModRef.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/IPA/GlobalsModRef.cpp?rev=55789&r1=55788&r2=55789&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/IPA/GlobalsModRef.cpp (original)
+++ llvm/trunk/lib/Analysis/IPA/GlobalsModRef.cpp Thu Sep 4 14:16:20 2008
@@ -354,18 +354,17 @@
for (scc_iterator<CallGraph*> I = scc_begin(&CG), E = scc_end(&CG); I != E;
++I) {
std::vector<CallGraphNode *> &SCC = *I;
+ assert(!SCC.empty() && "SCC with no functions?");
- FunctionRecord *FR = 0;
- // Find a function record from the SCC (it doesn't matter which one).
- for (unsigned i = 0, e = SCC.size(); i != e; ++i)
- if (Function *F = SCC[i]->getFunction()) {
- FR = &FunctionInfo[F];
- break;
- }
-
- if (!FR)
- // Nothing to do.
+ if (!SCC[0]->getFunction()) {
+ // Calls externally - can't say anything useful. Remove any existing
+ // function records (may have been created when scanning globals).
+ for (unsigned i = 0, e = SCC.size(); i != e; ++i)
+ FunctionInfo.erase(SCC[i]->getFunction());
continue;
+ }
+
+ FunctionRecord &FR = FunctionInfo[SCC[0]->getFunction()];
bool KnowNothing = false;
unsigned FunctionEffect = 0;
@@ -389,7 +388,7 @@
// mark all globals read somewhere as being read by this function.
for (std::set<GlobalValue*>::iterator GI = ReadGlobals.begin(),
E = ReadGlobals.end(); GI != E; ++GI)
- FR->GlobalInfo[*GI] |= Ref;
+ FR.GlobalInfo[*GI] |= Ref;
} else {
// Can't say anything useful.
KnowNothing = true;
@@ -398,7 +397,7 @@
}
for (CallGraphNode::iterator CI = SCC[i]->begin(), E = SCC[i]->end();
- CI != E; ++CI)
+ CI != E && !KnowNothing; ++CI)
if (Function *Callee = CI->second->getFunction()) {
if (FunctionRecord *CalleeFR = getFunctionInfo(Callee)) {
// Propagate function effect up.
@@ -408,7 +407,7 @@
for (std::map<GlobalValue*, unsigned>::iterator GI =
CalleeFR->GlobalInfo.begin(), E = CalleeFR->GlobalInfo.end();
GI != E; ++GI)
- FR->GlobalInfo[GI->first] |= GI->second;
+ FR.GlobalInfo[GI->first] |= GI->second;
} else {
// Can't say anything about it. However, if it is inside our SCC,
// then nothing needs to be done.
@@ -445,12 +444,12 @@
++NumReadMemFunctions;
if (FunctionEffect == 0)
++NumNoMemFunctions;
- FR->FunctionEffect = FunctionEffect;
+ FR.FunctionEffect = FunctionEffect;
// Finally, now that we know the full effect on this SCC, clone the
// information to each function in the SCC.
for (unsigned i = 1, e = SCC.size(); i != e; ++i)
- FunctionInfo[SCC[i]->getFunction()] = *FR;
+ FunctionInfo[SCC[i]->getFunction()] = FR;
}
}
More information about the llvm-commits
mailing list