aboutsummaryrefslogtreecommitdiffstats
path: root/cparser
Commit message (Expand)AuthorAgeFilesLines
* Install the new system for reporting syntax errors.François Pottier2015-10-237-6/+5777
* Lexer update: use Menhir's incremental API instead of Menhir's traditional API.François Pottier2015-10-231-3/+16
* Lexer cleanup: isolate [lexer_wraper] and rename it to [lexer].François Pottier2015-10-231-6/+10
* Lexer cleanup: isolate the entry point into the lexer.François Pottier2015-10-231-6/+10
* Added an %on_error_reduce declaration.François Pottier2015-10-231-0/+42
* Changed [asm_flags] to a left-recursive list.François Pottier2015-10-231-1/+1
* Removed the two uses of $syntaxerror in a semantic action.François Pottier2015-10-231-2/+7
* Inlined [constant_expression] to save one state.François Pottier2015-10-231-1/+1
* Reformulated [specifier_qualifier_list_no_typedef_name] as a left-recursive l...François Pottier2015-10-231-4/+4
* Redefined [pointer] as a left-recursive list.François Pottier2015-10-231-7/+24
* Replaced [declaration_specifiers_no_typedef_name] with [declaration_specifier...François Pottier2015-10-231-7/+3
* Factorized [declaration_specifier_no_typedef_name].François Pottier2015-10-231-5/+9
* Reformulated the definitions of [option] and [list] in a slightly more elegan...François Pottier2015-10-231-11/+13
* Introduced [list] and [ilist]. Redefined [declaration_specifiers_no_type] as ...François Pottier2015-10-231-11/+22
* Factorized [declaration_specifier_no_type].François Pottier2015-10-231-3/+7
* Added a phantom parameter to [declaration].François Pottier2015-10-231-13/+18
* Added a phantom parameter to [declaration_specifiers].François Pottier2015-10-231-7/+11
* Added a phantom parameter to [abstract_declarator].François Pottier2015-10-231-4/+8
* Added a phantom parameter to [specifier_qualifier_list].François Pottier2015-10-231-3/+4
* A general comment about phantom parameters.François Pottier2015-10-231-0/+16
* Remove all productions that involve the [error] token.François Pottier2015-10-231-34/+0
* Added [Cerrors.fatal_error_raw].François Pottier2015-10-232-0/+13
* Read the whole source C file into memory instad of reading it on demand.François Pottier2015-10-232-5/+17
* Fix [Lexer.char_literal] and [Lexer.string_literal] to properly keep track of...François Pottier2015-10-221-10/+12
* Replaced 4 uses of [ioption(declaration_specifiers_no_type)] with [declaratio...François Pottier2015-10-081-4/+4
* Cosmetic. Removed some spaces. Shared one redundant semantic action {}.François Pottier2015-10-071-7/+6
* One cosmetic change of [option] to [?]. No impact.François Pottier2015-10-071-1/+1
* Factorized the two forms of FOR statement by introducing [for_statement_header].François Pottier2015-10-071-2/+6
* Introduced optional(X, Y), which means X? Y, and used it in array declarators...François Pottier2015-10-071-4/+12
* Factorized the productions for several categories of binary operators.François Pottier2015-10-071-13/+20
* Factorized two productions (and two error productions) in [enum_specifier].François Pottier2015-10-071-5/+2
* Factorized two productions (and two error productions) in [struct_or_union_sp...François Pottier2015-10-071-5/+2
* For clarity, removed several redundant calls to [set_id_type].François Pottier2015-10-071-9/+5
* Introduced [other_identifier] as a more elegant way of calling [set_id_type i...François Pottier2015-10-071-19/+22
* One more replacement of [ioption] with [option].François Pottier2015-10-071-1/+1
* Use [option] as much as possible and [ioption] only where necessary.François Pottier2015-10-071-13/+30
* Add whitespace, for better vertical alignment and better readability.François Pottier2015-10-071-21/+13
* Handle the special case of a typedef to void funciton parameter to beBernhard Schommer2015-10-051-2/+2
* Allow redefinition of a typedef with the same name.Bernhard Schommer2015-10-043-7/+53
* Merge pull request #57 from jhjourdan/parser_fixBernhard Schommer2015-10-015-160/+297
|\
| * Fixed a few bugs in the pre parser. In particular, the following codeJacques-Henri Jourdan2015-09-305-160/+297
* | Remove unused globals also from the debug informations.Bernhard Schommer2015-10-011-1/+6
* | Added support for printing local variables and fixed issue with .textBernhard Schommer2015-09-231-0/+1
* | Merge branch 'debugscopes' into debug_locationsBernhard Schommer2015-09-231-33/+37
|\ \
| * | Continuing experiment: track the scopes of local variables via __builtin_debugXavier Leroy2015-09-211-34/+28
* | | Record the scope structure during unblocking.Bernhard Schommer2015-09-224-11/+18
* | | Merge branch 'debugscopes' into debug_locationsBernhard Schommer2015-09-213-39/+175
|\| |
| * | Experiment: track the scopes of local variables via __builtin_debug.Xavier Leroy2015-09-201-32/+132
| |/
| * Added support for bitfields in unions.Bernhard Schommer2015-09-171-6/+42
| * Global register variables result in fatal error.Bernhard Schommer2015-09-081-1/+1