gdb/fortran: Add Fortran 'kind' intrinsic and keyword
[deliverable/binutils-gdb.git] / gdb / f-exp.y
CommitLineData
0c9c3474 1
c906108c 2/* YACC parser for Fortran expressions, for GDB.
42a4f53d 3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
4fcf66da 4
c906108c
SS
5 Contributed by Motorola. Adapted from the C parser by Farooq Butt
6 (fmbutt@engage.sps.mot.com).
7
5b1ba0e5 8 This file is part of GDB.
c906108c 9
5b1ba0e5
NS
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
c906108c 14
5b1ba0e5
NS
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
c906108c 19
5b1ba0e5
NS
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
22
23/* This was blantantly ripped off the C expression parser, please
24 be aware of that as you look at its basic structure -FMB */
25
26/* Parse a F77 expression from text in a string,
27 and return the result as a struct expression pointer.
28 That structure contains arithmetic operations in reverse polish,
29 with constants represented by operations that are followed by special data.
30 See expression.h for the details of the format.
31 What is important here is that it can be built up sequentially
32 during the process of parsing; the lower levels of the tree always
33 come first in the result.
34
35 Note that malloc's and realloc's in this file are transformed to
36 xmalloc and xrealloc respectively by the same sed command in the
37 makefile that remaps any other malloc/realloc inserted by the parser
38 generator. Doing this with #defines and trying to control the interaction
39 with include files (<malloc.h> and <stdlib.h> for example) just became
40 too messy, particularly when such includes can be inserted at random
41 times by the parser generator. */
42
43%{
44
45#include "defs.h"
c906108c
SS
46#include "expression.h"
47#include "value.h"
48#include "parser-defs.h"
49#include "language.h"
50#include "f-lang.h"
51#include "bfd.h" /* Required by objfiles.h. */
52#include "symfile.h" /* Required by objfiles.h. */
53#include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
fe898f56 54#include "block.h"
0f6e1ba6 55#include <ctype.h>
325fac50 56#include <algorithm>
c906108c 57
410a0ff2
SDJ
58#define parse_type(ps) builtin_type (parse_gdbarch (ps))
59#define parse_f_type(ps) builtin_f_type (parse_gdbarch (ps))
3e79cecf 60
b3f11165
PA
61/* Remap normal yacc parser interface names (yyparse, yylex, yyerror,
62 etc). */
63#define GDB_YY_REMAP_PREFIX f_
64#include "yy-remap.h"
f461f5cf 65
410a0ff2
SDJ
66/* The state of the parser, used internally when we are parsing the
67 expression. */
68
69static struct parser_state *pstate = NULL;
70
a14ed312 71int yyparse (void);
c906108c 72
a14ed312 73static int yylex (void);
c906108c 74
69d340c6 75static void yyerror (const char *);
c906108c 76
a14ed312 77static void growbuf_by_size (int);
c906108c 78
a14ed312 79static int match_string_literal (void);
c906108c 80
4d00f5d8
AB
81static void push_kind_type (LONGEST val, struct type *type);
82
83static struct type *convert_to_kind_type (struct type *basetype, int kind);
84
c906108c
SS
85%}
86
87/* Although the yacc "value" of an expression is not used,
88 since the result is stored in the structure being created,
89 other node types do have values. */
90
91%union
92 {
93 LONGEST lval;
94 struct {
95 LONGEST val;
96 struct type *type;
97 } typed_val;
edd079d9
UW
98 struct {
99 gdb_byte val[16];
100 struct type *type;
101 } typed_val_float;
c906108c
SS
102 struct symbol *sym;
103 struct type *tval;
104 struct stoken sval;
105 struct ttype tsym;
106 struct symtoken ssym;
107 int voidval;
108 struct block *bval;
109 enum exp_opcode opcode;
110 struct internalvar *ivar;
111
112 struct type **tvec;
113 int *ivec;
114 }
115
116%{
117/* YYSTYPE gets defined by %union */
410a0ff2
SDJ
118static int parse_number (struct parser_state *, const char *, int,
119 int, YYSTYPE *);
c906108c
SS
120%}
121
122%type <voidval> exp type_exp start variable
123%type <tval> type typebase
124%type <tvec> nonempty_typelist
125/* %type <bval> block */
126
127/* Fancy type parsing. */
128%type <voidval> func_mod direct_abs_decl abs_decl
129%type <tval> ptype
130
131%token <typed_val> INT
edd079d9 132%token <typed_val_float> FLOAT
c906108c
SS
133
134/* Both NAME and TYPENAME tokens represent symbols in the input,
135 and both convey their data as strings.
136 But a TYPENAME is a string that happens to be defined as a typedef
137 or builtin type name (such as int or char)
138 and a NAME is any other symbol.
139 Contexts where this distinction is not important can use the
140 nonterminal "name", which matches either NAME or TYPENAME. */
141
142%token <sval> STRING_LITERAL
143%token <lval> BOOLEAN_LITERAL
144%token <ssym> NAME
145%token <tsym> TYPENAME
2a5e440c 146%type <sval> name
c906108c 147%type <ssym> name_not_typename
c906108c
SS
148
149/* A NAME_OR_INT is a symbol which is not known in the symbol table,
150 but which would parse as a valid number in the current input radix.
151 E.g. "c" when input_radix==16. Depending on the parse, it will be
152 turned into a name or into a number. */
153
154%token <ssym> NAME_OR_INT
155
4d00f5d8 156%token SIZEOF KIND
c906108c
SS
157%token ERROR
158
159/* Special type cases, put in to allow the parser to distinguish different
160 legal basetypes. */
161%token INT_KEYWORD INT_S2_KEYWORD LOGICAL_S1_KEYWORD LOGICAL_S2_KEYWORD
ce4b0682 162%token LOGICAL_S8_KEYWORD
c906108c
SS
163%token LOGICAL_KEYWORD REAL_KEYWORD REAL_S8_KEYWORD REAL_S16_KEYWORD
164%token COMPLEX_S8_KEYWORD COMPLEX_S16_KEYWORD COMPLEX_S32_KEYWORD
165%token BOOL_AND BOOL_OR BOOL_NOT
166%token <lval> CHARACTER
167
cfeadda5 168%token <voidval> DOLLAR_VARIABLE
c906108c
SS
169
170%token <opcode> ASSIGN_MODIFY
171
172%left ','
173%left ABOVE_COMMA
174%right '=' ASSIGN_MODIFY
175%right '?'
176%left BOOL_OR
177%right BOOL_NOT
178%left BOOL_AND
179%left '|'
180%left '^'
181%left '&'
182%left EQUAL NOTEQUAL
183%left LESSTHAN GREATERTHAN LEQ GEQ
184%left LSH RSH
185%left '@'
186%left '+' '-'
2a5e440c 187%left '*' '/'
bd49c137 188%right STARSTAR
2a5e440c 189%right '%'
c906108c
SS
190%right UNARY
191%right '('
192
193\f
194%%
195
196start : exp
197 | type_exp
198 ;
199
200type_exp: type
410a0ff2
SDJ
201 { write_exp_elt_opcode (pstate, OP_TYPE);
202 write_exp_elt_type (pstate, $1);
203 write_exp_elt_opcode (pstate, OP_TYPE); }
c906108c
SS
204 ;
205
206exp : '(' exp ')'
207 { }
208 ;
209
210/* Expressions, not including the comma operator. */
211exp : '*' exp %prec UNARY
410a0ff2 212 { write_exp_elt_opcode (pstate, UNOP_IND); }
ef944135 213 ;
c906108c
SS
214
215exp : '&' exp %prec UNARY
410a0ff2 216 { write_exp_elt_opcode (pstate, UNOP_ADDR); }
ef944135 217 ;
c906108c
SS
218
219exp : '-' exp %prec UNARY
410a0ff2 220 { write_exp_elt_opcode (pstate, UNOP_NEG); }
c906108c
SS
221 ;
222
223exp : BOOL_NOT exp %prec UNARY
410a0ff2 224 { write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); }
c906108c
SS
225 ;
226
227exp : '~' exp %prec UNARY
410a0ff2 228 { write_exp_elt_opcode (pstate, UNOP_COMPLEMENT); }
c906108c
SS
229 ;
230
231exp : SIZEOF exp %prec UNARY
410a0ff2 232 { write_exp_elt_opcode (pstate, UNOP_SIZEOF); }
c906108c
SS
233 ;
234
4d00f5d8
AB
235exp : KIND '(' exp ')' %prec UNARY
236 { write_exp_elt_opcode (pstate, UNOP_KIND); }
237 ;
238
c906108c
SS
239/* No more explicit array operators, we treat everything in F77 as
240 a function call. The disambiguation as to whether we are
241 doing a subscript operation or a function call is done
242 later in eval.c. */
243
244exp : exp '('
245 { start_arglist (); }
246 arglist ')'
410a0ff2
SDJ
247 { write_exp_elt_opcode (pstate,
248 OP_F77_UNDETERMINED_ARGLIST);
249 write_exp_elt_longcst (pstate,
250 (LONGEST) end_arglist ());
251 write_exp_elt_opcode (pstate,
252 OP_F77_UNDETERMINED_ARGLIST); }
c906108c
SS
253 ;
254
255arglist :
256 ;
257
258arglist : exp
259 { arglist_len = 1; }
260 ;
261
0b4e1325
WZ
262arglist : subrange
263 { arglist_len = 1; }
ef944135 264 ;
c906108c
SS
265
266arglist : arglist ',' exp %prec ABOVE_COMMA
267 { arglist_len++; }
268 ;
269
0b4e1325
WZ
270/* There are four sorts of subrange types in F90. */
271
272subrange: exp ':' exp %prec ABOVE_COMMA
01739a3b 273 { write_exp_elt_opcode (pstate, OP_RANGE);
410a0ff2 274 write_exp_elt_longcst (pstate, NONE_BOUND_DEFAULT);
01739a3b 275 write_exp_elt_opcode (pstate, OP_RANGE); }
0b4e1325
WZ
276 ;
277
278subrange: exp ':' %prec ABOVE_COMMA
01739a3b 279 { write_exp_elt_opcode (pstate, OP_RANGE);
410a0ff2 280 write_exp_elt_longcst (pstate, HIGH_BOUND_DEFAULT);
01739a3b 281 write_exp_elt_opcode (pstate, OP_RANGE); }
c906108c
SS
282 ;
283
0b4e1325 284subrange: ':' exp %prec ABOVE_COMMA
01739a3b 285 { write_exp_elt_opcode (pstate, OP_RANGE);
410a0ff2 286 write_exp_elt_longcst (pstate, LOW_BOUND_DEFAULT);
01739a3b 287 write_exp_elt_opcode (pstate, OP_RANGE); }
0b4e1325
WZ
288 ;
289
290subrange: ':' %prec ABOVE_COMMA
01739a3b 291 { write_exp_elt_opcode (pstate, OP_RANGE);
410a0ff2 292 write_exp_elt_longcst (pstate, BOTH_BOUND_DEFAULT);
01739a3b 293 write_exp_elt_opcode (pstate, OP_RANGE); }
0b4e1325 294 ;
c906108c
SS
295
296complexnum: exp ',' exp
297 { }
298 ;
299
300exp : '(' complexnum ')'
410a0ff2
SDJ
301 { write_exp_elt_opcode (pstate, OP_COMPLEX);
302 write_exp_elt_type (pstate,
303 parse_f_type (pstate)
304 ->builtin_complex_s16);
305 write_exp_elt_opcode (pstate, OP_COMPLEX); }
c906108c
SS
306 ;
307
308exp : '(' type ')' exp %prec UNARY
410a0ff2
SDJ
309 { write_exp_elt_opcode (pstate, UNOP_CAST);
310 write_exp_elt_type (pstate, $2);
311 write_exp_elt_opcode (pstate, UNOP_CAST); }
c906108c
SS
312 ;
313
2a5e440c 314exp : exp '%' name
410a0ff2
SDJ
315 { write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
316 write_exp_string (pstate, $3);
317 write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
2a5e440c
WZ
318 ;
319
c906108c
SS
320/* Binary operators in order of decreasing precedence. */
321
322exp : exp '@' exp
410a0ff2 323 { write_exp_elt_opcode (pstate, BINOP_REPEAT); }
c906108c
SS
324 ;
325
bd49c137 326exp : exp STARSTAR exp
410a0ff2 327 { write_exp_elt_opcode (pstate, BINOP_EXP); }
bd49c137
WZ
328 ;
329
c906108c 330exp : exp '*' exp
410a0ff2 331 { write_exp_elt_opcode (pstate, BINOP_MUL); }
c906108c
SS
332 ;
333
334exp : exp '/' exp
410a0ff2 335 { write_exp_elt_opcode (pstate, BINOP_DIV); }
c906108c
SS
336 ;
337
c906108c 338exp : exp '+' exp
410a0ff2 339 { write_exp_elt_opcode (pstate, BINOP_ADD); }
c906108c
SS
340 ;
341
342exp : exp '-' exp
410a0ff2 343 { write_exp_elt_opcode (pstate, BINOP_SUB); }
c906108c
SS
344 ;
345
346exp : exp LSH exp
410a0ff2 347 { write_exp_elt_opcode (pstate, BINOP_LSH); }
c906108c
SS
348 ;
349
350exp : exp RSH exp
410a0ff2 351 { write_exp_elt_opcode (pstate, BINOP_RSH); }
c906108c
SS
352 ;
353
354exp : exp EQUAL exp
410a0ff2 355 { write_exp_elt_opcode (pstate, BINOP_EQUAL); }
c906108c
SS
356 ;
357
358exp : exp NOTEQUAL exp
410a0ff2 359 { write_exp_elt_opcode (pstate, BINOP_NOTEQUAL); }
c906108c
SS
360 ;
361
362exp : exp LEQ exp
410a0ff2 363 { write_exp_elt_opcode (pstate, BINOP_LEQ); }
c906108c
SS
364 ;
365
366exp : exp GEQ exp
410a0ff2 367 { write_exp_elt_opcode (pstate, BINOP_GEQ); }
c906108c
SS
368 ;
369
370exp : exp LESSTHAN exp
410a0ff2 371 { write_exp_elt_opcode (pstate, BINOP_LESS); }
c906108c
SS
372 ;
373
374exp : exp GREATERTHAN exp
410a0ff2 375 { write_exp_elt_opcode (pstate, BINOP_GTR); }
c906108c
SS
376 ;
377
378exp : exp '&' exp
410a0ff2 379 { write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); }
c906108c
SS
380 ;
381
382exp : exp '^' exp
410a0ff2 383 { write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); }
c906108c
SS
384 ;
385
386exp : exp '|' exp
410a0ff2 387 { write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); }
c906108c
SS
388 ;
389
390exp : exp BOOL_AND exp
410a0ff2 391 { write_exp_elt_opcode (pstate, BINOP_LOGICAL_AND); }
c906108c
SS
392 ;
393
394
395exp : exp BOOL_OR exp
410a0ff2 396 { write_exp_elt_opcode (pstate, BINOP_LOGICAL_OR); }
c906108c
SS
397 ;
398
399exp : exp '=' exp
410a0ff2 400 { write_exp_elt_opcode (pstate, BINOP_ASSIGN); }
c906108c
SS
401 ;
402
403exp : exp ASSIGN_MODIFY exp
410a0ff2
SDJ
404 { write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY);
405 write_exp_elt_opcode (pstate, $2);
406 write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY); }
c906108c
SS
407 ;
408
409exp : INT
410a0ff2
SDJ
410 { write_exp_elt_opcode (pstate, OP_LONG);
411 write_exp_elt_type (pstate, $1.type);
412 write_exp_elt_longcst (pstate, (LONGEST) ($1.val));
413 write_exp_elt_opcode (pstate, OP_LONG); }
c906108c
SS
414 ;
415
416exp : NAME_OR_INT
417 { YYSTYPE val;
410a0ff2
SDJ
418 parse_number (pstate, $1.stoken.ptr,
419 $1.stoken.length, 0, &val);
420 write_exp_elt_opcode (pstate, OP_LONG);
421 write_exp_elt_type (pstate, val.typed_val.type);
422 write_exp_elt_longcst (pstate,
423 (LONGEST)val.typed_val.val);
424 write_exp_elt_opcode (pstate, OP_LONG); }
c906108c
SS
425 ;
426
427exp : FLOAT
edd079d9
UW
428 { write_exp_elt_opcode (pstate, OP_FLOAT);
429 write_exp_elt_type (pstate, $1.type);
430 write_exp_elt_floatcst (pstate, $1.val);
431 write_exp_elt_opcode (pstate, OP_FLOAT); }
c906108c
SS
432 ;
433
434exp : variable
435 ;
436
cfeadda5 437exp : DOLLAR_VARIABLE
c906108c
SS
438 ;
439
440exp : SIZEOF '(' type ')' %prec UNARY
410a0ff2
SDJ
441 { write_exp_elt_opcode (pstate, OP_LONG);
442 write_exp_elt_type (pstate,
443 parse_f_type (pstate)
444 ->builtin_integer);
f168693b 445 $3 = check_typedef ($3);
410a0ff2
SDJ
446 write_exp_elt_longcst (pstate,
447 (LONGEST) TYPE_LENGTH ($3));
448 write_exp_elt_opcode (pstate, OP_LONG); }
c906108c
SS
449 ;
450
451exp : BOOLEAN_LITERAL
410a0ff2
SDJ
452 { write_exp_elt_opcode (pstate, OP_BOOL);
453 write_exp_elt_longcst (pstate, (LONGEST) $1);
454 write_exp_elt_opcode (pstate, OP_BOOL);
c906108c
SS
455 }
456 ;
457
458exp : STRING_LITERAL
459 {
410a0ff2
SDJ
460 write_exp_elt_opcode (pstate, OP_STRING);
461 write_exp_string (pstate, $1);
462 write_exp_elt_opcode (pstate, OP_STRING);
c906108c
SS
463 }
464 ;
465
466variable: name_not_typename
d12307c1 467 { struct block_symbol sym = $1.sym;
c906108c 468
d12307c1 469 if (sym.symbol)
c906108c 470 {
d12307c1 471 if (symbol_read_needs_frame (sym.symbol))
aee1fcdf 472 innermost_block.update (sym);
410a0ff2 473 write_exp_elt_opcode (pstate, OP_VAR_VALUE);
63e43d3a 474 write_exp_elt_block (pstate, sym.block);
d12307c1 475 write_exp_elt_sym (pstate, sym.symbol);
410a0ff2 476 write_exp_elt_opcode (pstate, OP_VAR_VALUE);
c906108c
SS
477 break;
478 }
479 else
480 {
7c7b6655 481 struct bound_minimal_symbol msymbol;
710122da 482 char *arg = copy_name ($1.stoken);
c906108c
SS
483
484 msymbol =
7c7b6655
TT
485 lookup_bound_minimal_symbol (arg);
486 if (msymbol.minsym != NULL)
410a0ff2 487 write_exp_msymbol (pstate, msymbol);
c906108c 488 else if (!have_full_symbols () && !have_partial_symbols ())
001083c6 489 error (_("No symbol table is loaded. Use the \"file\" command."));
c906108c 490 else
001083c6 491 error (_("No symbol \"%s\" in current context."),
c906108c
SS
492 copy_name ($1.stoken));
493 }
494 }
495 ;
496
497
498type : ptype
499 ;
500
501ptype : typebase
502 | typebase abs_decl
503 {
504 /* This is where the interesting stuff happens. */
505 int done = 0;
506 int array_size;
507 struct type *follow_type = $1;
508 struct type *range_type;
509
510 while (!done)
511 switch (pop_type ())
512 {
513 case tp_end:
514 done = 1;
515 break;
516 case tp_pointer:
517 follow_type = lookup_pointer_type (follow_type);
518 break;
519 case tp_reference:
3b224330 520 follow_type = lookup_lvalue_reference_type (follow_type);
c906108c
SS
521 break;
522 case tp_array:
523 array_size = pop_type_int ();
524 if (array_size != -1)
525 {
526 range_type =
0c9c3474
SA
527 create_static_range_type ((struct type *) NULL,
528 parse_f_type (pstate)
529 ->builtin_integer,
530 0, array_size - 1);
c906108c
SS
531 follow_type =
532 create_array_type ((struct type *) NULL,
533 follow_type, range_type);
534 }
535 else
536 follow_type = lookup_pointer_type (follow_type);
537 break;
538 case tp_function:
539 follow_type = lookup_function_type (follow_type);
540 break;
4d00f5d8
AB
541 case tp_kind:
542 {
543 int kind_val = pop_type_int ();
544 follow_type
545 = convert_to_kind_type (follow_type, kind_val);
546 }
547 break;
c906108c
SS
548 }
549 $$ = follow_type;
550 }
551 ;
552
553abs_decl: '*'
554 { push_type (tp_pointer); $$ = 0; }
555 | '*' abs_decl
556 { push_type (tp_pointer); $$ = $2; }
557 | '&'
558 { push_type (tp_reference); $$ = 0; }
559 | '&' abs_decl
560 { push_type (tp_reference); $$ = $2; }
561 | direct_abs_decl
562 ;
563
564direct_abs_decl: '(' abs_decl ')'
565 { $$ = $2; }
4d00f5d8
AB
566 | '(' KIND '=' INT ')'
567 { push_kind_type ($4.val, $4.type); }
c906108c
SS
568 | direct_abs_decl func_mod
569 { push_type (tp_function); }
570 | func_mod
571 { push_type (tp_function); }
572 ;
573
574func_mod: '(' ')'
575 { $$ = 0; }
576 | '(' nonempty_typelist ')'
8dbb1c65 577 { free ($2); $$ = 0; }
c906108c
SS
578 ;
579
580typebase /* Implements (approximately): (type-qualifier)* type-specifier */
581 : TYPENAME
582 { $$ = $1.type; }
583 | INT_KEYWORD
410a0ff2 584 { $$ = parse_f_type (pstate)->builtin_integer; }
c906108c 585 | INT_S2_KEYWORD
410a0ff2 586 { $$ = parse_f_type (pstate)->builtin_integer_s2; }
c906108c 587 | CHARACTER
410a0ff2 588 { $$ = parse_f_type (pstate)->builtin_character; }
ce4b0682 589 | LOGICAL_S8_KEYWORD
410a0ff2 590 { $$ = parse_f_type (pstate)->builtin_logical_s8; }
c906108c 591 | LOGICAL_KEYWORD
410a0ff2 592 { $$ = parse_f_type (pstate)->builtin_logical; }
c906108c 593 | LOGICAL_S2_KEYWORD
410a0ff2 594 { $$ = parse_f_type (pstate)->builtin_logical_s2; }
c906108c 595 | LOGICAL_S1_KEYWORD
410a0ff2 596 { $$ = parse_f_type (pstate)->builtin_logical_s1; }
c906108c 597 | REAL_KEYWORD
410a0ff2 598 { $$ = parse_f_type (pstate)->builtin_real; }
c906108c 599 | REAL_S8_KEYWORD
410a0ff2 600 { $$ = parse_f_type (pstate)->builtin_real_s8; }
c906108c 601 | REAL_S16_KEYWORD
410a0ff2 602 { $$ = parse_f_type (pstate)->builtin_real_s16; }
c906108c 603 | COMPLEX_S8_KEYWORD
410a0ff2 604 { $$ = parse_f_type (pstate)->builtin_complex_s8; }
c906108c 605 | COMPLEX_S16_KEYWORD
410a0ff2 606 { $$ = parse_f_type (pstate)->builtin_complex_s16; }
c906108c 607 | COMPLEX_S32_KEYWORD
410a0ff2 608 { $$ = parse_f_type (pstate)->builtin_complex_s32; }
c906108c
SS
609 ;
610
c906108c
SS
611nonempty_typelist
612 : type
613 { $$ = (struct type **) malloc (sizeof (struct type *) * 2);
614 $<ivec>$[0] = 1; /* Number of types in vector */
615 $$[1] = $1;
616 }
617 | nonempty_typelist ',' type
618 { int len = sizeof (struct type *) * (++($<ivec>1[0]) + 1);
619 $$ = (struct type **) realloc ((char *) $1, len);
620 $$[$<ivec>$[0]] = $3;
621 }
622 ;
623
2a5e440c
WZ
624name : NAME
625 { $$ = $1.stoken; }
626 ;
627
c906108c
SS
628name_not_typename : NAME
629/* These would be useful if name_not_typename was useful, but it is just
630 a fake for "variable", so these cause reduce/reduce conflicts because
631 the parser can't tell whether NAME_OR_INT is a name_not_typename (=variable,
632 =exp) or just an exp. If name_not_typename was ever used in an lvalue
633 context where only a name could occur, this might be useful.
634 | NAME_OR_INT
635 */
636 ;
637
638%%
639
640/* Take care of parsing a number (anything that starts with a digit).
641 Set yylval and return the token type; update lexptr.
642 LEN is the number of characters in it. */
643
644/*** Needs some error checking for the float case ***/
645
646static int
410a0ff2
SDJ
647parse_number (struct parser_state *par_state,
648 const char *p, int len, int parsed_float, YYSTYPE *putithere)
c906108c 649{
710122da
DC
650 LONGEST n = 0;
651 LONGEST prevn = 0;
652 int c;
653 int base = input_radix;
c906108c
SS
654 int unsigned_p = 0;
655 int long_p = 0;
656 ULONGEST high_bit;
657 struct type *signed_type;
658 struct type *unsigned_type;
659
660 if (parsed_float)
661 {
662 /* It's a float since it contains a point or an exponent. */
edd079d9
UW
663 /* [dD] is not understood as an exponent by parse_float,
664 change it to 'e'. */
c906108c
SS
665 char *tmp, *tmp2;
666
4fcf66da 667 tmp = xstrdup (p);
c906108c
SS
668 for (tmp2 = tmp; *tmp2; ++tmp2)
669 if (*tmp2 == 'd' || *tmp2 == 'D')
670 *tmp2 = 'e';
edd079d9
UW
671
672 /* FIXME: Should this use different types? */
673 putithere->typed_val_float.type = parse_f_type (pstate)->builtin_real_s8;
674 bool parsed = parse_float (tmp, len,
675 putithere->typed_val_float.type,
676 putithere->typed_val_float.val);
c906108c 677 free (tmp);
edd079d9 678 return parsed? FLOAT : ERROR;
c906108c
SS
679 }
680
681 /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
682 if (p[0] == '0')
683 switch (p[1])
684 {
685 case 'x':
686 case 'X':
687 if (len >= 3)
688 {
689 p += 2;
690 base = 16;
691 len -= 2;
692 }
693 break;
694
695 case 't':
696 case 'T':
697 case 'd':
698 case 'D':
699 if (len >= 3)
700 {
701 p += 2;
702 base = 10;
703 len -= 2;
704 }
705 break;
706
707 default:
708 base = 8;
709 break;
710 }
711
712 while (len-- > 0)
713 {
714 c = *p++;
0f6e1ba6
AC
715 if (isupper (c))
716 c = tolower (c);
717 if (len == 0 && c == 'l')
718 long_p = 1;
719 else if (len == 0 && c == 'u')
720 unsigned_p = 1;
c906108c
SS
721 else
722 {
0f6e1ba6
AC
723 int i;
724 if (c >= '0' && c <= '9')
725 i = c - '0';
726 else if (c >= 'a' && c <= 'f')
727 i = c - 'a' + 10;
c906108c
SS
728 else
729 return ERROR; /* Char not a digit */
0f6e1ba6
AC
730 if (i >= base)
731 return ERROR; /* Invalid digit in this base */
732 n *= base;
733 n += i;
c906108c 734 }
c906108c
SS
735 /* Portably test for overflow (only works for nonzero values, so make
736 a second check for zero). */
737 if ((prevn >= n) && n != 0)
738 unsigned_p=1; /* Try something unsigned */
739 /* If range checking enabled, portably test for unsigned overflow. */
740 if (RANGE_CHECK && n != 0)
741 {
742 if ((unsigned_p && (unsigned)prevn >= (unsigned)n))
001083c6 743 range_error (_("Overflow on numeric constant."));
c906108c
SS
744 }
745 prevn = n;
746 }
747
748 /* If the number is too big to be an int, or it's got an l suffix
749 then it's a long. Work out if this has to be a long by
7a9dd1b2 750 shifting right and seeing if anything remains, and the
c906108c
SS
751 target int size is different to the target long size.
752
753 In the expression below, we could have tested
3e79cecf 754 (n >> gdbarch_int_bit (parse_gdbarch))
c906108c
SS
755 to see if it was zero,
756 but too many compilers warn about that, when ints and longs
757 are the same size. So we shift it twice, with fewer bits
758 each time, for the same result. */
759
410a0ff2
SDJ
760 if ((gdbarch_int_bit (parse_gdbarch (par_state))
761 != gdbarch_long_bit (parse_gdbarch (par_state))
9a76efb6 762 && ((n >> 2)
410a0ff2
SDJ
763 >> (gdbarch_int_bit (parse_gdbarch (par_state))-2))) /* Avoid
764 shift warning */
c906108c
SS
765 || long_p)
766 {
410a0ff2
SDJ
767 high_bit = ((ULONGEST)1)
768 << (gdbarch_long_bit (parse_gdbarch (par_state))-1);
769 unsigned_type = parse_type (par_state)->builtin_unsigned_long;
770 signed_type = parse_type (par_state)->builtin_long;
c906108c
SS
771 }
772 else
773 {
410a0ff2
SDJ
774 high_bit =
775 ((ULONGEST)1) << (gdbarch_int_bit (parse_gdbarch (par_state)) - 1);
776 unsigned_type = parse_type (par_state)->builtin_unsigned_int;
777 signed_type = parse_type (par_state)->builtin_int;
c906108c
SS
778 }
779
780 putithere->typed_val.val = n;
781
782 /* If the high bit of the worked out type is set then this number
0963b4bd 783 has to be unsigned. */
c906108c
SS
784
785 if (unsigned_p || (n & high_bit))
786 putithere->typed_val.type = unsigned_type;
787 else
788 putithere->typed_val.type = signed_type;
789
790 return INT;
791}
792
4d00f5d8
AB
793/* Called to setup the type stack when we encounter a '(kind=N)' type
794 modifier, performs some bounds checking on 'N' and then pushes this to
795 the type stack followed by the 'tp_kind' marker. */
796static void
797push_kind_type (LONGEST val, struct type *type)
798{
799 int ival;
800
801 if (TYPE_UNSIGNED (type))
802 {
803 ULONGEST uval = static_cast <ULONGEST> (val);
804 if (uval > INT_MAX)
805 error (_("kind value out of range"));
806 ival = static_cast <int> (uval);
807 }
808 else
809 {
810 if (val > INT_MAX || val < 0)
811 error (_("kind value out of range"));
812 ival = static_cast <int> (val);
813 }
814
815 push_type_int (ival);
816 push_type (tp_kind);
817}
818
819/* Called when a type has a '(kind=N)' modifier after it, for example
820 'character(kind=1)'. The BASETYPE is the type described by 'character'
821 in our example, and KIND is the integer '1'. This function returns a
822 new type that represents the basetype of a specific kind. */
823static struct type *
824convert_to_kind_type (struct type *basetype, int kind)
825{
826 if (basetype == parse_f_type (pstate)->builtin_character)
827 {
828 /* Character of kind 1 is a special case, this is the same as the
829 base character type. */
830 if (kind == 1)
831 return parse_f_type (pstate)->builtin_character;
832 }
833
834 error (_("unsupported kind %d for type %s"),
835 kind, TYPE_SAFE_NAME (basetype));
836
837 /* Should never get here. */
838 return nullptr;
839}
840
c906108c
SS
841struct token
842{
c8f91604 843 /* The string to match against. */
a121b7c1 844 const char *oper;
c8f91604
AB
845
846 /* The lexer token to return. */
c906108c 847 int token;
c8f91604
AB
848
849 /* The expression opcode to embed within the token. */
c906108c 850 enum exp_opcode opcode;
c8f91604
AB
851
852 /* When this is true the string in OPER is matched exactly including
853 case, when this is false OPER is matched case insensitively. */
854 bool case_sensitive;
c906108c
SS
855};
856
857static const struct token dot_ops[] =
858{
c8f91604
AB
859 { ".and.", BOOL_AND, BINOP_END, false },
860 { ".or.", BOOL_OR, BINOP_END, false },
861 { ".not.", BOOL_NOT, BINOP_END, false },
862 { ".eq.", EQUAL, BINOP_END, false },
863 { ".eqv.", EQUAL, BINOP_END, false },
864 { ".neqv.", NOTEQUAL, BINOP_END, false },
865 { ".ne.", NOTEQUAL, BINOP_END, false },
866 { ".le.", LEQ, BINOP_END, false },
867 { ".ge.", GEQ, BINOP_END, false },
868 { ".gt.", GREATERTHAN, BINOP_END, false },
869 { ".lt.", LESSTHAN, BINOP_END, false },
c906108c
SS
870};
871
dd9f2c76
AB
872/* Holds the Fortran representation of a boolean, and the integer value we
873 substitute in when one of the matching strings is parsed. */
874struct f77_boolean_val
c906108c 875{
dd9f2c76 876 /* The string representing a Fortran boolean. */
a121b7c1 877 const char *name;
dd9f2c76
AB
878
879 /* The integer value to replace it with. */
c906108c 880 int value;
dd9f2c76 881};
c906108c 882
dd9f2c76
AB
883/* The set of Fortran booleans. These are matched case insensitively. */
884static const struct f77_boolean_val boolean_values[] =
c906108c
SS
885{
886 { ".true.", 1 },
dd9f2c76 887 { ".false.", 0 }
c906108c
SS
888};
889
c8f91604 890static const struct token f77_keywords[] =
c906108c 891{
c8f91604
AB
892 /* Historically these have always been lowercase only in GDB. */
893 { "complex_16", COMPLEX_S16_KEYWORD, BINOP_END, true },
894 { "complex_32", COMPLEX_S32_KEYWORD, BINOP_END, true },
895 { "character", CHARACTER, BINOP_END, true },
896 { "integer_2", INT_S2_KEYWORD, BINOP_END, true },
897 { "logical_1", LOGICAL_S1_KEYWORD, BINOP_END, true },
898 { "logical_2", LOGICAL_S2_KEYWORD, BINOP_END, true },
899 { "logical_8", LOGICAL_S8_KEYWORD, BINOP_END, true },
900 { "complex_8", COMPLEX_S8_KEYWORD, BINOP_END, true },
901 { "integer", INT_KEYWORD, BINOP_END, true },
902 { "logical", LOGICAL_KEYWORD, BINOP_END, true },
903 { "real_16", REAL_S16_KEYWORD, BINOP_END, true },
904 { "complex", COMPLEX_S8_KEYWORD, BINOP_END, true },
905 { "sizeof", SIZEOF, BINOP_END, true },
906 { "real_8", REAL_S8_KEYWORD, BINOP_END, true },
907 { "real", REAL_KEYWORD, BINOP_END, true },
4d00f5d8
AB
908 /* The following correspond to actual functions in Fortran and are case
909 insensitive. */
910 { "kind", KIND, BINOP_END, false }
c8f91604 911};
c906108c
SS
912
913/* Implementation of a dynamically expandable buffer for processing input
914 characters acquired through lexptr and building a value to return in
0963b4bd 915 yylval. Ripped off from ch-exp.y */
c906108c
SS
916
917static char *tempbuf; /* Current buffer contents */
918static int tempbufsize; /* Size of allocated buffer */
919static int tempbufindex; /* Current index into buffer */
920
921#define GROWBY_MIN_SIZE 64 /* Minimum amount to grow buffer by */
922
923#define CHECKBUF(size) \
924 do { \
925 if (tempbufindex + (size) >= tempbufsize) \
926 { \
927 growbuf_by_size (size); \
928 } \
929 } while (0);
930
931
0963b4bd
MS
932/* Grow the static temp buffer if necessary, including allocating the
933 first one on demand. */
c906108c
SS
934
935static void
d04550a6 936growbuf_by_size (int count)
c906108c
SS
937{
938 int growby;
939
325fac50 940 growby = std::max (count, GROWBY_MIN_SIZE);
c906108c
SS
941 tempbufsize += growby;
942 if (tempbuf == NULL)
943 tempbuf = (char *) malloc (tempbufsize);
944 else
945 tempbuf = (char *) realloc (tempbuf, tempbufsize);
946}
947
948/* Blatantly ripped off from ch-exp.y. This routine recognizes F77
0963b4bd 949 string-literals.
c906108c
SS
950
951 Recognize a string literal. A string literal is a nonzero sequence
952 of characters enclosed in matching single quotes, except that
953 a single character inside single quotes is a character literal, which
954 we reject as a string literal. To embed the terminator character inside
955 a string, it is simply doubled (I.E. 'this''is''one''string') */
956
957static int
eeae04df 958match_string_literal (void)
c906108c 959{
d7561cbb 960 const char *tokptr = lexptr;
c906108c
SS
961
962 for (tempbufindex = 0, tokptr++; *tokptr != '\0'; tokptr++)
963 {
964 CHECKBUF (1);
965 if (*tokptr == *lexptr)
966 {
967 if (*(tokptr + 1) == *lexptr)
968 tokptr++;
969 else
970 break;
971 }
972 tempbuf[tempbufindex++] = *tokptr;
973 }
974 if (*tokptr == '\0' /* no terminator */
975 || tempbufindex == 0) /* no string */
976 return 0;
977 else
978 {
979 tempbuf[tempbufindex] = '\0';
980 yylval.sval.ptr = tempbuf;
981 yylval.sval.length = tempbufindex;
982 lexptr = ++tokptr;
983 return STRING_LITERAL;
984 }
985}
986
987/* Read one token, getting characters through lexptr. */
988
989static int
eeae04df 990yylex (void)
c906108c
SS
991{
992 int c;
993 int namelen;
b926417a 994 unsigned int token;
d7561cbb 995 const char *tokstart;
c906108c
SS
996
997 retry:
065432a8
PM
998
999 prev_lexptr = lexptr;
1000
c906108c 1001 tokstart = lexptr;
dd9f2c76
AB
1002
1003 /* First of all, let us make sure we are not dealing with the
c906108c 1004 special tokens .true. and .false. which evaluate to 1 and 0. */
dd9f2c76 1005
c906108c 1006 if (*lexptr == '.')
dd9f2c76
AB
1007 {
1008 for (int i = 0; i < ARRAY_SIZE (boolean_values); i++)
c906108c 1009 {
dd9f2c76
AB
1010 if (strncasecmp (tokstart, boolean_values[i].name,
1011 strlen (boolean_values[i].name)) == 0)
c906108c 1012 {
dd9f2c76
AB
1013 lexptr += strlen (boolean_values[i].name);
1014 yylval.lval = boolean_values[i].value;
c906108c
SS
1015 return BOOLEAN_LITERAL;
1016 }
1017 }
1018 }
c8f91604 1019
bd49c137 1020 /* See if it is a special .foo. operator. */
c8f91604
AB
1021 for (int i = 0; i < ARRAY_SIZE (dot_ops); i++)
1022 if (strncasecmp (tokstart, dot_ops[i].oper,
1023 strlen (dot_ops[i].oper)) == 0)
c906108c 1024 {
c8f91604 1025 gdb_assert (!dot_ops[i].case_sensitive);
fe978cb0 1026 lexptr += strlen (dot_ops[i].oper);
c906108c
SS
1027 yylval.opcode = dot_ops[i].opcode;
1028 return dot_ops[i].token;
1029 }
c8f91604 1030
bd49c137
WZ
1031 /* See if it is an exponentiation operator. */
1032
1033 if (strncmp (tokstart, "**", 2) == 0)
1034 {
1035 lexptr += 2;
1036 yylval.opcode = BINOP_EXP;
1037 return STARSTAR;
1038 }
1039
c906108c
SS
1040 switch (c = *tokstart)
1041 {
1042 case 0:
1043 return 0;
1044
1045 case ' ':
1046 case '\t':
1047 case '\n':
1048 lexptr++;
1049 goto retry;
1050
1051 case '\'':
1052 token = match_string_literal ();
1053 if (token != 0)
1054 return (token);
1055 break;
1056
1057 case '(':
1058 paren_depth++;
1059 lexptr++;
1060 return c;
1061
1062 case ')':
1063 if (paren_depth == 0)
1064 return 0;
1065 paren_depth--;
1066 lexptr++;
1067 return c;
1068
1069 case ',':
1070 if (comma_terminates && paren_depth == 0)
1071 return 0;
1072 lexptr++;
1073 return c;
1074
1075 case '.':
1076 /* Might be a floating point number. */
1077 if (lexptr[1] < '0' || lexptr[1] > '9')
0963b4bd 1078 goto symbol; /* Nope, must be a symbol. */
86a73007 1079 /* FALL THRU. */
c906108c
SS
1080
1081 case '0':
1082 case '1':
1083 case '2':
1084 case '3':
1085 case '4':
1086 case '5':
1087 case '6':
1088 case '7':
1089 case '8':
1090 case '9':
1091 {
1092 /* It's a number. */
1093 int got_dot = 0, got_e = 0, got_d = 0, toktype;
d7561cbb 1094 const char *p = tokstart;
c906108c
SS
1095 int hex = input_radix > 10;
1096
1097 if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
1098 {
1099 p += 2;
1100 hex = 1;
1101 }
0963b4bd
MS
1102 else if (c == '0' && (p[1]=='t' || p[1]=='T'
1103 || p[1]=='d' || p[1]=='D'))
c906108c
SS
1104 {
1105 p += 2;
1106 hex = 0;
1107 }
1108
1109 for (;; ++p)
1110 {
1111 if (!hex && !got_e && (*p == 'e' || *p == 'E'))
1112 got_dot = got_e = 1;
1113 else if (!hex && !got_d && (*p == 'd' || *p == 'D'))
1114 got_dot = got_d = 1;
1115 else if (!hex && !got_dot && *p == '.')
1116 got_dot = 1;
1117 else if (((got_e && (p[-1] == 'e' || p[-1] == 'E'))
1118 || (got_d && (p[-1] == 'd' || p[-1] == 'D')))
1119 && (*p == '-' || *p == '+'))
1120 /* This is the sign of the exponent, not the end of the
1121 number. */
1122 continue;
1123 /* We will take any letters or digits. parse_number will
1124 complain if past the radix, or if L or U are not final. */
1125 else if ((*p < '0' || *p > '9')
1126 && ((*p < 'a' || *p > 'z')
1127 && (*p < 'A' || *p > 'Z')))
1128 break;
1129 }
410a0ff2
SDJ
1130 toktype = parse_number (pstate, tokstart, p - tokstart,
1131 got_dot|got_e|got_d,
c906108c
SS
1132 &yylval);
1133 if (toktype == ERROR)
1134 {
1135 char *err_copy = (char *) alloca (p - tokstart + 1);
1136
1137 memcpy (err_copy, tokstart, p - tokstart);
1138 err_copy[p - tokstart] = 0;
001083c6 1139 error (_("Invalid number \"%s\"."), err_copy);
c906108c
SS
1140 }
1141 lexptr = p;
1142 return toktype;
1143 }
1144
1145 case '+':
1146 case '-':
1147 case '*':
1148 case '/':
1149 case '%':
1150 case '|':
1151 case '&':
1152 case '^':
1153 case '~':
1154 case '!':
1155 case '@':
1156 case '<':
1157 case '>':
1158 case '[':
1159 case ']':
1160 case '?':
1161 case ':':
1162 case '=':
1163 case '{':
1164 case '}':
1165 symbol:
1166 lexptr++;
1167 return c;
1168 }
1169
f55ee35c 1170 if (!(c == '_' || c == '$' || c ==':'
c906108c
SS
1171 || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))
1172 /* We must have come across a bad character (e.g. ';'). */
001083c6 1173 error (_("Invalid character '%c' in expression."), c);
c906108c
SS
1174
1175 namelen = 0;
1176 for (c = tokstart[namelen];
f55ee35c 1177 (c == '_' || c == '$' || c == ':' || (c >= '0' && c <= '9')
c906108c
SS
1178 || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));
1179 c = tokstart[++namelen]);
1180
1181 /* The token "if" terminates the expression and is NOT
1182 removed from the input stream. */
1183
1184 if (namelen == 2 && tokstart[0] == 'i' && tokstart[1] == 'f')
1185 return 0;
1186
1187 lexptr += namelen;
1188
1189 /* Catch specific keywords. */
c8f91604
AB
1190
1191 for (int i = 0; i < ARRAY_SIZE (f77_keywords); i++)
fe978cb0 1192 if (strlen (f77_keywords[i].oper) == namelen
c8f91604
AB
1193 && ((!f77_keywords[i].case_sensitive
1194 && strncasecmp (tokstart, f77_keywords[i].oper, namelen) == 0)
1195 || (f77_keywords[i].case_sensitive
1196 && strncmp (tokstart, f77_keywords[i].oper, namelen) == 0)))
c906108c 1197 {
c906108c
SS
1198 yylval.opcode = f77_keywords[i].opcode;
1199 return f77_keywords[i].token;
1200 }
c8f91604 1201
c906108c
SS
1202 yylval.sval.ptr = tokstart;
1203 yylval.sval.length = namelen;
1204
1205 if (*tokstart == '$')
1206 {
410a0ff2 1207 write_dollar_variable (pstate, yylval.sval);
cfeadda5 1208 return DOLLAR_VARIABLE;
c906108c
SS
1209 }
1210
1211 /* Use token-type TYPENAME for symbols that happen to be defined
1212 currently as names of types; NAME for other symbols.
1213 The caller is not constrained to care about the distinction. */
1214 {
1215 char *tmp = copy_name (yylval.sval);
d12307c1 1216 struct block_symbol result;
1993b719 1217 struct field_of_this_result is_a_field_of_this;
530e8392
KB
1218 enum domain_enum_tag lookup_domains[] =
1219 {
1220 STRUCT_DOMAIN,
1221 VAR_DOMAIN,
1222 MODULE_DOMAIN
1223 };
c906108c 1224 int hextype;
7f9b20bb 1225
b926417a 1226 for (int i = 0; i < ARRAY_SIZE (lookup_domains); ++i)
c906108c 1227 {
7f9b20bb
KB
1228 /* Initialize this in case we *don't* use it in this call; that
1229 way we can refer to it unconditionally below. */
1230 memset (&is_a_field_of_this, 0, sizeof (is_a_field_of_this));
1231
d12307c1
PMR
1232 result = lookup_symbol (tmp, expression_context_block,
1233 lookup_domains[i],
1234 parse_language (pstate)->la_language
1235 == language_cplus
1236 ? &is_a_field_of_this : NULL);
1237 if (result.symbol && SYMBOL_CLASS (result.symbol) == LOC_TYPEDEF)
7f9b20bb 1238 {
d12307c1 1239 yylval.tsym.type = SYMBOL_TYPE (result.symbol);
7f9b20bb
KB
1240 return TYPENAME;
1241 }
1242
d12307c1 1243 if (result.symbol)
7f9b20bb 1244 break;
c906108c 1245 }
7f9b20bb 1246
54a5b07d 1247 yylval.tsym.type
46b0da17
DE
1248 = language_lookup_primitive_type (parse_language (pstate),
1249 parse_gdbarch (pstate), tmp);
54a5b07d 1250 if (yylval.tsym.type != NULL)
c906108c
SS
1251 return TYPENAME;
1252
1253 /* Input names that aren't symbols but ARE valid hex numbers,
1254 when the input radix permits them, can be names or numbers
1255 depending on the parse. Note we support radixes > 16 here. */
d12307c1 1256 if (!result.symbol
c906108c
SS
1257 && ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10)
1258 || (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
1259 {
1260 YYSTYPE newlval; /* Its value is ignored. */
410a0ff2 1261 hextype = parse_number (pstate, tokstart, namelen, 0, &newlval);
c906108c
SS
1262 if (hextype == INT)
1263 {
d12307c1 1264 yylval.ssym.sym = result;
1993b719 1265 yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
c906108c
SS
1266 return NAME_OR_INT;
1267 }
1268 }
1269
1270 /* Any other kind of symbol */
d12307c1 1271 yylval.ssym.sym = result;
1993b719 1272 yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
c906108c
SS
1273 return NAME;
1274 }
1275}
1276
410a0ff2
SDJ
1277int
1278f_parse (struct parser_state *par_state)
1279{
410a0ff2 1280 /* Setting up the parser state. */
eae49211 1281 scoped_restore pstate_restore = make_scoped_restore (&pstate);
e454224f
AB
1282 scoped_restore restore_yydebug = make_scoped_restore (&yydebug,
1283 parser_debug);
410a0ff2
SDJ
1284 gdb_assert (par_state != NULL);
1285 pstate = par_state;
1286
eae49211 1287 return yyparse ();
410a0ff2
SDJ
1288}
1289
69d340c6 1290static void
a121b7c1 1291yyerror (const char *msg)
c906108c 1292{
065432a8
PM
1293 if (prev_lexptr)
1294 lexptr = prev_lexptr;
1295
69d340c6 1296 error (_("A %s in expression, near `%s'."), msg, lexptr);
c906108c 1297}
This page took 1.396686 seconds and 4 git commands to generate.