| Commit message (Expand) | Author | Age | Files | Lines |
* | move some files out of the llvm-mc tool into the MCParser library so | Chris Lattner | 2010-01-22 | 1 | -178/+0 |
* | create a new MCParser library and move some stuff into it. | Chris Lattner | 2010-01-22 | 1 | -1/+1 |
* | Moved handling of inclusion from the AsmLexer to | Sean Callanan | 2010-01-21 | 1 | -0/+7 |
* | Changed the AsmParser to handle error messages itself | Sean Callanan | 2010-01-20 | 1 | -0/+2 |
* | Promoted the reference to the SourceMgr from AsmLexer | Sean Callanan | 2010-01-20 | 1 | -1/+3 |
* | Added a Lex function to the AsmParser, to allow handling | Sean Callanan | 2010-01-19 | 1 | -0/+3 |
* | fix a bug in range information for $42, eliminate an | Chris Lattner | 2010-01-15 | 1 | -2/+1 |
* | extend MCAsmParser::ParseExpression and ParseParenExpression | Chris Lattner | 2010-01-15 | 1 | -5/+7 |
* | add a new DirectiveMap stringmap, which allows more efficient dispatching | Chris Lattner | 2009-09-27 | 1 | -11/+15 |
* | MC: Give target specific parsers access to the MCStreamer. | Daniel Dunbar | 2009-09-10 | 1 | -0/+2 |
* | Added the AsmToken::Hash enum constant to MCAsmLexer.h in preparation of | Kevin Enderby | 2009-09-04 | 1 | -2/+5 |
* | llvm-mc: Simplify EmitAssignment ('.set' is identical to '='). | Daniel Dunbar | 2009-08-31 | 1 | -1/+1 |
* | llvm-mc: Remove MCAsmParser::Parse[Paren]RelocatableExpression. | Daniel Dunbar | 2009-08-31 | 1 | -4/+0 |
* | llvm-mc: Add MCAsmParser::Parse[Paren]Expression forms which return an MCExpr. | Daniel Dunbar | 2009-08-31 | 1 | -0/+2 |
* | llvm-mc: Add MCAsmParser::getContext. | Daniel Dunbar | 2009-08-31 | 1 | -10/+4 |
* | llvm-mc: Switch MCExpr construction to using static member functions, and tak... | Daniel Dunbar | 2009-08-31 | 1 | -4/+4 |
* | llvm-mc: Move AsmExpr into MC lib (as MCExpr). | Daniel Dunbar | 2009-08-31 | 1 | -5/+5 |
* | llvm-mc/Mach-O: Unique sections properly, so we don't get duplicate text | Daniel Dunbar | 2009-08-26 | 1 | -2/+15 |
* | llvm-mc/Mach-O: Don't put assembler temporary labels in the symbol table. | Daniel Dunbar | 2009-08-26 | 1 | -0/+2 |
* | llvm-mc: Various section parsing fixes. | Daniel Dunbar | 2009-08-21 | 1 | -1/+2 |
* | llvm-mc: Support escaped characters in string literals (for .ascii and .asciz) | Daniel Dunbar | 2009-08-14 | 1 | -0/+4 |
* | llvm-mc: Sketch parsing for .file, .line, and .loc. No streamer hooks for these | Daniel Dunbar | 2009-08-11 | 1 | -0/+3 |
* | Make the big switch: Change MCSectionMachO to represent a section *semantically* | Chris Lattner | 2009-08-10 | 1 | -2/+2 |
* | Added Mac OS X assembler style conditional assembly. I may come back and see if | Kevin Enderby | 2009-08-07 | 1 | -1/+15 |
* | llvm-mc: More quoted identifier support. | Daniel Dunbar | 2009-08-01 | 1 | -0/+4 |
* | Move X86 instruction parsing into X86/AsmParser. | Daniel Dunbar | 2009-07-28 | 1 | -9/+0 |
* | Make expression parsing and error/warning reporting available through the | Daniel Dunbar | 2009-07-28 | 1 | -24/+15 |
* | Provide generic MCAsmParser when constructing target specific parsers. | Daniel Dunbar | 2009-07-28 | 1 | -7/+7 |
* | llvm-mc: Implement .abort fully in the front end | Daniel Dunbar | 2009-07-27 | 1 | -2/+3 |
* | llvm-mc: Move AsmLexer::getCurStrVal to StringRef based API. | Daniel Dunbar | 2009-07-27 | 1 | -2/+2 |
* | Removed the DumpSymbolsandMacros and LoadSymbolsandMacros MCStreamer API as | Kevin Enderby | 2009-07-20 | 1 | -1/+1 |
* | Add MCAsmLexer interface. | Daniel Dunbar | 2009-07-20 | 1 | -0/+3 |
* | Add MCAsmParser interface. | Daniel Dunbar | 2009-07-20 | 1 | -3/+9 |
* | Added llvm-mc support for parsing the .dump and .load directives. | Kevin Enderby | 2009-07-15 | 1 | -0/+2 |
* | Added llvm-mc support for parsing the .include directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+1 |
* | Added llvm-mc support for parsing the .lsym directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+1 |
* | Added llvm-mc support for parsing the .desc directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+1 |
* | Added llvm-mc support for parsing the .abort directive. | Kevin Enderby | 2009-07-13 | 1 | -0/+2 |
* | add llvm-mc support for parsing the .subsections_via_symbols directive. | Kevin Enderby | 2009-07-13 | 1 | -0/+3 |
* | add support for .zerofill, patch by Kevin Enderby! | Chris Lattner | 2009-07-10 | 1 | -1/+1 |
* | add llvm-mc support for parsing the .lcomm directive, patch by Kevin Enderby! | Chris Lattner | 2009-07-09 | 1 | -1/+1 |
* | Implement parsing support for the .comm directive. Patch by | Chris Lattner | 2009-07-07 | 1 | -0/+2 |
* | llvm-mc/x86: Fix bug in disambiguation of displacement operand, introduced by me | Daniel Dunbar | 2009-07-02 | 1 | -0/+10 |
* | llvm-mc/x86: Factor out ParseX86Register. | Daniel Dunbar | 2009-07-02 | 1 | -0/+1 |
* | llvm-mc: Introduce method to match a parsed x86 instruction into an MCInst. | Daniel Dunbar | 2009-06-30 | 1 | -3/+5 |
* | llvm-mc: Evaluation for relocatable expressions. | Daniel Dunbar | 2009-06-30 | 1 | -4/+13 |
* | Normalize SourceMgr messages. | Daniel Dunbar | 2009-06-30 | 1 | -1/+2 |
* | llvm-mc: Parse symbol attribute directives. | Daniel Dunbar | 2009-06-30 | 1 | -0/+5 |
* | llvm-mc: Parse .{,b,p2}align{,w,l} directives. | Daniel Dunbar | 2009-06-29 | 1 | -0/+2 |
* | MC: Improve expression parsing and implement evaluation of absolute expressions. | Daniel Dunbar | 2009-06-29 | 1 | -4/+19 |