provides some extensions for
compatibility with bison and other implementations of yacc.
It accepts several
|
%code keyword { code }
|
| |
Adds the indicated source code at a given point in the output file.
The optional keyword tells yacc where to insert the code:
| |
|
top
|
just after the version-definition in the generated code-file.
|
|
requires
|
| |
just after the declaration of public parser variables.
If the -d option is given, the code is inserted at the
beginning of the defines-file.
|
|
provides
|
| |
just after the declaration of private parser variables.
If the -d option is given, the code is inserted at the
end of the defines-file.
|
|
|
|
|
If no keyword is given, the code is inserted at the
beginning of the section of code copied verbatim from the source file.
Multiple %code directives may be given;
yacc inserts those into the corresponding code- or defines-file
in the order that they appear in the source file.
|
|
%debug
|
| |
This has the same effect as the ``-t'' command-line option.
|
|
%destructor { code } symbol+
|
| |
defines code that is invoked when a symbol is automatically
discarded during error recovery.
This code can be used to
reclaim dynamically allocated memory associated with the corresponding
semantic value for cases where user actions cannot manage the memory
explicitly.
|
|
|
On encountering a parse error, the generated parser
discards symbols on the stack and input tokens until it reaches a state
that will allow parsing to continue.
This error recovery approach results in a memory leak
if the YYSTYPE value is, or contains,
pointers to dynamically allocated memory.
|
|
|
The bracketed code is invoked whenever the parser discards one of
the symbols.
Within code, ``$$'' or
``$<tag>$'' designates the semantic value associated with the
discarded symbol, and ``@$'' designates its location (see
%locations directive).
|
|
|
A per-symbol destructor is defined by listing a grammar symbol
in symbol+. A per-type destructor is defined by listing
a semantic type tag (e.g., ``<some_tag>'') in symbol+; in this
case, the parser will invoke code whenever it discards any grammar
symbol that has that semantic type tag, unless that symbol has its own
per-symbol destructor.
|
|
|
Two categories of default destructor are supported that are
invoked when discarding any grammar symbol that has no per-symbol and no
per-type destructor:
|
&#187;
|
the code for ``<*>'' is used
for grammar symbols that have an explicitly declared semantic type tag
(via ``%type'');
|
|
&#187;
|
the code for ``<>'' is used
for grammar symbols that have no declared semantic type tag.
|
|
|
%empty
|
| |
ignored by yacc.
|
|
%expect number
|
| |
tells yacc the expected number of shift/reduce conflicts.
That makes it only report the number if it differs.
|
|
%expect-rr number
|
| |
tell yacc the expected number of reduce/reduce conflicts.
That makes it only report the number if it differs.
This is (unlike bison) allowable in LALR parsers.
|
|
%locations
|
| |
tells yacc to enable management of position information associated
with each token, provided by the lexer in the global variable yylloc,
similar to management of semantic value information provided in yylval.
|
|
|
As for semantic values, locations can be referenced within actions using
@$ to refer to the location of the left hand side symbol, and @N
(N an integer) to refer to the location of one of the right hand side
symbols.
Also as for semantic values, when a rule is matched, a default
action is used the compute the location represented by @$ as the
beginning of the first symbol and the end of the last symbol in the right
hand side of the rule.
This default computation can be overridden by
explicit assignment to @$ in a rule action.
|
|
|
The type of yylloc is YYLTYPE, which is defined by default as:
| |
typedef struct YYLTYPE {
int first_line;
int first_column;
int last_line;
int last_column;
} YYLTYPE;
|
|
|
|
YYLTYPE can be redefined by the user
(YYLTYPE_IS_DEFINED must be defined, to inhibit the default)
in the declarations section of the specification file.
As in bison, the macro YYLLOC_DEFAULT is invoked
each time a rule is matched to calculate a position for the left hand side of
the rule, before the associated action is executed; this macro can be
redefined by the user.
|
|
|
This directive adds a YYLTYPE parameter to yyerror().
If the %pure-parser directive is present,
a YYLTYPE parameter is added to yylex() calls.
|
|
%lex-param { argument-declaration }
|
| |
By default, the lexer accepts no parameters, e.g., yylex().
Use this directive to add parameter declarations for your customized lexer.
|
|
%parse-param { argument-declaration }
|
| |
By default, the parser accepts no parameters, e.g., yyparse().
Use this directive to add parameter declarations for your customized parser.
|
|
%pure-parser
|
| |
Most variables (other than yydebug and yynerrs) are
allocated on the stack within yyparse, making the parser reasonably
reentrant.
|
|
%token-table
|
| |
Make the parser's names for tokens available in the yytname array.
However,
yacc does not predefine ``$end'', ``$error''
or ``$undefined'' in this array.
|