Adjust to changes in getRegForInlineAsmConstraint prototype
[oota-llvm.git] / lib / Transforms /
2006-02-18 Chris Lattnerimproved support for branch folding, still not enabled.
2006-02-18 Jeff CohenFix bugs identified by VC++.
2006-02-18 Chris LattnerImplement deletion of dead blocks, currently disabled.
2006-02-18 Chris Lattnera previous patch completely disabled trivial unswitchin...
2006-02-18 Chris Lattnerinitial trivial support for folding branches that have...
2006-02-18 Chris LattnerWhen unswitching a loop, make sure to update loop info...
2006-02-18 Chris LattnerFix Transforms/SimplifyCFG/2006-02-17-InfiniteUnroll.ll
2006-02-17 Chris LattnerFix loops where the header has an exit, fixing a loop...
2006-02-17 Chris Lattnerstart of some new simplification code, not thoroughly...
2006-02-16 Nate BegemanRework the SelectionDAG-based implementations of Simpli...
2006-02-16 Chris LattnerChange SplitBlock to increment a BasicBlock::iterator...
2006-02-16 Jeff CohenFix VC++ warning.
2006-02-16 Chris Lattnerfix a bug where we unswitched the wrong way
2006-02-15 Chris LattnerImplement trivial unswitching for switch stmts. This...
2006-02-15 Chris Lattnermake "trivial" unswitching significantly more general...
2006-02-15 Andrew Lenharthfix a bunch of alpha regressions. see bug 709
2006-02-15 Chris LattnerChecking the wrong value. This caused us to emit silly...
2006-02-15 Chris Lattnermore refactoring, no functionality change.
2006-02-15 Chris Lattnerpull some code out into a function
2006-02-14 Chris LattnerCanonicalize inner loops before outer loops. Inner...
2006-02-14 Chris LattnerWhen splitting exit edges to canonicalize loops, make...
2006-02-14 Chris LattnerUse statistics to keep track of what flavors of loops...
2006-02-13 Chris LattnerImplement Instcombine/and.ll:test34
2006-02-13 Chris LattnerIf any of the sign extended bits are demanded, the...
2006-02-13 Chris LattnerBe careful not to request or look at bits shifted in...
2006-02-12 Chris Lattnerremove some more dead special case code
2006-02-12 Chris LattnerEliminate special case hacks that are superceded by...
2006-02-12 Chris LattnerThree changes:
2006-02-12 Chris LattnerRevert my last patch. It too breaks stuff
2006-02-11 Chris LattnerFix for my previously reverted patch
2006-02-11 Chris LattnerPort the recent innovations in ComputeMaskedBits to...
2006-02-11 Chris Lattnerrevert my previous change, it exposed other problems.
2006-02-11 Chris LattnerMake this check stricter. Disallow loop exit blocks...
2006-02-11 Chris Lattnerremove dead expr
2006-02-11 Chris Lattnerimplement unswitching of loops with switch stmts and...
2006-02-10 Chris LattnerUpdate PHI nodes in successors of exit blocks.
2006-02-10 Chris LattnerReform the unswitching code in terms of edge splitting...
2006-02-10 Chris LattnerFix a case where UnswitchTrivialCondition broke critica...
2006-02-10 Chris Lattneradd some notes, move some code around. Implement unswi...
2006-02-10 Chris LattnerMove code around to be more logical, no functionality...
2006-02-10 Chris LattnerWhen unswitching a trivial loop, do admit we are doing...
2006-02-10 Chris LattnerImplement unconditional unswitching of 'trivial' loops...
2006-02-09 Chris LattnerSimplify control flow a bit, note that unswitch preserv...
2006-02-09 Chris LattnerMake the threshold a parameter
2006-02-09 Chris LattnerSimplify the loop-unswitch pass, by not even trying...
2006-02-09 Chris LattnerFix 80-column violations
2006-02-09 Chris LattnerEnhance MVIZ in three ways:
2006-02-08 Chris LattnerSimplify some code, reducing calls to MaskedValueIsZero...
2006-02-08 Chris LattnerUse EraseInstFromFunction in a few cases to put the...
2006-02-08 Chris LattnerImplement some more interesting select sccp cases....
2006-02-08 Chris LattnerFix a problem in my patch yesterday, causing a miscompi...
2006-02-07 Chris LattnerFix Transforms/InstCombine/2006-02-07-SextZextCrash.ll
2006-02-07 Chris LattnerGeneralize MaskedValueIsZero into a ComputeMaskedNonZer...
2006-02-07 Chris LattnerMake MaskedValueIsZero take a uint64_t instead of a...
2006-02-07 Chris LattnerUse Type::getIntegralTypeMask() to simplify some code
2006-02-07 Chris LattnerImplement the beginnings of a facility for simplifying...
2006-02-05 Chris LattnerTurn A % (C << N), where C is 2^k, into A & ((C <<...
2006-02-04 Chris LattnerUse SCEVExpander::InsertCastOfTo instead of our own...
2006-02-04 Chris LattnerFix two significant bugs in LSR:
2006-01-26 Jeff CohenImprove compatibility with VC2005, patch by Morten...
2006-01-26 Chris Lattnerteach the cloner to handle inline asms
2006-01-24 Chris LattnerFix Regression/Transforms/ScalarRepl/2006-01-24-Illegal...
2006-01-24 Chris Lattnerrename method
2006-01-23 Chris LattnerWhen cloning a module, clone the inline asm.
2006-01-23 Chris Lattneradd a bunch more optimizations for unary double math...
2006-01-23 Chris LattnerRefactor/genericize this, no functionality change
2006-01-22 Chris LattnerMake iostream #inclusion explicit
2006-01-22 Chris LattnerMake this more efficient in the following ways:
2006-01-22 Chris LattnerAdd explicit #includes of <iostream>
2006-01-22 Chris LattnerSeveral non-functionality changing changes:
2006-01-19 Robert BocchinoConstantFoldLoadThroughGEPConstantExpr wasn't handling...
2006-01-19 Reid SpencerFor PR696:
2006-01-19 Chris LattnerImplement casts.ll:test26: a cast from float -> double...
2006-01-19 Chris LattnerIf not internalizing, don't mark llvm.global[cd]tors...
2006-01-19 Chris LattnerDon't internalize llvm.global[cd]tor unless there are...
2006-01-18 Chris LattnerMake sure that cloning a module clones its target tripl...
2006-01-17 Robert BocchinoConstant folding support for the insertelement operation.
2006-01-17 Robert BocchinoLowerpacked and SCCP support for the insertelement...
2006-01-17 Chris LattnerClean up the FFS optimization code, and make it correct...
2006-01-16 Reid SpencerFor PR411:
2006-01-16 Chris Lattnerfix a crash due to missing parens
2006-01-16 Chris LattnerThis pass has never worked correctly. Remove.
2006-01-14 Chris LattnerLet the inliner update the callgraph to reflect the...
2006-01-14 Chris LattnerTeach the inliner to update the CallGraph itself, and...
2006-01-14 Chris LattnerFunctionPass's cannot do IPO things.
2006-01-14 Nate BegemanAdd bswap intrinsics as documented in the Language...
2006-01-13 Robert BocchinoAdded instcombine support for extractelement.
2006-01-13 Chris Lattnerit is ok to dce stacksave.
2006-01-13 Chris LattnerDo a simple instcombine xforms to delete llvm.stackrest...
2006-01-13 Chris LattnerSimplify this a tiny bit by using the new IntrinsicInst...
2006-01-13 Chris LattnerPermit inlining functions that contain dynamic allocati...
2006-01-13 Chris LattnerIf inlining a call to a function that contains dynamic...
2006-01-13 Chris LattnerUse ClonedCodeInfo to avoid another walk over the inlin...
2006-01-13 Chris LattnerUse the ClonedCodeInfo object to avoid scans of the...
2006-01-13 Chris LattnerRefactor a bunch of invoke handling stuff out into...
2006-01-13 Chris LattnerAllow the code cloning interfaces to capture some impor...
2006-01-13 Chris LattnerFix a bug I noticed by inspection: if the first instruc...
2006-01-13 Chris LattnerFix 80 column violations
2006-01-11 Chris LattnerPreserve and update ETForest. Patch by Daniel Berlin
2006-01-11 Chris LattnerSwitch these to using ETForest instead of DominatorSet...
next