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
/
Transforms
/
Scalar
/
GCSE.cpp
Age
Commit message (
Expand
)
Author
2005-04-21
Remove trailing whitespace
Misha Brukman
2005-03-15
This mega patch converts us from using Function::a{iterator|begin|end} to
Chris Lattner
2004-12-12
Simplify code and do not invalidate iterators.
Chris Lattner
2004-09-01
Changes For Bug 352
Reid Spencer
2004-07-18
Expand the scope to include global values because they are now constants
Reid Spencer
2004-07-18
bug 122:
Reid Spencer
2004-05-23
Add support for replacement of formal arguments with simpler expressions.
Chris Lattner
2004-04-12
Add support for removing invoke instructions
Chris Lattner
2004-04-10
Update the value numbering interface.
Chris Lattner
2004-04-10
Rewrite the GCSE pass to be *substantially* simpler, a bit more efficient,
Chris Lattner
2004-03-17
Be more accurate
Chris Lattner
2004-03-15
Add counters for the number of calls elimianted
Chris Lattner
2004-02-05
Add debug output
Chris Lattner
2004-01-09
Finegrainify namespacification
Chris Lattner
2003-11-11
Put all LLVM code into the llvm namespace, as per bug 109.
Brian Gaeke
2003-11-07
Declare FunctionPasses as such so that they can be used in FunctionPassManager.
Misha Brukman
2003-10-20
Added LLVM project notice to the top of every C++ source file.
John Criswell
2003-10-10
Fix spelling.
Misha Brukman
2003-06-17
Don't corrupt memory when removing an instruction from the program, but
Chris Lattner
2003-02-01
Fix typo
Chris Lattner
2002-12-07
Remove dead code
Chris Lattner
2002-10-21
- Rename AnalysisUsage::preservesAll to getPreservesAll & preservesCFG to
Chris Lattner
2002-10-01
Updates to work with recent Statistic's changes:
Chris Lattner
2002-08-30
Really minor cleanups
Chris Lattner
2002-08-30
- GCSE now no longer counts instructions not removed (due to no common
Chris Lattner
2002-08-22
Load & StoreInst no longer derive from MemAccessInst, so we don't have
Chris Lattner
2002-08-22
Remove long obsolete comments
Chris Lattner
2002-08-22
Convert GCSE pass to use new alias analysis infrastructure
Chris Lattner
2002-08-14
Fix bug introduced in last checkin due to CastInst not being visible
Chris Lattner
2002-08-14
Remove support for NOT instruction
Chris Lattner
2002-08-08
- Cleaned up the interface to AnalysisUsage to take analysis class names
Chris Lattner
2002-08-02
Fix bug: test/Regression/Transforms/GCSE/2002-05-21-NoSharedDominator.ll
Chris Lattner
2002-07-26
* Add support for different "PassType's"
Chris Lattner
2002-07-23
*** empty log message ***
Chris Lattner
2002-06-25
changes to make it compatible with 64bit gcc
Anand Shukla
2002-06-25
MEGAPATCH checkin.
Chris Lattner
2002-05-14
* Fix bug: test/Regression/Transforms/GCSE/2002-05-14-OperandSwap.ll
Chris Lattner
2002-05-14
Implement elimination of loads
Chris Lattner
2002-05-10
Add support for printing out statistics information when -stats is added to
Chris Lattner
2002-05-07
Merge all individual .h files into a single Scalar.h file
Chris Lattner
2002-04-29
Eliminate duplicate or unneccesary #include's
Chris Lattner
2002-04-29
Remove broken assertion.
Chris Lattner
2002-04-29
Add new optional getPassName() virtual function that a Pass can override
Chris Lattner
2002-04-28
Tighten up the AnalysisUsage of lots of passes, primarily to correctly indica...
Chris Lattner
2002-04-28
Eliminate the cfg namespace, moving LoopInfo, Dominators, Interval* classes
Chris Lattner
2002-04-28
Initial checkin of simple&fast SSA based GCSE algorithm
Chris Lattner