aboutsummaryrefslogtreecommitdiff
path: root/tools/llvm-mc/AsmParser.cpp
AgeCommit message (Expand)Author
2009-08-21llvm-mc: Improve handling of implicit alignment for magic section directivesDaniel Dunbar
2009-08-21llvm-mc: In a .fill directive, still honor .align even if invalid maximum bytesDaniel Dunbar
2009-08-21llvm-mc: Accept .fill size of 8.Daniel Dunbar
2009-08-21llvm-mc: Various section parsing fixes.Daniel Dunbar
2009-08-14llvm-mc: Support escaped characters in string literals (for .ascii and .asciz)Daniel Dunbar
2009-08-11llvm-mc: Accept .word as a synonym for .shortDaniel Dunbar
2009-08-11llvm-mc: Sketch parsing for .file, .line, and .loc. No streamer hooks for theseDaniel Dunbar
2009-08-11llvm-mc: Fix darwin .section parsing. It was skipping the section name and a ','Daniel Dunbar
2009-08-10split MachO section handling stuff out to its out .h/.cpp file.Chris Lattner
2009-08-10add a fixmeChris Lattner
2009-08-10Make the big switch: Change MCSectionMachO to represent a section *semantically*Chris Lattner
2009-08-08sink the 'name' and 'isdirective' state out of MCSection into its derived cla...Chris Lattner
2009-08-08switch this to create coff sections for now, it doesn't really matter for Chris Lattner
2009-08-07Added Mac OS X assembler style conditional assembly. I may come back and see ifKevin Enderby
2009-08-01update for API change.Chris Lattner
2009-08-01All MCSections are now required to have a SectionKind.Chris Lattner
2009-08-01llvm-mc: More quoted identifier support.Daniel Dunbar
2009-07-31llvm-mc: Support quoted identifiers.Daniel Dunbar
2009-07-31fix some more issues where we expected GetSection to do "get or create"Chris Lattner
2009-07-31fix a bunch of failing tests now that MCContext::GetSection doesn't create se...Chris Lattner
2009-07-28Move X86 instruction parsing into X86/AsmParser.Daniel Dunbar
2009-07-28Switch AsmLexer::Lex to returning a reference to the current token.Daniel Dunbar
2009-07-28Drop some AsmLexer methods in favor of their AsmToken equivalents.Daniel Dunbar
2009-07-28llvm-mc: Sink token enum into AsmToken.Daniel Dunbar
2009-07-27llvm-mc: Implement .abort fully in the front endDaniel Dunbar
2009-07-27llvm-mc: Move AsmLexer::getCurStrVal to StringRef based API.Daniel Dunbar
2009-07-20Removed the DumpSymbolsandMacros and LoadSymbolsandMacros MCStreamer API asKevin Enderby
2009-07-20Add MCAsmParser interface.Daniel Dunbar
2009-07-16Removed the SubsectionsViaSymbols MCStreamer API and replaced it with a genericKevin Enderby
2009-07-16Clean up the definition of Str in AsmParser::ParseDirectiveDarwinDumpOrLoadKevin Enderby
2009-07-16implement .include in the lexer/parser instead of passing it into the streamer.Chris Lattner
2009-07-15Added llvm-mc support for parsing the .dump and .load directives.Kevin Enderby
2009-07-14Added llvm-mc support for parsing the .include directive.Kevin Enderby
2009-07-14Added llvm-mc support for parsing the .lsym directive.Kevin Enderby
2009-07-14Added llvm-mc support for parsing the .desc directive.Kevin Enderby
2009-07-13Added llvm-mc support for parsing the .abort directive.Kevin Enderby
2009-07-13add llvm-mc support for parsing the .subsections_via_symbols directive.Kevin Enderby
2009-07-11silence vc++ warning.Chris Lattner
2009-07-10add support for .zerofill, patch by Kevin Enderby!Chris Lattner
2009-07-09add llvm-mc support for parsing the .lcomm directive, patch by Kevin Enderby!Chris Lattner
2009-07-07Implement parsing support for the .comm directive. Patch byChris Lattner
2009-07-02implement error recovery in the llvm-mc parser. Feel the power!Chris Lattner
2009-07-02llvm-mc/x86: Fix bug in disambiguation of displacement operand, introduced by meDaniel Dunbar
2009-07-01llvm-mc: Emit parsed instructions to the MCStreamer.Daniel Dunbar
2009-06-30llvm-mc: Introduce method to match a parsed x86 instruction into an MCInst.Daniel Dunbar
2009-06-30llvm-mc: Accept relocatable expressions for .org, assignments, .byte, etc.Daniel Dunbar
2009-06-30llvm-mc: Evaluation for relocatable expressions.Daniel Dunbar
2009-06-30Normalize SourceMgr messages.Daniel Dunbar
2009-06-30llvm-mc: Parse symbol attribute directives.Daniel Dunbar
2009-06-29llvm-mc: Parse .{,b,p2}align{,w,l} directives.Daniel Dunbar