aboutsummaryrefslogtreecommitdiffstats
path: root/tools/llvm-mc
Commit message (Expand)AuthorAgeFilesLines
* silence vc++ warning.Chris Lattner2009-07-111-1/+1
* add support for .zerofill, patch by Kevin Enderby!Chris Lattner2009-07-102-1/+95
* add llvm-mc support for parsing the .lcomm directive, patch by Kevin Enderby!Chris Lattner2009-07-092-12/+15
* Implement parsing support for the .comm directive. Patch byChris Lattner2009-07-072-0/+61
* implement error recovery in the llvm-mc parser. Feel the power!Chris Lattner2009-07-021-4/+11
* llvm-mc/x86: Fix various nit-picky bugs in displacement parsing.Daniel Dunbar2009-07-021-13/+36
* llvm-mc/x86: Fix bug in disambiguation of displacement operand, introduced by meDaniel Dunbar2009-07-023-1/+24
* llvm-mc/x86: Factor out ParseX86Register.Daniel Dunbar2009-07-022-13/+33
* llvm-mc/x86: Rename X86Operand::ScaleReg to IndexReg and make order consistentDaniel Dunbar2009-07-021-6/+6
* llvm-mc: Add some more doxyments.Daniel Dunbar2009-07-011-27/+41
* llvm-mc: Fill in the rest of tokens for 'as-lex' mode.Daniel Dunbar2009-07-011-11/+23
* Rename MCValue::isConstant to isAbsolute.Daniel Dunbar2009-07-011-4/+4
* add some of the new tokens, others are still missing.Chris Lattner2009-07-011-10/+17
* 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-303-26/+31
* llvm-mc: Accept relocatable expressions when parsing displacements andDaniel Dunbar2009-06-301-13/+13
* llvm-mc: Symbols in a relocatable expression of the (a - b + cst) form areDaniel Dunbar2009-06-301-5/+4
* Suppress may-be-used-uninitialized warning.Daniel Dunbar2009-06-301-1/+2
* Fix CMake buildDouglas Gregor2009-06-301-0/+1
* llvm-mc: Accept relocatable expressions for .org, assignments, .byte, etc.Daniel Dunbar2009-06-301-12/+16
* llvm-mc: Rewrite binary subtraction for relocatable expressions, we can't alwaysDaniel Dunbar2009-06-301-26/+33
* llvm-mc: Evaluation for relocatable expressions.Daniel Dunbar2009-06-304-40/+132
* Normalize SourceMgr messages.Daniel Dunbar2009-06-305-13/+19
* llvm-mc: Parse symbol attribute directives.Daniel Dunbar2009-06-302-0/+60
* llvm-mc: Parse .{,b,p2}align{,w,l} directives.Daniel Dunbar2009-06-292-2/+98
* llvm-mc: Diagnose misuse (mix) of defined symbols and labels.Daniel Dunbar2009-06-291-6/+40
* llvm-mc: Recognize C++ style comments.Daniel Dunbar2009-06-291-1/+1
* llvm-mc: Recognize C++ style comments.Daniel Dunbar2009-06-291-5/+9
* Fix uninitialized variable warning.Daniel Dunbar2009-06-291-1/+1
* MC: Improve expression parsing and implement evaluation of absolute expressionsDaniel Dunbar2009-06-292-0/+249
* MC: Improve expression parsing and implement evaluation of absolute expressions.Daniel Dunbar2009-06-295-56/+170
* MC: Parse .org directives.Daniel Dunbar2009-06-252-1/+31
* MC: Parse .set and assignments.Daniel Dunbar2009-06-254-3/+55
* Basic .s parsing for .asci[iz], .fill, .space, {.byte, .short, ... }Daniel Dunbar2009-06-243-1/+157
* implement a bunch of synonyms for section switching.Chris Lattner2009-06-242-4/+115
* add support for parsing and emitting .section directives. We can now parse Chris Lattner2009-06-242-1/+38
* add trivial support for passing label definitions through the MCStreamer.Chris Lattner2009-06-243-3/+11
* create an MCStreamer and provide it to AsmParser.Chris Lattner2009-06-244-4/+13
* make the lexer unique strings it lexes instead of passing them back asChris Lattner2009-06-243-7/+29
* 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-234-199/+234
* implement a trivial binary expression parser, we can now parse all of 176.gcc...Chris Lattner2009-06-234-7/+84
* get a definition of strull on windows, thanks to Howard Su.Chris Lattner2009-06-231-0/+1
* Include cstdio to get EOF, needed with gcc-4.4.Duncan Sands2009-06-221-1/+2
* 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-225-5/+42
* implement parser support for '*' operands, as in "call *%eax".Chris Lattner2009-06-221-6/+13
* implement memory operand parsing.Chris Lattner2009-06-222-14/+132
* start implementing some simple operand parsing.Chris Lattner2009-06-222-15/+121
* rename SourceMgr::PrintError to PrintMessage.Chris Lattner2009-06-215-16/+21