index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
VMCore
/
Dominators.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
Convert DFSPass into a templated friend function, in preparation for making i...
Owen Anderson
2007-09-27
1
-62
/
+0
*
Move DFSPass back down into DominatorTree. I need to figure out what the dif...
Owen Anderson
2007-09-23
1
-1
/
+1
*
Factor the dominator tree calculation details out into DominatorCalculation.h...
Owen Anderson
2007-09-23
1
-267
/
+81
*
Assert sooner. Fix wordings.
Devang Patel
2007-08-14
1
-3
/
+2
*
Add methods to erase basic block entry.
Devang Patel
2007-08-13
1
-0
/
+24
*
Speed up updateDFSNumbers with two observations:
Chris Lattner
2007-08-08
1
-22
/
+17
*
reimplement dfs number computation to be significantly faster. This speeds up
Chris Lattner
2007-08-08
1
-40
/
+33
*
1. Random tidiness cleanups
Chris Lattner
2007-08-06
1
-47
/
+44
*
Fix an iterator invalidation bug I induced.
Chris Lattner
2007-08-05
1
-3
/
+3
*
Switch some std::sets to SmallPtrSet. This speeds up
Chris Lattner
2007-08-05
1
-3
/
+3
*
Switch DomTreeNode::assignDFSNumber from using a std::set to using
Chris Lattner
2007-08-05
1
-8
/
+8
*
Switch the internal "Info" map from an std::map to a DenseMap. This
Chris Lattner
2007-08-05
1
-7
/
+5
*
switch the DomTreeNodes and IDoms maps in idom/postidom to a
Chris Lattner
2007-08-04
1
-16
/
+13
*
Update dominator info for the middle blocks created while spliting
Devang Patel
2007-08-02
1
-1
/
+9
*
Undo previous check-in.
Devang Patel
2007-08-01
1
-9
/
+1
*
Update dominator info for the middle blocks created while spliting
Devang Patel
2007-08-01
1
-1
/
+9
*
Fix edge cases in handling basic block split.
Devang Patel
2007-07-27
1
-3
/
+12
*
Remove ETForest.
Devang Patel
2007-06-27
1
-551
/
+0
*
Move code to update dominator information after basic block is split
Devang Patel
2007-06-21
1
-0
/
+184
*
isReachableFromEntry() is not suitable for post dominator.
Devang Patel
2007-06-12
1
-0
/
+2
*
Remove redundant check.
Devang Patel
2007-06-12
1
-7
/
+3
*
Check A dominates B and vise versa first while searching for nearest
Devang Patel
2007-06-12
1
-8
/
+4
*
Break DominatorTree from ETNode.
Devang Patel
2007-06-12
1
-19
/
+3
*
Use SmallPtrSet instaed of std::set
Devang Patel
2007-06-12
1
-2
/
+1
*
Check immediate dominators first while searching for nearset common dominator.
Devang Patel
2007-06-12
1
-6
/
+18
*
Maintain DFS number in DomTreeNode itself.
Devang Patel
2007-06-12
1
-3
/
+37
*
Add and use DominatorTreeBase::findNearestCommonDominator().
Devang Patel
2007-06-11
1
-0
/
+45
*
Update LoopSimplify to require and preserve DominatorTree only.
Devang Patel
2007-06-08
1
-3
/
+12
*
Add instruction level dominates(A,B) interface.
Devang Patel
2007-06-07
1
-0
/
+23
*
Maintain ETNode as part of DomTreeNode.
Devang Patel
2007-06-07
1
-5
/
+38
*
Add new dominator tree node into dominator tree node map.
Devang Patel
2007-06-06
1
-2
/
+6
*
Add FIXMEs.
Devang Patel
2007-06-04
1
-0
/
+2
*
s/llvm::DominatorTreeBase::DomTreeNode/llvm::DomTreeNode/g
Devang Patel
2007-06-04
1
-17
/
+17
*
s/DominatorTreeBase::Node/DominatorTreeBase:DomTreeNode/g
Devang Patel
2007-06-03
1
-27
/
+27
*
Add dump() routines for debugging assistance.
Devang Patel
2007-05-23
1
-0
/
+14
*
Use iterative while loop instead of recursive function call.
Devang Patel
2007-05-03
1
-13
/
+33
*
Drop 'const'
Devang Patel
2007-05-03
1
-3
/
+3
*
Use 'static const char' instead of 'static const int'.
Devang Patel
2007-05-02
1
-3
/
+3
*
Do not use typeinfo to identify pass in pass manager.
Devang Patel
2007-05-01
1
-0
/
+3
*
Reset vertex.
Devang Patel
2007-04-21
1
-0
/
+1
*
Tabs -> Spaces
Owen Anderson
2007-04-15
1
-7
/
+7
*
Remove ImmediateDominator analysis. The same information can be obtained fro...
Owen Anderson
2007-04-15
1
-85
/
+49
*
Fix some unsafe code. Also, tabs -> spaces.
Owen Anderson
2007-04-14
1
-6
/
+6
*
Make ETForest depend on DomTree rather than IDom. This is the first step
Owen Anderson
2007-04-14
1
-8
/
+11
*
Convert ImmediateDominators::DFSPass from being recursive to being iterative.
Chris Lattner
2007-04-09
1
-1
/
+43
*
minor cleanups
Chris Lattner
2007-04-09
1
-14
/
+16
*
Move isReachableFromEntry out of line to avoid an unnecessary #include
Owen Anderson
2007-04-09
1
-0
/
+6
*
Remove DomSet completely. This concludes work on PR1171.
Owen Anderson
2007-04-08
1
-96
/
+0
*
Don't crash when encountering a BasicBlock that hasn't been registered yet.
Nick Lewycky
2007-04-08
1
-2
/
+3
*
Add DomSet back, and revert the changes to LoopSimplify. Apparently the
Owen Anderson
2007-04-07
1
-14
/
+109
[next]