index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
llvm
/
Analysis
/
DominatorInternals.h
Age
Commit message (
Expand
)
Author
2012-12-03
Sort the #include lines for the include/... tree with the script.
Chandler Carruth
2011-12-05
Change the Dominators recalculate() function to only rely on GraphTraits
Anna Zaks
2011-01-23
Convert a std::vector to a SmallVector for another 5.4% speedup on domtree.
Cameron Zwarich
2011-01-23
In the simpler version of the link-eval data structure that we use in dominator
Cameron Zwarich
2011-01-23
Remove useless struct fields.
Cameron Zwarich
2011-01-23
Convert a std::vector to a SmallVector.
Cameron Zwarich
2011-01-23
Simplify some code now that we've removed the more optimal (but slower) version
Cameron Zwarich
2011-01-11
Put the Dominator improvements back in. They were not the cause of bootstrap ...
Jakob Stoklund Olesen
2011-01-11
Speculatively revert the recent improvements to Dominators.h in an attempt to...
Jakob Stoklund Olesen
2011-01-02
Fix a typo in a variable name.
Cameron Zwarich
2011-01-02
Move a load into the only branch where it is used and eliminate a temporary.
Cameron Zwarich
2011-01-02
Add the explanatory comment from r122680's commit message to the code itself.
Cameron Zwarich
2011-01-02
Tidy up indentation.
Cameron Zwarich
2011-01-02
Fix a typo, which should also fix the failure on llvm-x86_64-linux-checks.
Cameron Zwarich
2011-01-02
Remove the #ifdef'd code for balancing the eval-link data structure. It doesn't
Cameron Zwarich
2011-01-02
Speed up dominator computation some more by optimizing bucket processing. When
Cameron Zwarich
2010-11-23
Optimize a common case in the Lengauer-Tarjan dominators algorithm. This gives a
Cameron Zwarich
2010-10-23
SmallVectorize.
Benjamin Kramer
2010-07-13
80-columns
Eric Christopher
2010-07-08
only dereference iterator once in the loop
Gabor Greif
2010-01-16
Fix PR6047
Tobias Grosser
2010-01-07
Remove workaround in PostDominators
Tobias Grosser
2009-01-05
Tidy up #includes, deleting a bunch of unnecessary #includes.
Dan Gohman
2008-05-05
Fix more -Wshorten-64-to-32 warnings.
Evan Cheng
2008-05-04
Fix PR1098 by correcting the postdominators analysis.
Owen Anderson
2008-04-16
Major repairs to the post-dominators implementation. Patch from Florian Bran...
Owen Anderson
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-10-31
Some fixes to get MachineDomTree working better.
Owen Anderson
2007-10-25
Make it possible for DomTreeBase to be constructed from MachineFunction's as ...
Owen Anderson
2007-10-18
Move Split<...>() into DomTreeBase. This should make the #include's of Domin...
Owen Anderson
2007-10-17
Move splitBlock into DomTreeBase from DomTree.
Owen Anderson
2007-10-16
Template DominatorTreeBase by node type. This is the next major step towards
Owen Anderson
2007-10-03
Completely merge the implementation details of DomTree and PostDomTree.
Owen Anderson
2007-09-30
Template-ize more of the DomTree internal implementation details. Only the c...
Owen Anderson
2007-09-29
Add newline at end of file.
Duncan Sands
2007-09-28
Have PostDomTree use the newly templated DFSPass.
Owen Anderson
2007-09-27
Convert DFSPass into a templated friend function, in preparation for making i...
Owen Anderson