| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Implement .equ directive as a synonym to .set. | Roman Divacky | 2010-10-28 | 1 | -6/+6 |
* | MC/AsmParser: Fix relative precedence of {+,-} and comparison ops. | Daniel Dunbar | 2010-10-25 | 1 | -12/+14 |
* | Remove remaining uses of ATTRIBUTE_UNUSED on variables, and delete three | Chandler Carruth | 2010-10-20 | 1 | -2/+0 |
* | MC/AsmParser: Report .stabs directive as unsupported. | Daniel Dunbar | 2010-10-16 | 1 | -0/+9 |
* | MC-COFF: Add COFFAsmParser. Completes PR8343. | Michael J. Spencer | 2010-10-09 | 1 | -1/+5 |
* | Fix Whitespace. | Michael J. Spencer | 2010-10-09 | 1 | -58/+58 |
* | MC: Move ParseDirectiveELFType into ELFAsmParser. COFF uses .type for somethi... | Michael J. Spencer | 2010-10-09 | 1 | -48/+0 |
* | Add support for a fill value in the .zero directive. | Rafael Espindola | 2010-10-05 | 1 | -1/+8 |
* | Incorporate suggestions by Daniel Dunbar after his review. Thanks Daniel! | Kevin Enderby | 2010-10-04 | 1 | -1/+1 |
* | Add hook in MCSection to decide when to use "optimized nops", for each | Jan Wen Voung | 2010-10-04 | 1 | -6/+1 |
* | This is the last major patch to implement support for the .loc directive | Kevin Enderby | 2010-09-30 | 1 | -1/+1 |
* | Test commit - Deleted some whitespace at the end of a line. | Jan Wen Voung | 2010-09-30 | 1 | -1/+1 |
* | change the protocol TargetAsmPArser::MatchInstruction method to take an | Chris Lattner | 2010-09-29 | 1 | -9/+3 |
* | Push twines deeper into SourceMgr's error handling methods. | Benjamin Kramer | 2010-09-27 | 1 | -9/+6 |
* | MC/AsmParser: Support .single and .double for embedding floating point literals. | Daniel Dunbar | 2010-09-24 | 1 | -0/+56 |
* | fix rdar://8456417 - llvm-mc can't do basic math | Chris Lattner | 2010-09-22 | 1 | -21/+22 |
* | Implement support for .local and its "interesting" interactions with .comm. | Rafael Espindola | 2010-09-21 | 1 | -0/+3 |
* | Fix an MSVC warning. | Daniel Dunbar | 2010-09-17 | 1 | -0/+3 |
* | MC/AsmParser: Add support for 'a + 4@GOTPCREL' and friends, by reconsing the | Daniel Dunbar | 2010-09-17 | 1 | -2/+81 |
* | Add support for the .zero directive. | Rafael Espindola | 2010-09-16 | 1 | -0/+22 |
* | Add a InitSections method to the streamer interface. | Rafael Espindola | 2010-09-15 | 1 | -5/+1 |
* | Add support for leb128 of absolute expressions. | Rafael Espindola | 2010-09-11 | 1 | -0/+49 |
* | fix the asmparser so that the target is responsible for skipping to | Chris Lattner | 2010-09-11 | 1 | -1/+3 |
* | llvm-mc: Don't crash when using -n and we see a directive before the initial ... | Daniel Dunbar | 2010-09-09 | 1 | -0/+30 |
* | llvm-mc: Make sure we exit != 0 if any errors are encountered. | Daniel Dunbar | 2010-09-09 | 1 | -8/+10 |
* | change the MC "ParseInstruction" interface to make it the | Chris Lattner | 2010-09-08 | 1 | -7/+0 |
* | Change the parsing of .loc back to allow the LineNumber field to be optional as | Kevin Enderby | 2010-08-24 | 1 | -7/+8 |
* | First bit of support for the dwarf .loc directive. This patch updates the | Kevin Enderby | 2010-08-24 | 1 | -18/+80 |
* | MC/AsmParser: Change ParseExpression to use ParseIdentifier(), to support | Daniel Dunbar | 2010-08-24 | 1 | -5/+9 |
* | MC/Parser: Accept leading dollar signs in identifiers. | Daniel Dunbar | 2010-08-24 | 1 | -0/+24 |
* | MC/AsmParser: Push the burdon of emitting diagnostics about unmatched | Daniel Dunbar | 2010-08-12 | 1 | -8/+2 |
* | llvm-mc: Add -show-inst-operands, for dumping the parsed instruction represen... | Daniel Dunbar | 2010-08-11 | 1 | -0/+15 |
* | MC/AsmParser: Fix a bug in macro argument parsing, which was dropping | Daniel Dunbar | 2010-08-10 | 1 | -5/+7 |
* | MC: Destroy Macro instances. | Daniel Dunbar | 2010-07-29 | 1 | -0/+7 |
* | Added first bit of support for the dwarf .file directive. This patch collects | Kevin Enderby | 2010-07-28 | 1 | -1/+16 |
* | Make .align parse correctly on platforms where .align is measured in bytes. | Eli Friedman | 2010-07-19 | 1 | -5/+8 |
* | MC/AsmParser: Stop playing unsafe member function pointer calls, this isn't | Daniel Dunbar | 2010-07-18 | 1 | -19/+17 |
* | MC/AsmParser: Fix .abort and .secure_log_unique to accept arbitrary token | Daniel Dunbar | 2010-07-18 | 1 | -14/+20 |
* | MC/AsmParser: Add macro argument substitution support. | Daniel Dunbar | 2010-07-18 | 1 | -8/+85 |
* | MC/AsmParser: Add basic support for macro instantiation. | Daniel Dunbar | 2010-07-18 | 1 | -20/+112 |
* | MC/AsmParser: Add basic parsing support for .macro definitions. | Daniel Dunbar | 2010-07-18 | 1 | -0/+96 |
* | MC/AsmParser: Add .macros_{off,on} support, not that makes sense since we don't | Daniel Dunbar | 2010-07-18 | 1 | -5/+37 |
* | MC/AsmParser: Use Error() instead of calling PrintMessage() directly. | Daniel Dunbar | 2010-07-18 | 1 | -4/+2 |
* | MC/AsmParser: Hide the AsmParser implementation. | Daniel Dunbar | 2010-07-18 | 1 | -3/+117 |
* | MC/AsmParser: Lift Run() and TargetParser to base class. | Daniel Dunbar | 2010-07-17 | 1 | -7/+8 |
* | fix indentation and 80 cols | Chris Lattner | 2010-07-15 | 1 | -2/+3 |
* | Don't pass StringRef by reference. | Benjamin Kramer | 2010-07-14 | 1 | -1/+1 |
* | MC/AsmParser: Move ELF specific parser to ELFAsmParser.cpp. | Daniel Dunbar | 2010-07-12 | 1 | -43/+2 |
* | MC/AsmParser: Move Darwin specific parse to DarwinAsmParser.cpp. | Daniel Dunbar | 2010-07-12 | 1 | -728/+7 |
* | MC/AsmParser: Move .section parsing to Darwin specific parser. | Daniel Dunbar | 2010-07-12 | 1 | -13/+10 |