aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms
AgeCommit message (Expand)Author
2011-11-29Add support for sqrt, sqrtl, and sqrtf in TargetLibraryInfo. Disable Chad Rosier
2011-11-29Fix a theoretical problem (not seen in the wild): if different instances of aDuncan Sands
2011-11-29Reenable this IndVars unit test.Andrew Trick
2011-11-28Add a missing safety check to ProcessUGT_ADDCST_ADD. Fixes PR11438.Eli Friedman
2011-11-28Make SelectionDAG::InferPtrAlignment use llvm::ComputeMaskedBits instead of d...Eli Friedman
2011-11-27remove a test that is using old-style llvm.dbg intrinsics, apparently onlyChris Lattner
2011-11-27remove autoupgrade support for old forms of llvm.prefetch and the oldChris Lattner
2011-11-27Upgrade syntax of tests using volatile instructions to use 'load volatile' in...Chris Lattner
2011-11-27remove autoupgrade support for really old-style debug info intrinsics.Chris Lattner
2011-11-26FileCheck-ize this test and make it more precise. This is in preparationChandler Carruth
2011-11-23Correctly byte-swap APInts with bit-widths greater than 64.Richard Smith
2011-11-23Fix a crash in which a multiplication was being reported as being both negativeDuncan Sands
2011-11-21Fix crasher in GVN due to my recent capture tracking changes.Nick Lewycky
2011-11-20XFAIL this test until I figure out what indvars is doing here (or find someon...Benjamin Kramer
2011-11-18Fix a corner case in updating LoopInfo after fully unrolling an outer loop.Andrew Trick
2011-11-17Fix an overly general check in SimplifyIndvar to handle useless phi cycles.Andrew Trick
2011-11-17Add support for custom names for library functions in TargetLibraryInfo. Add...Eli Friedman
2011-11-16Fix typo in test.Nick Lewycky
2011-11-16Merge isObjectPointerWithTrustworthySize with getPointerSize. Use it whenNick Lewycky
2011-11-16Fix SCEV overly optimistic back edge taken count for multi-exit loops.Andrew Trick
2011-11-14Refactor capture tracking (which already had a couple flags for whether returnsNick Lewycky
2011-11-12Don't try to loop on iterators that are potentially invalidated inside the lo...Nick Lewycky
2011-11-12Make sure scalarrepl picks the correct alloca when it rewrites a bitcast. Fi...Eli Friedman
2011-11-11Get rid of an optimization in SCCP which appears to have many issues. Specif...Eli Friedman
2011-11-09DeadStoreElimination can now trim the size of a store if the end of the store...Pete Cooper
2011-11-08Fix code to match comment. Fixes PR11340, a regression from r143209.Eli Friedman
2011-11-08LICM pass now understands invariant load metadata. Nothing generates this ye...Pete Cooper
2011-11-08Convert to the new EH model.Bill Wendling
2011-11-05Do simple cross-block DSE when we encounter a free statement. Fixes PR11240.Nick Lewycky
2011-11-04Add tests for existing InstSimplify features.Dan Gohman
2011-11-04Teach instsimplify to simplify calls to undef.Dan Gohman
2011-11-04Speculatively revert "DeadStoreElimination can now trim the size of a store ifDaniel Dunbar
2011-11-03DeadStoreElimination can now trim the size of a store if the end of it is dead.Pete Cooper
2011-11-02Rewrite LinearFunctionTestReplace to handle pointer-type IVs.Andrew Trick
2011-11-02Broaden an assert to handle enable-iv-rewrite=true following r143183.Andrew Trick
2011-11-01Make sure we use the right insertion point when instcombine replaces a PHI wi...Eli Friedman
2011-10-30Reapply commit 143214 with a fix: m_ICmp doesn't match conditionsDuncan Sands
2011-10-29SimplifyLibCalls: Use IRBuilder.CreateGlobalString when creating a string for...Benjamin Kramer
2011-10-29Revert r143214; it's breaking a bunch of stuff.Eli Friedman
2011-10-28The expression icmp eq (select (icmp eq x, 0), 1, x), 0 folds to false.Duncan Sands
2011-10-28A shift of a power of two is a power of two or zero.Duncan Sands
2011-10-28Fold icmp ugt (udiv X, Y), X to false. Spotted by my super-optimizerDuncan Sands
2011-10-28LFTR should avoid a type mismatch with null pointer IVs.Andrew Trick
2011-10-27Reapply commit 143028 with a fix: the problem was casting a ConstantExpr MulDuncan Sands
2011-10-27Revert Duncan's r143028 expression folding which appears to be the culpritBob Wilson
2011-10-27It is not safe to sink an alloca into a stacksave/stackrestore pair, so don't...Eli Friedman
2011-10-26The maximum power of 2 dividing a power of 2 is itself. This occursDuncan Sands
2011-10-26My super-optimizer noticed that we weren't folding this expression toDuncan Sands
2011-10-24A dead malloc, a free(NULL) and a free(undef) are all trivially deadNick Lewycky
2011-10-23The element insertion code in scalar replacement doesn't handle incorrectCameron Zwarich