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
/
Reassociate.cpp
Age
Commit message (
Expand
)
Author
2005-07-27
Eliminate all remaining tabs and trailing spaces.
Jeff Cohen
2005-05-10
Fix Reassociate/shifttest.ll
Chris Lattner
2005-05-08
Implement Reassociate/mul-neg-add.ll
Chris Lattner
2005-05-08
Bail out earlier
Chris Lattner
2005-05-08
Teach reassociate that 0-X === X*-1
Chris Lattner
2005-05-08
Fix PR557 and basictest[34].ll.
Chris Lattner
2005-05-08
Add debugging information
Chris Lattner
2005-05-08
eliminate gotos
Chris Lattner
2005-05-08
Improve reassociation handling of inverses, implementing inverses.ll.
Chris Lattner
2005-05-08
Refactor some code
Chris Lattner
2005-05-08
Handle some simple cases where we can see that values get annihilated.
Chris Lattner
2005-05-07
Rewrite the guts of the reassociate pass to be more efficient and logical. I...
Chris Lattner
2005-05-07
Convert shifts to muls to assist reassociation. This implements
Chris Lattner
2005-05-07
Simplify the code and rearrange it. No major functionality changes here.
Chris Lattner
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-09-01
Changes For Bug 352
Reid Spencer
2004-07-29
Fix #includes of i*.h => Instructions.h as per PR403.
Misha Brukman
2004-07-15
Fixes working towards PR341
Chris Lattner
2004-07-01
Make this pass use a more specific debug message than "Processing:".
Brian Gaeke
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-19
Change the Opcode enum for PHI nodes from "Instruction::PHINode" to "Instruct...
Chris Lattner
2003-10-15
Decrease usage of use_size()
Chris Lattner
2003-09-22
Credits now go into the top-level CREDITS.TXT
Misha Brukman
2003-08-18
Spell `necessary' correctly.
Misha Brukman
2003-08-13
Assign arguments different ranks so they get grouped together
Chris Lattner
2003-08-12
Fix bug: Reassociate/2003-08-12-InfiniteLoop.ll
Chris Lattner
2003-08-12
Assign finer grained ranks, make sure to reassociate top-level after reassoci...
Chris Lattner
2003-08-01
DEBUG got moved to Support/Debug.h
Chris Lattner
2003-05-02
Fix spelling
Chris Lattner
2003-04-23
Remove unnecesary &*'s
Chris Lattner
2003-02-24
Rename Instruction::hasSideEffects() -> mayWriteToMemory()
Chris Lattner
2002-12-15
Fix a huge performance problem in reassociate by introducing a
Chris Lattner
2002-12-15
Minor changes:
Chris Lattner
2002-10-31
Fixes to the reassociate pass to make it respect dominance properties
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-09-10
Simplify code (somtimes dramatically), by using the new "auto-insert" feature
Chris Lattner
2002-07-26
* Add support for different "PassType's"
Chris Lattner
2002-07-25
*** empty log message ***
Chris Lattner
2002-07-23
*** empty log message ***
Chris Lattner
2002-06-25
MEGAPATCH checkin.
Chris Lattner
2002-05-22
Use the new DEBUG(x) macro to allow debugging code to be enabled on the comma...
Chris Lattner
2002-05-16
* Make debug output conditional on #define
Chris Lattner
2002-05-10
Add support for printing out statistics information when -stats is added to
Chris Lattner
2002-05-09
Give the longer name to the instruction that will probably be eliminated later
Chris Lattner
2002-05-08
Initial checkin of expression reassociation pass
Chris Lattner