Fix filename and register numbers.
[oota-llvm.git] / test / Transforms /
2012-04-14 Hal FinkelFix an error in BBVectorize important for vectorizing...
2012-04-14 Hal FinkelEnhance BBVectorize to more-properly handle pointer...
2012-04-13 Hal FinkelAdd support to BBVectorize for vectorizing selects.
2012-04-13 Dan GohmanConsider ObjC runtime calls objc_storeWeak and others...
2012-04-13 Dan GohmanUse the new Use-aware dominates method to apply the...
2012-04-13 Dan GohmanDon't move objc_autorelease calls past autorelease...
2012-04-10 Andrew TrickFix 12513: Loop unrolling breaks with indirect branches.
2012-04-08 Chandler CarruthTeach InstCombine to nuke a common alloca pattern ...
2012-04-07 Chandler CarruthFix ValueTracking to conclude that debug intrinsics...
2012-04-06 Chandler CarruthSink the collection of return instructions until after...
2012-04-06 Chandler CarruthTweak this test to ensure the inliner did indeed fire...
2012-04-06 Chandler CarruthActually finish this sentence in the comment the way...
2012-04-06 Chandler CarruthSink the return instruction collection until after...
2012-04-05 Dan GohmanFix accidentally inverted logic from r152803, and make the
2012-04-04 Hongbin ZhengAdd testcase for r154007, when a function has the optsi...
2012-04-04 Rafael EspindolaAlways compute all the bits in ComputeMaskedBits.
2012-04-02 Stepan DyatkovskiyFast fix for PR12343:
2012-04-01 Chandler CarruthAdd some more testing to cover the remaining two cases...
2012-04-01 Chandler CarruthFix a pretty scary bug I introduced into the always...
2012-04-01 Chandler CarruthReplace four tiny tests with various uses of grep and...
2012-03-31 Chandler CarruthInitial commit for the rewrite of the inline cost analy...
2012-03-31 Chandler CarruthClean up the naming in this test. Someone pointed this...
2012-03-31 Chandler CarruthFileCheck-ize this test, and generally tidy it up prior...
2012-03-31 Hal FinkelCorrectly vectorize powi.
2012-03-29 Chandler CarruthFilecheck-ize this test so that it actually tests somet...
2012-03-29 Jakob Stoklund OlesenDon't PRE compares.
2012-03-28 Chad RosierRevert r153521 as it's causing large regressions on...
2012-03-28 Benjamin KramerGlobalOpt: If we have an inbounds GEP from a ConstantAg...
2012-03-28 Chandler CarruthSwitch to WeakVHs in the value mapper, and aggressively...
2012-03-27 Chad RosierReapply r153423; the original commit was fine. The...
2012-03-26 Andrew TrickUnit test for PR11950: LSR crash.
2012-03-26 Chad RosierRevert r153423 as this is causing failures on our inter...
2012-03-26 Rafael EspindolaUse the new range metadata in computeMaskedBits and...
2012-03-25 Chandler CarruthTeach instsimplify how to simplify comparisons of point...
2012-03-25 Chandler CarruthSwitch the pointer-difference simplification logic...
2012-03-25 Chandler CarruthTeach the function cloner (and thus the inliner) to...
2012-03-25 Eli BenderskyContinue cleanup of LIT, getting rid of the remaining...
2012-03-25 Chandler CarruthMove the instruction simplification of callsite argumen...
2012-03-24 Chandler CarruthFileCheck-ize this test. Note the FIXME I've introduced...
2012-03-23 Dan GohmanDon't convert objc_retainAutoreleasedReturnValue to...
2012-03-23 Dan GohmanIt's not possible to insert code immediately after...
2012-03-22 Andrew TrickConvert -indvars tests that rely on SCEV expansion...
2012-03-22 Andrew TrickRemove tests: indvars trivially preserves GEPs now.
2012-03-22 Andrew TrickRemove test: trivial canonical IV test which is covered...
2012-03-22 Andrew TrickRemove redundant -enable-iv-rewrite=false flags from...
2012-03-20 Andrew TrickLoopSimplify bug fix. Handle indirect loop back edges.
2012-03-20 Andrew TrickLSR: teach isSimplifiedLoopNest to handle PHI IVUsers.
2012-03-20 Andrew TrickLSR: fix IVUsers isSimplifiedLoopNest to perform a...
2012-03-18 Nick LewyckyFactor out the multiply analysis code in ComputeMaskedB...
2012-03-16 Bill WendlingRevert r152907.
2012-03-16 Bill WendlingThe alignment of the pointer part of the store instruct...
2012-03-16 Chandler CarruthRip out support for 'llvm.noinline'. This thing has...
2012-03-16 Andrew TrickLSR fix: Add isSimplifiedLoopNest to IVUsers analysis.
2012-03-16 Eli FriedmanIn InstCombiner::visitOr, make sure we reverse the...
2012-03-15 Matt Beaumont-Gayline endings
2012-03-15 Rafael EspindolaShort term fix for pr12270 before we change dominates...
2012-03-15 Aaron BallmanFixed a transform crash when setting a negative size...
2012-03-14 Chandler CarruthExtend the inline cost calculation to account for bonus...
2012-03-14 Dan GohmanWhen an invoke is marked with metadata indicating its...
2012-03-13 Chris Lattnerenhance jump threading to preserve TBAA information...
2012-03-13 Dan GohmanTeach globalopt how to evaluate an invoke with a non...
2012-03-13 Duncan SandsGeneralize the "trunc(ptrtoint(x)) - trunc(ptrtoint...
2012-03-13 Eli FriedmanFix regression from r151466: an we can't replace uses...
2012-03-12 Chandler CarruthWhen inlining a function and adding its inner call...
2012-03-12 Chandler CarruthTeach instsimplify how to constant fold pointer differe...
2012-03-12 Chandler CarruthFileCheck-ize this test.
2012-03-10 Andrew TrickMove llc + target triple tests into X86
2012-03-10 Benjamin KramerDon't try to filecheck bitcode.
2012-03-10 Bill WendlingMake this transformation slightly less agressive and...
2012-03-09 Dan GohmanWhen identifying exit nodes for the reverse-CFG reverse...
2012-03-09 Duncan SandsEliminate switch cases that can never match, for exampl...
2012-03-09 Chandler CarruthUndo a previous restriction on the inline cost calculat...
2012-03-05 Eli FriedmanMake sure we don't return bits outside the mask in...
2012-03-04 Duncan SandsNick pointed out on IRC that GVN's propagateEquality...
2012-03-02 Benjamin KramerLVI: Recognize the form instcombine canonicalizes range...
2012-02-29 Duncan SandsHave GVN also do condition propagation when the right...
2012-02-29 Bill WendlingTestcase for r151691.
2012-02-28 Pete CooperReverted r152620 - DSE: Shorten memset when a later...
2012-02-28 Pete CooperDSE: Shorten memset when a later store overwrites the...
2012-02-27 Duncan SandsWhen performing a conditional branch depending on the...
2012-02-27 Rafael EspindolaFix this assert. IP can point to an instruction with...
2012-02-26 Rafael EspindolaAdd testcase for the previous commit.
2012-02-26 Rafael EspindolaChange the implementation of dominates(inst, inst)...
2012-02-26 Nick LewyckyReinstate the optimization from r151449 with a fix...
2012-02-25 Nick LewyckyRoll these back to r151448 until I figure out how they...
2012-02-25 Nick LewyckyAn argument and a local identified object (eg. a noalia...
2012-02-25 Nick LewyckyTeach instsimplify to be more aggressive when analyzing...
2012-02-24 Chris Lattnerfix PR12075, a regression in a recent transform I added...
2012-02-24 Duncan SandsTeach GVN that x+y is the same as y+x and that x<y...
2012-02-22 Rafael EspindolaSemantically revert 151015. Add a comment on why we...
2012-02-21 Nick LewyckyUse the target-aware constant folder on expressions...
2012-02-21 Benjamin KramerInstCombine: Don't transform a signed icmp of two GEPs...
2012-02-20 Nick LewyckyCheck for the correct size in the invariant marker.
2012-02-20 Benjamin KramerTest case for r150978.
2012-02-20 Benjamin KramerInstCombine: When comparing two GEPs that were derived...
2012-02-20 Benjamin KramerInstCombine: Make OptimizePointerDifference more aggres...
2012-02-20 Chris Lattnerfold comparisons of gep'd alloca points with null to...
2012-02-18 Rafael EspindolaDon't skip debug instructions when looking for the...
2012-02-18 Eli FriedmanFix a rather nasty regression from r150690: LHS !=...
2012-02-17 Dan GohmanCalls and invokes with the new clang.arc.no_objc_arc_ex...
next