diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-08-08 17:43:09 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-08 17:43:09 +0000 |
| commit | 3b5008e23abb2f6fbe85e32670a5437dc3b05a93 (patch) | |
| tree | b5d5fe3856941bfffa31d26ab43c2d9a473c6b2b /llvm/lib/Analysis/ProfileInfoLoaderPass.cpp | |
| parent | 72dd2eef36d04cff7d3941bb4f4822b4ffee86b2 (diff) | |
| download | bcm5719-llvm-3b5008e23abb2f6fbe85e32670a5437dc3b05a93.tar.gz bcm5719-llvm-3b5008e23abb2f6fbe85e32670a5437dc3b05a93.zip | |
More ProfileInfo improvements.
- Part of optimal static profiling patch sequence by Andreas Neustifter.
- Store edge, block, and function information separately for each functions
(instead of in one giant map).
- Return frequencies as double instead of int, and use a sentinel value for
missing information.
llvm-svn: 78477
Diffstat (limited to 'llvm/lib/Analysis/ProfileInfoLoaderPass.cpp')
| -rw-r--r-- | llvm/lib/Analysis/ProfileInfoLoaderPass.cpp | 75 |
1 files changed, 52 insertions, 23 deletions
diff --git a/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp b/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp index 323174b9ce3..c1dc9f2e472 100644 --- a/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp +++ b/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp @@ -69,34 +69,63 @@ Pass *llvm::createProfileLoaderPass(const std::string &Filename) { bool LoaderPass::runOnModule(Module &M) { ProfileInfoLoader PIL("profile-loader", Filename, M); - EdgeCounts.clear(); + EdgeInformation.clear(); std::vector<unsigned> ECs = PIL.getRawEdgeCounts(); - std::vector<unsigned> BCs = PIL.getRawBlockCounts(); - std::vector<unsigned> FCs = PIL.getRawFunctionCounts(); - // Instrument all of the edges... - unsigned ei = 0; - unsigned bi = 0; - unsigned fi = 0; - for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { - if (F->isDeclaration()) continue; - if (fi<FCs.size()) FunctionCounts[F] = FCs[fi++]; - for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { - if (bi<BCs.size()) BlockCounts[BB] = BCs[bi++]; - // Okay, we have to add a counter of each outgoing edge. If the - // outgoing edge is not critical don't split it, just insert the counter - // in the source or destination of the edge. - TerminatorInst *TI = BB->getTerminator(); - for (unsigned s = 0, e = TI->getNumSuccessors(); s != e; ++s) { - if (ei < ECs.size()) - EdgeCounts[std::make_pair(BB, TI->getSuccessor(s))]+= ECs[ei++]; + if (ECs.size() > 0) { + unsigned ei = 0; + for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { + if (F->isDeclaration()) continue; + if (ei < ECs.size()) + EdgeInformation[F][ProfileInfo::getEdge(0,&F->getEntryBlock())] += + ECs[ei++]; + for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) { + // Okay, we have to add a counter of each outgoing edge. If the + // outgoing edge is not critical don't split it, just insert the counter + // in the source or destination of the edge. + TerminatorInst *TI = BB->getTerminator(); + for (unsigned s = 0, e = TI->getNumSuccessors(); s != e; ++s) { + if (ei < ECs.size()) + EdgeInformation[F][ProfileInfo::getEdge(BB, TI->getSuccessor(s))] += + ECs[ei++]; + } } } + if (ei != ECs.size()) { + cerr << "WARNING: profile information is inconsistent with " + << "the current program!\n"; + } + } + + BlockInformation.clear(); + std::vector<unsigned> BCs = PIL.getRawBlockCounts(); + if (BCs.size() > 0) { + unsigned bi = 0; + for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { + if (F->isDeclaration()) continue; + for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) + if (bi < BCs.size()) + BlockInformation[F][BB] = BCs[bi++]; + } + if (bi != BCs.size()) { + cerr << "WARNING: profile information is inconsistent with " + << "the current program!\n"; + } } - - if (ei != ECs.size()) { - cerr << "WARNING: profile information is inconsistent with " - << "the current program!\n"; + + FunctionInformation.clear(); + std::vector<unsigned> FCs = PIL.getRawFunctionCounts(); + if (FCs.size() > 0) { + unsigned fi = 0; + for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) { + if (F->isDeclaration()) continue; + if (fi < FCs.size()) + FunctionInformation[F] = FCs[fi++]; + } + if (fi != FCs.size()) { + cerr << "WARNING: profile information is inconsistent with " + << "the current program!\n"; + } } return false; |

