Substantially improve the DSA code by removing 'forwarding' nodes from
[oota-llvm.git] / lib / Transforms /
2004-02-05 Chris LattnerFix another dominator update bug. These bugs keep...
2004-02-05 Chris LattnerFix bug updating dominators
2004-02-05 Chris LattnerAdd debug output
2004-02-05 Chris LattnerFix PR223: Loopsimplify incorrectly updates dominator...
2004-02-04 Chris LattnerMinor speedup, don't query ValueMap each time through...
2004-02-04 Chris LattnerTwo changes:
2004-02-04 Chris LattnerOptimize the case where we are inlining a function...
2004-02-04 Chris LattnerAdjust to the new BasicBlock ctor, which requires a...
2004-02-04 Chris LattnerRemove unneeded code now that splitBasicBlock does...
2004-02-04 Chris LattnerMore refactoring. Move alloca instructions and handle...
2004-02-04 Chris LattnerMove the cloning of the function body much earlier...
2004-02-04 Chris LattnerGive CloneBasicBlock an optional function argument...
2004-02-03 Chris LattnerBunch up all locally used allocas by the block they...
2004-02-03 Chris LattnerHandle extremely trivial cases extremely efficiently...
2004-02-02 Chris LattnerDisable (x - (y - z)) => (x + (z - y)) optimization...
2004-02-02 Chris LattnerUpdate comment
2004-02-02 Brian GaekeMake deadarghaX0r warning louder.
2004-02-01 Chris LattnerDisable tail duplication in any "hard" cases, where...
2004-02-01 Chris LattnerFix the count of the number of instructions removed
2004-01-28 Misha BrukmanHyphenate `target-dependent'
2004-01-14 Chris LattnerFix InstCombine/2004-01-13-InstCombineInvokePHI.ll...
2004-01-12 Chris LattnerClean up #includes
2004-01-12 Chris LattnerFix bug in previous checkin
2004-01-12 Chris LattnerEliminate use of ConstantHandling and ConstantExpr...
2004-01-12 Chris LattnerAdd header file I accidentally removed in teh shuffle
2004-01-12 Chris LattnerRemove use of the ConstantHandling interfaces
2004-01-12 Chris LattnerRemove use of ConstantExpr::getShift
2004-01-12 Chris LattnerDon't use ConstantExpr::getShift anymore
2004-01-12 Chris LattnerRemove use of ConstantHandling
2004-01-12 Chris LattnerRemove unneeded #include
2004-01-12 Chris LattnerMove llvm::ConstantFoldInstruction from VMCore to here...
2004-01-12 Chris LattnerRemove uses of ConstantHandling itf
2004-01-12 Chris LattnerUse constantexprs for casts. Eliminate use of the...
2004-01-12 Chris LattnerFix fairly severe bug in my last checking where we...
2004-01-12 Chris Lattner* Implement minor performance optimization for the...
2004-01-12 Chris LattnerDo not hack on volatile loads. I'm not sure what the...
2004-01-12 Chris LattnerImplement SCCP/phitest.ll
2004-01-12 Chris LattnerImplement Transforms/ScalarRepl/phinodepromote.ll,...
2004-01-10 Chris LattnerUpdate obsolete comments
2004-01-09 Chris LattnerFinegrainify namespacification
2004-01-09 Chris LattnerRemove dependence on structure index type. s/MT/FT
2004-01-09 Chris LattnerFinegrainify namespacification
2004-01-09 Chris LattnerFinegrainify namespacification
2004-01-09 Chris LattnerInching towards fixing PR82
2004-01-08 Chris LattnerImprove encapsulation in the Loop and LoopInfo classes...
2003-12-28 Chris LattnerMerging constants can cause further room for improvemen...
2003-12-23 Chris Lattnerrename ClassifyExpression -> ClassifyExpr
2003-12-23 Chris LattnerMore minor non-functional changes. This now computes...
2003-12-23 Chris LattnerRemove extraneous #include
2003-12-22 Chris LattnerFix memory corruption bug PR193
2003-12-22 Chris LattnerDon't mind me, I'm just refactoring away. This patch...
2003-12-22 Chris LattnerImplement IndVarsSimplify/pointer-indvars.ll, transform...
2003-12-22 Chris LattnerFix PR194
2003-12-19 Chris LattnerFix ADCE/2003-12-19-MergeReturn.llx
2003-12-19 Chris LattnerRemove the wierd "Operands" loop, by traversing basicbl...
2003-12-19 Chris LattnerImplement LICM/sink_multiple.ll, by sinking all possibl...
2003-12-19 Chris LattnerGeneralize a special case to fix PR187
2003-12-19 Chris LattnerFactor code out into the Utils library
2003-12-19 Chris LattnerAdd new function
2003-12-18 John CriswellReverted back to previous revision - this was previousl...
2003-12-18 John CriswellMerged in RELEASE_11.
2003-12-18 Chris LattnerWhen we delete instructions from the loop, make sure...
2003-12-15 Chris LattnerFix for PR185 & IndVarsSimplify/2003-12-15-Crash.llx
2003-12-14 Chris LattnerRefactor code just a little bit, allowing us to impleme...
2003-12-14 Chris LattnerDo not promote volatile alias sets into registers
2003-12-11 Chris LattnerFix LICM/2003-12-11-SinkingToPHI.ll, and quite possibly...
2003-12-11 Chris LattnerverifyFunction depends on dominator info, which levelra...
2003-12-10 Chris LattnerFix bug: LICM/sink_multiple_exits.ll
2003-12-10 Chris LattnerDon't allow dead instructions to stop sinking early.
2003-12-10 Chris LattnerFix bug: IndVarsSimplify/2003-12-10-RemoveInstrCrash.llx
2003-12-10 Chris LattnerFinegrainify namespacification
2003-12-10 Chris LattnerFinegrainify namespacification
2003-12-10 Chris LattnerFinegrainify namespacification
2003-12-10 Chris LattnerSimplify code
2003-12-10 Chris LattnerAvoid performing two identical lookups when one will...
2003-12-10 Chris LattnerMake LICM itself a bit more efficient, and make the...
2003-12-10 Chris LattnerImplement instruction sinking out of loops. This still...
2003-12-09 Chris LattnerDo not insert one entry PHI nodes in split exit blocks!
2003-12-09 Chris LattnerRefactor code a little bit, eliminating the gratuitous...
2003-12-09 Chris LattnerFine grainify namespacification
2003-12-08 Chris LattnerImplement: TailCallElim/accum_recursion_constant_arg.ll
2003-12-08 Chris LattnerImplement: test/Regression/Transforms/TailCallElim...
2003-12-08 Chris LattnerCleanup and restructure the code to make it easier...
2003-12-07 Chris LattnerImplement RaiseAllocations/FreeCastConstantExpr.ll
2003-12-07 Chris Lattner* Finegrainify namespacification
2003-12-02 Chris LattnerFinegrainify namespacification
2003-11-29 Chris LattnerFix test: Transforms/LevelRaise/2003-11-28-IllegalTypeC...
2003-11-25 Chris LattnerDo not use index type to determine what it is indexing...
2003-11-22 Chris LattnerDelete dead line
2003-11-22 Chris LattnerFix bug: Transforms/PruneEH/2003-11-21-PHIUpdate.llx
2003-11-22 Chris LattnerDo not crash when deleing a region with a dead invoke...
2003-11-22 Chris LattnerFinegrainify namespacification
2003-11-21 Chris LattnerConsidering that CI is not even IN SCOPE here, I wooda...
2003-11-21 Chris LattnerFinegrainify namespacification
2003-11-21 Chris LattnerGet rid of using decls, finegrainify namespacification
2003-11-21 Chris Lattner* Finegrainify namespacification
2003-11-21 Chris LattnerFinegrainify namespacification
2003-11-21 Chris LattnerMinor cleanups and simplifications
2003-11-20 Chris Lattner* Finegrainify namespacification
2003-11-20 Chris LattnerStart using the nicer terminator auto-insertion API
next