Suppress warning "switch statement contains 'default' but no 'case' labels" on MSVC.
[oota-llvm.git] / test / Transforms /
2011-01-16 Nick LewyckyTest for lazy value info's ability to prove the absense...
2011-01-16 Anders CarlssonTeach DAE to look for functions whose arguments are...
2011-01-16 Rafael EspindolaDon't merge two constants if we care about the address...
2011-01-16 Owen AndersonReduce and merge testcases.
2011-01-16 Chris Lattnerfix PR8932, a case where arg promotion could infinitely...
2011-01-16 Chris Lattnerif an alloca is only ever accessed as a unit, and is...
2011-01-16 Chris Lattnerenhance FoldOpIntoPhi in instcombine to try harder...
2011-01-16 Owen AndersonImprove the safety of my globalopt enhancement by ensur...
2011-01-16 Chris Lattnerfix PR8983, a broken assertion.
2011-01-16 Chris Lattnerremove the partial specialization pass. It is unmainta...
2011-01-15 Nick LewyckyMake constmerge a two-pass algorithm so that it won...
2011-01-15 Chris Lattnertemporarily revert r123526. While working on a follow...
2011-01-15 Chris Lattnerfix rdar://8785296 - -fcatch-undefined-behavior generat...
2011-01-15 Chris LattnerNow that instruction optzns can update the iterator...
2011-01-15 Chris Lattnerimplement an instcombine xform that canonicalizes casts...
2011-01-14 Duncan SandsTurn X-(X-Y) into Y. According to my auto-simplifier...
2011-01-14 Duncan SandsFactorize common code out of the InstructionSimplify...
2011-01-14 Duncan SandsRename this test.
2011-01-14 Chris Lattnerrelax testcase a bit.
2011-01-14 Duncan SandsMove some shift transforms out of instcombine and into...
2011-01-13 Bob WilsonExtend SROA to handle arrays accessed as homogeneous...
2011-01-13 Bob WilsonMake SROA more aggressive with allocas containing padding.
2011-01-13 Duncan SandsThe most common simplification missed by instsimplify...
2011-01-12 Chris Lattnerrevert 123144, reenabling the rest of memset formation.
2011-01-12 Chris Lattnerrevert r123146 which disabled code that wasn't the...
2011-01-11 Chris Lattnermerge tests into one crash.ll test.
2011-01-11 Chris Lattnerremove a bogus assertion: the latch block of a loop...
2011-01-11 Chandler CarruthTeach constant folding to perform conversions from...
2011-01-11 Chandler CarruthFileCheck-ize a test, and move a no-longer calling...
2011-01-11 Owen AndersonFix a random missed optimization by making InstCombine...
2011-01-10 Chandler CarruthTeach instcombine about the rest of the SSE and SSE2...
2011-01-10 Chandler CarruthFold two related tests into the newly FileCheck-ized...
2011-01-10 Chandler CarruthClean up and FileCheck-ize a test.
2011-01-10 Chris Lattnerfix typo
2011-01-10 Chris Lattneranother (more) aggressive attempt to bring llvm-gcc...
2011-01-09 Chris Lattnertemporarily disable memset formation from memsets in...
2011-01-09 Tobias GrosserInstcombine: Fix pattern where the sext did not dominat...
2011-01-08 Chris LattnerMerge memsets followed by neighboring memsets and other...
2011-01-08 Chris Lattnerfix an issue in IsPointerOffset that prevented us from...
2011-01-08 Chris Lattnerenhance memcpyopt to merge a store and a subsequent
2011-01-08 Chris Lattnermerge two tests and filecheckify
2011-01-08 Chris LattnerWhen loop rotation happens, it is *very* common for...
2011-01-08 Chris LattnerThree major changes:
2011-01-08 Frits van BommelFix a bug in r123034 (trying to sext/zext non-integers...
2011-01-08 Chris LattnerHave loop-rotate simplify instructions (yay instsimplif...
2011-01-07 Tobias GrosserInstCombine: Match min/max hidden by sext/zext
2011-01-07 Benjamin KramerRevert 122959, it needs more thought. Add it back to...
2011-01-06 Benjamin KramerInstCombine: Turn _chk functions into the "unsafe"...
2011-01-06 Benjamin KramerInstCombine: If we call llvm.objectsize on a malloc...
2011-01-06 Benjamin KramerInstCombine: Teach llvm.objectsize folding to look...
2011-01-06 Chris Lattnerimplement constant folding support for an exotic consta...
2011-01-04 Chris Lattnerfix an off-by-one bug that caused a crash analyzing
2011-01-04 Chris LattnerTeach loop-idiom to turn a loop containing a memset...
2011-01-03 Chris LattnerDuncan deftly points out that readnone functions aren't
2011-01-03 Chris Lattnerearlycse can do trivial with-a-block dead store
2011-01-03 Chris Lattnernow that loads are in their own table, we can implement
2011-01-03 Chris Lattneradd a testcase for readonly call CSE
2011-01-03 Chris LattnerTeach EarlyCSE to do trivial CSE of loads and read...
2011-01-02 Chris Lattneradd DEBUG and -stats output to earlycse.
2011-01-02 Chris LattnerEnhance earlycse to do CSE of casts, instsimplify and...
2011-01-02 Chris Lattnerfix a miscompilation of tramp3d-v4: when forming a...
2011-01-02 Chris LattnerIf a loop iterates exactly once (has backedge count...
2011-01-02 Chris Lattnerenhance loop idiom recognition to scan *all* unconditio...
2011-01-02 Duncan SandsFix PR8702 by not having LoopSimplify claim to preserve...
2011-01-02 Chris LattnerAllow loop-idiom to run on multiple BB loops, but still...
2011-01-02 Chris Lattnerteach loop idiom recognition to form memcpy's from...
2011-01-01 Chris Lattnerfix a globalopt crash on two Adobe-C++ testcases that...
2011-01-01 Chris Lattneradd a validity check that was missed, fixing a crash...
2011-01-01 Duncan SandsRevert commit 122654 at the request of Chris, who recko...
2011-01-01 Chris Lattnerimprove validity check to handle constant-trip-count...
2011-01-01 Chris Lattnerimplement the "no aliasing accesses in loop" safety...
2011-01-01 Duncan SandsFix a README item by having InstructionSimplify do...
2010-12-29 NAKAMURA Takumitest/Transforms/ConstProp/logicaltest.ll: FileCheck...
2010-12-26 Chris Lattnerimplement enough of the memset inference algorithm...
2010-12-26 Chris Lattnerstart using irbuilder to make mem intrinsics in a few...
2010-12-24 Benjamin KramerMemCpyOpt: Turn memcpys from a constant into a memset...
2010-12-23 Owen AndersonWhen determining if we can fold (x >> C1) << C2, the...
2010-12-22 Benjamin KramerInstCombine: creating selects from -1 and 0 is fine...
2010-12-22 Duncan SandsWhen determining whether the new instruction was alread...
2010-12-22 Duncan SandsMake this test not depend on how the variable is named.
2010-12-22 Duncan SandsAdd a generic expansion transform: A op (B op' C) ...
2010-12-21 Owen AndersonGive GVN back the ability to perform simple conditional...
2010-12-21 Duncan SandsAdd an additional InstructionSimplify factorization...
2010-12-21 Duncan SandsWhile I don't think any later transforms can fire,...
2010-12-21 Duncan SandsFix typo in comment, spotted by Deewiant.
2010-12-21 Duncan SandsTeach InstructionSimplify about distributive laws....
2010-12-21 Duncan SandsAdd generic simplification of associative operations...
2010-12-20 Benjamin KramerTeach InstCombine to merge (icmp ult (X + CA), C1)...
2010-12-20 Duncan SandsHave SimplifyBinOp dispatch Xor, Add and Sub to the...
2010-12-20 Chris Lattnerfix PR8807 by making transformConstExprCastCall aware...
2010-12-20 Chris Lattnerwhen eliding a byval copy due to inlining a readonly...
2010-12-20 Chris Lattnerpull byval processing out to its own helper function.
2010-12-20 Chris Lattnerfix PR8769, a miscompilation by inliner when inlining...
2010-12-20 Chris Lattnermerge two tests.
2010-12-20 Chris Lattnerfilecheckize
2010-12-20 Mon P WangTest case for r122215 when InstCombine optimizes memset
2010-12-19 Chris LattnerX86 supports i8/i16 overflow ops (except i8 multiplies...
2010-12-19 Chris Lattnerrecognize an unsigned add with overflow idiom into...
2010-12-19 Chris Lattneroptimize uadd(x, cst) into a comparison when the normal
2010-12-19 Chris Lattnergeneralize the sadd creation code to not require that the
next