Move the fast-path (<=i64) cases of various APInt methods inline
[oota-llvm.git] / test / Transforms /
2008-08-18 Bill WendlingXFAIL this test for now.
2008-08-17 Nick LewyckyConsider the case where xor by -1 and xor by 128 have...
2008-08-17 Evan ChengDidn't mean to change this.
2008-08-17 Evan ChengFix a (u)comiss intrinsic lowering bug. It was using...
2008-08-17 Nick LewyckyXor'ing both sides of icmp by sign-bit is equivalent...
2008-08-16 Owen AndersonRemove GCSE and LoadVN from the testsuite.
2008-08-15 Devang PatelReapply 54786. Add overflow and number of mantissa...
2008-08-15 Evan ChengRevert 54786. It's not checking for overflows, etc.
2008-08-14 Devang PatelIf IV is used in a int-to-float cast inside the loop...
2008-08-13 Dan GohmanFix a bogus srem rule - a negative value srem'd by...
2008-08-13 Dan GohmanFix SCCP's handling of struct value loads and stores...
2008-08-13 Devang PatelCheck sign to detect overflow before changing compare...
2008-08-11 Chris LattnerImplement support for simplifying vector comparisons...
2008-08-07 Matthijs KooijmanAdd a basic test for the SRETPromotion pass.
2008-08-07 Matthijs KooijmanMove two tests from SRETPromotion to Inline, since...
2008-08-06 Dan GohmanFix a shufflevector instcombine that was emitting inval...
2008-08-06 Evan ChengPR2535, not PR2355.
2008-08-06 Evan ChengFix PR2355: bug in ChangeCompareStride. When the loop...
2008-08-06 Chris Lattneroptimize a common idiom generated by clang for bitfield...
2008-08-06 Chris LattnerZap sitofp/fptoui pairs. In all cases when the sign...
2008-08-06 Nick LewyckyReinstate this optimization, but without the miscompile...
2008-08-06 Bill WendlingJust grep for through the LL code instead of the ASM...
2008-08-05 Bill WendlingAdd default architecture.
2008-08-05 Bill WendlingTestcase for PR2629.
2008-08-05 Bill WendlingRevert r53282. This was causing a miscompile on Linux...
2008-07-29 Matthijs KooijmanAdd -unroll-allow-partial command line option that...
2008-07-29 Matthijs KooijmanRestructure ArgumentPromotion a bit. Instead of just...
2008-07-28 Owen AndersonAdd support for eliminating stores that store the same...
2008-07-24 Dan GohmanPut the LICM of constant GlobalVariables, introduced...
2008-07-23 Chris Lattner"Allow LICM to sink or lift loads from constant memory...
2008-07-23 Dan GohmanEnable first-class aggregates support.
2008-07-21 Dan GohmanAdd the PR number to the test.
2008-07-21 Dan GohmanFix a bug in LSR's dead-PHI cleanup. If a PHI has a...
2008-07-17 Matthijs KooijmanMake GlobalOpt preserve address spaces when scalar...
2008-07-17 Chris LattnerFix PR2553
2008-07-16 Matthijs KooijmanAdd a few cases to instcombine's extractvalue testcase.
2008-07-16 Matthijs KooijmanUn-XFAIL multdeadretval, since instcombine now properly...
2008-07-16 Evan ChengFix PR2296. Do not transform x86_sse2_storel_dq into...
2008-07-15 Matthijs KooijmanXFAIL the multdeadretval test for now, I will be fixing...
2008-07-15 Matthijs KooijmanRemove a few tests which no longer hold for deadargelim...
2008-07-15 Matthijs KooijmanAdd a testcase for the canonicalizations now performed...
2008-07-15 Matthijs KooijmanMake deadargelim a bit less smart, so it doesn't choke...
2008-07-15 Matthijs KooijmanFix typo.
2008-07-14 Chris LattnerFix PR2506 by being a bit more careful about reverse...
2008-07-13 Chris LattnerFix mishandling of the infinite loop case when merging...
2008-07-12 Nick LewyckyEnhance analysis of srem.
2008-07-11 Nick LewyckyAdd another optimization from PR2330. Also catch some...
2008-07-11 Chris LattnerFix folding of icmp's of i1 where the comparison is...
2008-07-11 Chris LattnerFix a bogus optimization: folding (slt (zext i1 A to...
2008-07-11 Chris Lattnermake this condition more precise.
2008-07-10 Matthijs KooijmanRestructure dead argument elimination, try #3 :-)
2008-07-10 Nick LewyckyFix overzealous optimization. Thanks to Duncan Sands...
2008-07-10 Chris LattnerFix a case where vector comparison constant folding...
2008-07-10 Chris Lattnerelementwise comparison of vector constants was complete...
2008-07-09 Nick LewyckyFold (a < 8) && (b < 8) into (a|b) < 8 for unsigned...
2008-07-09 Nick LewyckyFold ((1 << a) & 1) to (a == 0).
2008-07-09 Chris LattnerFix a broken test. Neither load is eliminable without...
2008-07-09 Nick LewyckyReduce x - y to -y when we know the 'x' part will get...
2008-07-09 Devang PatelIf loop induction variable's start value is less then...
2008-07-08 Chris Lattner'Optimize' test
2008-07-08 Chris Lattnernew testcase for PR2496
2008-07-08 Chris LattnerFix three bugs:
2008-07-05 Nick LewyckyFix missed optimization opportunity when analyzing...
2008-07-03 Owen AndersonRemove the ability for ADCE to remove unreachable block...
2008-07-02 Owen AndersonAdd support to ADCE for pruning unreachable blocks...
2008-07-02 Owen AndersonA better fix for PR2503 that doesn't pessimize GVN...
2008-06-26 Evan ChengXFAIL for now.
2008-06-26 Owen AndersonUse the -enable-pre flag so this test doesn't fail.
2008-06-25 Chris LattnerFix PR2488, a case where we deleted stack restores...
2008-06-24 Dan GohmanRevert 52645, the loop unroller changes. It caused...
2008-06-24 Matthijs KooijmanCommit the new DeadArgElim pass again, this time with...
2008-06-23 Dan GohmanRevamp the loop unroller, extending it to correctly...
2008-06-22 Dan GohmanImprove LSR's dead-phi detection to handle use-def...
2008-06-22 Chris LattnerFix PR2369 by making scalarrepl more careful about...
2008-06-21 Eli FriedmanFix for PR2479: correctly optimize expressions like...
2008-06-21 Duncan SandsThis file is empty.
2008-06-21 Evan ChengBack out Matthijs' DAE patches. It's miscompiling gcc...
2008-06-20 Matthijs KooijmanAdd testcase that checks that DeadArgElim doesn't touch...
2008-06-20 Matthijs KooijmanRecommit r52459, rewriting of the dead argument elimina...
2008-06-20 Chris LattnerFix PR2471, which is a bug involving an invalid promoti...
2008-06-19 Matthijs KooijmanModify some ipconstprop tests to also test with invokes.
2008-06-18 Owen AndersonRemove this test until the corresponding patch is reapp...
2008-06-18 Owen AndersonAdd local PRE to GVN. This only operates in cases...
2008-06-18 Matthijs KooijmanRewrite the DeadArgumentElimination pass, to use a...
2008-06-18 Matthijs KooijmanReapply r52397 (make IPConstProp promote returned argum...
2008-06-18 Matthijs KooijmanReapply r52396, it was unrelated to the breakage (that...
2008-06-18 Chris Lattnerimplement some simple bswap optimizations, rdar://5992453
2008-06-18 Chris Lattnertemporarily revert this testcase since its patch was...
2008-06-18 Chris Lattnermake truncate/sext elimination capable of changing...
2008-06-18 Devang PatelPreserve dominance frontier while trivially unswitching...
2008-06-17 Matthijs KooijmanLearn IPConstProp to look at individual return values...
2008-06-16 Dan GohmanRefine the change in r52258 for avoiding use-before...
2008-06-16 Matthijs KooijmanMake testcase check for extractvalue instead of extract...
2008-06-16 Matthijs KooijmanStore the result of multiple identical run lines in...
2008-06-15 Wojciech MatyjewiczFix PR2434. When scanning for exising binary operator...
2008-06-13 Eli FriedmanRemove unnecessary target lines.
2008-06-13 Eli FriedmanRemove unnecessary target lines.
2008-06-13 Eli FriedmanDon't skip over instructions other than loads that...
2008-06-13 Dan GohmanProtect ChangeCompareStride from situations in which...
2008-06-13 Eli FriedmanMake sure SimplifyStoreAtEndOfBlock doesn't mess with...
next