| Commit message (Expand) | Author | Age | Files | Lines |
* | Add the last of the SemaChecking-gen code. | Nate Begeman | 2010-06-14 | 1 | -2/+45 |
* | Add a helping of comments | Nate Begeman | 2010-06-13 | 1 | -8/+105 |
* | lit: Replace /dev/null in scripts with temporary files on Windows. | Daniel Dunbar | 2010-06-12 | 1 | -0/+17 |
* | declare a class with 'class' instead of struct to avoid tag mismatch | Chris Lattner | 2010-06-12 | 1 | -1/+1 |
* | Add generic vector support for bitselect & element byteswap | Nate Begeman | 2010-06-12 | 2 | -31/+75 |
* | More AVX instructions ({ADD,SUB,MUL,DIV}{SS,SD}rm) | Bruno Cardoso Lopes | 2010-06-11 | 1 | -1/+8 |
* | lit: Add a forgotten default argument. | Daniel Dunbar | 2010-06-11 | 1 | -1/+1 |
* | lit: When running Tcl style tests on Windows, substitute slashes to avoid Tcl | Daniel Dunbar | 2010-06-11 | 1 | -6/+17 |
* | Add instruction encoding for the Neon VMOV immediate instruction. This changes | Bob Wilson | 2010-06-11 | 1 | -4/+1 |
* | Add support for polynomial type, for polynomial multiply | Nate Begeman | 2010-06-10 | 1 | -0/+2 |
* | Teach tablegen to allow "let" expressions inside multiclasses, | Bruno Cardoso Lopes | 2010-06-10 | 2 | -53/+43 |
* | NEON support for _lane ops, and multiplies by scalar. | Nate Begeman | 2010-06-10 | 2 | -45/+79 |
* | Further refine types for operations which take scalars. | Nate Begeman | 2010-06-09 | 1 | -8/+8 |
* | How about ULL... | Eric Christopher | 2010-06-09 | 1 | -1/+1 |
* | Specialize I-Class instructions better so that we have less work to do in cod... | Nate Begeman | 2010-06-09 | 1 | -4/+20 |
* | Handle instructions which need to be #defines for the purpose of capturing co... | Nate Begeman | 2010-06-09 | 2 | -24/+62 |
* | Reapply r105521, this time appending "LLU" to 64 bit | Bruno Cardoso Lopes | 2010-06-08 | 3 | -2/+10 |
* | Fix a valgrind error. | Nate Begeman | 2010-06-08 | 1 | -1/+1 |
* | Refine BuiltinsARM.def types a bit, we should do a better job of this to save... | Nate Begeman | 2010-06-08 | 1 | -2/+4 |
* | ARM NEON: | Nate Begeman | 2010-06-08 | 2 | -11/+55 |
* | clang codegen support | Nate Begeman | 2010-06-07 | 1 | -73/+83 |
* | revert r105521, which is breaking the buildbots with stuff like this: | Chris Lattner | 2010-06-05 | 2 | -9/+1 |
* | Initial AVX support for some instructions. No patterns matched | Bruno Cardoso Lopes | 2010-06-05 | 2 | -1/+9 |
* | Teach tablegen to support 'defm' inside multiclasses. | Bruno Cardoso Lopes | 2010-06-05 | 2 | -10/+42 |
* | Handle multi-vector returns and args. | Nate Begeman | 2010-06-04 | 1 | -24/+71 |
* | Additional fixes to BuiltinsARM.def generator, on to clang codegen. | Nate Begeman | 2010-06-04 | 1 | -9/+38 |
* | Progress on generating BuiltinsARM.def, still some duplicates to work out. | Nate Begeman | 2010-06-04 | 1 | -3/+110 |
* | BuiltinsARM.def emitter, still needs a substantial bit of tweaking to lighten... | Nate Begeman | 2010-06-04 | 3 | -71/+119 |
* | Mangle __builtin_neon_* names appropriately. | Nate Begeman | 2010-06-04 | 2 | -30/+97 |
* | Add some additional capabilities to the neon emitter | Nate Begeman | 2010-06-03 | 1 | -4/+31 |
* | Early implementation of tail call for ARM. | Dale Johannesen | 2010-06-03 | 1 | -0/+7 |
* | Forgot to update the most important part of the gtest modifications readme. | Benjamin Kramer | 2010-06-03 | 1 | -1/+1 |
* | Disable pthread support in googletest if llvm was configured without threads. | Benjamin Kramer | 2010-06-03 | 2 | -0/+10 |
* | Turns out gtest still prefers the system <tr1/tuple> over it's own | Benjamin Kramer | 2010-06-03 | 2 | -0/+6 |
* | arm_neon.h now makes it through clang and generates appropriate code for thos... | Nate Begeman | 2010-06-03 | 1 | -19/+112 |
* | Update Readme and Makefiles for the new gtest. | Benjamin Kramer | 2010-06-02 | 3 | -13/+2 |
* | Merge gtest-1.5.0. | Benjamin Kramer | 2010-06-02 | 24 | -989/+1497 |
* | Merge gtest-1.4.0. | Benjamin Kramer | 2010-06-02 | 21 | -2039/+4137 |
* | Merge gtest-1.3.0. | Benjamin Kramer | 2010-06-02 | 20 | -468/+2089 |
* | arm_neon.h emitter now mostly complete for the purposes of initial testing. | Nate Begeman | 2010-06-02 | 1 | -10/+81 |
* | Pacify recent gcc: remove a pointless const qualifier. | Duncan Sands | 2010-06-02 | 1 | -1/+1 |
* | Checkpoint; handle 'int' and 'void' correctly | Nate Begeman | 2010-06-02 | 1 | -25/+52 |
* | Emit full function prototypes. Definitions & typedefs to come. | Nate Begeman | 2010-06-02 | 1 | -16/+72 |
* | Checkpoint arm_neon.h generation with tablegen | Nate Begeman | 2010-06-02 | 1 | -13/+241 |
* | Fix comment | Sean Hunt | 2010-06-01 | 1 | -1/+1 |
* | Fix extra fread after EOF, non-wires-crossed version. | Dan Gohman | 2010-06-01 | 1 | -2/+4 |
* | revert r105223 which broke all my testing. | Chris Lattner | 2010-05-31 | 1 | -1/+1 |
* | Fix count so that it doesn't make an extra fread call after | Dan Gohman | 2010-05-31 | 1 | -1/+1 |
* | Allow for creation of clang DeclNodes tables. | Sean Hunt | 2010-05-30 | 3 | -52/+131 |
* | Emit TargetRegisterInfo::composeSubRegIndices(). | Jakob Stoklund Olesen | 2010-05-28 | 1 | -18/+114 |