| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64073 91177308-0d34-... | Evan Cheng | 2009-02-08 | 1 | -0/+491 |
* | Revert r63999. It was breaking self-hosting builds. | Bill Wendling | 2009-02-08 | 2 | -2/+2 |
* | Enable machine sinking pass in non-fast mode. | Evan Cheng | 2009-02-07 | 2 | -2/+2 |
* | Fix test. It produces unexpected code if sse4.1 is on. | Evan Cheng | 2009-02-06 | 1 | -3/+3 |
* | isAsCheapAsMove instructions can have register src operands. Check if they ar... | Evan Cheng | 2009-02-05 | 1 | -0/+12 |
* | Turn on machine LICM in non-fast mode. | Evan Cheng | 2009-02-05 | 2 | -4/+4 |
* | if we have a large GEP offset on a 32-bit or other target, make | Chris Lattner | 2009-02-05 | 1 | -0/+9 |
* | Add test case for r63760. | Mon P Wang | 2009-02-04 | 1 | -0/+15 |
* | Fixes a case where we generate an incorrect mask for pshfhw in the presence | Mon P Wang | 2009-02-04 | 1 | -0/+23 |
* | Fix PR3411. When replacing values, nodes are analyzed | Duncan Sands | 2009-02-03 | 1 | -0/+30 |
* | rearrange how SRoA handles promotion of allocas to vectors. | Chris Lattner | 2009-02-03 | 1 | -1/+0 |
* | Add explicit -march=x86 to these tests so that they don't | Dan Gohman | 2009-02-03 | 1 | -2/+2 |
* | Fix another test to not use -mcpu=yonah with 64-bit code. | Dan Gohman | 2009-02-02 | 1 | -2/+2 |
* | Yonah does not support x86-64. Change the -mcpu value to one that does. | Dan Gohman | 2009-02-02 | 1 | -1/+1 |
* | xfail this for now, will fix shortly. | Chris Lattner | 2009-02-02 | 1 | -0/+1 |
* | Teach LowerBRCOND to recognize (xor (setcc x), 1). The xor inverts the condit... | Evan Cheng | 2009-02-02 | 1 | -0/+23 |
* | add 2 more testcases for -mattr=-sse (r63495). | Torok Edwin | 2009-02-01 | 2 | -0/+66 |
* | Implement -mno-sse: if SSE is disabled on x86-64, don't store XMM on stack for | Torok Edwin | 2009-02-01 | 2 | -2/+46 |
* | Fix PR3453 and probably a bunch of other potential | Duncan Sands | 2009-02-01 | 1 | -0/+32 |
* | Fix PR3401: when using large integers, the type | Duncan Sands | 2009-01-31 | 3 | -0/+51 |
* | Used "-enable-unsafe-fp-math" to allow this transformation - (a * b -c) = c -... | Mon P Wang | 2009-01-31 | 1 | -1/+1 |
* | If unsafe FP optimization is not set, don't allow -(A-B) => B-A because | Mon P Wang | 2009-01-31 | 1 | -0/+12 |
* | XFAIL this test. It only worked before because of a bug in the spill point s... | Owen Anderson | 2009-01-29 | 1 | -0/+1 |
* | Local register allocator shouldn't assume only the entry and landing pad basi... | Evan Cheng | 2009-01-29 | 1 | -0/+38 |
* | In the case of an extractelement on an insertelement value, | Dan Gohman | 2009-01-29 | 1 | -0/+25 |
* | Exit with nice warnings when register allocator run out of registers. | Evan Cheng | 2009-01-29 | 1 | -0/+32 |
* | Make x86's BT instruction matching more thorough, and add some | Dan Gohman | 2009-01-29 | 2 | -4/+433 |
* | Fixed lowering of v816 shuffles. | Mon P Wang | 2009-01-28 | 1 | -0/+14 |
* | Make test platform agnostic. | Bill Wendling | 2009-01-28 | 1 | -3/+1 |
* | The memory alignment requirement on some of the mov{h|l}p{d|s} patterns are 1... | Evan Cheng | 2009-01-28 | 1 | -0/+19 |
* | Added sse test patterns for r62979 and r63193. | Mon P Wang | 2009-01-28 | 4 | -0/+254 |
* | Add testcase for r63142. | Bill Wendling | 2009-01-27 | 1 | -0/+40 |
* | Implement multiple with overflow by 2 with an add instruction. | Evan Cheng | 2009-01-27 | 1 | -0/+20 |
* | Add a regression test for x86-64 red zone usage. | Dan Gohman | 2009-01-27 | 1 | -0/+13 |
* | Fix PR3393, which amounts to a bug in the expensive | Duncan Sands | 2009-01-26 | 1 | -0/+16 |
* | At Nick Lewycky's request, rename this test with a more informative name. | Dan Gohman | 2009-01-26 | 1 | -0/+0 |
* | Enhance logic in X86DAGToDAGISel::PreprocessForRMW which move load inside cal... | Evan Cheng | 2009-01-26 | 1 | -0/+45 |
* | CellSPU: | Scott Michel | 2009-01-26 | 5 | -69/+84 |
* | Map address space 256 to gs; similar mappings could be supported for the | Nate Begeman | 2009-01-26 | 1 | -0/+8 |
* | revert this patch for now, because Codegen does still want to generate SSE code, | Torok Edwin | 2009-01-25 | 1 | -0/+2 |
* | If user explicitly asks not to use SSE, don't force it. This fixes LLVM part ... | Torok Edwin | 2009-01-25 | 1 | -0/+20 |
* | Private linkage support for PPC / Darwin. | Evan Cheng | 2009-01-25 | 1 | -0/+5 |
* | Teach 2addr pass to be do more commuting. If both uses of a two-address instr... | Evan Cheng | 2009-01-25 | 4 | -3/+28 |
* | Add a PR comment to this test. | Dan Gohman | 2009-01-24 | 1 | -0/+1 |
* | Update test to reflect command line option name change. | Evan Cheng | 2009-01-23 | 1 | -1/+1 |
* | Don't create ISD::FNEG nodes after legalize if they aren't legal. | Dan Gohman | 2009-01-22 | 1 | -0/+1145 |
* | Do not use buggy llvm-gcc to generate testcases. | Devang Patel | 2009-01-22 | 1 | -1/+1 |
* | Now with RUN line. | Bill Wendling | 2009-01-21 | 1 | -2/+6 |
* | Run this through -simplifycfg and -mem2reg to test only what we need to test. | Bill Wendling | 2009-01-21 | 1 | -90/+13 |
* | Simplify ReduceLoadWidth's logic: it doesn't need several different | Dan Gohman | 2009-01-21 | 1 | -0/+46 |