gdb/fortran: fix complex type in Fortran builtin types
[binutils-gdb.git] / gdb / f-exp.y
1
2 /* YACC parser for Fortran expressions, for GDB.
3 Copyright (C) 1986-2022 Free Software Foundation, Inc.
4
5 Contributed by Motorola. Adapted from the C parser by Farooq Butt
6 (fmbutt@engage.sps.mot.com).
7
8 This file is part of GDB.
9
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.
14
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.
19
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/>. */
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"
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 */
54 #include "block.h"
55 #include <ctype.h>
56 #include <algorithm>
57 #include "type-stack.h"
58 #include "f-exp.h"
59
60 #define parse_type(ps) builtin_type (ps->gdbarch ())
61 #define parse_f_type(ps) builtin_f_type (ps->gdbarch ())
62
63 /* Remap normal yacc parser interface names (yyparse, yylex, yyerror,
64 etc). */
65 #define GDB_YY_REMAP_PREFIX f_
66 #include "yy-remap.h"
67
68 /* The state of the parser, used internally when we are parsing the
69 expression. */
70
71 static struct parser_state *pstate = NULL;
72
73 /* Depth of parentheses. */
74 static int paren_depth;
75
76 /* The current type stack. */
77 static struct type_stack *type_stack;
78
79 int yyparse (void);
80
81 static int yylex (void);
82
83 static void yyerror (const char *);
84
85 static void growbuf_by_size (int);
86
87 static int match_string_literal (void);
88
89 static void push_kind_type (LONGEST val, struct type *type);
90
91 static struct type *convert_to_kind_type (struct type *basetype, int kind);
92
93 using namespace expr;
94 %}
95
96 /* Although the yacc "value" of an expression is not used,
97 since the result is stored in the structure being created,
98 other node types do have values. */
99
100 %union
101 {
102 LONGEST lval;
103 struct {
104 LONGEST val;
105 struct type *type;
106 } typed_val;
107 struct {
108 gdb_byte val[16];
109 struct type *type;
110 } typed_val_float;
111 struct symbol *sym;
112 struct type *tval;
113 struct stoken sval;
114 struct ttype tsym;
115 struct symtoken ssym;
116 int voidval;
117 enum exp_opcode opcode;
118 struct internalvar *ivar;
119
120 struct type **tvec;
121 int *ivec;
122 }
123
124 %{
125 /* YYSTYPE gets defined by %union */
126 static int parse_number (struct parser_state *, const char *, int,
127 int, YYSTYPE *);
128 %}
129
130 %type <voidval> exp type_exp start variable
131 %type <tval> type typebase
132 %type <tvec> nonempty_typelist
133 /* %type <bval> block */
134
135 /* Fancy type parsing. */
136 %type <voidval> func_mod direct_abs_decl abs_decl
137 %type <tval> ptype
138
139 %token <typed_val> INT
140 %token <typed_val_float> FLOAT
141
142 /* Both NAME and TYPENAME tokens represent symbols in the input,
143 and both convey their data as strings.
144 But a TYPENAME is a string that happens to be defined as a typedef
145 or builtin type name (such as int or char)
146 and a NAME is any other symbol.
147 Contexts where this distinction is not important can use the
148 nonterminal "name", which matches either NAME or TYPENAME. */
149
150 %token <sval> STRING_LITERAL
151 %token <lval> BOOLEAN_LITERAL
152 %token <ssym> NAME
153 %token <tsym> TYPENAME
154 %token <voidval> COMPLETE
155 %type <sval> name
156 %type <ssym> name_not_typename
157
158 /* A NAME_OR_INT is a symbol which is not known in the symbol table,
159 but which would parse as a valid number in the current input radix.
160 E.g. "c" when input_radix==16. Depending on the parse, it will be
161 turned into a name or into a number. */
162
163 %token <ssym> NAME_OR_INT
164
165 %token SIZEOF KIND
166 %token ERROR
167
168 /* Special type cases, put in to allow the parser to distinguish different
169 legal basetypes. */
170 %token INT_KEYWORD INT_S2_KEYWORD LOGICAL_S1_KEYWORD LOGICAL_S2_KEYWORD
171 %token LOGICAL_S8_KEYWORD
172 %token LOGICAL_KEYWORD REAL_KEYWORD REAL_S8_KEYWORD REAL_S16_KEYWORD
173 %token COMPLEX_KEYWORD
174 %token COMPLEX_S4_KEYWORD COMPLEX_S8_KEYWORD COMPLEX_S16_KEYWORD
175 %token BOOL_AND BOOL_OR BOOL_NOT
176 %token SINGLE DOUBLE PRECISION
177 %token <lval> CHARACTER
178
179 %token <sval> DOLLAR_VARIABLE
180
181 %token <opcode> ASSIGN_MODIFY
182 %token <opcode> UNOP_INTRINSIC BINOP_INTRINSIC
183 %token <opcode> UNOP_OR_BINOP_INTRINSIC
184
185 %left ','
186 %left ABOVE_COMMA
187 %right '=' ASSIGN_MODIFY
188 %right '?'
189 %left BOOL_OR
190 %right BOOL_NOT
191 %left BOOL_AND
192 %left '|'
193 %left '^'
194 %left '&'
195 %left EQUAL NOTEQUAL
196 %left LESSTHAN GREATERTHAN LEQ GEQ
197 %left LSH RSH
198 %left '@'
199 %left '+' '-'
200 %left '*' '/'
201 %right STARSTAR
202 %right '%'
203 %right UNARY
204 %right '('
205
206 \f
207 %%
208
209 start : exp
210 | type_exp
211 ;
212
213 type_exp: type
214 { pstate->push_new<type_operation> ($1); }
215 ;
216
217 exp : '(' exp ')'
218 { }
219 ;
220
221 /* Expressions, not including the comma operator. */
222 exp : '*' exp %prec UNARY
223 { pstate->wrap<unop_ind_operation> (); }
224 ;
225
226 exp : '&' exp %prec UNARY
227 { pstate->wrap<unop_addr_operation> (); }
228 ;
229
230 exp : '-' exp %prec UNARY
231 { pstate->wrap<unary_neg_operation> (); }
232 ;
233
234 exp : BOOL_NOT exp %prec UNARY
235 { pstate->wrap<unary_logical_not_operation> (); }
236 ;
237
238 exp : '~' exp %prec UNARY
239 { pstate->wrap<unary_complement_operation> (); }
240 ;
241
242 exp : SIZEOF exp %prec UNARY
243 { pstate->wrap<unop_sizeof_operation> (); }
244 ;
245
246 exp : KIND '(' exp ')' %prec UNARY
247 { pstate->wrap<fortran_kind_operation> (); }
248 ;
249
250 exp : UNOP_OR_BINOP_INTRINSIC '('
251 { pstate->start_arglist (); }
252 one_or_two_args ')'
253 {
254 int n = pstate->end_arglist ();
255 gdb_assert (n == 1 || n == 2);
256 if ($1 == FORTRAN_ASSOCIATED)
257 {
258 if (n == 1)
259 pstate->wrap<fortran_associated_1arg> ();
260 else
261 pstate->wrap2<fortran_associated_2arg> ();
262 }
263 else if ($1 == FORTRAN_ARRAY_SIZE)
264 {
265 if (n == 1)
266 pstate->wrap<fortran_array_size_1arg> ();
267 else
268 pstate->wrap2<fortran_array_size_2arg> ();
269 }
270 else
271 {
272 std::vector<operation_up> args
273 = pstate->pop_vector (n);
274 gdb_assert ($1 == FORTRAN_LBOUND
275 || $1 == FORTRAN_UBOUND);
276 operation_up op;
277 if (n == 1)
278 op.reset
279 (new fortran_bound_1arg ($1,
280 std::move (args[0])));
281 else
282 op.reset
283 (new fortran_bound_2arg ($1,
284 std::move (args[0]),
285 std::move (args[1])));
286 pstate->push (std::move (op));
287 }
288 }
289 ;
290
291 one_or_two_args
292 : exp
293 { pstate->arglist_len = 1; }
294 | exp ',' exp
295 { pstate->arglist_len = 2; }
296 ;
297
298 /* No more explicit array operators, we treat everything in F77 as
299 a function call. The disambiguation as to whether we are
300 doing a subscript operation or a function call is done
301 later in eval.c. */
302
303 exp : exp '('
304 { pstate->start_arglist (); }
305 arglist ')'
306 {
307 std::vector<operation_up> args
308 = pstate->pop_vector (pstate->end_arglist ());
309 pstate->push_new<fortran_undetermined>
310 (pstate->pop (), std::move (args));
311 }
312 ;
313
314 exp : UNOP_INTRINSIC '(' exp ')'
315 {
316 switch ($1)
317 {
318 case UNOP_ABS:
319 pstate->wrap<fortran_abs_operation> ();
320 break;
321 case UNOP_FORTRAN_FLOOR:
322 pstate->wrap<fortran_floor_operation> ();
323 break;
324 case UNOP_FORTRAN_CEILING:
325 pstate->wrap<fortran_ceil_operation> ();
326 break;
327 case UNOP_FORTRAN_ALLOCATED:
328 pstate->wrap<fortran_allocated_operation> ();
329 break;
330 case UNOP_FORTRAN_RANK:
331 pstate->wrap<fortran_rank_operation> ();
332 break;
333 case UNOP_FORTRAN_SHAPE:
334 pstate->wrap<fortran_array_shape_operation> ();
335 break;
336 case UNOP_FORTRAN_LOC:
337 pstate->wrap<fortran_loc_operation> ();
338 break;
339 default:
340 gdb_assert_not_reached ("unhandled intrinsic");
341 }
342 }
343 ;
344
345 exp : BINOP_INTRINSIC '(' exp ',' exp ')'
346 {
347 switch ($1)
348 {
349 case BINOP_MOD:
350 pstate->wrap2<fortran_mod_operation> ();
351 break;
352 case BINOP_FORTRAN_MODULO:
353 pstate->wrap2<fortran_modulo_operation> ();
354 break;
355 case BINOP_FORTRAN_CMPLX:
356 pstate->wrap2<fortran_cmplx_operation> ();
357 break;
358 default:
359 gdb_assert_not_reached ("unhandled intrinsic");
360 }
361 }
362 ;
363
364 arglist :
365 ;
366
367 arglist : exp
368 { pstate->arglist_len = 1; }
369 ;
370
371 arglist : subrange
372 { pstate->arglist_len = 1; }
373 ;
374
375 arglist : arglist ',' exp %prec ABOVE_COMMA
376 { pstate->arglist_len++; }
377 ;
378
379 arglist : arglist ',' subrange %prec ABOVE_COMMA
380 { pstate->arglist_len++; }
381 ;
382
383 /* There are four sorts of subrange types in F90. */
384
385 subrange: exp ':' exp %prec ABOVE_COMMA
386 {
387 operation_up high = pstate->pop ();
388 operation_up low = pstate->pop ();
389 pstate->push_new<fortran_range_operation>
390 (RANGE_STANDARD, std::move (low),
391 std::move (high), operation_up ());
392 }
393 ;
394
395 subrange: exp ':' %prec ABOVE_COMMA
396 {
397 operation_up low = pstate->pop ();
398 pstate->push_new<fortran_range_operation>
399 (RANGE_HIGH_BOUND_DEFAULT, std::move (low),
400 operation_up (), operation_up ());
401 }
402 ;
403
404 subrange: ':' exp %prec ABOVE_COMMA
405 {
406 operation_up high = pstate->pop ();
407 pstate->push_new<fortran_range_operation>
408 (RANGE_LOW_BOUND_DEFAULT, operation_up (),
409 std::move (high), operation_up ());
410 }
411 ;
412
413 subrange: ':' %prec ABOVE_COMMA
414 {
415 pstate->push_new<fortran_range_operation>
416 (RANGE_LOW_BOUND_DEFAULT
417 | RANGE_HIGH_BOUND_DEFAULT,
418 operation_up (), operation_up (),
419 operation_up ());
420 }
421 ;
422
423 /* And each of the four subrange types can also have a stride. */
424 subrange: exp ':' exp ':' exp %prec ABOVE_COMMA
425 {
426 operation_up stride = pstate->pop ();
427 operation_up high = pstate->pop ();
428 operation_up low = pstate->pop ();
429 pstate->push_new<fortran_range_operation>
430 (RANGE_STANDARD | RANGE_HAS_STRIDE,
431 std::move (low), std::move (high),
432 std::move (stride));
433 }
434 ;
435
436 subrange: exp ':' ':' exp %prec ABOVE_COMMA
437 {
438 operation_up stride = pstate->pop ();
439 operation_up low = pstate->pop ();
440 pstate->push_new<fortran_range_operation>
441 (RANGE_HIGH_BOUND_DEFAULT
442 | RANGE_HAS_STRIDE,
443 std::move (low), operation_up (),
444 std::move (stride));
445 }
446 ;
447
448 subrange: ':' exp ':' exp %prec ABOVE_COMMA
449 {
450 operation_up stride = pstate->pop ();
451 operation_up high = pstate->pop ();
452 pstate->push_new<fortran_range_operation>
453 (RANGE_LOW_BOUND_DEFAULT
454 | RANGE_HAS_STRIDE,
455 operation_up (), std::move (high),
456 std::move (stride));
457 }
458 ;
459
460 subrange: ':' ':' exp %prec ABOVE_COMMA
461 {
462 operation_up stride = pstate->pop ();
463 pstate->push_new<fortran_range_operation>
464 (RANGE_LOW_BOUND_DEFAULT
465 | RANGE_HIGH_BOUND_DEFAULT
466 | RANGE_HAS_STRIDE,
467 operation_up (), operation_up (),
468 std::move (stride));
469 }
470 ;
471
472 complexnum: exp ',' exp
473 { }
474 ;
475
476 exp : '(' complexnum ')'
477 {
478 operation_up rhs = pstate->pop ();
479 operation_up lhs = pstate->pop ();
480 pstate->push_new<complex_operation>
481 (std::move (lhs), std::move (rhs),
482 parse_f_type (pstate)->builtin_complex_s16);
483 }
484 ;
485
486 exp : '(' type ')' exp %prec UNARY
487 {
488 pstate->push_new<unop_cast_operation>
489 (pstate->pop (), $2);
490 }
491 ;
492
493 exp : exp '%' name
494 {
495 pstate->push_new<fortran_structop_operation>
496 (pstate->pop (), copy_name ($3));
497 }
498 ;
499
500 exp : exp '%' name COMPLETE
501 {
502 structop_base_operation *op
503 = new fortran_structop_operation (pstate->pop (),
504 copy_name ($3));
505 pstate->mark_struct_expression (op);
506 pstate->push (operation_up (op));
507 }
508 ;
509
510 exp : exp '%' COMPLETE
511 {
512 structop_base_operation *op
513 = new fortran_structop_operation (pstate->pop (),
514 "");
515 pstate->mark_struct_expression (op);
516 pstate->push (operation_up (op));
517 }
518 ;
519
520 /* Binary operators in order of decreasing precedence. */
521
522 exp : exp '@' exp
523 { pstate->wrap2<repeat_operation> (); }
524 ;
525
526 exp : exp STARSTAR exp
527 { pstate->wrap2<exp_operation> (); }
528 ;
529
530 exp : exp '*' exp
531 { pstate->wrap2<mul_operation> (); }
532 ;
533
534 exp : exp '/' exp
535 { pstate->wrap2<div_operation> (); }
536 ;
537
538 exp : exp '+' exp
539 { pstate->wrap2<add_operation> (); }
540 ;
541
542 exp : exp '-' exp
543 { pstate->wrap2<sub_operation> (); }
544 ;
545
546 exp : exp LSH exp
547 { pstate->wrap2<lsh_operation> (); }
548 ;
549
550 exp : exp RSH exp
551 { pstate->wrap2<rsh_operation> (); }
552 ;
553
554 exp : exp EQUAL exp
555 { pstate->wrap2<equal_operation> (); }
556 ;
557
558 exp : exp NOTEQUAL exp
559 { pstate->wrap2<notequal_operation> (); }
560 ;
561
562 exp : exp LEQ exp
563 { pstate->wrap2<leq_operation> (); }
564 ;
565
566 exp : exp GEQ exp
567 { pstate->wrap2<geq_operation> (); }
568 ;
569
570 exp : exp LESSTHAN exp
571 { pstate->wrap2<less_operation> (); }
572 ;
573
574 exp : exp GREATERTHAN exp
575 { pstate->wrap2<gtr_operation> (); }
576 ;
577
578 exp : exp '&' exp
579 { pstate->wrap2<bitwise_and_operation> (); }
580 ;
581
582 exp : exp '^' exp
583 { pstate->wrap2<bitwise_xor_operation> (); }
584 ;
585
586 exp : exp '|' exp
587 { pstate->wrap2<bitwise_ior_operation> (); }
588 ;
589
590 exp : exp BOOL_AND exp
591 { pstate->wrap2<logical_and_operation> (); }
592 ;
593
594
595 exp : exp BOOL_OR exp
596 { pstate->wrap2<logical_or_operation> (); }
597 ;
598
599 exp : exp '=' exp
600 { pstate->wrap2<assign_operation> (); }
601 ;
602
603 exp : exp ASSIGN_MODIFY exp
604 {
605 operation_up rhs = pstate->pop ();
606 operation_up lhs = pstate->pop ();
607 pstate->push_new<assign_modify_operation>
608 ($2, std::move (lhs), std::move (rhs));
609 }
610 ;
611
612 exp : INT
613 {
614 pstate->push_new<long_const_operation>
615 ($1.type, $1.val);
616 }
617 ;
618
619 exp : NAME_OR_INT
620 { YYSTYPE val;
621 parse_number (pstate, $1.stoken.ptr,
622 $1.stoken.length, 0, &val);
623 pstate->push_new<long_const_operation>
624 (val.typed_val.type,
625 val.typed_val.val);
626 }
627 ;
628
629 exp : FLOAT
630 {
631 float_data data;
632 std::copy (std::begin ($1.val), std::end ($1.val),
633 std::begin (data));
634 pstate->push_new<float_const_operation> ($1.type, data);
635 }
636 ;
637
638 exp : variable
639 ;
640
641 exp : DOLLAR_VARIABLE
642 { pstate->push_dollar ($1); }
643 ;
644
645 exp : SIZEOF '(' type ')' %prec UNARY
646 {
647 $3 = check_typedef ($3);
648 pstate->push_new<long_const_operation>
649 (parse_f_type (pstate)->builtin_integer,
650 TYPE_LENGTH ($3));
651 }
652 ;
653
654 exp : BOOLEAN_LITERAL
655 { pstate->push_new<bool_operation> ($1); }
656 ;
657
658 exp : STRING_LITERAL
659 {
660 pstate->push_new<string_operation>
661 (copy_name ($1));
662 }
663 ;
664
665 variable: name_not_typename
666 { struct block_symbol sym = $1.sym;
667 std::string name = copy_name ($1.stoken);
668 pstate->push_symbol (name.c_str (), sym);
669 }
670 ;
671
672
673 type : ptype
674 ;
675
676 ptype : typebase
677 | typebase abs_decl
678 {
679 /* This is where the interesting stuff happens. */
680 int done = 0;
681 int array_size;
682 struct type *follow_type = $1;
683 struct type *range_type;
684
685 while (!done)
686 switch (type_stack->pop ())
687 {
688 case tp_end:
689 done = 1;
690 break;
691 case tp_pointer:
692 follow_type = lookup_pointer_type (follow_type);
693 break;
694 case tp_reference:
695 follow_type = lookup_lvalue_reference_type (follow_type);
696 break;
697 case tp_array:
698 array_size = type_stack->pop_int ();
699 if (array_size != -1)
700 {
701 range_type =
702 create_static_range_type ((struct type *) NULL,
703 parse_f_type (pstate)
704 ->builtin_integer,
705 0, array_size - 1);
706 follow_type =
707 create_array_type ((struct type *) NULL,
708 follow_type, range_type);
709 }
710 else
711 follow_type = lookup_pointer_type (follow_type);
712 break;
713 case tp_function:
714 follow_type = lookup_function_type (follow_type);
715 break;
716 case tp_kind:
717 {
718 int kind_val = type_stack->pop_int ();
719 follow_type
720 = convert_to_kind_type (follow_type, kind_val);
721 }
722 break;
723 }
724 $$ = follow_type;
725 }
726 ;
727
728 abs_decl: '*'
729 { type_stack->push (tp_pointer); $$ = 0; }
730 | '*' abs_decl
731 { type_stack->push (tp_pointer); $$ = $2; }
732 | '&'
733 { type_stack->push (tp_reference); $$ = 0; }
734 | '&' abs_decl
735 { type_stack->push (tp_reference); $$ = $2; }
736 | direct_abs_decl
737 ;
738
739 direct_abs_decl: '(' abs_decl ')'
740 { $$ = $2; }
741 | '(' KIND '=' INT ')'
742 { push_kind_type ($4.val, $4.type); }
743 | '*' INT
744 { push_kind_type ($2.val, $2.type); }
745 | direct_abs_decl func_mod
746 { type_stack->push (tp_function); }
747 | func_mod
748 { type_stack->push (tp_function); }
749 ;
750
751 func_mod: '(' ')'
752 { $$ = 0; }
753 | '(' nonempty_typelist ')'
754 { free ($2); $$ = 0; }
755 ;
756
757 typebase /* Implements (approximately): (type-qualifier)* type-specifier */
758 : TYPENAME
759 { $$ = $1.type; }
760 | INT_KEYWORD
761 { $$ = parse_f_type (pstate)->builtin_integer; }
762 | INT_S2_KEYWORD
763 { $$ = parse_f_type (pstate)->builtin_integer_s2; }
764 | CHARACTER
765 { $$ = parse_f_type (pstate)->builtin_character; }
766 | LOGICAL_S8_KEYWORD
767 { $$ = parse_f_type (pstate)->builtin_logical_s8; }
768 | LOGICAL_KEYWORD
769 { $$ = parse_f_type (pstate)->builtin_logical; }
770 | LOGICAL_S2_KEYWORD
771 { $$ = parse_f_type (pstate)->builtin_logical_s2; }
772 | LOGICAL_S1_KEYWORD
773 { $$ = parse_f_type (pstate)->builtin_logical_s1; }
774 | REAL_KEYWORD
775 { $$ = parse_f_type (pstate)->builtin_real; }
776 | REAL_S8_KEYWORD
777 { $$ = parse_f_type (pstate)->builtin_real_s8; }
778 | REAL_S16_KEYWORD
779 { $$ = parse_f_type (pstate)->builtin_real_s16; }
780 | COMPLEX_KEYWORD
781 { $$ = parse_f_type (pstate)->builtin_complex; }
782 | COMPLEX_S4_KEYWORD
783 { $$ = parse_f_type (pstate)->builtin_complex; }
784 | COMPLEX_S8_KEYWORD
785 { $$ = parse_f_type (pstate)->builtin_complex_s8; }
786 | COMPLEX_S16_KEYWORD
787 { $$ = parse_f_type (pstate)->builtin_complex_s16; }
788 | SINGLE PRECISION
789 { $$ = parse_f_type (pstate)->builtin_real;}
790 | DOUBLE PRECISION
791 { $$ = parse_f_type (pstate)->builtin_real_s8;}
792 | SINGLE COMPLEX_KEYWORD
793 { $$ = parse_f_type (pstate)->builtin_complex;}
794 | DOUBLE COMPLEX_KEYWORD
795 { $$ = parse_f_type (pstate)->builtin_complex_s8;}
796 ;
797
798 nonempty_typelist
799 : type
800 { $$ = (struct type **) malloc (sizeof (struct type *) * 2);
801 $<ivec>$[0] = 1; /* Number of types in vector */
802 $$[1] = $1;
803 }
804 | nonempty_typelist ',' type
805 { int len = sizeof (struct type *) * (++($<ivec>1[0]) + 1);
806 $$ = (struct type **) realloc ((char *) $1, len);
807 $$[$<ivec>$[0]] = $3;
808 }
809 ;
810
811 name
812 : NAME
813 { $$ = $1.stoken; }
814 | TYPENAME
815 { $$ = $1.stoken; }
816 ;
817
818 name_not_typename : NAME
819 /* These would be useful if name_not_typename was useful, but it is just
820 a fake for "variable", so these cause reduce/reduce conflicts because
821 the parser can't tell whether NAME_OR_INT is a name_not_typename (=variable,
822 =exp) or just an exp. If name_not_typename was ever used in an lvalue
823 context where only a name could occur, this might be useful.
824 | NAME_OR_INT
825 */
826 ;
827
828 %%
829
830 /* Take care of parsing a number (anything that starts with a digit).
831 Set yylval and return the token type; update lexptr.
832 LEN is the number of characters in it. */
833
834 /*** Needs some error checking for the float case ***/
835
836 static int
837 parse_number (struct parser_state *par_state,
838 const char *p, int len, int parsed_float, YYSTYPE *putithere)
839 {
840 ULONGEST n = 0;
841 ULONGEST prevn = 0;
842 int c;
843 int base = input_radix;
844 int unsigned_p = 0;
845 int long_p = 0;
846 ULONGEST high_bit;
847 struct type *signed_type;
848 struct type *unsigned_type;
849
850 if (parsed_float)
851 {
852 /* It's a float since it contains a point or an exponent. */
853 /* [dD] is not understood as an exponent by parse_float,
854 change it to 'e'. */
855 char *tmp, *tmp2;
856
857 tmp = xstrdup (p);
858 for (tmp2 = tmp; *tmp2; ++tmp2)
859 if (*tmp2 == 'd' || *tmp2 == 'D')
860 *tmp2 = 'e';
861
862 /* FIXME: Should this use different types? */
863 putithere->typed_val_float.type = parse_f_type (pstate)->builtin_real_s8;
864 bool parsed = parse_float (tmp, len,
865 putithere->typed_val_float.type,
866 putithere->typed_val_float.val);
867 free (tmp);
868 return parsed? FLOAT : ERROR;
869 }
870
871 /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
872 if (p[0] == '0' && len > 1)
873 switch (p[1])
874 {
875 case 'x':
876 case 'X':
877 if (len >= 3)
878 {
879 p += 2;
880 base = 16;
881 len -= 2;
882 }
883 break;
884
885 case 't':
886 case 'T':
887 case 'd':
888 case 'D':
889 if (len >= 3)
890 {
891 p += 2;
892 base = 10;
893 len -= 2;
894 }
895 break;
896
897 default:
898 base = 8;
899 break;
900 }
901
902 while (len-- > 0)
903 {
904 c = *p++;
905 if (isupper (c))
906 c = tolower (c);
907 if (len == 0 && c == 'l')
908 long_p = 1;
909 else if (len == 0 && c == 'u')
910 unsigned_p = 1;
911 else
912 {
913 int i;
914 if (c >= '0' && c <= '9')
915 i = c - '0';
916 else if (c >= 'a' && c <= 'f')
917 i = c - 'a' + 10;
918 else
919 return ERROR; /* Char not a digit */
920 if (i >= base)
921 return ERROR; /* Invalid digit in this base */
922 n *= base;
923 n += i;
924 }
925 /* Portably test for overflow (only works for nonzero values, so make
926 a second check for zero). */
927 if ((prevn >= n) && n != 0)
928 unsigned_p=1; /* Try something unsigned */
929 /* If range checking enabled, portably test for unsigned overflow. */
930 if (RANGE_CHECK && n != 0)
931 {
932 if ((unsigned_p && prevn >= n))
933 range_error (_("Overflow on numeric constant."));
934 }
935 prevn = n;
936 }
937
938 /* If the number is too big to be an int, or it's got an l suffix
939 then it's a long. Work out if this has to be a long by
940 shifting right and seeing if anything remains, and the
941 target int size is different to the target long size.
942
943 In the expression below, we could have tested
944 (n >> gdbarch_int_bit (parse_gdbarch))
945 to see if it was zero,
946 but too many compilers warn about that, when ints and longs
947 are the same size. So we shift it twice, with fewer bits
948 each time, for the same result. */
949
950 if ((gdbarch_int_bit (par_state->gdbarch ())
951 != gdbarch_long_bit (par_state->gdbarch ())
952 && ((n >> 2)
953 >> (gdbarch_int_bit (par_state->gdbarch ())-2))) /* Avoid
954 shift warning */
955 || long_p)
956 {
957 high_bit = ((ULONGEST)1)
958 << (gdbarch_long_bit (par_state->gdbarch ())-1);
959 unsigned_type = parse_type (par_state)->builtin_unsigned_long;
960 signed_type = parse_type (par_state)->builtin_long;
961 }
962 else
963 {
964 high_bit =
965 ((ULONGEST)1) << (gdbarch_int_bit (par_state->gdbarch ()) - 1);
966 unsigned_type = parse_type (par_state)->builtin_unsigned_int;
967 signed_type = parse_type (par_state)->builtin_int;
968 }
969
970 putithere->typed_val.val = n;
971
972 /* If the high bit of the worked out type is set then this number
973 has to be unsigned. */
974
975 if (unsigned_p || (n & high_bit))
976 putithere->typed_val.type = unsigned_type;
977 else
978 putithere->typed_val.type = signed_type;
979
980 return INT;
981 }
982
983 /* Called to setup the type stack when we encounter a '(kind=N)' type
984 modifier, performs some bounds checking on 'N' and then pushes this to
985 the type stack followed by the 'tp_kind' marker. */
986 static void
987 push_kind_type (LONGEST val, struct type *type)
988 {
989 int ival;
990
991 if (type->is_unsigned ())
992 {
993 ULONGEST uval = static_cast <ULONGEST> (val);
994 if (uval > INT_MAX)
995 error (_("kind value out of range"));
996 ival = static_cast <int> (uval);
997 }
998 else
999 {
1000 if (val > INT_MAX || val < 0)
1001 error (_("kind value out of range"));
1002 ival = static_cast <int> (val);
1003 }
1004
1005 type_stack->push (ival);
1006 type_stack->push (tp_kind);
1007 }
1008
1009 /* Called when a type has a '(kind=N)' modifier after it, for example
1010 'character(kind=1)'. The BASETYPE is the type described by 'character'
1011 in our example, and KIND is the integer '1'. This function returns a
1012 new type that represents the basetype of a specific kind. */
1013 static struct type *
1014 convert_to_kind_type (struct type *basetype, int kind)
1015 {
1016 if (basetype == parse_f_type (pstate)->builtin_character)
1017 {
1018 /* Character of kind 1 is a special case, this is the same as the
1019 base character type. */
1020 if (kind == 1)
1021 return parse_f_type (pstate)->builtin_character;
1022 }
1023 else if (basetype == parse_f_type (pstate)->builtin_complex)
1024 {
1025 if (kind == 4)
1026 return parse_f_type (pstate)->builtin_complex;
1027 else if (kind == 8)
1028 return parse_f_type (pstate)->builtin_complex_s8;
1029 else if (kind == 16)
1030 return parse_f_type (pstate)->builtin_complex_s16;
1031 }
1032 else if (basetype == parse_f_type (pstate)->builtin_real)
1033 {
1034 if (kind == 4)
1035 return parse_f_type (pstate)->builtin_real;
1036 else if (kind == 8)
1037 return parse_f_type (pstate)->builtin_real_s8;
1038 else if (kind == 16)
1039 return parse_f_type (pstate)->builtin_real_s16;
1040 }
1041 else if (basetype == parse_f_type (pstate)->builtin_logical)
1042 {
1043 if (kind == 1)
1044 return parse_f_type (pstate)->builtin_logical_s1;
1045 else if (kind == 2)
1046 return parse_f_type (pstate)->builtin_logical_s2;
1047 else if (kind == 4)
1048 return parse_f_type (pstate)->builtin_logical;
1049 else if (kind == 8)
1050 return parse_f_type (pstate)->builtin_logical_s8;
1051 }
1052 else if (basetype == parse_f_type (pstate)->builtin_integer)
1053 {
1054 if (kind == 1)
1055 return parse_f_type (pstate)->builtin_integer_s1;
1056 else if (kind == 2)
1057 return parse_f_type (pstate)->builtin_integer_s2;
1058 else if (kind == 4)
1059 return parse_f_type (pstate)->builtin_integer;
1060 else if (kind == 8)
1061 return parse_f_type (pstate)->builtin_integer_s8;
1062 }
1063
1064 error (_("unsupported kind %d for type %s"),
1065 kind, TYPE_SAFE_NAME (basetype));
1066
1067 /* Should never get here. */
1068 return nullptr;
1069 }
1070
1071 struct token
1072 {
1073 /* The string to match against. */
1074 const char *oper;
1075
1076 /* The lexer token to return. */
1077 int token;
1078
1079 /* The expression opcode to embed within the token. */
1080 enum exp_opcode opcode;
1081
1082 /* When this is true the string in OPER is matched exactly including
1083 case, when this is false OPER is matched case insensitively. */
1084 bool case_sensitive;
1085 };
1086
1087 /* List of Fortran operators. */
1088
1089 static const struct token fortran_operators[] =
1090 {
1091 { ".and.", BOOL_AND, OP_NULL, false },
1092 { ".or.", BOOL_OR, OP_NULL, false },
1093 { ".not.", BOOL_NOT, OP_NULL, false },
1094 { ".eq.", EQUAL, OP_NULL, false },
1095 { ".eqv.", EQUAL, OP_NULL, false },
1096 { ".neqv.", NOTEQUAL, OP_NULL, false },
1097 { ".xor.", NOTEQUAL, OP_NULL, false },
1098 { "==", EQUAL, OP_NULL, false },
1099 { ".ne.", NOTEQUAL, OP_NULL, false },
1100 { "/=", NOTEQUAL, OP_NULL, false },
1101 { ".le.", LEQ, OP_NULL, false },
1102 { "<=", LEQ, OP_NULL, false },
1103 { ".ge.", GEQ, OP_NULL, false },
1104 { ">=", GEQ, OP_NULL, false },
1105 { ".gt.", GREATERTHAN, OP_NULL, false },
1106 { ">", GREATERTHAN, OP_NULL, false },
1107 { ".lt.", LESSTHAN, OP_NULL, false },
1108 { "<", LESSTHAN, OP_NULL, false },
1109 { "**", STARSTAR, BINOP_EXP, false },
1110 };
1111
1112 /* Holds the Fortran representation of a boolean, and the integer value we
1113 substitute in when one of the matching strings is parsed. */
1114 struct f77_boolean_val
1115 {
1116 /* The string representing a Fortran boolean. */
1117 const char *name;
1118
1119 /* The integer value to replace it with. */
1120 int value;
1121 };
1122
1123 /* The set of Fortran booleans. These are matched case insensitively. */
1124 static const struct f77_boolean_val boolean_values[] =
1125 {
1126 { ".true.", 1 },
1127 { ".false.", 0 }
1128 };
1129
1130 static const struct token f77_keywords[] =
1131 {
1132 /* Historically these have always been lowercase only in GDB. */
1133 { "complex", COMPLEX_KEYWORD, OP_NULL, true },
1134 { "complex_4", COMPLEX_S4_KEYWORD, OP_NULL, true },
1135 { "complex_8", COMPLEX_S8_KEYWORD, OP_NULL, true },
1136 { "complex_16", COMPLEX_S16_KEYWORD, OP_NULL, true },
1137 { "character", CHARACTER, OP_NULL, true },
1138 { "integer_2", INT_S2_KEYWORD, OP_NULL, true },
1139 { "logical_1", LOGICAL_S1_KEYWORD, OP_NULL, true },
1140 { "logical_2", LOGICAL_S2_KEYWORD, OP_NULL, true },
1141 { "logical_8", LOGICAL_S8_KEYWORD, OP_NULL, true },
1142 { "integer", INT_KEYWORD, OP_NULL, true },
1143 { "logical", LOGICAL_KEYWORD, OP_NULL, true },
1144 { "real_16", REAL_S16_KEYWORD, OP_NULL, true },
1145 { "sizeof", SIZEOF, OP_NULL, true },
1146 { "real_8", REAL_S8_KEYWORD, OP_NULL, true },
1147 { "real", REAL_KEYWORD, OP_NULL, true },
1148 { "single", SINGLE, OP_NULL, true },
1149 { "double", DOUBLE, OP_NULL, true },
1150 { "precision", PRECISION, OP_NULL, true },
1151 /* The following correspond to actual functions in Fortran and are case
1152 insensitive. */
1153 { "kind", KIND, OP_NULL, false },
1154 { "abs", UNOP_INTRINSIC, UNOP_ABS, false },
1155 { "mod", BINOP_INTRINSIC, BINOP_MOD, false },
1156 { "floor", UNOP_INTRINSIC, UNOP_FORTRAN_FLOOR, false },
1157 { "ceiling", UNOP_INTRINSIC, UNOP_FORTRAN_CEILING, false },
1158 { "modulo", BINOP_INTRINSIC, BINOP_FORTRAN_MODULO, false },
1159 { "cmplx", BINOP_INTRINSIC, BINOP_FORTRAN_CMPLX, false },
1160 { "lbound", UNOP_OR_BINOP_INTRINSIC, FORTRAN_LBOUND, false },
1161 { "ubound", UNOP_OR_BINOP_INTRINSIC, FORTRAN_UBOUND, false },
1162 { "allocated", UNOP_INTRINSIC, UNOP_FORTRAN_ALLOCATED, false },
1163 { "associated", UNOP_OR_BINOP_INTRINSIC, FORTRAN_ASSOCIATED, false },
1164 { "rank", UNOP_INTRINSIC, UNOP_FORTRAN_RANK, false },
1165 { "size", UNOP_OR_BINOP_INTRINSIC, FORTRAN_ARRAY_SIZE, false },
1166 { "shape", UNOP_INTRINSIC, UNOP_FORTRAN_SHAPE, false },
1167 { "loc", UNOP_INTRINSIC, UNOP_FORTRAN_LOC, false },
1168 };
1169
1170 /* Implementation of a dynamically expandable buffer for processing input
1171 characters acquired through lexptr and building a value to return in
1172 yylval. Ripped off from ch-exp.y */
1173
1174 static char *tempbuf; /* Current buffer contents */
1175 static int tempbufsize; /* Size of allocated buffer */
1176 static int tempbufindex; /* Current index into buffer */
1177
1178 #define GROWBY_MIN_SIZE 64 /* Minimum amount to grow buffer by */
1179
1180 #define CHECKBUF(size) \
1181 do { \
1182 if (tempbufindex + (size) >= tempbufsize) \
1183 { \
1184 growbuf_by_size (size); \
1185 } \
1186 } while (0);
1187
1188
1189 /* Grow the static temp buffer if necessary, including allocating the
1190 first one on demand. */
1191
1192 static void
1193 growbuf_by_size (int count)
1194 {
1195 int growby;
1196
1197 growby = std::max (count, GROWBY_MIN_SIZE);
1198 tempbufsize += growby;
1199 if (tempbuf == NULL)
1200 tempbuf = (char *) malloc (tempbufsize);
1201 else
1202 tempbuf = (char *) realloc (tempbuf, tempbufsize);
1203 }
1204
1205 /* Blatantly ripped off from ch-exp.y. This routine recognizes F77
1206 string-literals.
1207
1208 Recognize a string literal. A string literal is a nonzero sequence
1209 of characters enclosed in matching single quotes, except that
1210 a single character inside single quotes is a character literal, which
1211 we reject as a string literal. To embed the terminator character inside
1212 a string, it is simply doubled (I.E. 'this''is''one''string') */
1213
1214 static int
1215 match_string_literal (void)
1216 {
1217 const char *tokptr = pstate->lexptr;
1218
1219 for (tempbufindex = 0, tokptr++; *tokptr != '\0'; tokptr++)
1220 {
1221 CHECKBUF (1);
1222 if (*tokptr == *pstate->lexptr)
1223 {
1224 if (*(tokptr + 1) == *pstate->lexptr)
1225 tokptr++;
1226 else
1227 break;
1228 }
1229 tempbuf[tempbufindex++] = *tokptr;
1230 }
1231 if (*tokptr == '\0' /* no terminator */
1232 || tempbufindex == 0) /* no string */
1233 return 0;
1234 else
1235 {
1236 tempbuf[tempbufindex] = '\0';
1237 yylval.sval.ptr = tempbuf;
1238 yylval.sval.length = tempbufindex;
1239 pstate->lexptr = ++tokptr;
1240 return STRING_LITERAL;
1241 }
1242 }
1243
1244 /* This is set if a NAME token appeared at the very end of the input
1245 string, with no whitespace separating the name from the EOF. This
1246 is used only when parsing to do field name completion. */
1247 static bool saw_name_at_eof;
1248
1249 /* This is set if the previously-returned token was a structure
1250 operator '%'. */
1251 static bool last_was_structop;
1252
1253 /* Read one token, getting characters through lexptr. */
1254
1255 static int
1256 yylex (void)
1257 {
1258 int c;
1259 int namelen;
1260 unsigned int token;
1261 const char *tokstart;
1262 bool saw_structop = last_was_structop;
1263
1264 last_was_structop = false;
1265
1266 retry:
1267
1268 pstate->prev_lexptr = pstate->lexptr;
1269
1270 tokstart = pstate->lexptr;
1271
1272 /* First of all, let us make sure we are not dealing with the
1273 special tokens .true. and .false. which evaluate to 1 and 0. */
1274
1275 if (*pstate->lexptr == '.')
1276 {
1277 for (const auto &candidate : boolean_values)
1278 {
1279 if (strncasecmp (tokstart, candidate.name,
1280 strlen (candidate.name)) == 0)
1281 {
1282 pstate->lexptr += strlen (candidate.name);
1283 yylval.lval = candidate.value;
1284 return BOOLEAN_LITERAL;
1285 }
1286 }
1287 }
1288
1289 /* See if it is a Fortran operator. */
1290 for (const auto &candidate : fortran_operators)
1291 if (strncasecmp (tokstart, candidate.oper,
1292 strlen (candidate.oper)) == 0)
1293 {
1294 gdb_assert (!candidate.case_sensitive);
1295 pstate->lexptr += strlen (candidate.oper);
1296 yylval.opcode = candidate.opcode;
1297 return candidate.token;
1298 }
1299
1300 switch (c = *tokstart)
1301 {
1302 case 0:
1303 if (saw_name_at_eof)
1304 {
1305 saw_name_at_eof = false;
1306 return COMPLETE;
1307 }
1308 else if (pstate->parse_completion && saw_structop)
1309 return COMPLETE;
1310 return 0;
1311
1312 case ' ':
1313 case '\t':
1314 case '\n':
1315 pstate->lexptr++;
1316 goto retry;
1317
1318 case '\'':
1319 token = match_string_literal ();
1320 if (token != 0)
1321 return (token);
1322 break;
1323
1324 case '(':
1325 paren_depth++;
1326 pstate->lexptr++;
1327 return c;
1328
1329 case ')':
1330 if (paren_depth == 0)
1331 return 0;
1332 paren_depth--;
1333 pstate->lexptr++;
1334 return c;
1335
1336 case ',':
1337 if (pstate->comma_terminates && paren_depth == 0)
1338 return 0;
1339 pstate->lexptr++;
1340 return c;
1341
1342 case '.':
1343 /* Might be a floating point number. */
1344 if (pstate->lexptr[1] < '0' || pstate->lexptr[1] > '9')
1345 goto symbol; /* Nope, must be a symbol. */
1346 /* FALL THRU. */
1347
1348 case '0':
1349 case '1':
1350 case '2':
1351 case '3':
1352 case '4':
1353 case '5':
1354 case '6':
1355 case '7':
1356 case '8':
1357 case '9':
1358 {
1359 /* It's a number. */
1360 int got_dot = 0, got_e = 0, got_d = 0, toktype;
1361 const char *p = tokstart;
1362 int hex = input_radix > 10;
1363
1364 if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
1365 {
1366 p += 2;
1367 hex = 1;
1368 }
1369 else if (c == '0' && (p[1]=='t' || p[1]=='T'
1370 || p[1]=='d' || p[1]=='D'))
1371 {
1372 p += 2;
1373 hex = 0;
1374 }
1375
1376 for (;; ++p)
1377 {
1378 if (!hex && !got_e && (*p == 'e' || *p == 'E'))
1379 got_dot = got_e = 1;
1380 else if (!hex && !got_d && (*p == 'd' || *p == 'D'))
1381 got_dot = got_d = 1;
1382 else if (!hex && !got_dot && *p == '.')
1383 got_dot = 1;
1384 else if (((got_e && (p[-1] == 'e' || p[-1] == 'E'))
1385 || (got_d && (p[-1] == 'd' || p[-1] == 'D')))
1386 && (*p == '-' || *p == '+'))
1387 /* This is the sign of the exponent, not the end of the
1388 number. */
1389 continue;
1390 /* We will take any letters or digits. parse_number will
1391 complain if past the radix, or if L or U are not final. */
1392 else if ((*p < '0' || *p > '9')
1393 && ((*p < 'a' || *p > 'z')
1394 && (*p < 'A' || *p > 'Z')))
1395 break;
1396 }
1397 toktype = parse_number (pstate, tokstart, p - tokstart,
1398 got_dot|got_e|got_d,
1399 &yylval);
1400 if (toktype == ERROR)
1401 {
1402 char *err_copy = (char *) alloca (p - tokstart + 1);
1403
1404 memcpy (err_copy, tokstart, p - tokstart);
1405 err_copy[p - tokstart] = 0;
1406 error (_("Invalid number \"%s\"."), err_copy);
1407 }
1408 pstate->lexptr = p;
1409 return toktype;
1410 }
1411
1412 case '%':
1413 last_was_structop = true;
1414 /* Fall through. */
1415 case '+':
1416 case '-':
1417 case '*':
1418 case '/':
1419 case '|':
1420 case '&':
1421 case '^':
1422 case '~':
1423 case '!':
1424 case '@':
1425 case '<':
1426 case '>':
1427 case '[':
1428 case ']':
1429 case '?':
1430 case ':':
1431 case '=':
1432 case '{':
1433 case '}':
1434 symbol:
1435 pstate->lexptr++;
1436 return c;
1437 }
1438
1439 if (!(c == '_' || c == '$' || c ==':'
1440 || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))
1441 /* We must have come across a bad character (e.g. ';'). */
1442 error (_("Invalid character '%c' in expression."), c);
1443
1444 namelen = 0;
1445 for (c = tokstart[namelen];
1446 (c == '_' || c == '$' || c == ':' || (c >= '0' && c <= '9')
1447 || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));
1448 c = tokstart[++namelen]);
1449
1450 /* The token "if" terminates the expression and is NOT
1451 removed from the input stream. */
1452
1453 if (namelen == 2 && tokstart[0] == 'i' && tokstart[1] == 'f')
1454 return 0;
1455
1456 pstate->lexptr += namelen;
1457
1458 /* Catch specific keywords. */
1459
1460 for (const auto &keyword : f77_keywords)
1461 if (strlen (keyword.oper) == namelen
1462 && ((!keyword.case_sensitive
1463 && strncasecmp (tokstart, keyword.oper, namelen) == 0)
1464 || (keyword.case_sensitive
1465 && strncmp (tokstart, keyword.oper, namelen) == 0)))
1466 {
1467 yylval.opcode = keyword.opcode;
1468 return keyword.token;
1469 }
1470
1471 yylval.sval.ptr = tokstart;
1472 yylval.sval.length = namelen;
1473
1474 if (*tokstart == '$')
1475 return DOLLAR_VARIABLE;
1476
1477 /* Use token-type TYPENAME for symbols that happen to be defined
1478 currently as names of types; NAME for other symbols.
1479 The caller is not constrained to care about the distinction. */
1480 {
1481 std::string tmp = copy_name (yylval.sval);
1482 struct block_symbol result;
1483 const enum domain_enum_tag lookup_domains[] =
1484 {
1485 STRUCT_DOMAIN,
1486 VAR_DOMAIN,
1487 MODULE_DOMAIN
1488 };
1489 int hextype;
1490
1491 for (const auto &domain : lookup_domains)
1492 {
1493 result = lookup_symbol (tmp.c_str (), pstate->expression_context_block,
1494 domain, NULL);
1495 if (result.symbol && result.symbol->aclass () == LOC_TYPEDEF)
1496 {
1497 yylval.tsym.type = result.symbol->type ();
1498 return TYPENAME;
1499 }
1500
1501 if (result.symbol)
1502 break;
1503 }
1504
1505 yylval.tsym.type
1506 = language_lookup_primitive_type (pstate->language (),
1507 pstate->gdbarch (), tmp.c_str ());
1508 if (yylval.tsym.type != NULL)
1509 return TYPENAME;
1510
1511 /* Input names that aren't symbols but ARE valid hex numbers,
1512 when the input radix permits them, can be names or numbers
1513 depending on the parse. Note we support radixes > 16 here. */
1514 if (!result.symbol
1515 && ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10)
1516 || (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
1517 {
1518 YYSTYPE newlval; /* Its value is ignored. */
1519 hextype = parse_number (pstate, tokstart, namelen, 0, &newlval);
1520 if (hextype == INT)
1521 {
1522 yylval.ssym.sym = result;
1523 yylval.ssym.is_a_field_of_this = false;
1524 return NAME_OR_INT;
1525 }
1526 }
1527
1528 if (pstate->parse_completion && *pstate->lexptr == '\0')
1529 saw_name_at_eof = true;
1530
1531 /* Any other kind of symbol */
1532 yylval.ssym.sym = result;
1533 yylval.ssym.is_a_field_of_this = false;
1534 return NAME;
1535 }
1536 }
1537
1538 int
1539 f_language::parser (struct parser_state *par_state) const
1540 {
1541 /* Setting up the parser state. */
1542 scoped_restore pstate_restore = make_scoped_restore (&pstate);
1543 scoped_restore restore_yydebug = make_scoped_restore (&yydebug,
1544 parser_debug);
1545 gdb_assert (par_state != NULL);
1546 pstate = par_state;
1547 last_was_structop = false;
1548 saw_name_at_eof = false;
1549 paren_depth = 0;
1550
1551 struct type_stack stack;
1552 scoped_restore restore_type_stack = make_scoped_restore (&type_stack,
1553 &stack);
1554
1555 int result = yyparse ();
1556 if (!result)
1557 pstate->set_operation (pstate->pop ());
1558 return result;
1559 }
1560
1561 static void
1562 yyerror (const char *msg)
1563 {
1564 if (pstate->prev_lexptr)
1565 pstate->lexptr = pstate->prev_lexptr;
1566
1567 error (_("A %s in expression, near `%s'."), msg, pstate->lexptr);
1568 }