Reenable these options because they break testing on sparc without them.
[oota-llvm.git] / lib / Transforms /
2002-09-18 Anand Shuklasplit retracing into a separate file
2002-09-18 Misha BrukmanRemoved unnecessary #includes.
2002-09-18 Misha BrukmanFixed typo.
2002-09-17 Chris LattnerThere is a #define in some header that conflicts with...
2002-09-17 Chris LattnerFix bug: test/Regression/Transforms/InstCombine/2002...
2002-09-16 Chris LattnerFix FunctionInlining pass assertion failure:
2002-09-16 Chris LattnerFix: test/Regression/LLC/badidx.c problem
2002-09-16 Vikram S. AdveExtract most of the transformation into an externally...
2002-09-16 Anand ShuklaIncorporated changes in alloca and getElementPointer...
2002-09-16 Anand ShuklaIncorporated changes in alloca instruction
2002-09-14 Chris LattnerFix bug I introduced
2002-09-14 Misha BrukmanFunction.h is unnecessary when Module.h is included.
2002-09-14 Misha BrukmanFollowing Chris's advice, I'm pruning some unnecessary...
2002-09-13 Chris LattnerChange the MallocInst & AllocaInst ctors to take the...
2002-09-13 Chris LattnerChange the MallocInst & AllocaInst ctors to take the...
2002-09-12 Chris LattnerFix bug I introduced with one of my previous changes.
2002-09-11 Chris Lattner- Change getelementptr instruction to use long indexes...
2002-09-11 Chris Lattner - Change getelementptr instruction to use long indexe...
2002-09-10 Chris LattnerFix the last of the silly bugs I just introduced. :(
2002-09-10 Chris LattnerFix bugs in previous checkins
2002-09-10 Chris LattnerFix bug in previous checkin
2002-09-10 Chris LattnerAdd cannonicalization of shl X, 1 -> add X, X
2002-09-10 Chris LattnerFix minor problems in previous checkin
2002-09-10 Chris LattnerFix minor problems in previous checkin
2002-09-10 Chris LattnerClean up code due to auto-insert constructors
2002-09-10 Chris LattnerClean up code due to auto-insert constructors
2002-09-10 Chris LattnerClean up code
2002-09-10 Chris LattnerFix bug: test/Regression/Transforms/LevelRaise/2002...
2002-09-10 Chris LattnerSimplify code (somtimes dramatically), by using the...
2002-09-10 Chris LattnerSimplify code (somtimes dramatically), by using the...
2002-09-10 Chris Lattner* Clean up code a little bit
2002-09-10 Chris LattnerHack unneccesary now that shifts of pointers are no...
2002-09-09 Chris LattnerDisallow creation of pointer typed shift instructions
2002-09-08 Chris LattnerFactor silly code duplication out
2002-09-08 Chris LattnerFix Bug: test/Regression/Transforms/InstCombine/2002...
2002-09-08 Chris LattnerMinor simplification
2002-09-06 Chris LattnerInitial checkin of Correlated Expression Elimination...
2002-09-06 Chris LattnerFix file header to be accurate, instead of something...
2002-09-06 Chris LattnerFix bug with critical edge splitting code where it...
2002-09-06 Chris LattnerCheck in the implementation of critical edge detection...
2002-09-03 Chris Lattner - Renamed Type::isIntegral() to Type::isInteger()
2002-09-03 Chris Lattner- Renamed Type::isIntegral() to Type::isInteger()
2002-09-02 Chris LattnerAdd constant prop & DIE to InstCombine, so it cleans...
2002-08-30 Chris Lattner - Implement SCCP of getelementptr instructions
2002-08-30 Chris Lattner - Eliminate the last traces of the 'analysis' namespace
2002-08-30 Chris LattnerReally minor cleanups
2002-08-30 Chris Lattner - GCSE now no longer counts instructions not removed...
2002-08-23 Chris Lattner - instcombine demorgan's law: and (not A), (not B...
2002-08-22 Chris LattnerEliminated the MemAccessInst class, folding contents...
2002-08-22 Chris LattnerEliminated the MemAccessInst class, folding contents...
2002-08-22 Chris LattnerLoad & StoreInst no longer derive from MemAccessInst...
2002-08-22 Chris Lattner*** empty log message ***
2002-08-22 Chris LattnerAdd capability of using pointer analysis to LICM
2002-08-22 Chris LattnerRemove long obsolete comments
2002-08-22 Chris LattnerInstcombine PHI's of the form %PN = phi PN, X into...
2002-08-22 Chris LattnerConvert GCSE pass to use new alias analysis infrastructure
2002-08-22 Chris LattnerDo not generate load/store instructions with indexing.
2002-08-21 Chris Lattner - Split Dominators.h into Dominators.h & PostDominators.h
2002-08-21 Chris LattnerDo not generate loads/stores with indexing
2002-08-21 Chris LattnerRemove extraneous #includes
2002-08-21 Chris LattnerDo not create load/stores with indexes
2002-08-21 Chris LattnerRemove an optimization that isn't.
2002-08-21 Chris Lattner- Do not expose ::ID from any of the analyses anymore.
2002-08-20 Chris Lattnerfixed bug: test/Regression/Linker/2002-08-20-ConstantEx...
2002-08-20 Chris Lattner - instcombine (~(a < b)) into (a >= b)
2002-08-20 Chris Lattner - implemented instcombine of phi (X, X, X) -> X
2002-08-18 Chris Lattner - Made GlobalDCE worklist driven, making it more...
2002-08-17 Chris LattnerPromote getelementptr instructions to constexprs if...
2002-08-15 Chris LattnerHandle more cases of cast-of-cast in more general forms.
2002-08-14 Chris LattnerImplement capability to fold this:
2002-08-14 Chris LattnerAvoid creating 'load X, 0' instead of just 'load X'
2002-08-14 Chris LattnerAvoid inserting an entry block unless we need it
2002-08-14 Chris LattnerRemove support for Not ConstantExpr. This simplifies...
2002-08-14 Chris LattnerFix bug introduced in last checkin due to CastInst...
2002-08-14 Chris LattnerRemove support for NOT instruction
2002-08-14 Chris LattnerRemove extra #includes
2002-08-14 Chris LattnerRemove support for unary operators
2002-08-14 Chris Lattner - Fix InstCombine pass to not generate or process...
2002-08-14 Chris LattnerRemove support for NOT instruction
2002-08-13 Chris Lattner- Rename ConstantGenericIntegral -> ConstantIntegral
2002-08-12 Chris Lattner* Factor a bunch of code by using ReplaceInstUsesWith
2002-08-09 Chris LattnerNew functionality for instcombine:
2002-08-08 Chris LattnerInitial checkin of the "Hello World" Pass.
2002-08-08 Chris Lattner- Cleaned up the interface to AnalysisUsage to take...
2002-08-08 Chris Lattner- Cleaned up the interface to AnalysisUsage to take...
2002-08-08 Chris LattnerRemove extraneous #includes
2002-08-03 Vikram S. AdveEliminate cast instructions: use only GEPs in decompose...
2002-08-02 Chris LattnerFix bug: test/Regression/Transforms/InstCombine/2002...
2002-08-02 Chris Lattner* Cleanups of instcombine
2002-08-02 Chris LattnerFix bug: test/Regression/Transforms/GCSE/2002-05-21...
2002-08-01 Chris LattnerRemove unneccesary #inlcude
2002-07-31 Chris LattnerImplement the other half of a feature advertised by...
2002-07-30 Chris Lattner* Indent class into anonymous namespace, filling up...
2002-07-30 Chris LattnerCleanup ConstantExpr handling:
2002-07-30 Chris LattnerRemove FIXME's that aren't really needed after all.
2002-07-30 Chris LattnerFix bug with last patch which would occur when a call...
2002-07-30 Chris Lattner* Make sure the resolved function call instructions...
2002-07-30 Chris Lattner* Fix bug: test/Regression/Transforms/ADCE/2002-07...
2002-07-29 Chris LattnerAdd code to ensure that no PHI nodes are left laying...
2002-07-29 Chris LattnerImplement a new RemoveSuccessor function
next