aboutsummaryrefslogtreecommitdiff
path: root/test/Transforms
AgeCommit message (Expand)Author
2012-07-06teach instcombine to remove allocated buffers even if there are stores, memcp...Nuno Lopes
2012-07-03BoundsChecking: optimize out the check for offset < 0 if size is known to be...Nuno Lopes
2012-07-02Revert "IntRange:" as it appears to be breaking self hosting.Eric Christopher
2012-07-02Fix the remaining TCL-style quotes found in the testsuite. This isChandler Carruth
2012-07-02GlobalOpt forgot to handle bitcast when analyzing globals. Found by inspection.Duncan Sands
2012-07-02Convert the uses of '|&' to use '2>&1 |' instead, which works on oldChandler Carruth
2012-07-02fix the regression I introduced in r159385 (it's necessary to update PHI node...Nuno Lopes
2012-07-02IntRange:Stepan Dyatkovskiy
2012-07-02Convert all tests using TCL-style quoting to use shell-style quoting.Chandler Carruth
2012-06-29Fix a reassociate crash on sozefx when compiling with dragonegg+gcc-4.7 due toDuncan Sands
2012-06-28make simplifyCFG erase invokes to readonly/readnone functionsNuno Lopes
2012-06-28make instcombine produce calls to llvm.donothing instead of a random intrinsicNuno Lopes
2012-06-28make LazyValueInfo analyze the default case of switch statements (we know tha...Nuno Lopes
2012-06-28Allow BBVectorize to form non-2^n-length vectors.Hal Finkel
2012-06-28make LVI::getEdgeValue() always intersect the constraints of the edge with th...Nuno Lopes
2012-06-27Revert r159136 due to PR13124.Matt Beaumont-Gay
2012-06-27Some reassociate optimizations create new instructions, which they insert justDuncan Sands
2012-06-26Remove a instcombine transform that (no longer?) makes sense:Evan Cheng
2012-06-26Replacing zero-sized alloca's with a null pointer is too aggressive, insteadDuncan Sands
2012-06-26Enable the new LoopInfo algorithm by default.Andrew Trick
2012-06-25revert my previous commit (r159173), since as Eli pointed out, it's perfectly...Nuno Lopes
2012-06-25do not set realloc() as NotAlias, since it can return the same pointer. This ...Nuno Lopes
2012-06-25Fix the objc_autoreleasedReturnValue optimization code to locateDan Gohman
2012-06-25improve optimization of invoke instructions:Nuno Lopes
2012-06-25If a constant or a function has linkonce_odr linkage and unnamed_addr, mark itRafael Espindola
2012-06-24Allow controlling vectorization of boolean values separately from other integ...Hal Finkel
2012-06-24Remove dyn_cast + dereference pattern by replacing it with a cast and changingNick Lewycky
2012-06-24Remove a dangling reference to a deleted instruction. Fixes PR13185!Nick Lewycky
2012-06-23Allow BBVectorize to fuse compare instructions.Hal Finkel
2012-06-22Revert remaining part of r93200: "Disable folding sext(trunc(x)) -> x"Jakob Stoklund Olesen
2012-06-21instcombine: disable optimization of 'invoke null/undef'. I'll move this fun...Nuno Lopes
2012-06-21Look pass zext to strength reduce an udiv. Patch by David Majnemer. rdar://11...Evan Cheng
2012-06-21Add support for invoke to the MemoryBuiltin analysid.Nuno Lopes
2012-06-21hopefully fix the buildbots: some tests have wrong definitions of malloc and...Nuno Lopes
2012-06-21port the BoundsChecking patch to the new MemoryBuiltin API (i.e., remove most...Nuno Lopes
2012-06-21refactor the MemoryBuiltin analysis:Nuno Lopes
2012-06-17Now that SROA can form alloca's for dynamic vector accesses, further improve ...Pete Cooper
2012-06-16Teach BBVectorize to combine, when possible, or discard metadata when fusing ...Hal Finkel
2012-06-16Fix crash from r158529 on Bullet.Pete Cooper
2012-06-15Unit test for LSR kind=Special fix: r158536.Andrew Trick
2012-06-15Allow SROA to split up an array of vectors into multiple vectors, even when t...Pete Cooper
2012-06-15Some optimizations done by globalopt are safe only for internal linkage, notRafael Espindola
2012-06-15Fix issues (infinite loop and/or crash) with self-referential instructions, forDuncan Sands
2012-06-14Recommit r158407: Allow SROA to look at a vector type and see if the offset i...Pete Cooper
2012-06-14Implement the isSafeToDiscardIfUnused predicate and use it in globalopt andRafael Espindola
2012-06-14Revert r158454: Allow SROA to look at a vector type... Its breaking the vect...Pete Cooper
2012-06-14Recommit r158407: Allow SROA to look at a vector type and see if the offset i...Pete Cooper
2012-06-14InstCombine: fix a bug when combining (fcmp cc0 x, y) && (fcmp cc1 x, y).Manman Ren
2012-06-13Revert "Allow SROA to look at a vector type and see if the offset is out of r...Pete Cooper
2012-06-13Allow SROA to look at a vector type and see if the offset is out of range to ...Pete Cooper