aboutsummaryrefslogtreecommitdiff
path: root/lib/MC/MCParser/AsmParser.cpp
AgeCommit message (Expand)Author
2012-07-23Fix a typo (the the => the)Sylvestre Ledru
2012-07-19Remove tabs.Bill Wendling
2012-07-05Enable target dependent directive parsing to hook before standard parser inAkira Hatanaka
2012-06-16Implement irpc. Extracted from a patch by the PaX team. I just added the test.Rafael Espindola
2012-06-15Factor macro argument parsing into helper methods and add support for .irp.Rafael Espindola
2012-06-03Represent .rept as an anonymous macro. This removes the need for the ActiveReptRafael Espindola
2012-06-03Add a typedef to simplify the code a bit. Not functionality change.Rafael Espindola
2012-06-02Fix typos found by http://github.com/lyda/misspell-checkBenjamin Kramer
2012-05-12Fix spacing after if.Benjamin Kramer
2012-05-12Add support for the .rept directive. Patch by Vladmir Sorokin. I added supportRafael Espindola
2012-05-12AsmParser: Add support for the .purgem directive.Benjamin Kramer
2012-05-12AsmParser: Give a nice error message for .code16gcc, which is currently unsup...Benjamin Kramer
2012-05-12AsmParser: ignore the .extern directive.Benjamin Kramer
2012-05-12AsmParser: Add support for .ifc and .ifnc directives.Benjamin Kramer
2012-05-12AsmParser: Add support for .ifb and .ifnb directives.Benjamin Kramer
2012-05-01MC: Unknown assembler directives are now hard errors.Jim Grosbach
2012-05-01MC: Remove errant EatToEndOfStatement() in asm parser.Jim Grosbach
2012-04-16MC assembly parser handling for trailing comma in macro instantiation.Jim Grosbach
2012-03-27Prune some includesCraig Topper
2012-03-20Assembler should accept redefinitions of unused variable symbols.Jim Grosbach
2012-03-17MC asm parser macro argument count was wrong when empty.Jim Grosbach
2012-02-07Convert assert(0) to llvm_unreachableCraig Topper
2012-01-31Add assembler dialect attribute in asm parser which lets target specific asm ...Devang Patel
2012-01-28Silence GCC's -Wreturn-type warning.Benjamin Kramer
2012-01-28Small improvement to the recursion detection logic from the previous commit.Rafael Espindola
2012-01-28Handle recursive variable definitions directly. This gives us better errorRafael Espindola
2012-01-27Better diagnostic for malformed .org assembly directive.Jim Grosbach
2012-01-23Add support for .cfi_signal_frame. Fixes pr11762.Rafael Espindola
2012-01-20More dead code removal (using -Wunreachable-code)David Blaikie
2012-01-11The error check for using -g with a .s file already containing dwarf .fileKevin Enderby
2012-01-10Let asm parser query asm syntax dialect.Devang Patel
2012-01-10This is the matching change for the data structure name changes for theKevin Enderby
2011-12-29Implement cfi_restore. Patch by Brian Anderson!Rafael Espindola
2011-12-29Implement .cfi_escape. Patch by Brian Anderson!Rafael Espindola
2011-12-15Another improvement to the implementation of .incbin directive by avoiding aKevin Enderby
2011-12-14Improve the implementation of .incbin directive by replacing a loop by usingKevin Enderby
2011-12-14Add the .incbin directive which takes the binary data from a file and emitsKevin Enderby
2011-12-09The second part of support for generating dwarf for assembly source files. ThisKevin Enderby
2011-11-02Replace tabs I added in this new line of code with spaces.Kevin Enderby
2011-11-01First part of support for generating dwarf for assembly source files with theKevin Enderby
2011-10-19Fix parsing of a line with only a # in it.Rafael Espindola
2011-10-17Add support for a new extension to the .file directive:Nick Lewycky
2011-10-16PR11143: Save the old diagnostic handler and call it when munging diagnostics...Benjamin Kramer
2011-10-16remove the dead 'ShowLine' argument from SMDiagnostic.Chris Lattner
2011-10-16Make SMDiagnostic a little more sane. Instead of passing around note/warning...Chris Lattner
2011-10-16Enhance llvm::SourceMgr to support diagnostic ranges, the same way clang does...Chris Lattner
2011-10-12Finish supporting cpp #file/line comments in assembler for error messages. SoKevin Enderby
2011-09-15Assmebler symbol attribute directives don't work on temporary symbols.Jim Grosbach
2011-09-13First step in supporting #line directives in assembler. This step parses theKevin Enderby
2011-08-20Fix AsmParser binary precedence for shift operators.Jim Grosbach