| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Added llvm-mc support for parsing the .include directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+24 |
| | | | | | llvm-svn: 75711 | ||||
| * | Added llvm-mc support for parsing the .lsym directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+32 |
| | | | | | llvm-svn: 75685 | ||||
| * | Added llvm-mc support for parsing the .desc directive. | Kevin Enderby | 2009-07-14 | 1 | -0/+33 |
| | | | | | llvm-svn: 75645 | ||||
| * | Added llvm-mc support for parsing the .abort directive. | Kevin Enderby | 2009-07-13 | 1 | -0/+25 |
| | | | | | llvm-svn: 75545 | ||||
| * | add llvm-mc support for parsing the .subsections_via_symbols directive. | Kevin Enderby | 2009-07-13 | 1 | -0/+16 |
| | | | | | llvm-svn: 75500 | ||||
| * | silence vc++ warning. | Chris Lattner | 2009-07-11 | 1 | -1/+1 |
| | | | | | llvm-svn: 75394 | ||||
| * | add support for .zerofill, patch by Kevin Enderby! | Chris Lattner | 2009-07-10 | 1 | -0/+94 |
| | | | | | llvm-svn: 75301 | ||||
| * | add llvm-mc support for parsing the .lcomm directive, patch by Kevin Enderby! | Chris Lattner | 2009-07-09 | 1 | -11/+14 |
| | | | | | llvm-svn: 75148 | ||||
| * | Implement parsing support for the .comm directive. Patch by | Chris Lattner | 2009-07-07 | 1 | -0/+59 |
| | | | | | | | Kevin Enderby! llvm-svn: 74944 | ||||
| * | implement error recovery in the llvm-mc parser. Feel the power! | Chris Lattner | 2009-07-02 | 1 | -4/+11 |
| | | | | | llvm-svn: 74728 | ||||
| * | llvm-mc/x86: Fix bug in disambiguation of displacement operand, introduced by me | Daniel Dunbar | 2009-07-02 | 1 | -0/+13 |
| | | | | | | | | | | | | | | (I think). - We weren't properly parsing the leading parenthesized expression in something like 'push (4)(%eax)'. - Added ParseParenRelocatableExpression to support this. I suspect we should just use lookahead, though. - Test case to follow. llvm-svn: 74685 | ||||
| * | llvm-mc: Emit parsed instructions to the MCStreamer. | Daniel Dunbar | 2009-07-01 | 1 | -2/+1 |
| | | | | | llvm-svn: 74594 | ||||
| * | llvm-mc: Introduce method to match a parsed x86 instruction into an MCInst. | Daniel Dunbar | 2009-06-30 | 1 | -1/+1 |
| | | | | | llvm-svn: 74573 | ||||
| * | llvm-mc: Accept relocatable expressions for .org, assignments, .byte, etc. | Daniel Dunbar | 2009-06-30 | 1 | -12/+16 |
| | | | | | llvm-svn: 74498 | ||||
| * | llvm-mc: Evaluation for relocatable expressions. | Daniel Dunbar | 2009-06-30 | 1 | -0/+12 |
| | | | | | llvm-svn: 74496 | ||||
| * | Normalize SourceMgr messages. | Daniel Dunbar | 2009-06-30 | 1 | -7/+11 |
| | | | | | | | | | | | | | - Don't print "Parsing" in front of every message. - Take additional "type" argument which is prepended to the message (with ": ") if given. - Update clients to print errors (warnings) as: <filename>:<line number>: error(warning): ... llvm-svn: 74489 | ||||
| * | llvm-mc: Parse symbol attribute directives. | Daniel Dunbar | 2009-06-30 | 1 | -0/+55 |
| | | | | | llvm-svn: 74487 | ||||
| * | llvm-mc: Parse .{,b,p2}align{,w,l} directives. | Daniel Dunbar | 2009-06-29 | 1 | -2/+96 |
| | | | | | llvm-svn: 74478 | ||||
| * | llvm-mc: Diagnose misuse (mix) of defined symbols and labels. | Daniel Dunbar | 2009-06-29 | 1 | -6/+40 |
| | | | | | | | | | | | | | | | | | | - For example, we diagnose errors on: -- a: a = 10 -- - For now we reject code like: -- .long a a = 10 -- which "as" accepts (on Darwin). llvm-svn: 74476 | ||||
| * | Fix uninitialized variable warning. | Daniel Dunbar | 2009-06-29 | 1 | -1/+1 |
| | | | | | llvm-svn: 74457 | ||||
| * | MC: Improve expression parsing and implement evaluation of absolute expressions. | Daniel Dunbar | 2009-06-29 | 1 | -31/+118 |
| | | | | | llvm-svn: 74448 | ||||
| * | MC: Parse .org directives. | Daniel Dunbar | 2009-06-25 | 1 | -1/+30 |
| | | | | | llvm-svn: 74218 | ||||
| * | MC: Parse .set and assignments. | Daniel Dunbar | 2009-06-25 | 1 | -2/+51 |
| | | | | | llvm-svn: 74208 | ||||
| * | Basic .s parsing for .asci[iz], .fill, .space, {.byte, .short, ... } | Daniel Dunbar | 2009-06-24 | 1 | -1/+149 |
| | | | | | | | | - Includes some DG tests in test/MC/AsmParser, which are rather primitive since we don't have a -verify mode yet. llvm-svn: 74139 | ||||
| * | implement a bunch of synonyms for section switching. | Chris Lattner | 2009-06-24 | 1 | -3/+112 |
| | | | | | llvm-svn: 74062 | ||||
| * | add support for parsing and emitting .section directives. We can now parse | Chris Lattner | 2009-06-24 | 1 | -1/+34 |
| | | | | | | | | things like: .section __TEXT,__cstring,cstring_literals llvm-svn: 74058 | ||||
| * | add trivial support for passing label definitions through the MCStreamer. | Chris Lattner | 2009-06-24 | 1 | -0/+6 |
| | | | | | | | | This is suboptimal in several aspects, see the commented out assertion. I need to talk to Daniel about this. llvm-svn: 74057 | ||||
| * | make the lexer unique strings it lexes instead of passing them back as | Chris Lattner | 2009-06-24 | 1 | -1/+1 |
| | | | | | | | std::strings. llvm-svn: 74036 | ||||
| * | Start flushing out MCContext. | Daniel Dunbar | 2009-06-23 | 1 | -0/+2 |
| | | | | | | | - Lives inside new library lib/MC (LLVMMC.a) llvm-svn: 74013 | ||||
| * | refactor a bunch of X86 specific stuff out to its own file. | Chris Lattner | 2009-06-23 | 1 | -197/+5 |
| | | | | | llvm-svn: 73982 | ||||
| * | implement a trivial binary expression parser, we can now parse all of ↵ | Chris Lattner | 2009-06-23 | 1 | -3/+57 |
| | | | | | | | 176.gcc.llc.s llvm-svn: 73950 | ||||
| * | process memory operands with a parenthesized expression for a displacement, | Chris Lattner | 2009-06-22 | 1 | -2/+12 |
| | | | | | | | like "(4+5)(%eax)". llvm-svn: 73878 | ||||
| * | Implement full support for parsing primary expressions. We can now parse | Chris Lattner | 2009-06-22 | 1 | -3/+37 |
| | | | | | | | | | | | | all of health and voronoi (ignoring directives). We only get 409 lines into 176.gcc though because we don't have binary operators yet: Parsing 176.gcc.llc.s:409: unexpected token in operand list movsbl _arityvec+1(,%edi,8), %eax ^ llvm-svn: 73877 | ||||
| * | implement parser support for '*' operands, as in "call *%eax". | Chris Lattner | 2009-06-22 | 1 | -6/+13 |
| | | | | | llvm-svn: 73876 | ||||
| * | implement memory operand parsing. | Chris Lattner | 2009-06-22 | 1 | -14/+130 |
| | | | | | llvm-svn: 73875 | ||||
| * | start implementing some simple operand parsing. | Chris Lattner | 2009-06-22 | 1 | -14/+115 |
| | | | | | llvm-svn: 73867 | ||||
| * | rename SourceMgr::PrintError to PrintMessage. | Chris Lattner | 2009-06-21 | 1 | -2/+12 |
| | | | | | llvm-svn: 73861 | ||||
| * | set up the top-level parsing loop. | Chris Lattner | 2009-06-21 | 1 | -0/+54 |
| | | | | | llvm-svn: 73860 | ||||
| * | stub out parser for asm files. Change invariant on lexer to always | Chris Lattner | 2009-06-21 | 1 | -0/+19 |
| print its error message when it returns an asmtok::Error token. Compute a proper error code for llvm-mc in 'lex' mode. Add new -as-lex option to enable lexing mode (vs parsing mode). llvm-svn: 73859 | |||||

