summaryrefslogtreecommitdiff
path: root/modules/parsers
Commit message (Expand)AuthorAgeFilesLines
* gas-parse.c: Eliminate warning.Peter Johnson2012-08-301-2/+0
* Add testcase for struc with base offsetSimon Brenner2011-10-023-0/+17
* Implement the base offset parameter to 'struc'Simon Brenner2011-10-021-3/+3
* Remove $Id$ and RCSID() usage.Peter Johnson2011-08-1927-38/+3
* Fix escaping at end of gas string constant.Peter Johnson2011-05-294-3/+10
* Improve gas syntax .set directive to better match GNU as behavior.Peter Johnson2010-08-212-1/+44
* Fix #201: explicitly ignore [warning] directive and treat as warning.Peter Johnson2010-05-165-0/+21
* Support all unary operators in directive expressions.Peter Johnson2010-05-161-45/+22
* Update yasm_parsers(7) now that GAS preprocessor support is fairly mature.Peter Johnson2010-02-131-5/+5
* Add support for gas preprocessor macro directives.Peter Johnson2010-02-133-0/+33
* Add .intel_syntax and .gas_syntax support to GAS parser.Peter Johnson2010-01-1910-0/+236
* Add nasm-parser-struct.h to SOURCES.Peter Johnson2010-01-191-0/+1
* Nasm parser: Add some very basic MASM-ish syntax handling, along the linesPeter Johnson2010-01-195-4/+80
* Split yasm_parser_nasm structure out to separate header.Peter Johnson2010-01-192-61/+96
* Update autoconf/automake scripts.Peter Johnson2010-01-071-1/+1
* Now that the gas preproc supports .rept, remove it from the gas parser.Peter Johnson2010-01-034-269/+1
* GAS preproc: Fix line number for .rept without matching .endr error.Peter Johnson2010-01-032-1/+3
* Improve the gas preprocessor and re-add it as default for gas parser.Peter Johnson2010-01-035-14/+17
* Implement some linemap changes required for the GAS preprocessor.Peter Johnson2010-01-032-7/+7
* Revert gas parser default to raw preproc until gas tests pass with the gasPeter Johnson2009-12-281-2/+2
* Default to gas preproc for gas parser.Peter Johnson2009-12-261-1/+1
* Add initial gas preprocessor, contributed by Alexei Svitkine.Peter Johnson2009-12-231-1/+2
* Fix #78 further: Support C++ style // comments.Peter Johnson2009-09-123-1/+4
* tasm parser: Support "not" keyword.Peter Johnson2009-04-173-0/+6
* Fix referencing of local label from line that defines nonlocal label.Peter Johnson2009-03-254-10/+27
* gas parser: Allow segment register prefixes before instructions.Peter Johnson2009-01-024-11/+376
* gas parser: Allow equ's to be named the same as instructions.Peter Johnson2009-01-022-2/+5
* Remove long-obsolete "debug" flag from internal parser structures.Peter Johnson2009-01-024-10/+0
* Allow @ signs in identifiers in win32/win64 only.Peter Johnson2009-01-021-0/+10
* Gas parser: Move instruction/prefix lookup from tokenizer to parser.Peter Johnson2009-01-023-118/+98
* gas-parse.c: Fix double-free on error.Peter Johnson2008-12-241-1/+0
* Fix #161: Don't require 0d/0e/0f/0t prefix on floating point numbers.Peter Johnson2008-10-304-1/+395
* Remove directory EXTRA_DIST; it seems to be making distcheck on ctn die.Peter Johnson2008-10-081-1/+0
* Use yasm functions yasm__strcasecmp and nasm_strdup instead of relying onPeter Johnson2008-10-081-11/+11
* Don't use tasm_compatible_mode in nasm parser (use local var instead).Peter Johnson2008-10-074-30/+40
* Add core TASM syntax support.Peter Johnson2008-10-0749-39/+1192
* Nasm lexer: Don't read past end of passed string.Peter Johnson2008-09-301-47/+38
* Add cmake build infrastructure.Peter Johnson2008-05-223-0/+34
* Split NASM preprocessor standard macro set between various modules.Peter Johnson2008-05-094-1/+130
* Allow registers as GAS directive parameters.Peter Johnson2008-05-091-0/+5
* Fix GAS handling of NASM preproc %line.Peter Johnson2008-04-291-1/+13
* Support use of NASM preprocessor with GAS parser.Peter Johnson2008-04-254-19/+156
* Allow underscores in the middle of binary, octal, and hex constants.Peter Johnson2008-04-124-9/+53
* Add complete Intel Advanced Vector Extensions (AVX) support.Peter Johnson2008-04-114-0/+53
* Fix #136: Unbreak ..@ non-local-label mechanism.Peter Johnson2008-03-276-28/+79
* Fix #134: Allow '@' as the first character of an identifier, like NASM does.Peter Johnson2008-02-151-1/+1
* Enable use of sym@FOO constructs in GAS parser.Peter Johnson2008-02-093-13/+34
* Make jmp with seg:off equ behave the same as NASM.Peter Johnson2008-01-191-45/+69
* Check for 0-termination character rather than newline.Peter Johnson2007-12-071-3/+3
* Fix #122: Allow standalone prefixes.Peter Johnson2007-12-044-4/+19