aboutsummaryrefslogtreecommitdiff
path: root/lib/MC/MCParser/AsmParser.cpp
AgeCommit message (Expand)Author
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
2011-08-16Remove unused Target argument from AsmParser construction methods.Jim Grosbach
2011-07-27Support .code32 and .code64 in X86 assembler.Evan Cheng
2011-07-26Rename TargetAsmParser to MCTargetAsmParser and TargetAsmLexer to MCTargetAsm...Evan Cheng
2011-07-25Move some ELF directives into ELF asm parser.Jim Grosbach
2011-07-23Move TargetAsmParser.h TargetAsmBackend.h and TargetAsmLexer.h to MC where th...Evan Cheng
2011-07-20Goodbye TargetAsmInfo. This eliminate last bit of CodeGen and Target in llvm-mc.Evan Cheng
2011-07-20Add MCObjectFileInfo and sink the MCSections initialization code fromEvan Cheng
2011-07-18Sink getDwarfRegNum, getLLVMRegNum, getSEHRegNum from TargetRegisterInfo downEvan Cheng
2011-07-13Update MCParsedAsmOperand debug methods.Jim Grosbach
2011-06-29Asm parser range checking on .<size> <value> directives.Jim Grosbach
2011-06-18MC: Allow .common as alias for .comm assembler directive. PR10116.Hans Wennborg
2011-06-15Diagnostic for undefined assembler local symbols.Jim Grosbach
2011-06-14Revert 133010. Self-hosted buildbot unhappy.Jim Grosbach
2011-06-14Diagnostic for undefined assembler local symbols.Jim Grosbach
2011-06-05Basic support for macros with explicit arguments.Rafael Espindola
2011-06-02.cfi directive register parsing flexibility.Jim Grosbach
2011-06-01Add new -d option to tblgen. It writes a make(1)-style dependency file.Joerg Sonnenberger
2011-05-23Propagate error correctly in the MC Asm parser for leading '$' expressions.Jim Grosbach
2011-05-19Reapply 131644 including the missing header changes:Joerg Sonnenberger