| Commit message (Expand) | Author | Age | Files | Lines |
* | llvm-mc: Start MCAssembler and MCMachOStreamer. | Daniel Dunbar | 2009-08-21 | 2 | -0/+535 |
* | Fix typo | Daniel Dunbar | 2009-08-19 | 1 | -1/+1 |
* | fix asmstreaming of 2/4 byte elements with pow-2 alignments. | Chris Lattner | 2009-08-19 | 1 | -2/+2 |
* | llvm-mc: Fix bugs where bytes were unintentionally being printed as signed. | Daniel Dunbar | 2009-08-14 | 1 | -1/+2 |
* | llvm-mc: When handling a .set, make sure to print subsequent references to the | Daniel Dunbar | 2009-08-14 | 1 | -2/+8 |
* | llvm-mc: zerofill shouldn't print quotes around the section,segment. | Daniel Dunbar | 2009-08-14 | 1 | -3/+3 |
* | llvm-mc: Support escaped characters in string literals (for .ascii and .asciz) | Daniel Dunbar | 2009-08-14 | 1 | -2/+26 |
* | Update llvm-mc / MCAsmStreamer to print the instruction using the actual target | Daniel Dunbar | 2009-08-14 | 3 | -41/+63 |
* | llvm-mc/AsmParser: Match hard coded registers (e.g. 'shldl %cl, %eax, %eax') | Daniel Dunbar | 2009-08-11 | 1 | -0/+4 |
* | llvm-mc: Fix a crash on invalid due to a typo in relocatable expression | Daniel Dunbar | 2009-08-11 | 1 | -0/+8 |
* | llvm-mc/X86: Parse '*' correctly (in the way the matcher expects). | Daniel Dunbar | 2009-08-11 | 1 | -0/+3 |
* | llvm-mc: Accept .word as a synonym for .short | Daniel Dunbar | 2009-08-11 | 1 | -0/+5 |
* | llvm-mc: Sketch parsing for .file, .line, and .loc. No streamer hooks for these | Daniel Dunbar | 2009-08-11 | 3 | -0/+18 |
* | llvm-mc: Fix darwin .section parsing. It was skipping the section name and a ',' | Daniel Dunbar | 2009-08-11 | 1 | -0/+4 |
* | llvm-mc/AsmParser: Implement automatic classification of RegisterClass operands. | Daniel Dunbar | 2009-08-11 | 1 | -4/+17 |
* | llvm-mc/AsmParser: Disambiguate i64i8imm. | Daniel Dunbar | 2009-08-10 | 1 | -1/+7 |
* | llvm-mc/AsmParser: Check for matches with super classes when matching | Daniel Dunbar | 2009-08-10 | 1 | -1/+0 |
* | Disable this test for now, we don't check for super classes when matching yet. | Daniel Dunbar | 2009-08-09 | 1 | -1/+2 |
* | llvm-mc/AsmParser: Implement user defined super classes. | Daniel Dunbar | 2009-08-09 | 1 | -0/+14 |
* | sink the 'name' and 'isdirective' state out of MCSection into its derived cla... | Chris Lattner | 2009-08-08 | 1 | -2/+2 |
* | llvm-mc/AsmMatcher: Improve match code. | Daniel Dunbar | 2009-08-08 | 2 | -6/+0 |
* | Added Mac OS X assembler style conditional assembly. I may come back and see if | Kevin Enderby | 2009-08-07 | 1 | -0/+12 |
* | Disable X86 AsmMatcher for now, it is causing gcc-4.0 to run out of memory on | Daniel Dunbar | 2009-08-07 | 2 | -0/+6 |
* | llvm-mc/AsmMatcher: Move to a slightly more sane matching design. | Daniel Dunbar | 2009-08-07 | 1 | -1/+0 |
* | llvm-mc: More quoted identifier support. | Daniel Dunbar | 2009-08-01 | 1 | -0/+25 |
* | llvm-mc: Add -triple, and fix some typos | Daniel Dunbar | 2009-07-31 | 2 | -3/+3 |
* | llvm-mc: Fix .s output to quote section & symbol names when necessary. | Daniel Dunbar | 2009-07-31 | 2 | -8/+8 |
* | llvm-mc: A few more parsing / match tweaks. | Daniel Dunbar | 2009-07-31 | 1 | -0/+27 |
* | llvm-mc: Support quoted identifiers. | Daniel Dunbar | 2009-07-31 | 1 | -0/+26 |
* | llvm-mc/X86: Sketch match functions for immediates and memory operands. | Daniel Dunbar | 2009-07-31 | 1 | -2/+14 |
* | Add this test back, the check pattern was too strict. | Daniel Dunbar | 2009-07-31 | 1 | -0/+7 |
* | Remove this test while I figure out why it is failing. | Daniel Dunbar | 2009-07-31 | 1 | -5/+0 |
* | llvm-mc: Match a few X86 instructions. | Daniel Dunbar | 2009-07-31 | 2 | -1/+6 |
* | llvm-mc: Implement .abort fully in the front end | Daniel Dunbar | 2009-07-27 | 1 | -4/+2 |
* | Removed the DumpSymbolsandMacros and LoadSymbolsandMacros MCStreamer API as | Kevin Enderby | 2009-07-20 | 1 | -8/+0 |
* | llvm-mc: Add -triple, and start fetching the target asm printer. | Daniel Dunbar | 2009-07-17 | 20 | -25/+25 |
* | implement .include in the lexer/parser instead of passing it into the streamer. | Chris Lattner | 2009-07-16 | 1 | -6/+7 |
* | Added llvm-mc support for parsing the .dump and .load directives. | Kevin Enderby | 2009-07-15 | 1 | -0/+8 |
* | Added llvm-mc support for parsing the .include directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+8 |
* | Added llvm-mc support for parsing the .lsym directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+8 |
* | Added llvm-mc support for parsing the .desc directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+8 |
* | Added llvm-mc support for parsing the .abort directive. | Kevin Enderby | 2009-07-13 | 1 | -0/+8 |
* | add llvm-mc support for parsing the .subsections_via_symbols directive. | Kevin Enderby | 2009-07-13 | 1 | -0/+6 |
* | add support for .zerofill, patch by Kevin Enderby! | Chris Lattner | 2009-07-10 | 1 | -0/+10 |
* | add llvm-mc support for parsing the .lcomm directive, patch by Kevin Enderby! | Chris Lattner | 2009-07-09 | 1 | -0/+10 |
* | Switch all the MC tests to use FileCheck. | Chris Lattner | 2009-07-08 | 9 | -45/+47 |
* | convert to FileCheck style. | Chris Lattner | 2009-07-08 | 1 | -11/+10 |
* | Implement parsing support for the .comm directive. Patch by | Chris Lattner | 2009-07-07 | 1 | -0/+8 |
* | llvm-mc/x86: Test case for x86 operand parsing. | Daniel Dunbar | 2009-07-02 | 1 | -0/+36 |
* | llvm-mc: Symbols in a relocatable expression of the (a - b + cst) form are | Daniel Dunbar | 2009-06-30 | 1 | -0/+7 |