index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
BranchProbabilityInfo.cpp
Age
Commit message (
Expand
)
Author
2013-01-02
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2012-12-03
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-08-24
BranchProb: modify the definition of an edge in BranchProbabilityInfo to handle
Manman Ren
2012-08-15
Set the branch probability of branching to the 'normal' destination of an invoke
Bill Wendling
2011-12-22
Make the unreachable probability much much heavier. The previous
Chandler Carruth
2011-11-15
Remove all remaining uses of Value::getNameStr().
Benjamin Kramer
2011-10-25
Fix the API usage in loop probability heuristics. It was incorrectly
Chandler Carruth
2011-10-24
Remove return heuristics from the static branch probabilities, and
Chandler Carruth
2011-10-24
Simplify the design of BranchProbabilityInfo by collapsing it into
Chandler Carruth
2011-10-23
Tidy up a loop to be more idiomatic for LLVM's codebase, and remove some
Chandler Carruth
2011-10-23
Teach the BranchProbabilityInfo pass to print its results, and use that
Chandler Carruth
2011-10-23
Add compare operators to BranchProbability and use it to determine if an edge...
Benjamin Kramer
2011-10-21
Extend the floating point heuristic to consider NaN checks unlikely.
Benjamin Kramer
2011-10-21
BranchProbabilityInfo: floating point equality is unlikely.
Benjamin Kramer
2011-10-19
Generalize the reading of probability metadata to work for both branches
Chandler Carruth
2011-10-19
Teach the BranchProbabilityInfo analysis pass to read any metadata
Chandler Carruth
2011-10-16
Delete a dead member. Dunno if this was ever used, but the current code
Chandler Carruth
2011-09-04
Use canonical forms for the branch probability zero heutistic.
Benjamin Kramer
2011-08-01
Change SmallVector to SmallPtrSet in BranchProbabilityInfo. Handle cases where
Jakub Staszak
2011-07-31
Do not handle cases with >= and <= predicates.
Jakub Staszak
2011-07-31
Remove untrue comment.
Jakub Staszak
2011-07-31
Do not handle case where LHS is equal to zero, because InstCombiner always moves
Jakub Staszak
2011-07-31
Add Zero Heurestics to BranchProbabilityInfo. If we compare value to zero we
Jakub Staszak
2011-07-29
Add more constantness in BranchProbabilityInfo.
Jakub Staszak
2011-07-29
Remove incEdgeWeight and decEdgeWeight. Set edge weight directly to avoid
Jakub Staszak
2011-07-28
Change LBH_TAKEN_WEIGHT to 124 (from 128). Right now, sum of
Jakub Staszak
2011-07-28
Heuristics are in descending priority now. If we use one of them, skip the rest.
Jakub Staszak
2011-07-28
Add InEdges (edges from header to the loop) in Loop Branch Heuristics, so
Jakub Staszak
2011-07-16
Remove "LoopInfo.h" include from BranchProbabilityInfo.h.
Jakub Staszak
2011-07-15
Fix pointer heuristic. Check whether predicator is ICMP_NE instead of if it is
Jakub Staszak
2011-06-23
Calculate backedge probability correctly.
Jakub Staszak
2011-06-23
Introduce BlockFrequency analysis for BasicBlocks.
Jakub Staszak
2011-06-16
Introduce MachineBranchProbabilityInfo class, which has similar API to
Jakub Staszak
2011-06-13
Move class into an anonymous namespace.
Benjamin Kramer
2011-06-11
Branch profiling: floating-point avoidance.
Andrew Trick
2011-06-04
Fold assert-only-used variable into the assert.
Nick Lewycky
2011-06-04
Missing include of climits in the new BranchProbability pass.
Andrew Trick
2011-06-04
New BranchProbabilityInfo analysis. Patch by Jakub Staszak!
Andrew Trick