aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis
diff options
context:
space:
mode:
authorAndreas Neustifter <astifter@gmx.at>2009-09-09 17:52:57 +0000
committerAndreas Neustifter <astifter@gmx.at>2009-09-09 17:52:57 +0000
commita1eaf2a024b2338fcdf2ffab01b7169319969830 (patch)
treed044d4c7631ca57b5a6dd003c64cfcf559fe3c14 /include/llvm/Analysis
parentba865fcfc00592809b38bad4e65aa5eebd9103bd (diff)
downloadexternal_llvm-a1eaf2a024b2338fcdf2ffab01b7169319969830.zip
external_llvm-a1eaf2a024b2338fcdf2ffab01b7169319969830.tar.gz
external_llvm-a1eaf2a024b2338fcdf2ffab01b7169319969830.tar.bz2
Add the first functions for updating ProfileInfo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81359 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r--include/llvm/Analysis/ProfileInfo.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/llvm/Analysis/ProfileInfo.h b/include/llvm/Analysis/ProfileInfo.h
index 94a8666..2a80f3d 100644
--- a/include/llvm/Analysis/ProfileInfo.h
+++ b/include/llvm/Analysis/ProfileInfo.h
@@ -102,7 +102,26 @@ namespace llvm {
//===------------------------------------------------------------------===//
/// Analysis Update Methods
///
+ void removeBlock(const BasicBlock *BB) {
+ std::map<const Function*, BlockCounts>::iterator J =
+ BlockInformation.find(BB->getParent());
+ if (J == BlockInformation.end()) return;
+ J->second.erase(BB);
+ }
+
+ void removeEdge(Edge e) {
+ std::map<const Function*, EdgeWeights>::iterator J =
+ EdgeInformation.find(getFunction(e));
+ if (J == EdgeInformation.end()) return;
+
+ J->second.erase(e);
+ }
+
+ void splitEdge(const BasicBlock *FirstBB, const BasicBlock *SecondBB,
+ const BasicBlock *NewBB, bool MergeIdenticalEdges = false);
+
+ void replaceAllUses(const BasicBlock *RmBB, const BasicBlock *DestBB);
};
/// createProfileLoaderPass - This function returns a Pass that loads the