diff options
author | Jakub Staszak <jstaszak@apple.com> | 2011-06-23 21:45:20 +0000 |
---|---|---|
committer | Jakub Staszak <jstaszak@apple.com> | 2011-06-23 21:45:20 +0000 |
commit | 44eb49c2a191108df801977c8e3dc03466c6c02a (patch) | |
tree | b51888831a9e6a115cf5d8c57d5c4664669eb322 /include/llvm/Analysis/BranchProbabilityInfo.h | |
parent | a390a1aa48d8fa5085aa51b950f00d79dbb0c646 (diff) | |
download | external_llvm-44eb49c2a191108df801977c8e3dc03466c6c02a.tar.gz external_llvm-44eb49c2a191108df801977c8e3dc03466c6c02a.tar.bz2 external_llvm-44eb49c2a191108df801977c8e3dc03466c6c02a.zip |
Introduce BlockFrequency analysis for BasicBlocks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133766 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/BranchProbabilityInfo.h')
-rw-r--r-- | include/llvm/Analysis/BranchProbabilityInfo.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/llvm/Analysis/BranchProbabilityInfo.h b/include/llvm/Analysis/BranchProbabilityInfo.h index 5a17a76f5b..e40d2044dc 100644 --- a/include/llvm/Analysis/BranchProbabilityInfo.h +++ b/include/llvm/Analysis/BranchProbabilityInfo.h @@ -39,6 +39,9 @@ class BranchProbabilityInfo : public FunctionPass { // Get sum of the block successors' weights. uint32_t getSumForBlock(BasicBlock *BB) const; + // Get sum of the edge weights going to the BB block. + uint32_t getBackSumForBlock(BasicBlock *BB) const; + public: static char ID; @@ -71,6 +74,13 @@ public: // only iff SRC block has only one successor. BranchProbability getEdgeProbability(BasicBlock *Src, BasicBlock *Dst) const; + // Return a probability of getting to the DST block through SRC->DST edge. + // Returned value is a fraction between 0 (0% probability) and + // 1 (100% probability), however the value is never equal to 0, and can be 1 + // only iff DST block has only one predecesor. + BranchProbability getBackEdgeProbability(BasicBlock *Src, + BasicBlock *Dst) const; + // Print value between 0 (0% probability) and 1 (100% probability), // however the value is never equal to 0, and can be 1 only iff SRC block // has only one successor. |