llvm/test/CodeGen/X86/fma_patterns.ll: Add -mtriple=x86_64. It was incompatible on...
[oota-llvm.git] / test / Transforms / InstCombine /
2012-08-21 Chandler CarruthPort the global copy optimization from the SROA pass...
2012-08-18 Benjamin KramerInstCombine: Fix a crasher when encountering a function...
2012-08-18 Benjamin KramerInstCombine: Add a couple of fabs identities for compar...
2012-08-17 Benjamin KramerMemoryBuiltins: Properly guard ObjectSizeOffsetVisitor...
2012-08-17 Benjamin KramerGuard MemoryBuiltins against self-looping GEPs, which...
2012-08-15 Michael Liaofix infinite loop in instcombine with more than 4GB...
2012-08-10 Eli FriedmanThe normal edge of an invoke is not allowed to branch...
2012-08-07 Bob WilsonFix a serious typo in InstCombine's optimization of...
2012-07-30 Nadav RotemWhen constant folding GEP expressions, keep the address...
2012-07-27 Nuno Lopesfix PR13390: do not loop forever with self-referencing...
2012-07-27 Nuno Lopesfix infinite loop in instcombine in the presence of...
2012-07-26 Pete CooperSimplify demanded bits of select sources where the...
2012-07-26 Pete CooperTeach SimplifyDemandedBits how to look through fpext...
2012-07-25 Duncan SandsDon't perform an overaligned load in this test, since...
2012-07-25 Duncan SandsWhen folding a load from a global constant, if the...
2012-07-24 Nuno Lopesteach objectsize about strdup() and strndup()
2012-07-17 Evan ChengBack out r160101 and instead implement a dag combine...
2012-07-12 Evan ChengInstcombine was transforming:
2012-07-09 Nuno Lopesinstcombine: merge the functions that remove dead alloc...
2012-07-06 Nuno Lopesteach instcombine to remove allocated buffers even...
2012-07-02 Chandler CarruthFix the remaining TCL-style quotes found in the testsui...
2012-07-02 Chandler CarruthConvert all tests using TCL-style quoting to use shell...
2012-06-28 Nuno Lopesmake instcombine produce calls to llvm.donothing instea...
2012-06-26 Evan ChengRemove a instcombine transform that (no longer?) makes...
2012-06-26 Duncan SandsReplacing zero-sized alloca's with a null pointer is...
2012-06-25 Nuno Lopesimprove optimization of invoke instructions:
2012-06-22 Jakob Stoklund OlesenRevert remaining part of r93200: "Disable folding sext...
2012-06-21 Nuno Lopesinstcombine: disable optimization of 'invoke null...
2012-06-21 Evan ChengLook pass zext to strength reduce an udiv. Patch by...
2012-06-21 Nuno LopesAdd support for invoke to the MemoryBuiltin analysid.
2012-06-21 Nuno Lopeshopefully fix the buildbots: some tests have wrong...
2012-06-21 Nuno Lopesrefactor the MemoryBuiltin analysis:
2012-06-14 Manman RenInstCombine: fix a bug when combining (fcmp cc0 x,...
2012-06-10 Benjamin KramerInstCombine: Turn (zext A) == (B & (1<<X)-1) into A...
2012-06-08 Nuno Lopescanonicalize:
2012-06-07 Nadav RotemFix a bug in FoldSelectOpOp. Bitcast ops may change...
2012-06-07 Meador IngeAdding a missing -S to the opt invocation.
2012-06-06 Bill WendlingSpell optimization name correclty.
2012-06-06 Bill WendlingAnother testcase for r156548.
2012-06-06 Chad RosierFix combine of uno && ord -> false so that the ordering...
2012-06-06 Chad RosierRemove extraneous CHECK-NOTs from previous commit and...
2012-06-06 Chad RosierFileCheckize this test.
2012-05-28 Benjamin KramerInstCombine: Fix infinite loop when encountering switch...
2012-05-27 Benjamin KramerPR12967: Don't crash when trying to fold a shift that...
2012-05-22 Nuno Lopesrevert my previous patches that introduced an additiona...
2012-05-11 Nuno Lopesobjectsize: add a few more tests and fix a bug
2012-05-11 Eli FriedmanFix a minor logic mistake transforming compares in...
2012-05-10 Nuno Lopesobjectsize: add support for GEPs with non-constant...
2012-05-09 Nuno Lopesobjectsize:
2012-05-09 Nuno Lopeschange the objectsize intrinsic signature: add a 3rd...
2012-05-05 Stepan DyatkovskiySmall fix in InstCombineCasts.cpp. Restored "alloca...
2012-05-03 Nuno Lopesremove calls to calloc if the allocated memory is not...
2012-05-03 Nuno Lopesadd support for calloc to objectsize lowering
2012-05-01 Lang HamesAdd support for llvm.arm.neon.vmull* intrinsics to...
2012-04-30 Duncan SandsJust mark the sign bit as known zero, rather than any...
2012-04-27 Dan GohmanReapply r155682, making constant folding more consisten...
2012-04-26 Chad RosierAdd instcombine patterns for the following transformations:
2012-04-25 Chandler CarruthActually delete now-empty file.
2012-04-25 Lang HamesReverting r155468. Chris and Chandler have convinced...
2012-04-24 Nadav RotemConstantFoldSelectInstruction swapped the operands...
2012-04-24 Lang HamesAdd support for llvm.arm.neon.vmull* intrinsics to...
2012-04-23 Jakob Stoklund OlesenReapply r155136 after fixing PR12599.
2012-04-20 Jakob Stoklund OlesenRevert r155136 "Defer some shl transforms to DAGCombine."
2012-04-19 Jakob Stoklund OlesenDefer some shl transforms to DAGCombine.
2012-04-18 Jakob Stoklund OlesenFileCheckize
2012-04-18 Jakob Stoklund OlesenNobody likes shifty instructions, but that was a bit...
2012-04-08 Chandler CarruthTeach InstCombine to nuke a common alloca pattern ...
2012-04-04 Rafael EspindolaAlways compute all the bits in ComputeMaskedBits.
2012-03-29 Chandler CarruthFilecheck-ize this test so that it actually tests somet...
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 Eli FriedmanIn InstCombiner::visitOr, make sure we reverse the...
2012-03-10 Benjamin KramerDon't try to filecheck bitcode.
2012-03-10 Bill WendlingMake this transformation slightly less agressive and...
2012-02-29 Bill WendlingTestcase for r151691.
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 LewyckyTeach instsimplify to be more aggressive when analyzing...
2012-02-21 Benjamin KramerInstCombine: Don't transform a signed icmp of two GEPs...
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-16 Eli BenderskyReplace all instances of dg.exp file with lit.local...
2012-02-13 Devang PatelCheck against umin while converting fcmp into an icmp.
2012-02-03 Jim GrosbachRevert "Disable InstCombine unsafe folding bitcasts...
2012-02-01 Jim GrosbachDisable InstCombine unsafe folding bitcasts of calls...
2012-01-27 Rafael EspindolaAdd r149110 back with a fix for when the vector and...
2012-01-27 Rafael EspindolaRevert r149110 and add a testcase that was crashing...
2012-01-27 Chris Lattnerenhance constant folding to be able to constant fold...
2012-01-11 Duncan SandsDon't try to create a GEP when the pointee type is...
2012-01-09 Benjamin KramerInstCombine: Teach foldLogOpOfMaskedICmpsHelper that...
2012-01-08 Benjamin KramerTweak my last commit to be less conservative about...
2012-01-08 Benjamin KramerInstCombine: If we have a bit test and a sign test...
2012-01-05 Benjamin KramerFileCheck hygiene.
2012-01-04 Nick LewyckyTeach instcombine all sorts of great stuff about shifts...
2011-12-31 Nick LewyckyMake use of the exact bit when optimizing '(X >>exact...
2011-12-24 Chandler CarruthAdd an explicit test that we now fold cttz.i32(......
2011-12-24 Benjamin KramerInstCombine: Add a combine that turns (2^n)-1 ^ x back...
2011-12-24 Benjamin KramerComputeMaskedBits: Make knownzero computation more...
next