| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Don't redirect stderr when it isn't needed. | Dan Gohman | 2007-12-14 | 1 | -5/+5 |
* | Fix ctlz and cttz. llvm definition requires them to return number of bits in ... | Evan Cheng | 2007-12-14 | 1 | -1/+11 |
* | All MMX shift instructions took a <2 x i32> vector as the shift amount parame... | Anders Carlsson | 2007-12-14 | 1 | -0/+29 |
* | Implement ctlz and cttz with bsr and bsf. | Evan Cheng | 2007-12-14 | 1 | -0/+16 |
* | Be extra careful with extension use optimation. Now turned on by default. | Evan Cheng | 2007-12-13 | 1 | -1/+1 |
* | Remove this testcase as it will always fail on | Zhou Sheng | 2007-12-13 | 1 | -54/+0 |
* | Fold some and + shift in x86 addressing mode. | Evan Cheng | 2007-12-13 | 1 | -0/+21 |
* | Implicit def instructions, e.g. X86::IMPLICIT_DEF_GR32, are always re-materia... | Evan Cheng | 2007-12-12 | 1 | -0/+680 |
* | Allow vector integer constants to be created with | Dan Gohman | 2007-12-12 | 1 | -0/+18 |
* | 1. "Upgrage" comments. | Wojciech Matyjewicz | 2007-12-12 | 1 | -0/+10 |
* | Implement part of review feedback for address spaces. | Christopher Lamb | 2007-12-12 | 1 | -2/+2 |
* | Use shuffles to implement insert_vector_elt for i32, i64, f32, and f64. | Evan Cheng | 2007-12-12 | 4 | -28/+40 |
* | Add a test case for -optimize-ext-uses. | Evan Cheng | 2007-12-12 | 1 | -0/+19 |
* | Lower a build_vector with all constants into a constpool load unless it can b... | Evan Cheng | 2007-12-12 | 1 | -3/+10 |
* | Fixed PR1629. | Zhou Sheng | 2007-12-12 | 1 | -0/+54 |
* | Add (very basic) bindings for ModuleProvider. | Gordon Henriksen | 2007-12-12 | 1 | -0/+9 |
* | Rename these tests to use the appropriate suffixes. | Dan Gohman | 2007-12-11 | 2 | -0/+0 |
* | Use not instead of ignore when an exit status is expected to always | Dan Gohman | 2007-12-11 | 7 | -8/+8 |
* | Don't redirect stderr when it isn't needed. | Dan Gohman | 2007-12-11 | 2 | -2/+2 |
* | Implement address space attribute for LLVM pointer types. Address spaces are | Christopher Lamb | 2007-12-11 | 1 | -0/+25 |
* | Implement constant folding if vector<->vector bitcasts where the number | Chris Lattner | 2007-12-11 | 1 | -0/+33 |
* | - Improved v8i16 shuffle lowering. It now uses pshuflw and pshufhw as much as | Evan Cheng | 2007-12-11 | 2 | -24/+36 |
* | Adding Ocaml bindings for the bitreader as requested by Sarah | Gordon Henriksen | 2007-12-11 | 1 | -0/+23 |
* | Fix PR1850 by removing an unsafe transformation from VMCore/ConstantFold.cpp. | Chris Lattner | 2007-12-10 | 2 | -3/+9 |
* | Make PruneEH update the nounwind/noreturn attributes | Duncan Sands | 2007-12-10 | 3 | -27/+27 |
* | Fix PR1836: in the interpreter, read and write apints | Duncan Sands | 2007-12-10 | 1 | -0/+19 |
* | Improve branch folding by recgonizing that explict successor relationships im... | Christopher Lamb | 2007-12-10 | 1 | -3/+1 |
* | Adding a collector name attribute to Function in the IR. These | Gordon Henriksen | 2007-12-10 | 3 | -4/+29 |
* | Upgrading this test to 2.0 .ll syntax. | Gordon Henriksen | 2007-12-09 | 1 | -28/+27 |
* | Fix PR1782, patch by Wojtek Matyjewicz! | Chris Lattner | 2007-12-09 | 1 | -0/+31 |
* | Fix a significant code quality regression I introduced on PPC64 quite | Chris Lattner | 2007-12-08 | 1 | -0/+1 |
* | implement __builtin_return_addr(0) on ppc. | Chris Lattner | 2007-12-08 | 1 | -0/+14 |
* | Much improved v8i16 shuffles. (Step 1). | Evan Cheng | 2007-12-07 | 2 | -9/+37 |
* | New test case. | Evan Cheng | 2007-12-07 | 1 | -0/+9 |
* | Fix a bogus test case. | Evan Cheng | 2007-12-06 | 1 | -18/+14 |
* | Turning simple splitting on. Start testing new coalescer heuristics as new ll... | Evan Cheng | 2007-12-06 | 3 | -3/+3 |
* | third time around: instead of disabling this completely, | Chris Lattner | 2007-12-06 | 1 | -1/+0 |
* | Actually, disable this code for now. More analysis and improvements to | Chris Lattner | 2007-12-06 | 1 | -0/+1 |
* | implement a readme entry, compiling the code into: | Chris Lattner | 2007-12-06 | 1 | -0/+15 |
* | fix this when run on non x86 hosts. | Chris Lattner | 2007-12-06 | 1 | -3/+3 |
* | Fix for PR1831: if all defs of an interval are re-materializable, then it's a... | Evan Cheng | 2007-12-06 | 1 | -2/+2 |
* | If ExitValue operand is also defined in Loop header then | Devang Patel | 2007-12-03 | 1 | -0/+44 |
* | Fix a typo noticed by Alain Frisch. | Gordon Henriksen | 2007-12-01 | 1 | -4/+6 |
* | Allow some reloads to be folded in multi-use cases. Specifically testl r, r -... | Evan Cheng | 2007-12-01 | 2 | -1/+59 |
* | Do not fold reload into an instruction with multiple uses. It issues one extr... | Evan Cheng | 2007-11-30 | 1 | -0/+81 |
* | Update tests. | Evan Cheng | 2007-11-29 | 1 | -1/+1 |
* | New testcase for PR1744 | Chris Lattner | 2007-11-28 | 1 | -0/+8 |
* | upgrade this test | Chris Lattner | 2007-11-28 | 1 | -49/+63 |
* | make this test have a deterministic result. | Chris Lattner | 2007-11-28 | 1 | -2/+2 |
* | Add some convenience methods for querying attributes, and | Duncan Sands | 2007-11-28 | 1 | -1/+1 |