index
:
~nh/llvm
fold-subregs
images
latest
master
mimg
tablegen-name-resolution
wip
Misc LLVM things, mostly radeonsi (AMDGPU)
nh
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Analysis
/
PostDominators.cpp
Age
Commit message (
Expand
)
Author
Files
Lines
2014-04-22
[Modules] Fix potential ODR violations by sinking the DEBUG_TYPE
Chandler Carruth
1
-2
/
+2
2014-03-04
[Modules] Move CFG.h to the IR library as it defines graph traits over
Chandler Carruth
1
-1
/
+1
2014-03-04
[cleanup] Re-sort all the includes with utils/sort_includes.py.
Chandler Carruth
1
-1
/
+1
2014-01-13
[PM] Pull the generic graph algorithms and data structures for dominator
Chandler Carruth
1
-1
/
+1
2014-01-13
[cleanup] Move the Dominators.h and Verifier.h headers into the IR
Chandler Carruth
1
-1
/
+1
2014-01-09
Put the functionality for printing a value to a raw_ostream as an
Chandler Carruth
1
-1
/
+0
2014-01-07
Move the LLVM IR asm writer header files into the IR directory, as they
Chandler Carruth
1
-1
/
+1
2013-01-02
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
1
-1
/
+1
2012-12-03
Use the new script to sort the includes of every file under lib.
Chandler Carruth
1
-4
/
+4
2011-04-05
remove postdom frontiers, because it is dead. Forward dom frontiers are
Chris Lattner
1
-51
/
+0
2011-01-02
split dom frontier handling stuff out to its own DominanceFrontier header,
Chris Lattner
1
-0
/
+1
2010-10-12
Begin adding static dependence information to passes, which will allow us to
Owen Anderson
1
-1
/
+4
2010-10-07
Now with fewer extraneous semicolons!
Owen Anderson
1
-2
/
+2
2010-07-21
Add INSTANTIATE_AG_PASS, which combines RegisterPass<> with RegisterAnalysisG...
Owen Anderson
1
-2
/
+2
2010-07-21
Fix batch of converting RegisterPass<> to INTIALIZE_PASS().
Owen Anderson
1
-2
/
+2
2010-07-09
cache result of operator*
Gabor Greif
1
-2
/
+3
2010-04-12
Remove unneeded debug in PostDominator runOnFunction()
Tobias Grosser
1
-1
/
+0
2009-12-23
Convert debug messages to use dbgs(). Generally this means
David Greene
1
-1
/
+1
2009-08-23
Change Pass::print to take a raw ostream instead of std::ostream,
Chris Lattner
1
-3
/
+2
2009-08-23
eliminate the std::ostream form of WriteAsOperand and update clients.
Chris Lattner
1
-3
/
+8
2008-05-29
Add newline at end of file.
Owen Anderson
1
-1
/
+1
2008-05-29
Force postdom to be linked into opt and bugpoint, even though it is no longer...
Owen Anderson
1
-0
/
+8
2008-05-06
Remove uses of llvm/System/IncludeFile.h that are no longer needed.
Dan Gohman
1
-3
/
+0
2008-05-03
Implement destructor for PostDominatorTree to eliminate a memory leak.
Torok Edwin
1
-0
/
+5
2008-04-16
Major repairs to the post-dominators implementation. Patch from Florian Bran...
Owen Anderson
1
-0
/
+4
2008-03-20
These passes preserve CFG.
Devang Patel
1
-2
/
+2
2008-03-20
Restore isCFGOnly property of various analysis passes.
Devang Patel
1
-2
/
+2
2008-03-19
PassInfo keep tracks whether a pass is an analysis pass or not.
Devang Patel
1
-2
/
+2
2007-12-29
Remove attribution from file headers, per discussion on llvmdev.
Chris Lattner
1
-2
/
+2
2007-10-23
Make DomTree and PostDomTree thin wrappers around DomTreeBase, rather than in...
Owen Anderson
1
-19
/
+1
2007-10-16
Template DominatorTreeBase by node type. This is the next major step towards
Owen Anderson
1
-1
/
+1
2007-10-03
Completely merge the implementation details of DomTree and PostDomTree.
Owen Anderson
1
-2
/
+2
2007-10-03
Factor some code from the DomTree and PostDomTree calculate methods up into
Owen Anderson
1
-0
/
+23
2007-09-28
Have PostDomTree use the newly templated DFSPass.
Owen Anderson
1
-45
/
+0
2007-09-23
Factor the calculation details for PostDomTree out of PostDominators.cpp and
Owen Anderson
1
-142
/
+1
2007-08-08
reimplement dfs number computation to be significantly faster. This speeds up
Chris Lattner
1
-9
/
+3
2007-08-05
Fix an iterator invalidation bug I induced.
Chris Lattner
1
-2
/
+1
2007-08-05
Switch some std::sets to SmallPtrSet. This speeds up
Chris Lattner
1
-3
/
+3
2007-08-05
Switch the internal "Info" map from an std::map to a DenseMap. This
Chris Lattner
1
-15
/
+12
2007-08-04
switch the DomTreeNodes and IDoms maps in idom/postidom to a
Chris Lattner
1
-4
/
+9
2007-07-24
Unreachable block is not a root node in post dominator tree.
Devang Patel
1
-2
/
+6
2007-06-12
Break DominatorTree from ETNode.
Devang Patel
1
-78
/
+5
2007-06-07
Maintain ETNode as part of DomTreeNode.
Devang Patel
1
-4
/
+24
2007-06-04
s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/g
Devang Patel
1
-7
/
+7
2007-06-03
s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/g
Devang Patel
1
-14
/
+14
2007-05-03
Drop 'const'
Devang Patel
1
-3
/
+3
2007-05-02
Use 'static const char' instead of 'static const int'.
Devang Patel
1
-3
/
+3
2007-05-01
Do not use typeinfo to identify pass in pass manager.
Devang Patel
1
-0
/
+3
2007-04-18
Cache DT[*SI] lookup.
Devang Patel
1
-2
/
+4
2007-04-18
Fix
Devang Patel
1
-1
/
+1
[next]