Eliminate more redundant llvm-as calls.
[oota-llvm.git] / test / Transforms / InstCombine /
2009-09-11 Dan GohmanChange tests from "opt %s" to "opt < %s" so that opt...
2009-09-11 Dan GohmanTeach lib/VMCore/ConstantFold.cpp how to set the inboun...
2009-09-10 Dan GohmanFactor out the code for checking that all indices in...
2009-09-09 Dan GohmanUse "opt < %s" instead of "opt %s" to keep the testname...
2009-09-09 Dan GohmanEliminate more uses of llvm-as and llvm-dis.
2009-09-08 Dan GohmanUse "opt < %s" instead of "opt %s" so that opt doesn...
2009-09-08 Dan GohmanConvert a few more opt | llvm-dis to opt -S.
2009-09-08 Dan GohmanUse opt -S instead of piping bitcode output through...
2009-09-08 Chris Lattnerremove an extremely dubious instcombine transformation of
2009-09-08 Dan GohmanChange these tests to feed the assembly files to opt...
2009-09-08 Chris Lattnerinstcombine transforms vector loads that are only used by
2009-09-08 Chris Lattnerfix ComputeMaskedBits handling of zext/sext/trunc to...
2009-09-07 Daniel DunbarDon't depend on Tcl behavior of redirecting stderr...
2009-09-05 Daniel DunbarEliminate uses of %prcontext.
2009-09-02 Chris Lattnerfix PR4837, some bugs folding vector compares. These
2009-08-31 Chris Lattnerfix a bug I introduced with my 'instcombine builder...
2009-08-30 Chris Lattnersuck a bunch more gep tests into getelementptr.ll and...
2009-08-30 Chris Lattnerconsolodate various GEP tests into getelementptr.ll...
2009-08-30 Chris Lattneranother huge testcase, this time from 'gs' in llvm...
2009-08-30 Chris Lattnerremove another poorly-reduced testcase which came from...
2009-08-30 Chris Lattnerthis testcase is 500 lines long and is distilled from...
2009-08-30 Chris Lattnerconvert to filecheck
2009-08-30 Chris LattnerFix PR4748: don't fold gep(bitcast(x)) into bitcast...
2009-08-25 Dan GohmanRemove obsolete -f flags.
2009-08-21 Dan GohmanChange getelementptr folding to use APInt instead of...
2009-08-19 Dan GohmanFix a bug in the over-index constant folding. When...
2009-08-19 Dan GohmanCanonicalize indices in a constantexpr GEP. If Indices...
2009-08-13 Mon P WangWhen InstCombine simplifies a load -> extract element...
2009-08-12 Dan GohmanMake LLVM Assembly dramatically easier to read by align...
2009-08-12 Dan GohmanTransform -X/C to X/-C, implementing a README.txt entry.
2009-08-12 Dan GohmanOptimize (x/C)*C to x if the division is exact.
2009-08-11 Dan GohmanOptimize exact sdiv by a constant power of 2 to ashr.
2009-08-11 Dan GohmanDon't assume that external global variables are aligned...
2009-08-03 Dan GohmanAdd -disable-output. Thanks Bill!
2009-08-03 Dan GohmanAdd a new Constant::getIntegerValue helper function...
2009-07-28 Dan GohmanTeach instcombine to respect and preserve inbounds...
2009-07-23 Chris Lattnermerge vector-casts-0.ll into vector-casts.ll
2009-07-23 Chris LattnerMake some existing optimizations that would only trigge...
2009-07-23 Chris Lattnerconvert a test to filecheck format. This fixes an...
2009-07-23 Chris Lattnerrename test
2009-07-21 Dan GohmanAdd a testcase for PR2831.
2009-07-20 Dan GohmanRevert the addition of hasNoPointerOverflow to GEPOperator.
2009-07-18 Eli FriedmanCanonicalize bitcasts between types like <1 x i64>...
2009-07-18 Eli FriedmanBack out 76300; apparently the preference is to canonic...
2009-07-18 Eli FriedmanAdd combine: X sdiv (1 << Y) -> X udiv (1 << Y) when...
2009-07-18 Eli FriedmanCanonicalize insert/extractelement from single-element...
2009-07-15 Eli FriedmanDon't restrict the set of instructions where we try...
2009-07-14 Eli FriedmanFix trivial todo in instcombine.
2009-07-13 Eli FriedmanPR4548: optimize zext+udiv+trunc to udiv.
2009-07-13 Eli FriedmanFix bug in run-line.
2009-07-13 Eli FriedmanCanonicalize boolean +/- a constant to a select.
2009-07-02 Chris Lattnerdo not try to analyze bitcasts from i64 to <2 x i32...
2009-07-01 Dan GohmanFix an instcombine abort on a scalar-to-vector bitcast...
2009-06-18 Dan GohmanGeneralize the zext(trunc(t) & C) instcombine to work...
2009-06-17 Dan GohmanInstcombine zext(trunc(x) & mask) to x&mask, even if...
2009-06-17 Eli FriedmanCorrect an accidental duplication of the test (patch...
2009-06-17 Eli FriedmanPR3439: Correct a silly mistake in the SimplifyDemanded...
2009-06-16 Dan GohmanGeneralize a few more instcombines to be vector/scalar...
2009-06-16 Chris LattnerTestcase for r73506
2009-06-15 Dan GohmanSupport vector casts in more places, fixing a variety...
2009-06-15 Chris Lattnerfix testcase to properly check for the patch in r73195.
2009-06-12 Dan GohmanDon't do (x - (y - z)) --> (x + (z - y)) on floating...
2009-06-11 Chris LattnerFix 4366: store to null in non-default addr space shoul...
2009-06-06 Eli FriedmanPR4340: Run SimplifyDemandedVectorElts on insertelement...
2009-06-04 Dan GohmanSplit the Add, Sub, and Mul instruction opcodes into...
2009-06-04 Dan GohmanCheck in test changes that I accidentally left out...
2009-05-22 Evan ChengFix bug in FoldFCmp_IntToFP_Cst. If inttofp is a uintof...
2009-05-21 Dan GohmanTeach ValueTracking a new way to analyze PHI nodes...
2009-05-13 Chris Lattnercalls in nothrow functions can be marked nothrow even...
2009-05-07 Dan GohmanRevert 71165. It did more than just revert 71158 and...
2009-05-07 Bill WendlingTemporarily revert r71158. It was causing a failure...
2009-05-07 Dan GohmanConstant-fold ptrtoint+add+inttoptr to gep when the...
2009-04-25 Dan GohmanAdd several more icmp simplifications. Transform signed...
2009-04-13 Chris LattnerAdd a new "available_externally" linkage type. This...
2009-04-08 Chris LattnerInstcombine should not promote whole computation trees...
2009-04-07 Chris Lattnerfix rdar://6762290, a crash compiling cxx filt with...
2009-03-31 Evan ChengThrottle back "fold select into operand" transformation...
2009-03-25 Chris LattnerFix PR3874 by restoring a condition I removed, but...
2009-03-24 Chris Lattnercanonicalize inttoptr and ptrtoint instructions which...
2009-03-24 Chris Lattnertwo changes:
2009-03-20 Chris LattnerFix instcombine to not introduce undefined shifts when...
2009-03-18 Chris LattnerFix PR3826 - InstComb assert with vector shift, by...
2009-03-02 Duncan SandsFix PR3694: add an instcombine micro-optimization that...
2009-02-25 Chris LattnerFix PR3667
2009-02-24 Dan GohmanAdd a testcase for the problem fixed in r65289.
2009-02-24 Dan GohmanFix a ValueTracking rule: RHS means operand 1, not...
2009-02-21 Nick LewyckyDon't sign extend the char when expanding char -> int...
2009-02-21 Chris Lattnerrename a function to indicate that it checks for profit...
2009-02-18 Dan GohmanChange the argument type in this test to something...
2009-02-17 Chris Lattnercommit a tweaked version of Daniel's patch for PR3599...
2009-02-16 Dan GohmanFix EnforceKnownAlignment so that it doesn't ever reduc...
2009-02-16 Dan GohmanChange these tests to use regular loads instead of...
2009-02-12 Nate BegemanAdd suppport for ConstantExprs of shufflevectors whose...
2009-02-07 Mon P WangInstrcombine should not change load(cast p) to cast...
2009-02-04 Duncan SandsAllow the inverse transform x86_fp80 -> i80 (also
2009-02-04 Duncan SandsFix PR3468: a crash when constant folding a bitcast of
2009-02-03 Evan ChengAPInt'fy SimplifyDemandedVectorElts so it can analyze...
2009-02-02 Chris Lattnerreduce testcase.
2009-01-31 Nick LewyckyReinstate this optimization to fold icmp of xor when...
2009-01-31 Chris LattnerFix PR3452 (an infinite loop bootstrapping) by disablin...
next