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
/
PostDominators.cpp
Age
Commit message (
Expand
)
Author
2011-04-05
remove postdom frontiers, because it is dead. Forward dom frontiers are
Chris Lattner
2011-01-02
split dom frontier handling stuff out to its own DominanceFrontier header,
Chris Lattner
2010-10-12
Begin adding static dependence information to passes, which will allow us to
Owen Anderson
2010-10-07
Now with fewer extraneous semicolons!
Owen Anderson
2010-07-21
Add INSTANTIATE_AG_PASS, which combines RegisterPass<> with RegisterAnalysisG...
Owen Anderson
2010-07-21
Fix batch of converting RegisterPass<> to INTIALIZE_PASS().
Owen Anderson
2010-07-09
cache result of operator*
Gabor Greif
2010-04-12
Remove unneeded debug in PostDominator runOnFunction()
Tobias Grosser
2009-12-23
Convert debug messages to use dbgs(). Generally this means
David Greene
2009-08-23
Change Pass::print to take a raw ostream instead of std::ostream,
Chris Lattner
2009-08-23
eliminate the std::ostream form of WriteAsOperand and update clients.
Chris Lattner
2008-05-29
Add newline at end of file.
Owen Anderson
2008-05-29
Force postdom to be linked into opt and bugpoint, even though it is no longer...
Owen Anderson
2008-05-06
Remove uses of llvm/System/IncludeFile.h that are no longer needed.
Dan Gohman
2008-05-03
Implement destructor for PostDominatorTree to eliminate a memory leak.
Torok Edwin
2008-04-16
Major repairs to the post-dominators implementation. Patch from Florian Bran...
Owen Anderson
2008-03-20
These passes preserve CFG.
Devang Patel
2008-03-20
Restore isCFGOnly property of various analysis passes.
Devang Patel
2008-03-19
PassInfo keep tracks whether a pass is an analysis pass or not.
Devang Patel
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
2007-10-23
Make DomTree and PostDomTree thin wrappers around DomTreeBase, rather than in...
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-10-03
Factor some code from the DomTree and PostDomTree calculate methods up into
Owen Anderson
2007-09-28
Have PostDomTree use the newly templated DFSPass.
Owen Anderson
2007-09-23
Factor the calculation details for PostDomTree out of PostDominators.cpp and
Owen Anderson
2007-08-08
reimplement dfs number computation to be significantly faster. This speeds up
Chris Lattner
2007-08-05
Fix an iterator invalidation bug I induced.
Chris Lattner
2007-08-05
Switch some std::sets to SmallPtrSet. This speeds up
Chris Lattner
2007-08-05
Switch the internal "Info" map from an std::map to a DenseMap. This
Chris Lattner
2007-08-04
switch the DomTreeNodes and IDoms maps in idom/postidom to a
Chris Lattner
2007-07-24
Unreachable block is not a root node in post dominator tree.
Devang Patel
2007-06-12
Break DominatorTree from ETNode.
Devang Patel
2007-06-07
Maintain ETNode as part of DomTreeNode.
Devang Patel
2007-06-04
s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/g
Devang Patel
2007-06-03
s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/g
Devang Patel
2007-05-03
Drop 'const'
Devang Patel
2007-05-02
Use 'static const char' instead of 'static const int'.
Devang Patel
2007-05-01
Do not use typeinfo to identify pass in pass manager.
Devang Patel
2007-04-18
Cache DT[*SI] lookup.
Devang Patel
2007-04-18
Fix
Devang Patel
2007-04-15
Tabs -> Spaces
Owen Anderson
2007-04-15
Remove ImmediateDominator analysis. The same information can be obtained fro...
Owen Anderson
2007-04-07
Completely purge DomSet. This is the (hopefully) final patch for PR1171.
Owen Anderson
2006-11-17
Removed unneeded <iostream> #include.
Bill Wendling
2006-09-27
Fix DFS walk.
Devang Patel
2006-09-07
Untabify.
Devang Patel
2006-09-07
Use iterative do-while loop instead of recursive DFSPass calls to
Devang Patel
2006-08-27
Eliminate RegisterAnalysis. RegisterPass now does all that is necessary.
Chris Lattner
2006-06-07
For PR780:
Reid Spencer
[next]