Nowadays a release build has assertions off.
[oota-llvm.git] / lib / Transforms /
2010-09-12 Eric ChristopherRevert 113679, it was causing an infinite loop in a...
2010-09-11 Owen AndersonInvert and-of-or into or-of-and when doing so would...
2010-09-10 Gabor Greiftypoes
2010-09-10 Michael J. SpencerCMake: Get rid of LLVMLibDeps.cmake and export the...
2010-09-10 Benjamin KramerThis transform is also performed by InstructionSimplify...
2010-09-10 Owen AndersonLower the unrolling theshold to 150. Empirical tests...
2010-09-09 Owen AndersonWhat the loop unroller cares about, rather than just...
2010-09-09 Owen AndersonRevert r113439, which relaxed the requirement that...
2010-09-09 Owen Andersonr113526 introduced an unintended change to the loop...
2010-09-09 Owen AndersonFix typo in code to cap the loop code size reduction...
2010-09-09 Owen AndersonUse code-size reduction metrics to estimate the amount...
2010-09-08 Owen AndersonRelax the "don't unroll loops containing calls" rule...
2010-09-08 Owen AndersonGeneralize instcombine's support for combining multiple...
2010-09-07 Owen AndersonAdd a separate unrolling threshold when the current...
2010-09-07 Chris LattnerFix a serious performance regression introduced by...
2010-09-07 Nick LewyckyFix major bug in thunk detection. Also verify the calli...
2010-09-06 Chris Lattnerfix PR8067, an over-aggressive assertion in LICM.
2010-09-06 Chris LattnerTeach loop rotate to hoist trivially invariant instructions
2010-09-06 Chris Lattnerpull a simple method out of LICM into a new
2010-09-05 Chris Lattnermore cleanups
2010-09-05 Chris LattnerChange lower atomic pass to use IntrinsicInst to simpli...
2010-09-05 Chris Lattnereliminate some non-obvious casts. UndefValue isa Constant.
2010-09-05 Nick LewyckyFix warning reported by MSVC++ builder.
2010-09-05 Nick LewyckySwitch FnSet to containing the ComparableFunction inste...
2010-09-05 Nick LewyckyFix many bugs when merging weak-strong and weak-weak...
2010-09-04 Chris Lattnerzap dead code.
2010-09-04 Dan GohmanFix LoopSimplify to notify ScalarEvolution when splitti...
2010-09-04 Chris Lattnerfix a bug in my licm rewrite when a load from the promo...
2010-09-03 Owen AndersonPropagate non-local comparisons. Fixes PR1757.
2010-09-03 Owen AndersonAdd support for simplifying a load from a computed...
2010-09-02 Chris Lattnerfix more AST updating bugs, correcting miscompilation...
2010-09-02 Duncan SandsReapply commit 112699, speculatively reverted by echris...
2010-09-01 Chris Lattnerdeepen my MMX/SRoA hack to avoid hurting non-x86 codegen.
2010-09-01 Dan GohmanFix loop unswitching's assumption that a code path...
2010-09-01 Owen AndersonJumpThreading keeps LazyValueInfo up to date, so we...
2010-09-01 Eric ChristopherSpeculatively revert 112699 and 112702, they seem to...
2010-09-01 Duncan SandsIf PrototypeValue is erased in the middle of using...
2010-09-01 Chris Lattneradd a gross hack to work around a problem that Argiris...
2010-09-01 Dan GohmanRevert 112442 and 112440 until the compile time problem...
2010-08-31 Chris Lattnerlicm is wasting time hoisting constant foldable operations,
2010-08-31 Chris Lattnertidy up
2010-08-31 Owen AndersonMore cleanups of my JumpThreading transforms, including...
2010-08-31 Owen AndersonAdd an RAII helper to make cleanup of the RecursionSet...
2010-08-31 Owen AndersonOnly try to clean up the current block if we changed...
2010-08-31 Owen AndersonRefactor my fix for PR5652 to terminate the predecessor...
2010-08-31 Nick LewyckyFix an infinite loop; merging two functions will create...
2010-08-31 Owen AndersonDon't perform an extra traversal of the function just...
2010-08-31 Owen AndersonRename ValuePropagation to a more descriptive Correlate...
2010-08-31 Owen AndersonRename file to something more descriptive.
2010-08-31 Owen AndersonMore Chris-inspired JumpThreading fixes: use ConstantEx...
2010-08-31 Nick LewyckySwitch to DenseSet, simplifying much more code. We...
2010-08-31 Owen AndersonRemove r111665, which implemented store-narrowing in...
2010-08-30 Owen AndersonFix a typo.
2010-08-30 Owen AndersonCleanups suggested by Chris.
2010-08-30 Owen AndersonRe-apply r112539, being more careful to respect the...
2010-08-30 Owen AndersonAdd statistics to evaluate this pass.
2010-08-30 Owen AndersonRevert r112539. It accidentally introduced a miscompil...
2010-08-30 Owen AndersonFixes and cleanups pointed out by Chris. In general...
2010-08-29 Chris Lattnerrewrite DwarfEHPrepare to use SSAUpdater to promote...
2010-08-29 Chris Lattnertwo changes: 1) make AliasSet hold the list of call...
2010-08-29 Chris LattnerLICM does get dead instructions input to it. Instead...
2010-08-29 Chris Lattneruse moveBefore instead of remove+insert, it avoids...
2010-08-29 Chris Lattnerrevert 112448 for now.
2010-08-29 Chris Lattneroptimize LICM::hoist to use moveBefore. Correct its...
2010-08-29 Chris Lattnerfix some bugs (found by inspection) where LICM would...
2010-08-29 Chris Lattnerrework the ownership of subloop alias information:...
2010-08-29 Chris Lattnerapparently unswitch had the same "Feature". Stop its
2010-08-29 Chris Lattnernow that loop passes don't use DomFrontier, there is...
2010-08-29 Dan GohmanOptionally rerun dedicated-register filtering after...
2010-08-29 Dan GohmanFix several areas in LSR to do a better job keeping...
2010-08-29 Dan GohmanRefactor the three main groups of code out of
2010-08-29 Dan GohmanDelete a bogus check.
2010-08-29 Dan GohmanAdd some comments.
2010-08-29 Dan GohmanMove this debug output into GenerateAllReuseFormula...
2010-08-29 Dan GohmanDelete an unused declaration.
2010-08-29 Dan GohmanDo one lookup instead of two.
2010-08-29 Chris Lattnerlicm preserves the cfg, it doesn't have to explicitly...
2010-08-29 Chris Lattnernow that it doesn't use the PromoteMemToReg function...
2010-08-29 Chris Lattnercompletely rewrite the memory promotion algorithm in...
2010-08-29 Chris Lattneruse getUniqueExitBlocks instead of a manual set.
2010-08-29 Chris Lattnerreimplement LICM::sink to use SSAUpdater instead of...
2010-08-29 Chris Lattnerimplement SSAUpdater::RewriteUseAfterInsertions, a...
2010-08-29 Chris Lattnerremove dead proto
2010-08-29 Chris Lattnerreduce indentation in LICM::sink by using early exits...
2010-08-29 Chris Lattnermodernize this pass a bit: use efficient set/map and...
2010-08-28 Chris Lattnerremove unions from LLVM IR. They are severely buggy...
2010-08-28 Chris Lattnerremove the ABCD and SSI passes. They don't have any...
2010-08-28 Chris Lattnerfor completeness, allow undef also.
2010-08-28 Chris Lattnersquish dead code.
2010-08-28 Chris Lattnerhandle the constant case of vector insertion. For...
2010-08-28 Chris Lattneroptimize bitcasts from large integers to vector into...
2010-08-28 Benjamin KramerUpdate CMake build. Add newline at end of file.
2010-08-27 Owen AndersonAdd a prototype of a new peephole optimizing pass that...
2010-08-27 Chris LattnerEnhance the shift propagator to handle the case when...
2010-08-27 Chris LattnerImplement a pretty general logical shift propagation
2010-08-27 Chris Lattnerremove some special shift cases that have been subsumed...
2010-08-27 Owen AndersonFix typos in comments.
2010-08-27 Chris Lattnerteach the truncation optimization that an entire chain of
2010-08-27 Chris LattnerAdd an instcombine to clean up a common pattern produced
2010-08-27 Owen AndersonUse LVI to eliminate conditional branches where we...
next