aboutsummaryrefslogtreecommitdiff
path: root/tools/llvm-mc
AgeCommit message (Expand)Author
2009-07-23Convert StringMap to using StringRef for its APIs.Daniel Dunbar
2009-07-20Removed the DumpSymbolsandMacros and LoadSymbolsandMacros MCStreamer API asKevin Enderby
2009-07-20Add MCAsmLexer interface.Daniel Dunbar
2009-07-20Add MCAsmParser interface.Daniel Dunbar
2009-07-17llvm-mc: Default -triple to LLVM_HOSTTRIPLE.Daniel Dunbar
2009-07-17llvm-mc: Add -triple, and start fetching the target asm printer.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 various nit-picky bugs in displacement parsing.Daniel Dunbar
2009-07-02llvm-mc/x86: Fix bug in disambiguation of displacement operand, introduced by meDaniel Dunbar
2009-07-02llvm-mc/x86: Factor out ParseX86Register.Daniel Dunbar
2009-07-02llvm-mc/x86: Rename X86Operand::ScaleReg to IndexReg and make order consistentDaniel Dunbar
2009-07-01llvm-mc: Add some more doxyments.Daniel Dunbar
2009-07-01llvm-mc: Fill in the rest of tokens for 'as-lex' mode.Daniel Dunbar
2009-07-01Rename MCValue::isConstant to isAbsolute.Daniel Dunbar
2009-07-01add some of the new tokens, others are still missing.Chris Lattner
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 when parsing displacements andDaniel Dunbar
2009-06-30llvm-mc: Symbols in a relocatable expression of the (a - b + cst) form areDaniel Dunbar
2009-06-30Suppress may-be-used-uninitialized warning.Daniel Dunbar
2009-06-30Fix CMake buildDouglas Gregor
2009-06-30llvm-mc: Accept relocatable expressions for .org, assignments, .byte, etc.Daniel Dunbar
2009-06-30llvm-mc: Rewrite binary subtraction for relocatable expressions, we can't alwaysDaniel 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
2009-06-29llvm-mc: Diagnose misuse (mix) of defined symbols and labels.Daniel Dunbar
2009-06-29llvm-mc: Recognize C++ style comments.Daniel Dunbar
2009-06-29llvm-mc: Recognize C++ style comments.Daniel Dunbar
2009-06-29Fix uninitialized variable warning.Daniel Dunbar
2009-06-29MC: Improve expression parsing and implement evaluation of absolute expressionsDaniel Dunbar
2009-06-29MC: Improve expression parsing and implement evaluation of absolute expressions.Daniel Dunbar
2009-06-25MC: Parse .org directives.Daniel Dunbar
2009-06-25MC: Parse .set and assignments.Daniel Dunbar
2009-06-24Basic .s parsing for .asci[iz], .fill, .space, {.byte, .short, ... }Daniel Dunbar
2009-06-24implement a bunch of synonyms for section switching.Chris Lattner