uhn zap cvs
[oota-llvm.git] / lib / Transforms / Scalar /
2007-04-28 Chris Lattneruhn zap cvs
2007-04-28 Chris LattnerImplement PR1345 and Transforms/InstCombine/bitcast...
2007-04-27 Chris Lattnerrefactor some code relating to pointer cast xforms...
2007-04-26 Zhou ShengUsing APInt more efficiently.
2007-04-25 Devang PatelMem2Reg does not need TargetData.
2007-04-25 Devang PatelRemove unused function argument.
2007-04-25 Chris LattnerIf an alloca only has two types of uses: 1) reads 2...
2007-04-25 Chris Lattnerrefactor the SROA code out into its own method, no...
2007-04-25 Owen AndersonUndo my previous changes. Since my approach to this...
2007-04-25 Devang PatelFix
2007-04-24 Owen AndersonRollback some changes that adversely affected performan...
2007-04-23 Devang PatelFix
2007-04-21 Owen AndersonMake PredicateSimplifier not use DominatorTree.
2007-04-21 Owen AndersonFix a comment.
2007-04-20 Owen AndersonMove more passes to using ETForest instead of Dominator...
2007-04-19 Zhou ShengMake use of ConstantInt::isZero instead of ConstantInt...
2007-04-19 Zhou ShengMake the operations of APInt variables more efficient.
2007-04-18 Owen AndersonRevert changes that caused breakage.
2007-04-18 Owen AndersonSwitch more uses of DominatorTree over to ETForest.
2007-04-18 Owen AndersonUse ETForest instead of DominatorTree.
2007-04-18 Owen AndersonUse ETForest instead of DominatorTree.
2007-04-17 Dan GohmanSpell doFinalization right, so that it is a proper...
2007-04-16 Devang PatelFix
2007-04-16 Anton KorobeynikovRemoved tabs everywhere except autogenerated & external...
2007-04-15 Owen AndersonRemove ImmediateDominator analysis. The same informati...
2007-04-15 Chris LattnerExtend store merging to support the 'if/then' version...
2007-04-15 Chris Lattnerrefactor some code, no functionality change.
2007-04-14 Chris Lattnerfix long lines
2007-04-14 Chris LattnerImplement Transforms/InstCombine/vec_extract_elt.ll...
2007-04-14 Chris LattnerImplement InstCombine/vec_demanded_elts.ll:test2. ...
2007-04-14 Chris LattnerImplement PR1201 and test/Transforms/InstCombine/malloc...
2007-04-14 Chris Lattneruse an accessor to simplify code.
2007-04-13 Chris LattnerNow that codegen prepare isn't defeating me, I can...
2007-04-13 Chris LattnerCompletely rewrite addressing-mode related sinking...
2007-04-11 Chris LattnerFix Transforms/ScalarRepl/union-pointer.ll
2007-04-11 Chris LattnerTurn stuff like:
2007-04-11 Chris LattnerSimplify some comparisons to arithmetic, this implements:
2007-04-11 Chris Lattnercanonicalize (x <u 2147483648) -> (x >s -1) and (x...
2007-04-11 Chris Lattnerfix a miscompilation of:
2007-04-11 Chris Lattnerfix a regression introduced by my last patch.
2007-04-11 Chris LattnerSimplify SROA conversion to integer in some ways, make...
2007-04-09 Chris LattnerStrengthen the boundary conditions of this fold, implem...
2007-04-09 Chris Lattnereliminate the last uses of some TLI methods.
2007-04-09 Chris Lattnerswitch LSR to use isLegalAddressingMode instead of...
2007-04-09 Devang PatelCheck _all_ PHINodes.
2007-04-09 Devang PatelInsert new pre-header before new header. Original pre...
2007-04-09 Devang PatelPreserve canonical loop form.
2007-04-09 Devang PatelDo not create new pre-header. Reuse original pre-header.
2007-04-09 Devang PatelSimpler for() loops.
2007-04-09 Devang PatelFix future bug. Of course, Chris spotted this.
2007-04-09 Devang PatelMore cosmetic changes.
2007-04-09 Devang PatelOnly cosmetic changes. Zero functionality Change.
2007-04-09 Chris LattnerFix PR1304 and Transforms/InstCombine/2007-04-08-Single...
2007-04-09 Chris LattnerEliminate useless insertelement instructions. This...
2007-04-08 Chris Lattnerreenable this xform, whoops :)
2007-04-08 Chris LattnerFix regression on Instcombine/apint-or2.ll
2007-04-08 Chris LattnerGeneralize the code that handles (A&B)|(A&C) to work...
2007-04-07 Nick LewyckyAdd support for cast instructions.
2007-04-07 Owen AndersonCompletely purge DomSet. This is the (hopefully) final...
2007-04-07 Nick LewyckySupport NE inequality in ValueRanges.
2007-04-07 Nick LewyckyCleanup. Refactor out the applying of value ranges...
2007-04-07 Nick LewyckyUse TargetData to find the size of a type.
2007-04-07 Nick LewyckyStrengthen icmp snuggling by doing 'compare-or-equal...
2007-04-07 Devang PatelAdd loop rotation pass.
2007-04-06 Chris Lattnerimplement Transforms/InstCombine/malloc2.ll and PR1313
2007-04-05 Chris LattnerUse a worklist-driven algorithm instead of a recursive...
2007-04-04 Dale JohannesenPrevent transformConstExprCastCall from generating...
2007-04-04 Jeff CohenFix 2007-04-04-BadFoldBitcastIntoMalloc.ll
2007-04-04 Duncan SandsFix comment.
2007-04-03 Chris LattnerFix a bug I introduced with my patch yesterday which...
2007-04-03 Chris Lattnerreinstate the previous two patches, with a bugfix :)
2007-04-03 Evan ChengReverting back to 1.723. The last two commits broke...
2007-04-03 Chris Lattnersplit some code out into a helper function
2007-04-03 Chris LattnerSplit a whole ton of code out of visitICmpInst into...
2007-04-03 Chris LattnerFix PR1253 and xor2.ll:test[01]
2007-04-02 Chris Lattnerallow -1 strides to reuse "1" strides.
2007-04-02 Zhou Sheng1. Make use of APInt operation instead of using Constan...
2007-04-02 Zhou ShengUse uint32_t for bitwidth instead of unsigned.
2007-04-02 Chris LattnerPass the type of the store access, not the type of...
2007-04-02 Chris LattnerWrap long line
2007-04-02 Chris Lattneruse more obvious function name.
2007-04-02 Chris Lattnersimplify (x+c)^signbit as (x+c+signbit), pointed out...
2007-04-02 Chris LattnerVarious passes before isel split edges and do other...
2007-04-01 Chris Lattnerprint the type of an inserted IV in -debug mode.
2007-04-01 Chris Lattnersimplify this code, make it work for ap ints
2007-04-01 Zhou ShengAvoid unnecessary APInt construction.
2007-04-01 Reid SpencerFor PR1297:
2007-04-01 Chris LattnerFix InstCombine/2007-03-31-InfiniteLoop.ll
2007-03-31 Chris LattnerSplit the sdisel code munging stuff out into its own...
2007-03-31 Zhou ShengDelete dead code.
2007-03-31 Zhou ShengUse APInt operators to calculate the carry bits, remove...
2007-03-30 Zhou ShengMake sure the use of ConstantInt::getZExtValue() for...
2007-03-30 Zhou Sheng1. Make sure the use of ConstantInt::getZExtValue(...
2007-03-30 Zhou ShengUse APInt operation instead of ConstantExpr::getXX.
2007-03-29 Zhou Sheng1. Make more use of APInt::getHighBitsSet/getLowBitsSet.
2007-03-29 Zhou ShengClean up some codes in InstCombiner::SimplifyDemandedBi...
2007-03-29 Zhou ShengClean up codes in InstCombiner::SimplifyDemandedBits():
2007-03-29 Zhou Sheng1. Make the APInt variable do the binary operation...
2007-03-28 Zhou ShengAvoid unnecessary APInt construction.
2007-03-28 Zhou Sheng1. Make more use of getLowBitsSet/getHighBitsSet.
next