Mark re-materializable instructions.
[oota-llvm.git] / lib / Transforms /
2007-03-20 Dale Johannesendo not share old induction variables when this would...
2007-03-20 Jeff CohenFix some VC++ warnings.
2007-03-20 Devang PatelLoopSimplify::FindPHIToPartitionLoops()
2007-03-20 Zhou ShengSimplify isHighOnes().
2007-03-20 Dale Johannesenuse types of loads and stores, not address, in CheckFor...
2007-03-20 Reid SpencerMake isOneBitSet faster by using APInt::isPowerOf2...
2007-03-19 Reid SpencerAPIntify the isHighOnes utility function.
2007-03-19 Reid SpencerImplement isMaxValueMinusOne in terms of APInt instead...
2007-03-19 Reid SpencerImplement isMinValuePlusOne using facilities of APInt...
2007-03-19 Reid SpencerImplement isOneBitSet in terms of APInt::countPopulation.
2007-03-19 Reid Spencer1. Use APInt::getSignBit to reduce clutter (patch by...
2007-03-19 Reid SpencerRemove a redundant clause in an if statement.
2007-03-19 Chris Lattnerfix ScalarRepl/2007-03-19-CanonicalizeMemcpy.ll
2007-03-19 Chris Lattnerimplement the next chunk of SROA with memset/memcpy...
2007-03-18 Nick LewyckyClean up this code and fix subtract miscompile.
2007-03-18 Chris LattnerImplement InstCombine/and-xor-merge.ll:test[12].
2007-03-18 Nick LewyckyPropagate ValueRanges across equality.
2007-03-17 Anton KorobeynikovSilence warning
2007-03-16 Nick LewyckyAdd more comments and update to new asm syntax.
2007-03-14 Zhou ShengShiftAmt might equal to zero. Handle this situation.
2007-03-14 Zhou ShengEnable KnownZero/One.clear().
2007-03-13 Evan ChengCorrect type info for isLegalAddressImmediate() check.
2007-03-13 Chris Lattnerifdef out some dead code.
2007-03-13 Zhou ShengFor expression like
2007-03-13 Zhou ShengIn APInt version ComputeMaskedBits():
2007-03-12 Evan ChengUse new TargetLowering addressing modes hooks.
2007-03-12 Jeff CohenUnbreak VC++ build. Do not use identifiers starting...
2007-03-12 Reid SpencerAdd an APInt version of SimplifyDemandedBits.
2007-03-12 Reid SpencerAdd an APInt version of ShrinkDemandedConstant.
2007-03-12 Zhou ShengAvoid to assert on "(KnownZero & KnownOne) == 0".
2007-03-12 Zhou ShengIn function ComputeMaskedBits():
2007-03-10 Nick LewyckyAdd value ranges. Currently inefficient in both executi...
2007-03-10 Anton KorobeynikovUse range tests in LowerSwitch, where possible
2007-03-09 Devang PatelRemove dead comments.
2007-03-09 Devang PatelAvoid recursion. Use iterative algorithm for RenamePass().
2007-03-09 Devang PatelIncrement iterator now because IVUseShouldUsePostIncVal...
2007-03-08 Zhou ShengFix a bug in function ComputeMaskedBits().
2007-03-08 Chris LattnerThis appears correct, enable it so we can see perf...
2007-03-08 Chris LattnerSecond half of PR1226. This is currently still disable...
2007-03-08 Zhou ShengFix a bug in APIntified ComputeMaskedBits().
2007-03-08 Reid SpencerFor PR1205:
2007-03-08 Reid SpencerFor PR1205:
2007-03-07 Devang PatelNow IndVarSimplify is a LoopPass.
2007-03-07 Devang PatelNow LICM is a LoopPass.
2007-03-07 Devang PatelNow LoopUnroll is a LoopPass.
2007-03-07 Devang PatelNow LoopUnswitch is a LoopPass.
2007-03-06 Devang PatelNow LoopStrengthReduce is a LoopPass.
2007-03-05 Reid SpencerRemove an unnecessary if statement and adjust indentation.
2007-03-05 Chris LattnerThis is the first major step of implementing PR1226...
2007-03-05 Chris Lattnerfix a subtle bug that caused an MSVC warning. Thanks...
2007-03-05 Chris LattnerAdd some simplifications for demanded bits, this allows...
2007-03-05 Jeff CohenUnbreak VC++ build.
2007-03-04 Chris Lattnersimplify some code
2007-03-04 Chris Lattnerminor cleanups
2007-03-04 Chris LattnerSpeed up -instcombine by 20% by avoiding a particularly...
2007-03-04 Chris Lattnerswitch MarkAliveBlocks over to using SmallPtrSet instea...
2007-03-04 Chris Lattnermake better use of LCSSA information in RewriteLoopExit...
2007-03-04 Chris LattnerImplement PR1179/PR1232 and test/Transforms/IndVarsSimp...
2007-03-03 Chris LattnerMake RewriteLoopExitValues far less nested by using...
2007-03-03 Chris Lattnermy recent change caused a failure in a bswap testcase...
2007-03-03 Nick LewyckyTranslate bit operations to English.
2007-03-03 Chris Lattneradd a top-level iteration loop to instcombine. This...
2007-03-03 Reid SpencerAPIntify this pass.
2007-03-02 Reid SpencerFinally get this patch right :)
2007-03-02 Reid SpencerDang, I've done that twice now! Undo previous commit.
2007-03-02 Reid SpencerUse more efficient test for one value in a ConstantInt.
2007-03-02 Reid SpencerGuard against huge loop trip counts in an APInt safe...
2007-03-02 Reid SpencerMake sure debug code is not evaluated in non-debug...
2007-03-02 Reid Spencer1. Sort switch cases using APInt safe comparison.
2007-03-02 Reid SpencerUse APInt safe isOne() method on ConstantInt instead...
2007-03-02 Reid SpencerMake sorting of ConstantInt be APInt clean through...
2007-03-02 Chris LattnerFix a significant algorithm problem with the instcombin...
2007-03-02 Chris Lattnerminor cleanup
2007-03-02 Chris Lattnerswitch the inliner from being recursive to being iterative.
2007-03-02 Reid SpencerReverse a premature commital.
2007-03-02 Reid SpencerPrefer non-virtual calls to ConstantInt::isZero over...
2007-03-01 Reid SpencerAlthough probably not necessary, guard against a potent...
2007-03-01 Reid SpencerUse isUnitValue() instead of getZExtValue() == 1 which...
2007-03-01 Reid SpencerUse APInt conversion to string so the result is correct...
2007-03-01 Reid SpencerThe 64-bit constructor for ConstantInt changes from...
2007-03-01 Reid SpencerRemove the "isSigned" parameters from ConstantRange...
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerFor PR1205:
2007-02-28 Reid SpencerFor PR1205:
2007-02-26 Devang PatelUse efficient container SmallPtrSet
2007-02-26 Devang PatelDo not unswitch loop on same value again and again.
2007-02-24 Chris LattnerFix InstCombine/2007-02-23-PhiFoldInfLoop.ll and PR1217
2007-02-23 Chris Lattnerfix an obscure and tricky bug the inliner can hit somet...
2007-02-22 Jim LaskeyRevert changes for a simplier solution.
2007-02-21 Jim LaskeyItanium ABI exception handing support.
2007-02-20 Dan GohmanFix typos in comments.
2007-02-20 Chris Lattnerremove reoptimizer-specific passes
2007-02-19 Chris Lattnereliminate use of deprecated apis
2007-02-18 Chris Lattnerfix comment
2007-02-18 Chris Lattnersimplify pass, delete dead gvar protos as well.
2007-02-15 Chris Lattnerconvert more vectors to smallvectors, 2.8% speedup
2007-02-15 Chris Lattnerchange some vectors to smallvectors. This speeds up...
2007-02-15 Chris Lattnerswitch an std::set to a SmallPtr set, this speeds up...
2007-02-15 Reid SpencerFor PR1195:
2007-02-15 Reid SpencerChange an assert that mentions Packed Type -> Vector...
next