aboutsummaryrefslogtreecommitdiffstats
path: root/tools/llvm-mc/AsmParser.cpp
Commit message (Expand)AuthorAgeFilesLines
* Removed the DumpSymbolsandMacros and LoadSymbolsandMacros MCStreamer API asKevin Enderby2009-07-201-6/+8
* Add MCAsmParser interface.Daniel Dunbar2009-07-201-1/+3
* Removed the SubsectionsViaSymbols MCStreamer API and replaced it with a genericKevin Enderby2009-07-161-1/+1
* Clean up the definition of Str in AsmParser::ParseDirectiveDarwinDumpOrLoadKevin Enderby2009-07-161-3/+1
* implement .include in the lexer/parser instead of passing it into the streamer.Chris Lattner2009-07-161-7/+13
* Added llvm-mc support for parsing the .dump and .load directives.Kevin Enderby2009-07-151-0/+29
* Added llvm-mc support for parsing the .include directive.Kevin Enderby2009-07-141-0/+24
* Added llvm-mc support for parsing the .lsym directive.Kevin Enderby2009-07-141-0/+32
* Added llvm-mc support for parsing the .desc directive.Kevin Enderby2009-07-141-0/+33
* Added llvm-mc support for parsing the .abort directive.Kevin Enderby2009-07-131-0/+25
* add llvm-mc support for parsing the .subsections_via_symbols directive.Kevin Enderby2009-07-131-0/+16
* silence vc++ warning.Chris Lattner2009-07-111-1/+1
* add support for .zerofill, patch by Kevin Enderby!Chris Lattner2009-07-101-0/+94
* add llvm-mc support for parsing the .lcomm directive, patch by Kevin Enderby!Chris Lattner2009-07-091-11/+14
* Implement parsing support for the .comm directive. Patch byChris Lattner2009-07-071-0/+59
* implement error recovery in the llvm-mc parser. Feel the power!Chris Lattner2009-07-021-4/+11
* llvm-mc/x86: Fix bug in disambiguation of displacement operand, introduced by meDaniel Dunbar2009-07-021-0/+13
* llvm-mc: Emit parsed instructions to the MCStreamer.Daniel Dunbar2009-07-011-2/+1
* llvm-mc: Introduce method to match a parsed x86 instruction into an MCInst.Daniel Dunbar2009-06-301-1/+1
* llvm-mc: Accept relocatable expressions for .org, assignments, .byte, etc.Daniel Dunbar2009-06-301-12/+16
* llvm-mc: Evaluation for relocatable expressions.Daniel Dunbar2009-06-301-0/+12
* Normalize SourceMgr messages.Daniel Dunbar2009-06-301-7/+11
* llvm-mc: Parse symbol attribute directives.Daniel Dunbar2009-06-301-0/+55
* llvm-mc: Parse .{,b,p2}align{,w,l} directives.Daniel Dunbar2009-06-291-2/+96
* llvm-mc: Diagnose misuse (mix) of defined symbols and labels.Daniel Dunbar2009-06-291-6/+40
* Fix uninitialized variable warning.Daniel Dunbar2009-06-291-1/+1
* MC: Improve expression parsing and implement evaluation of absolute expressions.Daniel Dunbar2009-06-291-31/+118
* MC: Parse .org directives.Daniel Dunbar2009-06-251-1/+30
* MC: Parse .set and assignments.Daniel Dunbar2009-06-251-2/+51
* Basic .s parsing for .asci[iz], .fill, .space, {.byte, .short, ... }Daniel Dunbar2009-06-241-1/+149
* implement a bunch of synonyms for section switching.Chris Lattner2009-06-241-3/+112
* add support for parsing and emitting .section directives. We can now parse Chris Lattner2009-06-241-1/+34
* add trivial support for passing label definitions through the MCStreamer.Chris Lattner2009-06-241-0/+6
* make the lexer unique strings it lexes instead of passing them back asChris Lattner2009-06-241-1/+1
* Start flushing out MCContext.Daniel Dunbar2009-06-231-0/+2
* refactor a bunch of X86 specific stuff out to its own file.Chris Lattner2009-06-231-197/+5
* implement a trivial binary expression parser, we can now parse all of 176.gcc...Chris Lattner2009-06-231-3/+57
* process memory operands with a parenthesized expression for a displacement,Chris Lattner2009-06-221-2/+12
* Implement full support for parsing primary expressions. We can now parseChris Lattner2009-06-221-3/+37
* implement parser support for '*' operands, as in "call *%eax".Chris Lattner2009-06-221-6/+13
* implement memory operand parsing.Chris Lattner2009-06-221-14/+130
* start implementing some simple operand parsing.Chris Lattner2009-06-221-14/+115
* rename SourceMgr::PrintError to PrintMessage.Chris Lattner2009-06-211-2/+12
* set up the top-level parsing loop.Chris Lattner2009-06-211-0/+54
* stub out parser for asm files. Change invariant on lexer to alwaysChris Lattner2009-06-211-0/+19