First attempt at handling frame index elimination.
[oota-llvm.git] / lib / VMCore / ConstantFold.cpp
2004-04-05 Chris LattnerSupport getelementptr instructions which use uint's...
2004-03-12 Chris LattnerTeach the constant folder how to do select instructions
2004-03-08 Chris LattnerImplement test/Regression/Assembler/2004-03-07-Function...
2004-02-22 Chris LattnerGet all instruction definitions
2004-02-16 Chris LattnerMove the folding of gep null, 0, 0, 0 to a place where...
2004-02-01 Chris LattnerFix a crasher bug in my constant folding rewrite
2004-01-13 Chris LattnerImplement a bunch of symbolic constant folding opportun...
2004-01-12 Chris LattnerRearrange and comment code better. No functionality...
2004-01-12 Chris LattnerRename ConstantHandling.* -> ConstantFolding.*
2004-01-12 Chris LattnerRemove a whole bunch more ugliness. This is actually...
2004-01-12 Chris LattnerMove ConstantHandling.h into lib/VMCore and out of...
2004-01-12 Chris LattnerEliminate usage of the wierd overloaded operator consta...
2004-01-12 Chris LattnerMove llvm::ConstantFoldInstruction from here to Transfo...
2004-01-11 Chris LattnerImplement: Assembler/2004-01-11-getelementptrfolding.llx
2003-11-25 Chris LattnerRelax constrains on GEP type indexes
2003-11-17 Chris LattnerImplement == and != correctly. Before they would incor...
2003-11-17 Chris LattnerNo REALLY, get rid of ConstantPointer references
2003-11-17 Chris LattnerEliminate use of the ConstantPointer class
2003-11-17 Chris LattnerConstant folding shalt not be built on annotations
2003-11-11 Brian GaekePut all LLVM code into the llvm namespace, as per bug...
2003-10-20 John CriswellAdded LLVM project notice to the top of every C++ sourc...
2003-08-21 Chris LattnerImplement Assembler/2003-08-21-ConstantExprCast-Fold.llx
2003-08-20 Chris LattnerImplement testcase: Assembler/2003-08-20-ConstantExprGE...
2003-08-13 Chris LattnerImplement constant folding of casts from boolean consta...
2003-06-26 Chris LattnerImplement more aggressive folding of constant GEP instr...
2003-05-27 Chris LattnerFix constant folding to ALWAYS work.
2003-05-14 Chris LattnerRemove unnecessary casts
2003-05-14 Chris LattnerFix bug
2003-05-13 Chris LattnerImplement another getelementptr folding opportunity...
2003-05-12 Chris LattnerFix Bug: ConstProp/2003-05-12-DivideError.ll
2003-04-25 Chris Lattner** CORRECTLY, conservatively handle constant expressions
2003-04-17 Chris LattnerAllow constant folding of GEP instructions, even if...
2002-09-03 Chris LattnerImplement setcc for booleans. Fixes bug:
2002-08-14 Chris LattnerRemove support forNOT instruction
2002-07-30 Chris LattnerImplement constant propogation of logical (and, or...
2002-05-07 Chris LattnerImplement constant propogation of PHI instructions...
2002-05-06 Chris LattnerMove code out of header file
2002-05-06 Chris LattnerImplement constant propogation of shifts
2002-05-03 Chris LattnerImplement remainder
2002-05-03 Chris LattnerFix bug: test/Regression/Transforms/SCCP/2002-05-03...
2002-04-08 Chris LattnerConstantHandling moved into VMCore library
2002-04-07 Chris LattnerImplement constant propogation of multiply and divide...
2002-01-21 Chris LattnerMove stuff out of the Optimizations directories into...
2002-01-21 Chris LattnerPull stuff out of opt namespace
2001-12-03 Chris LattnerRename ConstPoolVal -> Constant
2001-11-01 Chris LattnerImplement constant propogation of null pointer values.
2001-10-13 Chris Lattnernot is a keyword in ansi C++, avoid it
2001-10-01 Chris LattnerAdd more support for new style casts
2001-09-10 Chris LattnerUse correct style casts
2001-09-09 Chris LattnerClean up ConstRules stuff to use annotations instead...
2001-09-07 Chris Lattner* Support global constants
2001-07-21 Chris LattnerAdd support for casts
2001-07-20 Chris LattnerAdd support for constant propogation of multiplies
2001-07-08 Chris LattnerNeg instruction removed. Cast instruction implemented.
2001-06-30 Chris LattnerOptimizations got their own header files
2001-06-06 Chris LattnerInitial revision