Don't do all the lowering stuff for 2-wide build_vector's. Also, minor optimization...
[oota-llvm.git] / lib / Transforms /
2006-04-20 Chris LattnerFix Transforms/ScalarRepl/2006-04-20-PromoteCrash.ll
2006-04-20 Andrew LenharthMake code match cvs commit message :)
2006-04-20 Andrew LenharthIf we can convert the return pointer type into an integ...
2006-04-17 Chris LattnerTurn x86 unaligned load/store intrinsics into aligned...
2006-04-16 Chris LattnerFix a bug in the 'shuffle(undef,x,mask) -> shuffle...
2006-04-16 Chris LattnerCanonicalize shuffle(undef,x,mask) -> shuffle(x, undef...
2006-04-15 Chris Lattnersignificant cleanups to code that uses insert/extractel...
2006-04-14 Chris LattnerTeach scalarrepl to promote unions of vectors and float...
2006-04-13 Andrew Lenharthlinear -> constant time
2006-04-12 Reid SpencerGet rid of a signed/unsigned compare warning.
2006-04-12 Chris LattnerTurn casts into getelementptr's when possible. This...
2006-04-10 Chris LattnerImplement vec_shuffle.ll:test3
2006-04-10 Chris LattnerImplement InstCombine/vec_shuffle.ll:test[12]
2006-04-10 Andrew LenharthAdd a simple pass to make sure that all (non-library...
2006-04-08 Chris LattnerAdd supprot for shufflevector
2006-04-07 Chris LattnerFix inlining of insert/extract element constantexprs
2006-04-06 Chris LattnerLower vperm(x,y, mask) -> shuffle(x,y,mask) if mask...
2006-04-02 Chris Lattnervector casts of casts are eliminable. Transform this:
2006-04-02 Chris LattnerAllow transforming this:
2006-04-02 Chris LattnerTurn altivec lvx/stvx intrinsics into loads and stores...
2006-04-02 Chris LattnerAdjust to change in Intrinsics.gen interface.
2006-04-01 Chris Lattneradd valuemapper support for inline asm
2006-04-01 Chris LattnerFix InstCombine/2006-04-01-InfLoop.ll
2006-04-01 Chris LattnerFold A^(B&A) -> (B&A)^A
2006-03-31 Chris LattnerIf we can look through vector operations to find the...
2006-03-31 Chris Lattnerextractelement(undef,x) -> undef
2006-03-30 Chris LattnerFix Transforms/InstCombine/2006-03-30-ExtractElement.ll
2006-03-27 Chris Lattnerteach the inliner to work with packed constants
2006-03-25 Chris LattnerDon't crash on packed logical ops
2006-03-24 Chris LattnerFix spello
2006-03-24 Chris Lattneradd the actual cost to the debug info
2006-03-23 Jim LaskeyStrip changes to llvm.dbg intrinsics.
2006-03-23 Jim LaskeyCan't combine anymore - we don't have a chain through...
2006-03-22 Chris Lattnersilence a bogus gcc warning
2006-03-19 Chris LattnerTeach cee to propagate through switch statements. ...
2006-03-18 Evan Cheng- Fixed a bogus if condition.
2006-03-18 Evan ChengSort StrideOrder so we can process the smallest strides...
2006-03-17 Evan ChengAllow users of iv / stride to be rewritten with express...
2006-03-16 Evan ChengFor each loop, keep track of all the IV expressions...
2006-03-15 Chris LattnerTeach the strip pass to strip type names in addition...
2006-03-14 Chris LattnerImplement a FIXME, recusively reassociating
2006-03-14 Chris Lattnerextract some code into a method, no functionality change
2006-03-14 Chris LattnerPromote shifts by a constant to multiplies so that...
2006-03-13 Evan ChengAdded target lowering hooks which LSR consults to make...
2006-03-13 Jim LaskeyHandle the removal of the debug chain.
2006-03-09 Chris Lattneruse autogenerated side-effect information
2006-03-09 Chris Lattnerfix a pasto
2006-03-08 Chris LattnerFix a miscompilation of 188.ammp with the new CFE....
2006-03-07 Jim LaskeySwitch to using a numeric id for anchors.
2006-03-07 Chris LattnerFix ConstantMerge/2006-03-07-DontMergeDiffSections...
2006-03-07 Chris LattnerTeach the alignment handling code to look through const...
2006-03-06 Chris LattnerTeach instcombine to increase the alignment of memset...
2006-03-05 Chris LattnerMake vector narrowing more effective, implementing
2006-03-04 Chris LattnerAdd factoring of multiplications, e.g. turning A*A...
2006-03-04 Chris LattnerCanonicalize (X+C1)*C2 -> X*C2+C1*C2
2006-03-03 Chris LattnerChange this to work with renamed intrinsics.
2006-03-03 Chris LattnerMake this work with renamed intrinsics.
2006-03-02 Chris LattnerGeneralize the REM folding code to handle another case...
2006-02-28 Chris LattnerFix a regression in a patch from a couple of days ago...
2006-02-28 Chris LattnerImplement rem.ll:test[7-9] and PR712
2006-02-28 Chris LattnerSimplify some code now that the RHS of a rem can't...
2006-02-28 Chris LattnerRearrange some code, fold "rem X, 0", implementing...
2006-02-27 Chris LattnerMerge two almost-identical pieces of code.
2006-02-27 Chris LattnerFold (A^B) == A -> B == 0
2006-02-26 Chris LattnerFold (X|C1)^C2 -> X^(C1|C2) when possible. This implements
2006-02-24 Chris LattnerFix a problem that Nate noticed that boils down to...
2006-02-22 Chris LattnerFix Regression/Transforms/LoopUnswitch/2006-02-22-Unswi...
2006-02-22 Chris LattnerAdd some comments, simplify some code, and fix a bug...
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.
next