index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Transforms
/
Scalar
/
GVNPRE.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
explicit keywords.
Dan Gohman
2007-09-24
1
-1
/
+1
*
Merge DenseMapKeyInfo & DenseMapValueInfo into DenseMapInfo
Chris Lattner
2007-09-17
1
-1
/
+4
*
Update GEP constructors to use an iterator interface to fix
David Greene
2007-09-04
1
-2
/
+2
*
Fix 80 col. violations.
Owen Anderson
2007-08-02
1
-8
/
+14
*
Fix a bug where we were marking GEP expressions with the wrong opcode.
Owen Anderson
2007-07-20
1
-1
/
+1
*
Make val_replace fail early, which reduces the time to optimize 403.gcc to 14...
Owen Anderson
2007-07-19
1
-0
/
+2
*
Use SmallVector and DenseMap in even more places.
Owen Anderson
2007-07-19
1
-27
/
+26
*
Change ValueTable to use a DenseMap for mapping expressions to value numbers.
Owen Anderson
2007-07-19
1
-78
/
+122
*
Move some sets and maps to SmallPtrSet and DenseMap respectively. This
Owen Anderson
2007-07-19
1
-8
/
+7
*
Make the pass registration static.
Owen Anderson
2007-07-10
1
-2
/
+2
*
Move some key maps from std::map to DenseMap. This improves the time to opti...
Owen Anderson
2007-07-10
1
-4
/
+8
*
Use a cheaper test, delaying calling find_leader() until we know that it's ne...
Owen Anderson
2007-07-10
1
-3
/
+5
*
Add an assertion if find_leader fails.
Owen Anderson
2007-07-09
1
-0
/
+1
*
Take advantage of the new fast SmallPtrSet assignment operator when propagati...
Owen Anderson
2007-07-09
1
-20
/
+6
*
Fix a comment.
Owen Anderson
2007-07-09
1
-1
/
+1
*
Improve a hotspot that was making build_sets() slower by calling lookup() too
Owen Anderson
2007-07-09
1
-27
/
+30
*
Start using a set representation that remembers the set of value numbers repr...
Owen Anderson
2007-07-09
1
-141
/
+176
*
Fix an error where ANTIC_OUT was ending up with more than one expression of
Owen Anderson
2007-07-07
1
-1
/
+1
*
Be more aggressive in the heuristic. This mostly exposes more opportunities
Owen Anderson
2007-07-06
1
-8
/
+16
*
Achieve what the incorrect test was trying to do by simply requiring that all
Owen Anderson
2007-07-06
1
-6
/
+1
*
Remove an incorrect check.
Owen Anderson
2007-07-06
1
-5
/
+0
*
Fix a bunch of issues found in a testcase from 400.perlbench.
Owen Anderson
2007-07-05
1
-16
/
+19
*
Fix another bug, this time in PREing select instructions.
Owen Anderson
2007-07-04
1
-2
/
+1
*
Fix a typo that was killing GVNPRE of select instructions.
Owen Anderson
2007-07-04
1
-1
/
+1
*
Fix an error in phi translation of GEPs that was causing failures.
Owen Anderson
2007-07-04
1
-1
/
+1
*
Add support for performing GVNPRE on GEP instructions.
Owen Anderson
2007-07-03
1
-5
/
+162
*
Add functionality to value number GEP instructions. This also provides the i...
Owen Anderson
2007-07-03
1
-2
/
+32
*
Make the unary operator case a bit faster, since casts are the only kind of u...
Owen Anderson
2007-07-03
1
-10
/
+4
*
Add support for performing GVNPRE on cast instructions, and add a testcase fo...
Owen Anderson
2007-07-03
1
-18
/
+116
*
Add support for value numbering (but not actually optimizing) cast instructions.
Owen Anderson
2007-06-29
1
-1
/
+65
*
Add a type field to expressions in preparation for performing GVNPRE on casts.
Owen Anderson
2007-06-29
1
-0
/
+12
*
Add support for performing GVNPRE on select instructions. This fixes test/Tr...
Owen Anderson
2007-06-28
1
-13
/
+57
*
Make many sets a much more reasonable size. This decreases the time to optimize
Owen Anderson
2007-06-28
1
-65
/
+65
*
Use cached information that has already been computed to make clean() simpler...
Owen Anderson
2007-06-27
1
-52
/
+31
*
Fold a lot of code into two cases: binary instructions and ternary instructions.
Owen Anderson
2007-06-27
1
-269
/
+62
*
Add support for performing GVNPRE on the three vector-specific operations.
Owen Anderson
2007-06-27
1
-20
/
+436
*
1. Correct some comments and clean up some dead code.
Owen Anderson
2007-06-26
1
-21
/
+26
*
Use the built-in postorder iterators rather than computing a postorder walk b...
Owen Anderson
2007-06-25
1
-35
/
+3
*
1) Fix an issue with non-deterministic iteration order in phi_translate
Owen Anderson
2007-06-25
1
-111
/
+86
*
Fix a silly mistake that was causing failures.
Owen Anderson
2007-06-24
1
-2
/
+2
*
Rework topo_sort so eliminate some behavior that scaled terribly. This reduc...
Owen Anderson
2007-06-22
1
-57
/
+40
*
Perform fewer set insertions while calculating ANTIC_IN. This reduces the am...
Owen Anderson
2007-06-22
1
-40
/
+31
*
Remove some code that I was using for collecting performance information that...
Owen Anderson
2007-06-22
1
-18
/
+18
*
Avoid excessive calls to find_leader when calculating AVAIL_OUT. This reduce...
Owen Anderson
2007-06-22
1
-30
/
+76
*
Reserve space in vectors before topologically sorting into them. This improv...
Owen Anderson
2007-06-22
1
-0
/
+2
*
Make a bunch of optimizations for compile time to GVNPRE, including smarter s...
Owen Anderson
2007-06-22
1
-17
/
+41
*
Change lots of sets from std::set to SmallPtrSet. This reduces the time requ...
Owen Anderson
2007-06-21
1
-92
/
+99
*
Eliminate a redundant check. This speeds up optimization of 253.perlbmk from...
Owen Anderson
2007-06-21
1
-7
/
+3
*
Comment-ize the functions in GVNPRE.
Owen Anderson
2007-06-21
1
-76
/
+108
*
Split runOnFunction into many smaller functions. This make it easier to get ...
Owen Anderson
2007-06-20
1
-279
/
+329
[next]