| Commit message (Expand) | Author | Age | Files | Lines |
* | silence vc++ warning. | Chris Lattner | 2009-07-11 | 1 | -1/+1 |
* | add support for .zerofill, patch by Kevin Enderby! | Chris Lattner | 2009-07-10 | 2 | -1/+95 |
* | add llvm-mc support for parsing the .lcomm directive, patch by Kevin Enderby! | Chris Lattner | 2009-07-09 | 2 | -12/+15 |
* | Implement parsing support for the .comm directive. Patch by | Chris Lattner | 2009-07-07 | 2 | -0/+61 |
* | implement error recovery in the llvm-mc parser. Feel the power! | Chris Lattner | 2009-07-02 | 1 | -4/+11 |
* | llvm-mc/x86: Fix various nit-picky bugs in displacement parsing. | Daniel Dunbar | 2009-07-02 | 1 | -13/+36 |
* | llvm-mc/x86: Fix bug in disambiguation of displacement operand, introduced by me | Daniel Dunbar | 2009-07-02 | 3 | -1/+24 |
* | llvm-mc/x86: Factor out ParseX86Register. | Daniel Dunbar | 2009-07-02 | 2 | -13/+33 |
* | llvm-mc/x86: Rename X86Operand::ScaleReg to IndexReg and make order consistent | Daniel Dunbar | 2009-07-02 | 1 | -6/+6 |
* | llvm-mc: Add some more doxyments. | Daniel Dunbar | 2009-07-01 | 1 | -27/+41 |
* | llvm-mc: Fill in the rest of tokens for 'as-lex' mode. | Daniel Dunbar | 2009-07-01 | 1 | -11/+23 |
* | Rename MCValue::isConstant to isAbsolute. | Daniel Dunbar | 2009-07-01 | 1 | -4/+4 |
* | add some of the new tokens, others are still missing. | Chris Lattner | 2009-07-01 | 1 | -10/+17 |
* | llvm-mc: Emit parsed instructions to the MCStreamer. | Daniel Dunbar | 2009-07-01 | 1 | -2/+1 |
* | llvm-mc: Introduce method to match a parsed x86 instruction into an MCInst. | Daniel Dunbar | 2009-06-30 | 3 | -26/+31 |
* | llvm-mc: Accept relocatable expressions when parsing displacements and | Daniel Dunbar | 2009-06-30 | 1 | -13/+13 |
* | llvm-mc: Symbols in a relocatable expression of the (a - b + cst) form are | Daniel Dunbar | 2009-06-30 | 1 | -5/+4 |
* | Suppress may-be-used-uninitialized warning. | Daniel Dunbar | 2009-06-30 | 1 | -1/+2 |
* | Fix CMake build | Douglas Gregor | 2009-06-30 | 1 | -0/+1 |
* | llvm-mc: Accept relocatable expressions for .org, assignments, .byte, etc. | Daniel Dunbar | 2009-06-30 | 1 | -12/+16 |
* | llvm-mc: Rewrite binary subtraction for relocatable expressions, we can't always | Daniel Dunbar | 2009-06-30 | 1 | -26/+33 |
* | llvm-mc: Evaluation for relocatable expressions. | Daniel Dunbar | 2009-06-30 | 4 | -40/+132 |
* | Normalize SourceMgr messages. | Daniel Dunbar | 2009-06-30 | 5 | -13/+19 |
* | llvm-mc: Parse symbol attribute directives. | Daniel Dunbar | 2009-06-30 | 2 | -0/+60 |
* | llvm-mc: Parse .{,b,p2}align{,w,l} directives. | Daniel Dunbar | 2009-06-29 | 2 | -2/+98 |
* | llvm-mc: Diagnose misuse (mix) of defined symbols and labels. | Daniel Dunbar | 2009-06-29 | 1 | -6/+40 |
* | llvm-mc: Recognize C++ style comments. | Daniel Dunbar | 2009-06-29 | 1 | -1/+1 |
* | llvm-mc: Recognize C++ style comments. | Daniel Dunbar | 2009-06-29 | 1 | -5/+9 |
* | Fix uninitialized variable warning. | Daniel Dunbar | 2009-06-29 | 1 | -1/+1 |
* | MC: Improve expression parsing and implement evaluation of absolute expressions | Daniel Dunbar | 2009-06-29 | 2 | -0/+249 |
* | MC: Improve expression parsing and implement evaluation of absolute expressions. | Daniel Dunbar | 2009-06-29 | 5 | -56/+170 |
* | MC: Parse .org directives. | Daniel Dunbar | 2009-06-25 | 2 | -1/+31 |
* | MC: Parse .set and assignments. | Daniel Dunbar | 2009-06-25 | 4 | -3/+55 |
* | Basic .s parsing for .asci[iz], .fill, .space, {.byte, .short, ... } | Daniel Dunbar | 2009-06-24 | 3 | -1/+157 |
* | implement a bunch of synonyms for section switching. | Chris Lattner | 2009-06-24 | 2 | -4/+115 |
* | add support for parsing and emitting .section directives. We can now parse | Chris Lattner | 2009-06-24 | 2 | -1/+38 |
* | add trivial support for passing label definitions through the MCStreamer. | Chris Lattner | 2009-06-24 | 3 | -3/+11 |
* | create an MCStreamer and provide it to AsmParser. | Chris Lattner | 2009-06-24 | 4 | -4/+13 |
* | make the lexer unique strings it lexes instead of passing them back as | Chris Lattner | 2009-06-24 | 3 | -7/+29 |
* | Start flushing out MCContext. | Daniel Dunbar | 2009-06-23 | 1 | -0/+2 |
* | refactor a bunch of X86 specific stuff out to its own file. | Chris Lattner | 2009-06-23 | 4 | -199/+234 |
* | implement a trivial binary expression parser, we can now parse all of 176.gcc... | Chris Lattner | 2009-06-23 | 4 | -7/+84 |
* | get a definition of strull on windows, thanks to Howard Su. | Chris Lattner | 2009-06-23 | 1 | -0/+1 |
* | Include cstdio to get EOF, needed with gcc-4.4. | Duncan Sands | 2009-06-22 | 1 | -1/+2 |
* | process memory operands with a parenthesized expression for a displacement, | Chris Lattner | 2009-06-22 | 1 | -2/+12 |
* | Implement full support for parsing primary expressions. We can now parse | Chris Lattner | 2009-06-22 | 5 | -5/+42 |
* | implement parser support for '*' operands, as in "call *%eax". | Chris Lattner | 2009-06-22 | 1 | -6/+13 |
* | implement memory operand parsing. | Chris Lattner | 2009-06-22 | 2 | -14/+132 |
* | start implementing some simple operand parsing. | Chris Lattner | 2009-06-22 | 2 | -15/+121 |
* | rename SourceMgr::PrintError to PrintMessage. | Chris Lattner | 2009-06-21 | 5 | -16/+21 |