]> git.saurik.com Git - bison.git/blame - src/scan-code.l
* src/symlist.h (symbol_list): Fix typos in comments.
[bison.git] / src / scan-code.l
CommitLineData
e9071366
AD
1/* Bison Action Scanner -*- C -*-
2
3 Copyright (C) 2006 Free Software Foundation, Inc.
4
5 This file is part of Bison, the GNU Compiler Compiler.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301 USA
21*/
22
23%option debug nodefault nounput noyywrap never-interactive
24%option prefix="code_" outfile="lex.yy.c"
25
26%{
27/* Work around a bug in flex 2.5.31. See Debian bug 333231
28 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=333231>. */
29#undef code_wrap
30#define code_wrap() 1
31
32#define FLEX_PREFIX(Id) code_ ## Id
33#include "flex-scanner.h"
f9bfc42a
JD
34
35#include "complain.h"
e9071366
AD
36#include "reader.h"
37#include "getargs.h"
e9071366
AD
38#include <get-errno.h>
39#include <quote.h>
40
41#include "scan-code.h"
76290368 42#include "symlist.h"
e9071366
AD
43
44/* The current calling start condition: SC_RULE_ACTION or
45 SC_SYMBOL_ACTION. */
76290368 46# define YY_DECL static char *code_lex (code_props *self, int sc_context)
e9071366
AD
47YY_DECL;
48
49#define YY_USER_ACTION location_compute (loc, &loc->end, yytext, yyleng);
50
4210cd0b
JD
51static void handle_action_dollar (symbol_list *rule, char *cp,
52 location dollar_loc);
53static void handle_action_at (symbol_list *rule, char *cp, location at_loc);
e9071366
AD
54static location the_location;
55static location *loc = &the_location;
ddc8ede1 56
76290368
JD
57/* A string representing the most recent translation. */
58static char *last_string;
59
ddc8ede1
PE
60/* True if an untyped $$ or $n was seen. */
61static bool untyped_var_seen;
e9071366
AD
62%}
63 /* C and C++ comments in code. */
64%x SC_COMMENT SC_LINE_COMMENT
65 /* Strings and characters in code. */
66%x SC_STRING SC_CHARACTER
67 /* Whether in a rule or symbol action. Specifies the translation
68 of $ and @. */
69%x SC_RULE_ACTION SC_SYMBOL_ACTION
70
71
72/* POSIX says that a tag must be both an id and a C union member, but
73 historically almost any character is allowed in a tag. We disallow
74 NUL and newline, as this simplifies our implementation. */
75tag [^\0\n>]+
76
77/* Zero or more instances of backslash-newline. Following GCC, allow
78 white space between the backslash and the newline. */
79splice (\\[ \f\t\v]*\n)*
80
81%%
82
83%{
2346344a 84 /* Nesting level of the current code in braces. */
4f82b42a 85 int braces_level = 0;
2346344a 86
e9071366
AD
87 /* This scanner is special: it is invoked only once, henceforth
88 is expected to return only once. This initialization is
89 therefore done once per action to translate. */
4f82b42a
PE
90 aver (sc_context == SC_SYMBOL_ACTION
91 || sc_context == SC_RULE_ACTION
92 || sc_context == INITIAL);
e9071366
AD
93 BEGIN sc_context;
94%}
95
96 /*------------------------------------------------------------.
97 | Scanning a C comment. The initial `/ *' is already eaten. |
98 `------------------------------------------------------------*/
99
100<SC_COMMENT>
101{
102 "*"{splice}"/" STRING_GROW; BEGIN sc_context;
103}
104
105
106 /*--------------------------------------------------------------.
107 | Scanning a line comment. The initial `//' is already eaten. |
108 `--------------------------------------------------------------*/
109
110<SC_LINE_COMMENT>
111{
112 "\n" STRING_GROW; BEGIN sc_context;
113 {splice} STRING_GROW;
114}
115
116
117 /*--------------------------------------------.
118 | Scanning user-code characters and strings. |
119 `--------------------------------------------*/
120
121<SC_CHARACTER,SC_STRING>
122{
123 {splice}|\\{splice}. STRING_GROW;
124}
125
126<SC_CHARACTER>
127{
128 "'" STRING_GROW; BEGIN sc_context;
129}
130
131<SC_STRING>
132{
133 "\"" STRING_GROW; BEGIN sc_context;
134}
135
136
137<SC_RULE_ACTION,SC_SYMBOL_ACTION>{
138 "'" {
139 STRING_GROW;
140 BEGIN SC_CHARACTER;
141 }
142 "\"" {
143 STRING_GROW;
144 BEGIN SC_STRING;
145 }
146 "/"{splice}"*" {
147 STRING_GROW;
148 BEGIN SC_COMMENT;
149 }
150 "/"{splice}"/" {
151 STRING_GROW;
152 BEGIN SC_LINE_COMMENT;
153 }
154}
155
156<SC_RULE_ACTION>
157{
76290368
JD
158 "$"("<"{tag}">")?(-?[0-9]+|"$") {
159 handle_action_dollar (self->rule, yytext, *loc);
160 }
161 "@"(-?[0-9]+|"$") {
162 handle_action_at (self->rule, yytext, *loc);
163 }
e9071366
AD
164
165 "$" {
166 warn_at (*loc, _("stray `$'"));
167 obstack_sgrow (&obstack_for_string, "$][");
168 }
169 "@" {
170 warn_at (*loc, _("stray `@'"));
171 obstack_sgrow (&obstack_for_string, "@@");
172 }
2346344a
AD
173
174 "{" STRING_GROW; ++braces_level;
175 "}" {
176 bool outer_brace = --braces_level < 0;
177
178 /* As an undocumented Bison extension, append `;' before the last
179 brace in braced code, so that the user code can omit trailing
180 `;'. But do not append `;' if emulating Yacc, since Yacc does
181 not append one.
182
183 FIXME: Bison should warn if a semicolon seems to be necessary
184 here, and should omit the semicolon if it seems unnecessary
185 (e.g., after ';', '{', or '}', each followed by comments or
186 white space). Such a warning shouldn't depend on --yacc; it
187 should depend on a new --pedantic option, which would cause
188 Bison to warn if it detects an extension to POSIX. --pedantic
189 should also diagnose other Bison extensions like %yacc.
190 Perhaps there should also be a GCC-style --pedantic-errors
191 option, so that such warnings are diagnosed as errors. */
192 if (outer_brace && ! yacc_flag)
193 obstack_1grow (&obstack_for_string, ';');
194
195 STRING_GROW;
196 }
e9071366
AD
197}
198
199<SC_SYMBOL_ACTION>
200{
76290368
JD
201 "$$" {
202 obstack_sgrow (&obstack_for_string, "]b4_dollar_dollar[");
203 self->is_value_used = true;
204 }
e9071366
AD
205 "@$" obstack_sgrow (&obstack_for_string, "]b4_at_dollar[");
206}
207
208
209 /*-----------------------------------------.
210 | Escape M4 quoting characters in C code. |
211 `-----------------------------------------*/
212
213<*>
214{
215 \$ obstack_sgrow (&obstack_for_string, "$][");
216 \@ obstack_sgrow (&obstack_for_string, "@@");
217 \[ obstack_sgrow (&obstack_for_string, "@{");
218 \] obstack_sgrow (&obstack_for_string, "@}");
219}
220
221 /*-----------------------------------------------------.
222 | By default, grow the string obstack with the input. |
223 `-----------------------------------------------------*/
224
225<*>.|\n STRING_GROW;
226
227 /* End of processing. */
228<*><<EOF>> {
76290368
JD
229 STRING_FINISH;
230 return last_string;
e9071366
AD
231 }
232
233%%
234
235/* Keeps track of the maximum number of semantic values to the left of
236 a handle (those referenced by $0, $-1, etc.) are required by the
237 semantic actions of this grammar. */
238int max_left_semantic_context = 0;
239
240
241/*------------------------------------------------------------------.
242| TEXT is pointing to a wannabee semantic value (i.e., a `$'). |
243| |
244| Possible inputs: $[<TYPENAME>]($|integer) |
245| |
246| Output to OBSTACK_FOR_STRING a reference to this semantic value. |
247`------------------------------------------------------------------*/
248
249static void
4210cd0b 250handle_action_dollar (symbol_list *rule, char *text, location dollar_loc)
e9071366 251{
76290368 252 char const *type_name = NULL;
e9071366 253 char *cp = text + 1;
ffa4ba3a
JD
254 symbol_list *effective_rule;
255 int effective_rule_length;
256
257 if (rule->midrule_parent_rule)
258 {
259 effective_rule = rule->midrule_parent_rule;
260 effective_rule_length = rule->midrule_parent_rhs_index - 1;
261 }
262 else
263 {
264 effective_rule = rule;
265 effective_rule_length = symbol_list_length (rule->next);
266 }
e9071366
AD
267
268 /* Get the type name if explicit. */
269 if (*cp == '<')
270 {
271 type_name = ++cp;
272 while (*cp != '>')
273 ++cp;
274 *cp = '\0';
275 ++cp;
ddc8ede1
PE
276 if (untyped_var_seen)
277 complain_at (dollar_loc, _("explicit type given in untyped grammar"));
278 tag_seen = true;
e9071366
AD
279 }
280
281 if (*cp == '$')
282 {
283 if (!type_name)
4210cd0b 284 type_name = symbol_list_n_type_name_get (rule, dollar_loc, 0);
ddc8ede1
PE
285
286 if (!type_name)
ad6b1efa 287 {
ddc8ede1
PE
288 if (union_seen | tag_seen)
289 {
290 if (rule->midrule_parent_rule)
291 complain_at (dollar_loc,
292 _("$$ for the midrule at $%d of `%s'"
293 " has no declared type"),
294 rule->midrule_parent_rhs_index,
3be03b13 295 effective_rule->content.sym->tag);
ddc8ede1
PE
296 else
297 complain_at (dollar_loc, _("$$ of `%s' has no declared type"),
3be03b13 298 rule->content.sym->tag);
ddc8ede1 299 }
ad6b1efa 300 else
ddc8ede1
PE
301 untyped_var_seen = true;
302 type_name = "";
ad6b1efa 303 }
ddc8ede1 304
e9071366
AD
305 obstack_fgrow1 (&obstack_for_string,
306 "]b4_lhs_value([%s])[", type_name);
76290368 307 rule->action_props.is_value_used = true;
e9071366
AD
308 }
309 else
310 {
ddc8ede1
PE
311 long int num = strtol (cp, NULL, 10);
312
313 if (1 - INT_MAX + effective_rule_length <= num
314 && num <= effective_rule_length)
e9071366
AD
315 {
316 int n = num;
ddc8ede1
PE
317 if (max_left_semantic_context < 1 - n)
318 max_left_semantic_context = 1 - n;
319 if (!type_name && 0 < n)
0c8e079f 320 type_name =
ffa4ba3a 321 symbol_list_n_type_name_get (effective_rule, dollar_loc, n);
e9071366 322 if (!type_name)
ddc8ede1
PE
323 {
324 if (union_seen | tag_seen)
325 complain_at (dollar_loc, _("$%d of `%s' has no declared type"),
3be03b13 326 n, effective_rule->content.sym->tag);
ddc8ede1
PE
327 else
328 untyped_var_seen = true;
329 type_name = "";
330 }
331
e9071366
AD
332 obstack_fgrow3 (&obstack_for_string,
333 "]b4_rhs_value(%d, %d, [%s])[",
ffa4ba3a 334 effective_rule_length, n, type_name);
76290368
JD
335 if (n > 0)
336 symbol_list_n_get (effective_rule, n)->action_props.is_value_used =
337 true;
e9071366
AD
338 }
339 else
0c8e079f 340 complain_at (dollar_loc, _("integer out of range: %s"), quote (text));
e9071366
AD
341 }
342}
343
344
345/*------------------------------------------------------.
346| TEXT is a location token (i.e., a `@...'). Output to |
347| OBSTACK_FOR_STRING a reference to this location. |
348`------------------------------------------------------*/
349
350static void
4210cd0b 351handle_action_at (symbol_list *rule, char *text, location at_loc)
e9071366
AD
352{
353 char *cp = text + 1;
4f82b42a
PE
354 int effective_rule_length =
355 (rule->midrule_parent_rule
356 ? rule->midrule_parent_rhs_index - 1
357 : symbol_list_length (rule->next));
ffa4ba3a 358
4f82b42a 359 locations_flag = true;
e9071366
AD
360
361 if (*cp == '$')
362 obstack_sgrow (&obstack_for_string, "]b4_lhs_location[");
363 else
364 {
ddc8ede1 365 long int num = strtol (cp, NULL, 10);
e9071366 366
ddc8ede1
PE
367 if (1 - INT_MAX + effective_rule_length <= num
368 && num <= effective_rule_length)
e9071366
AD
369 {
370 int n = num;
371 obstack_fgrow2 (&obstack_for_string, "]b4_rhs_location(%d, %d)[",
ffa4ba3a 372 effective_rule_length, n);
e9071366
AD
373 }
374 else
0c8e079f 375 complain_at (at_loc, _("integer out of range: %s"), quote (text));
e9071366
AD
376 }
377}
378
379
380/*-------------------------.
381| Initialize the scanner. |
382`-------------------------*/
383
76290368 384/* Translate the dollars and ats in \a self, in the context \a sc_context
ddc8ede1 385 (SC_RULE_ACTION, SC_SYMBOL_ACTION, INITIAL). */
e9071366 386
eb095650 387static char const *
76290368 388translate_action (code_props *self, int sc_context)
e9071366 389{
2ce4ed68 390 char *res;
e9071366
AD
391 static bool initialized = false;
392 if (!initialized)
393 {
394 obstack_init (&obstack_for_string);
e9071366
AD
395 yy_flex_debug = 0;
396 initialized = true;
397 }
398
76290368
JD
399 loc->start = loc->end = self->location.start;
400 yy_switch_to_buffer (yy_scan_string (self->code));
401 res = code_lex (self, sc_context);
e9071366
AD
402 yy_delete_buffer (YY_CURRENT_BUFFER);
403
404 return res;
405}
406
76290368
JD
407/*------------------------------------------------------------------------.
408| Implementation of the public interface as documented in "scan-code.h". |
409`------------------------------------------------------------------------*/
410
411void
412code_props_none_init (code_props *self)
e9071366 413{
76290368 414 *self = code_props_none;
e9071366
AD
415}
416
76290368
JD
417code_props const code_props_none = CODE_PROPS_NONE_INIT;
418
419void
420code_props_plain_init (code_props *self, char const *code, location code_loc)
421{
422 self->kind = CODE_PROPS_PLAIN;
423 self->code = code;
424 self->location = code_loc;
425 self->is_value_used = false;
426 self->rule = NULL;
427}
428
429void
430code_props_symbol_action_init (code_props *self, char const *code,
431 location code_loc)
e9071366 432{
76290368
JD
433 self->kind = CODE_PROPS_SYMBOL_ACTION;
434 self->code = code;
435 self->location = code_loc;
436 self->is_value_used = false;
437 self->rule = NULL;
438}
439
440void
441code_props_rule_action_init (code_props *self, char const *code,
442 location code_loc, symbol_list *rule)
443{
444 self->kind = CODE_PROPS_RULE_ACTION;
445 self->code = code;
446 self->location = code_loc;
447 self->is_value_used = false;
448 self->rule = rule;
449}
450
451void
452code_props_translate_code (code_props *self)
453{
454 switch (self->kind)
455 {
456 case CODE_PROPS_NONE:
457 break;
458 case CODE_PROPS_PLAIN:
459 self->code = translate_action (self, INITIAL);
460 break;
461 case CODE_PROPS_SYMBOL_ACTION:
462 self->code = translate_action (self, SC_SYMBOL_ACTION);
463 break;
464 case CODE_PROPS_RULE_ACTION:
465 self->code = translate_action (self, SC_RULE_ACTION);
466 break;
467 }
e9071366
AD
468}
469
eb095650 470char const *
76290368
JD
471code_props_code_get (code_props const self)
472{
473 return self.code;
474}
475
476location
477code_props_location_get (code_props const self)
478{
479 aver (self.code != NULL);
480 return self.location;
481}
482
483bool
484code_props_is_value_used (code_props const self)
e9071366 485{
76290368
JD
486 aver (self.kind != CODE_PROPS_PLAIN);
487 return self.is_value_used;
e9071366
AD
488}
489
76290368
JD
490void
491code_scanner_last_string_free (void)
492{
493 STRING_FREE;
494}
e9071366
AD
495
496void
497code_scanner_free (void)
498{
499 obstack_free (&obstack_for_string, 0);
500 /* Reclaim Flex's buffers. */
580b8926 501 yylex_destroy ();
e9071366 502}