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
/
PostDominators.h
Age
Commit message (
Expand
)
Author
2008-09-04
Tidy up several unbeseeming casts from pointer to intptr_t.
Dan Gohman
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-03-19
PassInfo keep tracks whether a pass is an analysis pass or not.
Devang Patel
2008-03-19
Do not use virtual function to identify an analysis pass.
Devang Patel
2008-03-18
Identify Analysis pass.
Devang Patel
2008-02-27
Add -analyze support to postdomtree.
Dan Gohman
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-10-23
Make DomTreeBase not a FunctionPass.
Owen Anderson
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-24
Merge significant portions of the DomTree and PostDomTree implementations.
Owen Anderson
2007-09-23
Factor the calculation details for PostDomTree out of PostDominators.cpp and
Owen Anderson
2007-09-23
Factor the dominator tree calculation details out into DominatorCalculation.h...
Owen Anderson
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-06-12
Break DominatorTree from ETNode.
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-06
Fix typo in comment.
Nick Lewycky
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-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-06-07
For PR780:
Reid Spencer
2006-06-01
Change from using a stub function to a stub variable for passing to the
Reid Spencer
2006-03-20
Move some common data structures between dom and pdom into the base class
Nate Begeman
2006-03-11
Fix PR681 by using the standard Lengauer and Tarjan algorithm for dominator
Nate Begeman
2006-01-08
Initial implementation of the ET-Forest data structure for dominators and
Chris Lattner
2005-04-21
Remove trailing whitespace
Misha Brukman
2004-02-29
Doxygenify comments.
Misha Brukman
2003-12-07
Move this method out of the generic dominators calculation code
Chris Lattner
2003-11-11
Put all LLVM code into the llvm namespace, as per bug 109.
Brian Gaeke
2003-10-20
Added LLVM copyright header (for lack of a better term).
John Criswell
2003-09-30
Standardize header file comments
Chris Lattner
2003-09-15
Do not segfault when the post-dominator tree is empty (ie, there are no return
Chris Lattner
2003-09-10
Rework dominator and post dominator information so that we do not have to
Chris Lattner
2002-08-21
- Split Dominators.h into Dominators.h & PostDominators.h
Chris Lattner