]> git.saurik.com Git - bison.git/blame - tests/named-refs.at
warnings: useless semantic types
[bison.git] / tests / named-refs.at
CommitLineData
b9f1d9a4
AR
1# Named references test. -*- Autotest -*-
2
34136e65 3# Copyright (C) 2009-2012 Free Software Foundation, Inc.
b9f1d9a4
AR
4
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17
d0f2b7f8 18# FIXME: Duplication with calc.at.
b9f1d9a4
AR
19AT_BANNER([[Named references tests.]])
20
21AT_SETUP([Tutorial calculator])
55f48c48 22AT_BISON_OPTION_PUSHDEFS
b9f1d9a4
AR
23AT_DATA_GRAMMAR([test.y],
24[[
25%{
459a57a9 26#include <assert.h>
b9f1d9a4
AR
27#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
30#include <ctype.h>
31typedef int semantic_value;
32FILE *input;
33static semantic_value global_result = 0;
34static int global_count = 0;
35static int power (int base, int exponent);
55f48c48
AD
36]AT_YYERROR_DECLARE[
37]AT_YYLEX_DECLARE[
b9f1d9a4
AR
38%}
39
40%union
41{
42 semantic_value ival;
43};
44
45%token CALC_EOF 0 "end of input"
46%token <ival> NUM "number"
47%type <ival> exp
48
e9690142 49%nonassoc '=' /* comparison */
b9f1d9a4
AR
50%left '-' '+'
51%left '*' '/'
52%precedence NEG /* negation--unary minus */
53%right '^' /* exponentiation */
54
55%%
56input:
57 line
58| input line { }
59;
60
61line:
62 '\n'
63| exp '\n' { }
64;
65
66exp:
67 NUM { $$ = $NUM; }
68| exp[l] '=' exp[r]
69 {
70 if ($l != $r)
71 fprintf (stderr, "calc: error: %d != %d\n", $l, $r);
72 $$ = $l;
73 }
74| exp[x] '+' { $<ival>$ = $x; } [l] exp[r] { $$ = $<ival>l + $r; }
75| exp[l] '-' exp[r] { $$ = $l - $r; }
76| exp[l] '*' exp[r] { $$ = $l * $r; }
77| exp[l] '/' exp[r] { $$ = $l / $r; }
78| '-' exp %prec NEG { $$ = -$2; }
79| exp[l] '^' exp[r] { $$ = power ($l, $r); }
80| '(' exp[e] ')' { $$ = $e; }
81| '(' error ')' { $$ = 1111; yyerrok; }
82| '!' { $$ = 0; YYERROR; }
83| '-' error { $$ = 0; YYERROR; }
84;
85%%
55f48c48 86]AT_YYERROR_DEFINE[
b9f1d9a4
AR
87static int get_char (void)
88{
89 int res = getc (input);
90 return res;
91}
92
93static void unget_char (int c)
94{
95 ungetc (c, input);
96}
97
98static int read_signed_integer (void)
99{
100 int c = get_char ();
101 int sign = 1;
102 int n = 0;
103 if (c == '-')
104 {
105 c = get_char ();
106 sign = -1;
107 }
108 while (isdigit (c))
109 {
110 n = 10 * n + (c - '0');
111 c = get_char ();
112 }
113 unget_char ( c);
114 return sign * n;
115}
116
55f48c48
AD
117static int
118yylex (void)
b9f1d9a4
AR
119{
120 int c;
121 /* Skip white space. */
122 while ((c = get_char ()) == ' ' || c == '\t') {}
123
124 /* process numbers */
125 if (c == '.' || isdigit (c))
126 {
127 unget_char ( c);
128 (yylval).ival = read_signed_integer ();
129 return NUM;
130 }
131
132 /* Return end-of-file. */
133 if (c == EOF)
134 return CALC_EOF;
135
136 /* Return single chars. */
137 return c;
138}
139
140static int power (int base, int exponent)
141{
142 int res = 1;
d0f2b7f8 143 assert (0 <= exponent);
b9f1d9a4
AR
144 for (/* Niente */; exponent; --exponent)
145 res *= base;
146 return res;
147}
148
149int main (int argc, const char **argv)
150{
151 semantic_value result = 0;
152 int count = 0;
153 int status;
154 if (argc == 2)
155 input = fopen (argv[1], "r");
156 else
157 input = stdin;
158 if (!input)
159 {
160 perror (argv[1]);
161 return 3;
162 }
163 status = yyparse ();
164 fclose (input);
165 if (global_result != result)
166 abort ();
167 if (global_count != count)
168 abort ();
169 return status;
170}
171]])
172
173AT_DATA([input.txt],
174[[
1751 + 2 * 3 = 7
1761 + 2 * -3 = -5
177-1^2 = -1
178(-1)^2 = 1
179---1 = -1
1801 - 2 - 3 = -4
1811 - (2 - 3) = 2
1822^2^3 = 256
183(2^2)^3 = 64
184]])
185
186AT_BISON_CHECK([-o test.c test.y])
187AT_COMPILE([[test]])
188AT_PARSER_CHECK([./test input.txt], 0, [], [stderr])
55f48c48 189AT_BISON_OPTION_POPDEFS
b9f1d9a4
AR
190AT_CLEANUP
191
192
193
194#######################################################################
195
196
197AT_SETUP([Undefined and ambiguous references])
55f48c48 198AT_BISON_OPTION_PUSHDEFS
b9f1d9a4
AR
199AT_DATA_GRAMMAR([test.y],
200[[
201%{
202static int power (int base, int exponent);
55f48c48
AD
203]AT_YYERROR_DECLARE[
204]AT_YYLEX_DECLARE[
b9f1d9a4
AR
205%}
206
207%union
208{
209 int ival;
210};
211
212%token CALC_EOF 0 "end of input"
213%token <ival> NUM "number"
214%type <ival> exp
215
e9690142 216%nonassoc '=' /* comparison */
b9f1d9a4
AR
217%left '-' '+'
218%left '*' '/'
219%precedence NEG /* negation--unary minus */
220%right '^' /* exponentiation */
221
222%%
223input:
224 line
225| input line { }
226;
227
228line:
229 '\n'
230| exp '\n' { }
231;
232
233exp:
234 NUM { $$ = $NUM; }
235| exp[l] '=' exp[r]
236 {
237 if ($l != $r)
238 fprintf (stderr, "calc: error: %d != %d\n", $l, $r);
239 $$ = $l;
240 }
241| exp[x] '+' { $<ival>$ = $x; } [l] exp[r] { $$ = $<ival>lo9 + $r; }
242| exp[x] '-' { $<ival>$ = $x; } [l] exp[r] { $$ = $<ival>exp - $r; }
243| exp[x] '*' { $<ival>$ = $x; } [l] exp[r] { $$ = $l * $r; }
244| exp[l] '/' exp[r] { $$ = $l / $r; }
245| '-' exp %prec NEG { $$ = -$2; }
246| exp[l] '^' exp[r] { $$ = power ($l, $r12); }
247| '(' exp ')' { $$ = $expo; }
248| '(' error ')' { $$ = 1111; yyerrok; }
249| '!' { $$ = 0; YYERROR; }
250| '-' error { $$ = 0; YYERROR; }
251;
252%%
253]])
254
255AT_BISON_CHECK([-o test.c test.y], 1, [],
ae93e4e4 256[[test.y:50.51-60: invalid reference: '$<ival>lo9'
66381412 257test.y:50.3-68: symbol not found in production: lo9
ae93e4e4 258test.y:51.51-60: warning: misleading reference: '$<ival>exp'
66381412
AR
259test.y:42.1-3: warning: refers to: $exp at $$
260test.y:51.7: warning: possibly meant: $x, hiding $exp at $1
261test.y:51.41: warning: possibly meant: $r, hiding $exp at $4
ae93e4e4
JM
262test.y:52.51-52: $l of 'exp' has no declared type
263test.y:55.46-49: invalid reference: '$r12'
66381412 264test.y:55.3-53: symbol not found in production: r12
ae93e4e4 265test.y:56.29-33: invalid reference: '$expo'
66381412 266test.y:56.3-46: symbol not found in production: expo
b9f1d9a4 267]])
55f48c48 268AT_BISON_OPTION_POPDEFS
b9f1d9a4
AR
269AT_CLEANUP
270
271#######################################################################
272
273AT_SETUP([Misleading references])
274AT_DATA_GRAMMAR([test.y],
275[[
276%%
277start: foo foo.bar { $foo.bar; }
278foo: '1'
279foo.bar: '2'
280]])
676997e5 281AT_BISON_CHECK([-o test.c test.y], 0, [],
ae93e4e4 282[[test.y:11.22-29: warning: misleading reference: '$foo.bar'
676997e5
JD
283test.y:11.8-10: warning: refers to: $foo at $1
284test.y:11.12-18: warning: possibly meant: $[foo.bar] at $2
285]])
b9f1d9a4
AR
286AT_CLEANUP
287
288#######################################################################
289
290AT_SETUP([Many kinds of errors])
291AT_DATA_GRAMMAR([test.y],
292[[
293%token IDENT
294%token NUMBER
295%token ASSIGNOP
296%token IF
297%token IF1
298%token THEN
299%token ELSE
300%token FI
301%token WHILE
302%token DO
303%token OD
304%start program
305%%
306if_stmt1: IF expr[cond] THEN stmt[then] ELSE stmt.list[else] FI
307 { $if_stmt1 = new IfStmt($cond1, $then.f1, $else); };
308if_stmt2: IF expr[cond] THEN stmt[then] FI
309 { $if_stmt2 = new IfStmt($cond, $stmt.field, 0); };
310if_stmt3: IF expr[cond] THEN stmt.list FI
311 { $if_stmt3 = new IfStmt($cond, $stmt.list, 0); };
312if_stmt4: IF expr[cond] THEN stmt[xyz] ELSE stmt[xyz] FI
313 { $if_stmt4 = new IfStmt($cond, $xyz, $cond); };
314if_stmt5: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
315 { $if_stmt5 = new IfStmt($cond, $stmt.list, $else); };
316if_stmt6: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
317 { $if_stmt6 = new IfStmt($cond, $stmt.list.field, $else); };
318if_stmt7: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
319 { $if_stmt7 = new IfStmt($cond, $[stmt.list].field, $else); };
320if_stmt8: IF expr[cond] THEN stmt.list[then.1] ELSE stmt.list[else] FI
321 { $if_stmt8 = new IfStmt($cond, $then.1, $else); };
322if_stmt9: IF expr[cond] THEN stmt.list[then.1] ELSE stmt.list[else] FI
323 { $if_stmt9 = new IfStmt($cond, $then.1.field, $else); };
324if_stmt10: IF expr[cond] THEN stmt[stmt.x] FI
325 { $if_stmt10 = new IfStmt($cond, $stmt.x, 0); };
326if-stmt-a: IF expr[cond] THEN stmt.list[then] ELSE stmt.list[else] FI
327 { $if-stmt-a = new IfStmt($cond, $then, $else); };
328if-stmt-b: IF expr[cond] THEN if-stmt-a[then-a] ELSE stmt.list[else] FI
329 { $[if-stmt-b] = new IfStmt($cond, $then-a.f, $else); };
330program: stmt.list;
331stmt.list: stmt ';' stmt.list { $3->insert($stmt); $$ = $3; }
332 | stmt ';' { SL = new StmtList(); SL->insert($1); $$ = SL; }
333 ;
334stmt: assign_stmt { $$ = $1; }
335 | if_stmt { $$ = $1; }
336 | if_stmt1 { $$ = $1; }
337 | while_stmt { $$ = $1; }
338 ;
339assign_stmt: IDENT ASSIGNOP expr
340 { $$ = new AssignStmt(string($1),$3); };
341if_stmt: IF expr[cond] THEN stmt.list FI
342 { $if_stmt = new IfStmt($cond, $[stmt.list], 0); };
343while_stmt[res]: WHILE expr DO stmt.list OD
344 { $res = new WhileStmt($[expr], $[stmt.list]); };
345expr: expr '+' term { $$ = new Plus($1,$3); }
346 | expr '-' term { $$ = new Minus($1,$3); }
347 | term { $$ = $1; }
348 ;
349term: term '*' factor { $$ = new Times($1,$3); }
350 | factor { $$ = $1; }
351 ;
352factor: '(' expr ')' { $$ = $2; }
353 | NUMBER { $$ = new Number($1); }
354 | IDENT { $$ = new Ident(string($1)); }
355 ;
356]])
357AT_BISON_CHECK([-o test.c test.y], 1, [],
ae93e4e4 358[[test.y:24.36-41: invalid reference: '$cond1'
66381412 359test.y:23.11-24.62: symbol not found in production: cond1
ae93e4e4 360test.y:26.43-53: invalid reference: '$stmt.field'
66381412 361test.y:25.11-26.60: symbol not found in production: stmt
676997e5 362test.y:25.35-38: possibly meant: $then.field, hiding $stmt.field at $4
ae93e4e4 363test.y:28.43-52: invalid reference: '$stmt.list'
66381412 364test.y:27.11-28.59: symbol not found in production: stmt
676997e5 365test.y:27.30-38: possibly meant: $[stmt.list] at $4
ae93e4e4 366test.y:30.43-46: ambiguous reference: '$xyz'
66381412
AR
367test.y:29.35-37: refers to: $xyz at $4
368test.y:29.50-52: refers to: $xyz at $6
ae93e4e4 369test.y:32.43-52: invalid reference: '$stmt.list'
66381412 370test.y:31.11-32.63: symbol not found in production: stmt
676997e5
JD
371test.y:31.40-43: possibly meant: $then, hiding $[stmt.list] at $4
372test.y:31.61-64: possibly meant: $else, hiding $[stmt.list] at $6
ae93e4e4 373test.y:34.43-58: invalid reference: '$stmt.list.field'
66381412 374test.y:33.11-34.69: symbol not found in production: stmt
676997e5
JD
375test.y:33.40-43: possibly meant: $then.field, hiding $[stmt.list].field at $4
376test.y:33.61-64: possibly meant: $else.field, hiding $[stmt.list].field at $6
ae93e4e4 377test.y:36.43-54: invalid reference: '$[stmt.list]'
66381412
AR
378test.y:35.11-36.71: symbol not found in production: stmt.list
379test.y:35.40-43: possibly meant: $then, hiding $[stmt.list] at $4
380test.y:35.61-64: possibly meant: $else, hiding $[stmt.list] at $6
ae93e4e4 381test.y:38.43-49: invalid reference: '$then.1'
66381412 382test.y:37.11-38.60: symbol not found in production: then
676997e5 383test.y:37.40-45: possibly meant: $[then.1] at $4
ae93e4e4 384test.y:40.43-55: invalid reference: '$then.1.field'
66381412 385test.y:39.11-40.66: symbol not found in production: then
676997e5 386test.y:39.40-45: possibly meant: $[then.1].field at $4
ae93e4e4 387test.y:42.44-50: invalid reference: '$stmt.x'
66381412 388test.y:41.12-42.57: symbol not found in production: stmt
676997e5
JD
389test.y:41.36-41: possibly meant: $[stmt.x].x, hiding $stmt.x at $4
390test.y:41.36-41: possibly meant: $[stmt.x] at $4
ae93e4e4 391test.y:44.13-22: invalid reference: '$if-stmt-a'
66381412 392test.y:43.12-44.59: symbol not found in production: if
676997e5 393test.y:43.1-9: possibly meant: $[if-stmt-a] at $$
ae93e4e4 394test.y:46.46-54: invalid reference: '$then-a.f'
66381412 395test.y:45.12-46.65: symbol not found in production: then
676997e5 396test.y:45.41-46: possibly meant: $[then-a].f at $4
b9f1d9a4
AR
397]])
398AT_CLEANUP
399
400#######################################################################
401
402AT_SETUP([Missing identifiers in brackets])
403AT_DATA_GRAMMAR([test.y],
404[[
405%%
406start: foo[] bar
407 { s = $foo; }
408]])
409AT_BISON_CHECK([-o test.c test.y], 1, [],
872b52bc 410[[test.y:11.12: an identifier expected
b9f1d9a4
AR
411]])
412AT_CLEANUP
413
414#######################################################################
415
416AT_SETUP([Redundant words in brackets])
417AT_DATA_GRAMMAR([test.y],
418[[
419%%
420start: foo[ a d ] bar
421 { s = $foo; }
422]])
423AT_BISON_CHECK([-o test.c test.y], 1, [],
ae93e4e4 424[[test.y:11.15: unexpected identifier in bracketed name: 'd'
b9f1d9a4
AR
425]])
426AT_CLEANUP
427
428#######################################################################
429
430AT_SETUP([Comments in brackets])
431AT_DATA_GRAMMAR([test.y],
432[[
433%%
434start: foo[/* comment */] bar
435 { s = $foo; }
436]])
437AT_BISON_CHECK([-o test.c test.y], 1, [],
872b52bc 438[[test.y:11.25: an identifier expected
b9f1d9a4
AR
439]])
440AT_CLEANUP
441
442#######################################################################
443
444AT_SETUP([Stray symbols in brackets])
445AT_DATA_GRAMMAR([test.y],
446[[
447%%
82f3355e 448start: foo[ /* aaa */ *&-.+ ] bar
b9f1d9a4
AR
449 { s = $foo; }
450]])
451AT_BISON_CHECK([-o test.c test.y], 1, [],
ae93e4e4
JM
452[[test.y:11.23: invalid character in bracketed name: '*'
453test.y:11.24: invalid character in bracketed name: '&'
454test.y:11.25: invalid character in bracketed name: '-'
455test.y:11.27: invalid character in bracketed name: '+'
b9f1d9a4
AR
456]])
457AT_CLEANUP
458
459#######################################################################
460
461AT_SETUP([Redundant words in LHS brackets])
462AT_DATA_GRAMMAR([test.y],
463[[
464%%
17d7bf83 465start[a s]: foo;
b9f1d9a4
AR
466]])
467AT_BISON_CHECK([-o test.c test.y], 1, [],
ae93e4e4 468[[test.y:11.9: unexpected identifier in bracketed name: 's'
b9f1d9a4
AR
469]])
470AT_CLEANUP
61bc57e5
AR
471
472#######################################################################
473
a4d1bf6a
AD
474# Bison used to free twice the named ref for "a", since a single copy
475# was used in two rules.
476AT_SETUP([Factored LHS])
477AT_DATA_GRAMMAR([test.y],
478[[
479%%
480start[a]: "foo" | "bar";
481]])
482AT_BISON_CHECK([-o test.c test.y])
483AT_CLEANUP
484
485#######################################################################
486
61bc57e5
AR
487AT_SETUP([Unresolved references])
488AT_DATA_GRAMMAR([test.y],
489[[
490%%
491stat:
17d7bf83
AD
492 sym_a sym_b { func($sym.field); }
493| sym_a sym_b { func($<aa>sym.field); }
494| sym_a sym_b { func($[sym.field]); }
495| sym_a sym_b { func($<aa>[sym.field]); }
496| sym_a sym_b { func($sym); }
497| sym_a sym_b { func($<aa>sym); }
498| sym_a sym_b { func($[sym]); } sym_a sym_b { func($<aa>[sym]); }
61bc57e5 499;
17d7bf83 500
61bc57e5 501stat1:
17d7bf83
AD
502 sym_a sym_b { func($sym-field); }
503| sym_a sym_b { func($<aa>sym-field); }
504| sym_a sym_b { func($[sym-field]); }
505| sym_a sym_b { func($<aa>[sym-field]); }
506| sym_a sym_b { func($sym); }
507| sym_a sym_b { func($<aa>sym); }
508| sym_a sym_b { func($[sym]); } sym_a sym_b { func($<aa>[sym]); }
61bc57e5 509;
17d7bf83
AD
510
511sym_a: 'a';
512sym_b: 'b';
61bc57e5
AR
513]])
514AT_BISON_CHECK([-o test.c test.y], 1, [],
ae93e4e4 515[[test.y:12.22-31: invalid reference: '$sym.field'
17d7bf83 516test.y:12.3-35: symbol not found in production: sym
ae93e4e4 517test.y:13.22-35: invalid reference: '$<aa>sym.field'
17d7bf83 518test.y:13.3-39: symbol not found in production: sym
ae93e4e4 519test.y:14.22-33: invalid reference: '$[sym.field]'
17d7bf83 520test.y:14.3-37: symbol not found in production: sym.field
ae93e4e4 521test.y:15.22-37: invalid reference: '$<aa>[sym.field]'
17d7bf83 522test.y:15.3-41: symbol not found in production: sym.field
ae93e4e4 523test.y:16.22-25: invalid reference: '$sym'
17d7bf83 524test.y:16.3-29: symbol not found in production: sym
ae93e4e4 525test.y:17.22-29: invalid reference: '$<aa>sym'
17d7bf83 526test.y:17.3-33: symbol not found in production: sym
ae93e4e4 527test.y:18.22-27: invalid reference: '$[sym]'
17d7bf83 528test.y:18.3-65: symbol not found in production before $3: sym
ae93e4e4 529test.y:18.52-61: invalid reference: '$<aa>[sym]'
17d7bf83 530test.y:18.3-65: symbol not found in production: sym
ae93e4e4 531test.y:22.22-31: invalid reference: '$sym-field'
17d7bf83 532test.y:22.3-35: symbol not found in production: sym
ae93e4e4 533test.y:23.22-35: invalid reference: '$<aa>sym-field'
17d7bf83 534test.y:23.3-39: symbol not found in production: sym
ae93e4e4 535test.y:24.22-33: invalid reference: '$[sym-field]'
17d7bf83 536test.y:24.3-37: symbol not found in production: sym-field
ae93e4e4 537test.y:25.22-37: invalid reference: '$<aa>[sym-field]'
17d7bf83 538test.y:25.3-41: symbol not found in production: sym-field
ae93e4e4 539test.y:26.22-25: invalid reference: '$sym'
17d7bf83 540test.y:26.3-29: symbol not found in production: sym
ae93e4e4 541test.y:27.22-29: invalid reference: '$<aa>sym'
17d7bf83 542test.y:27.3-33: symbol not found in production: sym
ae93e4e4 543test.y:28.22-27: invalid reference: '$[sym]'
17d7bf83 544test.y:28.3-65: symbol not found in production before $3: sym
ae93e4e4 545test.y:28.52-61: invalid reference: '$<aa>[sym]'
17d7bf83 546test.y:28.3-65: symbol not found in production: sym
61bc57e5
AR
547]])
548AT_CLEANUP
5c9efc75
JD
549
550#######################################################################
551
552AT_SETUP([[$ or @ followed by . or -]])
553AT_DATA([[test.y]],
554[[
555%%
556start:
557 .field { $.field; }
5c9efc75 558| 'a' { @.field; }
5c9efc75 559;
676997e5 560.field: ;
5c9efc75 561]])
676997e5 562AT_BISON_CHECK([[test.y]], [[1]], [],
ae93e4e4
JM
563[[test.y:4.12-18: invalid reference: '$.field'
564test.y:4.13: syntax error after '$', expecting integer, letter, '_', '@<:@', or '$'
676997e5 565test.y:4.3-8: possibly meant: $[.field] at $1
ae93e4e4
JM
566test.y:5.12-18: invalid reference: '@.field'
567test.y:5.13: syntax error after '@', expecting integer, letter, '_', '@<:@', or '$'
82f3355e
JD
568]])
569AT_DATA([[test.y]],
570[[
571%%
572start:
573 'a' { $-field; }
574| 'b' { @-field; }
575;
576]])
577AT_BISON_CHECK([[test.y]], [[0]], [],
ae93e4e4
JM
578[[test.y:4.9: warning: stray '$'
579test.y:5.9: warning: stray '@'
5c9efc75
JD
580]])
581AT_CLEANUP