| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | This void is implicit in C++. | Benjamin Kramer | 2009-08-11 | 1 | -1/+1 |
* | Tidy #includes. | Dan Gohman | 2009-08-11 | 10 | -12/+3 |
* | Simplify this code. The case where one class is GR64RegClass and the | Dan Gohman | 2009-08-11 | 1 | -8/+4 |
* | Add an explicit keyword. | Dan Gohman | 2009-08-11 | 1 | -1/+3 |
* | ConstantFolder and NoFolder no longer require their Context members. | Dan Gohman | 2009-08-11 | 2 | -8/+7 |
* | now that these are in file-check format, we can merge them together | Chris Lattner | 2009-08-11 | 5 | -56/+49 |
* | Fix a typo in an assertion string. | Dan Gohman | 2009-08-11 | 1 | -1/+1 |
* | Use the default copy-ctor, copy-assignment, and destructor. | Dan Gohman | 2009-08-11 | 2 | -31/+0 |
* | Add a comment about the additional meaning of setPreservesCFG() for | Dan Gohman | 2009-08-11 | 1 | -0/+4 |
* | Don't assume that external global variables are aligned at their preferred | Dan Gohman | 2009-08-11 | 2 | -2/+32 |
* | Remove unnecessary throw() specifications; LLVM doesn't use exceptions. | Dan Gohman | 2009-08-11 | 2 | -4/+4 |
* | Whitespace cleanup. Remove trailing whitespace. | Jim Grosbach | 2009-08-11 | 19 | -116/+116 |
* | Move ~ARMConstantPoolValue() to the .cpp file to avoid needing to include <cs... | Jim Grosbach | 2009-08-11 | 2 | -2/+6 |
* | Remove unnecessary casts. | Dan Gohman | 2009-08-11 | 3 | -3/+3 |
* | Add const qualifiers. | Dan Gohman | 2009-08-11 | 1 | -2/+2 |
* | Remove an unnecessary mutable. | Dan Gohman | 2009-08-11 | 1 | -1/+1 |
* | Regenerate per request of Gabor Greif (r78628) | Shantonu Sen | 2009-08-11 | 2 | -64/+89 |
* | Silence MSVC warning. | Benjamin Kramer | 2009-08-11 | 1 | -1/+1 |
* | Fix the previous accidental commit. Now shrinking common Thumb2 load / store ... | Evan Cheng | 2009-08-11 | 9 | -37/+78 |
* | Fix Thumb2 load / store addressing mode matching code. Do not use so_reg form to | Evan Cheng | 2009-08-11 | 3 | -47/+177 |
* | 80 column violation. | Evan Cheng | 2009-08-11 | 1 | -2/+2 |
* | Change llvm-c's ordering of contexts to make it consistent. | Erick Tryzelaar | 2009-08-11 | 2 | -10/+10 |
* | Cosmetic changes. | Evan Cheng | 2009-08-11 | 1 | -8/+8 |
* | Adding a blank line back. | Evan Cheng | 2009-08-11 | 1 | -0/+1 |
* | Link metadata. | Devang Patel | 2009-08-11 | 3 | -0/+32 |
* | Remove dead metadata. | Devang Patel | 2009-08-11 | 5 | -2/+34 |
* | Rebuild RegScavenger::DistanceMap each time it is needed. | Jakob Stoklund Olesen | 2009-08-11 | 3 | -36/+66 |
* | Fix a -Asserts warning. | Daniel Dunbar | 2009-08-11 | 1 | -4/+4 |
* | Convert more Neon tests to use FileCheck. | Bob Wilson | 2009-08-11 | 2 | -16/+58 |
* | Use vAny type to get rid of Neon intrinsics that differed only in whether | Bob Wilson | 2009-08-11 | 23 | -308/+253 |
* | Fix a few more places in TableGen that need to handle EVT::vAny types. | Bob Wilson | 2009-08-11 | 1 | -2/+4 |
* | llvm-mc/X86: Parse '*' correctly (in the way the matcher expects). | Daniel Dunbar | 2009-08-11 | 2 | -11/+10 |
* | llvm-mc: Accept .word as a synonym for .short | Daniel Dunbar | 2009-08-11 | 2 | -1/+6 |
* | llvm-mc: Honor -o option (and add -f). | Daniel Dunbar | 2009-08-11 | 1 | -2/+35 |
* | llvm-mc: Sketch parsing for .file, .line, and .loc. No streamer hooks for these | Daniel Dunbar | 2009-08-11 | 5 | -0/+118 |
* | llvm-mc: Fix darwin .section parsing. It was skipping the section name and a ',' | Daniel Dunbar | 2009-08-11 | 2 | -4/+18 |
* | llvm-mc/AsmParser: Implement automatic classification of RegisterClass operands. | Daniel Dunbar | 2009-08-11 | 2 | -75/+273 |
* | Fixed more problems caused by 78142. | Sanjiv Gupta | 2009-08-11 | 2 | -2/+5 |
* | Replace DOUT. | David Goodwin | 2009-08-11 | 2 | -19/+21 |
* | Use new EVT::vAny type to combine Neon intrinsics for VPADD. | Bob Wilson | 2009-08-11 | 3 | -14/+16 |
* | Add a new overloaded EVT::vAny type for use in TableGen to allow intrinsic | Bob Wilson | 2009-08-11 | 8 | -15/+54 |
* | Added the x86 INT instructions; both the special-case INT 3 and the general-case | Sean Callanan | 2009-08-11 | 1 | -0/+4 |
* | Fix bug in NEON convert for single-precision FP. This also fixes the tblgen w... | David Goodwin | 2009-08-11 | 1 | -4/+4 |
* | Lay the groundwork for my upcoming ilist sentinel shrinking patch | Gabor Greif | 2009-08-11 | 1 | -0/+11 |
* | Add stdlib.h | Jim Grosbach | 2009-08-11 | 1 | -0/+1 |
* | SjLj based exception handling unwinding support. This patch is nasty, brutish | Jim Grosbach | 2009-08-11 | 25 | -80/+333 |
* | Enable Thumb2 instruction shrinking (32-bit to 16-bit) pass. Convert a bunch ... | Evan Cheng | 2009-08-10 | 27 | -85/+241 |
* | Modified VNInfo. The "copy" member is now a union which holds the copy for a ... | Lang Hames | 2009-08-10 | 7 | -46/+67 |
* | Fix a bug in the DAGCombiner's handling of multiple linked | Dan Gohman | 2009-08-10 | 2 | -3/+32 |
* | Fix a bug where DAGCombine was producing an illegal ConstantFP | Dan Gohman | 2009-08-10 | 2 | -19/+12 |