Automatic date update in version.in
[deliverable/binutils-gdb.git] / gdb / m2-exp.y
CommitLineData
c906108c 1/* YACC grammar for Modula-2 expressions, for GDB.
3666a048 2 Copyright (C) 1986-2021 Free Software Foundation, Inc.
c906108c
SS
3 Generated from expread.y (now c-exp.y) and contributed by the Department
4 of Computer Science at the State University of New York at Buffalo, 1991.
5
5b1ba0e5 6 This file is part of GDB.
c906108c 7
5b1ba0e5
NS
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
c906108c 12
5b1ba0e5
NS
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
5b1ba0e5
NS
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
20
21/* Parse a Modula-2 expression from text in a string,
22 and return the result as a struct expression pointer.
23 That structure contains arithmetic operations in reverse polish,
24 with constants represented by operations that are followed by special data.
25 See expression.h for the details of the format.
26 What is important here is that it can be built up sequentially
27 during the process of parsing; the lower levels of the tree always
28 come first in the result.
29
30 Note that malloc's and realloc's in this file are transformed to
31 xmalloc and xrealloc respectively by the same sed command in the
32 makefile that remaps any other malloc/realloc inserted by the parser
33 generator. Doing this with #defines and trying to control the interaction
34 with include files (<malloc.h> and <stdlib.h> for example) just became
35 too messy, particularly when such includes can be inserted at random
025bb325 36 times by the parser generator. */
c906108c
SS
37
38%{
39
40#include "defs.h"
c906108c
SS
41#include "expression.h"
42#include "language.h"
43#include "value.h"
44#include "parser-defs.h"
45#include "m2-lang.h"
46#include "bfd.h" /* Required by objfiles.h. */
47#include "symfile.h" /* Required by objfiles.h. */
48#include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
fe898f56 49#include "block.h"
f1b8ceef 50#include "m2-exp.h"
c906108c 51
fa9f5be6
TT
52#define parse_type(ps) builtin_type (ps->gdbarch ())
53#define parse_m2_type(ps) builtin_m2_type (ps->gdbarch ())
3e79cecf 54
b3f11165
PA
55/* Remap normal yacc parser interface names (yyparse, yylex, yyerror,
56 etc). */
57#define GDB_YY_REMAP_PREFIX m2_
58#include "yy-remap.h"
f461f5cf 59
410a0ff2
SDJ
60/* The state of the parser, used internally when we are parsing the
61 expression. */
62
63static struct parser_state *pstate = NULL;
64
a14ed312 65int yyparse (void);
c906108c 66
a14ed312 67static int yylex (void);
c906108c 68
69d340c6 69static void yyerror (const char *);
c906108c 70
a14ed312 71static int parse_number (int);
c906108c 72
025bb325 73/* The sign of the number being parsed. */
c906108c
SS
74static int number_sign = 1;
75
f1b8ceef 76using namespace expr;
c906108c
SS
77%}
78
79/* Although the yacc "value" of an expression is not used,
80 since the result is stored in the structure being created,
81 other node types do have values. */
82
83%union
84 {
85 LONGEST lval;
86 ULONGEST ulval;
edd079d9 87 gdb_byte val[16];
c906108c
SS
88 struct symbol *sym;
89 struct type *tval;
90 struct stoken sval;
91 int voidval;
3977b71f 92 const struct block *bval;
c906108c
SS
93 enum exp_opcode opcode;
94 struct internalvar *ivar;
95
96 struct type **tvec;
97 int *ivec;
98 }
99
100%type <voidval> exp type_exp start set
101%type <voidval> variable
102%type <tval> type
103%type <bval> block
104%type <sym> fblock
105
106%token <lval> INT HEX ERROR
107%token <ulval> UINT M2_TRUE M2_FALSE CHAR
edd079d9 108%token <val> FLOAT
c906108c
SS
109
110/* Both NAME and TYPENAME tokens represent symbols in the input,
111 and both convey their data as strings.
112 But a TYPENAME is a string that happens to be defined as a typedef
113 or builtin type name (such as int or char)
114 and a NAME is any other symbol.
115
116 Contexts where this distinction is not important can use the
117 nonterminal "name", which matches either NAME or TYPENAME. */
118
119%token <sval> STRING
120%token <sval> NAME BLOCKNAME IDENT VARNAME
121%token <sval> TYPENAME
122
123%token SIZE CAP ORD HIGH ABS MIN_FUNC MAX_FUNC FLOAT_FUNC VAL CHR ODD TRUNC
844781a1 124%token TSIZE
c906108c
SS
125%token INC DEC INCL EXCL
126
127/* The GDB scope operator */
128%token COLONCOLON
129
02c72701 130%token <sval> DOLLAR_VARIABLE
c906108c
SS
131
132/* M2 tokens */
133%left ','
134%left ABOVE_COMMA
135%nonassoc ASSIGN
136%left '<' '>' LEQ GEQ '=' NOTEQUAL '#' IN
137%left OROR
138%left LOGICAL_AND '&'
139%left '@'
140%left '+' '-'
141%left '*' '/' DIV MOD
142%right UNARY
143%right '^' DOT '[' '('
144%right NOT '~'
145%left COLONCOLON QID
146/* This is not an actual token ; it is used for precedence.
147%right QID
148*/
149
150\f
151%%
152
153start : exp
154 | type_exp
155 ;
156
157type_exp: type
f1b8ceef 158 { pstate->push_new<type_operation> ($1); }
c906108c
SS
159 ;
160
161/* Expressions */
162
163exp : exp '^' %prec UNARY
f1b8ceef 164 { pstate->wrap<unop_ind_operation> (); }
ef944135 165 ;
c906108c
SS
166
167exp : '-'
168 { number_sign = -1; }
169 exp %prec UNARY
170 { number_sign = 1;
f1b8ceef 171 pstate->wrap<unary_neg_operation> (); }
c906108c
SS
172 ;
173
174exp : '+' exp %prec UNARY
f1b8ceef 175 { pstate->wrap<unary_plus_operation> (); }
c906108c
SS
176 ;
177
178exp : not_exp exp %prec UNARY
f1b8ceef 179 { pstate->wrap<unary_logical_not_operation> (); }
c906108c
SS
180 ;
181
182not_exp : NOT
183 | '~'
184 ;
185
186exp : CAP '(' exp ')'
f1b8ceef 187 { error (_("CAP function is not implemented")); }
c906108c
SS
188 ;
189
190exp : ORD '(' exp ')'
f1b8ceef 191 { error (_("ORD function is not implemented")); }
c906108c
SS
192 ;
193
194exp : ABS '(' exp ')'
f1b8ceef 195 { error (_("ABS function is not implemented")); }
c906108c
SS
196 ;
197
198exp : HIGH '(' exp ')'
f1b8ceef 199 { pstate->wrap<m2_unop_high_operation> (); }
c906108c
SS
200 ;
201
202exp : MIN_FUNC '(' type ')'
f1b8ceef 203 { error (_("MIN function is not implemented")); }
c906108c
SS
204 ;
205
206exp : MAX_FUNC '(' type ')'
f1b8ceef 207 { error (_("MAX function is not implemented")); }
c906108c
SS
208 ;
209
210exp : FLOAT_FUNC '(' exp ')'
f1b8ceef 211 { error (_("FLOAT function is not implemented")); }
c906108c
SS
212 ;
213
214exp : VAL '(' type ',' exp ')'
f1b8ceef 215 { error (_("VAL function is not implemented")); }
c906108c
SS
216 ;
217
218exp : CHR '(' exp ')'
f1b8ceef 219 { error (_("CHR function is not implemented")); }
c906108c
SS
220 ;
221
222exp : ODD '(' exp ')'
f1b8ceef 223 { error (_("ODD function is not implemented")); }
c906108c
SS
224 ;
225
226exp : TRUNC '(' exp ')'
f1b8ceef 227 { error (_("TRUNC function is not implemented")); }
c906108c
SS
228 ;
229
844781a1 230exp : TSIZE '(' exp ')'
f1b8ceef 231 { pstate->wrap<unop_sizeof_operation> (); }
844781a1
GM
232 ;
233
c906108c 234exp : SIZE exp %prec UNARY
f1b8ceef 235 { pstate->wrap<unop_sizeof_operation> (); }
c906108c
SS
236 ;
237
238
239exp : INC '(' exp ')'
f1b8ceef 240 { pstate->wrap<preinc_operation> (); }
c906108c
SS
241 ;
242
243exp : INC '(' exp ',' exp ')'
f1b8ceef
TT
244 {
245 operation_up rhs = pstate->pop ();
246 operation_up lhs = pstate->pop ();
247 pstate->push_new<assign_modify_operation>
248 (BINOP_ADD, std::move (lhs), std::move (rhs));
249 }
c906108c
SS
250 ;
251
252exp : DEC '(' exp ')'
f1b8ceef 253 { pstate->wrap<predec_operation> (); }
c906108c
SS
254 ;
255
256exp : DEC '(' exp ',' exp ')'
f1b8ceef
TT
257 {
258 operation_up rhs = pstate->pop ();
259 operation_up lhs = pstate->pop ();
260 pstate->push_new<assign_modify_operation>
261 (BINOP_SUB, std::move (lhs), std::move (rhs));
262 }
c906108c
SS
263 ;
264
265exp : exp DOT NAME
f1b8ceef
TT
266 {
267 pstate->push_new<structop_operation>
268 (pstate->pop (), copy_name ($3));
269 }
270;
c906108c
SS
271
272exp : set
273 ;
274
275exp : exp IN set
001083c6 276 { error (_("Sets are not implemented."));}
c906108c
SS
277 ;
278
279exp : INCL '(' exp ',' exp ')'
001083c6 280 { error (_("Sets are not implemented."));}
c906108c
SS
281 ;
282
283exp : EXCL '(' exp ',' exp ')'
001083c6 284 { error (_("Sets are not implemented."));}
ef944135 285 ;
c906108c
SS
286
287set : '{' arglist '}'
001083c6 288 { error (_("Sets are not implemented."));}
c906108c 289 | type '{' arglist '}'
001083c6 290 { error (_("Sets are not implemented."));}
c906108c
SS
291 ;
292
293
3945d2d7 294/* Modula-2 array subscript notation [a,b,c...]. */
419cca02 295exp : exp '['
dda83cd7 296 /* This function just saves the number of arguments
419cca02
AB
297 that follow in the list. It is *not* specific to
298 function types */
dda83cd7
SM
299 { pstate->start_arglist(); }
300 non_empty_arglist ']' %prec DOT
3945d2d7
GM
301 {
302 gdb_assert (pstate->arglist_len > 0);
f1b8ceef
TT
303 std::vector<operation_up> args
304 = pstate->pop_vector (pstate->end_arglist ());
305 pstate->push_new<multi_subscript_operation>
306 (pstate->pop (), std::move (args));
3945d2d7 307 }
844781a1
GM
308 ;
309
c906108c
SS
310exp : exp '('
311 /* This is to save the value of arglist_len
312 being accumulated by an outer function call. */
43476f0b 313 { pstate->start_arglist (); }
c906108c 314 arglist ')' %prec DOT
f1b8ceef
TT
315 {
316 std::vector<operation_up> args
317 = pstate->pop_vector (pstate->end_arglist ());
318 pstate->push_new<funcall_operation>
319 (pstate->pop (), std::move (args));
320 }
c906108c
SS
321 ;
322
419cca02
AB
323arglist :
324 ;
325
326arglist : exp
43476f0b 327 { pstate->arglist_len = 1; }
c906108c
SS
328 ;
329
419cca02
AB
330arglist : arglist ',' exp %prec ABOVE_COMMA
331 { pstate->arglist_len++; }
c906108c
SS
332 ;
333
419cca02 334non_empty_arglist
dda83cd7
SM
335 : exp
336 { pstate->arglist_len = 1; }
c906108c
SS
337 ;
338
419cca02 339non_empty_arglist
dda83cd7 340 : non_empty_arglist ',' exp %prec ABOVE_COMMA
43476f0b 341 { pstate->arglist_len++; }
c906108c
SS
342 ;
343
344/* GDB construct */
345exp : '{' type '}' exp %prec UNARY
f1b8ceef
TT
346 {
347 pstate->push_new<unop_memval_operation>
348 (pstate->pop (), $2);
349 }
c906108c
SS
350 ;
351
352exp : type '(' exp ')' %prec UNARY
f1b8ceef
TT
353 {
354 pstate->push_new<unop_cast_operation>
355 (pstate->pop (), $1);
356 }
c906108c
SS
357 ;
358
359exp : '(' exp ')'
360 { }
361 ;
362
363/* Binary operators in order of decreasing precedence. Note that some
364 of these operators are overloaded! (ie. sets) */
365
366/* GDB construct */
367exp : exp '@' exp
f1b8ceef 368 { pstate->wrap2<repeat_operation> (); }
c906108c
SS
369 ;
370
371exp : exp '*' exp
f1b8ceef 372 { pstate->wrap2<mul_operation> (); }
c906108c
SS
373 ;
374
375exp : exp '/' exp
f1b8ceef 376 { pstate->wrap2<div_operation> (); }
c906108c
SS
377 ;
378
379exp : exp DIV exp
f1b8ceef 380 { pstate->wrap2<intdiv_operation> (); }
dda83cd7 381 ;
c906108c
SS
382
383exp : exp MOD exp
f1b8ceef 384 { pstate->wrap2<rem_operation> (); }
c906108c
SS
385 ;
386
387exp : exp '+' exp
f1b8ceef 388 { pstate->wrap2<add_operation> (); }
c906108c
SS
389 ;
390
391exp : exp '-' exp
f1b8ceef 392 { pstate->wrap2<sub_operation> (); }
c906108c
SS
393 ;
394
395exp : exp '=' exp
f1b8ceef 396 { pstate->wrap2<equal_operation> (); }
c906108c
SS
397 ;
398
399exp : exp NOTEQUAL exp
f1b8ceef 400 { pstate->wrap2<notequal_operation> (); }
dda83cd7 401 | exp '#' exp
f1b8ceef 402 { pstate->wrap2<notequal_operation> (); }
c906108c
SS
403 ;
404
405exp : exp LEQ exp
f1b8ceef 406 { pstate->wrap2<leq_operation> (); }
c906108c
SS
407 ;
408
409exp : exp GEQ exp
f1b8ceef 410 { pstate->wrap2<geq_operation> (); }
c906108c
SS
411 ;
412
413exp : exp '<' exp
f1b8ceef 414 { pstate->wrap2<less_operation> (); }
c906108c
SS
415 ;
416
417exp : exp '>' exp
f1b8ceef 418 { pstate->wrap2<gtr_operation> (); }
c906108c
SS
419 ;
420
421exp : exp LOGICAL_AND exp
f1b8ceef 422 { pstate->wrap2<logical_and_operation> (); }
c906108c
SS
423 ;
424
425exp : exp OROR exp
f1b8ceef 426 { pstate->wrap2<logical_or_operation> (); }
c906108c
SS
427 ;
428
429exp : exp ASSIGN exp
f1b8ceef 430 { pstate->wrap2<assign_operation> (); }
c906108c
SS
431 ;
432
433
434/* Constants */
435
436exp : M2_TRUE
f1b8ceef 437 { pstate->push_new<bool_operation> ($1); }
c906108c
SS
438 ;
439
440exp : M2_FALSE
f1b8ceef 441 { pstate->push_new<bool_operation> ($1); }
c906108c
SS
442 ;
443
444exp : INT
f1b8ceef
TT
445 {
446 pstate->push_new<long_const_operation>
447 (parse_m2_type (pstate)->builtin_int, $1);
448 }
c906108c
SS
449 ;
450
451exp : UINT
452 {
f1b8ceef
TT
453 pstate->push_new<long_const_operation>
454 (parse_m2_type (pstate)->builtin_card, $1);
c906108c
SS
455 }
456 ;
457
458exp : CHAR
f1b8ceef
TT
459 {
460 pstate->push_new<long_const_operation>
461 (parse_m2_type (pstate)->builtin_char, $1);
462 }
c906108c
SS
463 ;
464
465
466exp : FLOAT
f1b8ceef
TT
467 {
468 float_data data;
469 std::copy (std::begin ($1), std::end ($1),
470 std::begin (data));
471 pstate->push_new<float_const_operation>
472 (parse_m2_type (pstate)->builtin_real, data);
473 }
c906108c
SS
474 ;
475
476exp : variable
477 ;
478
479exp : SIZE '(' type ')' %prec UNARY
f1b8ceef
TT
480 {
481 pstate->push_new<long_const_operation>
482 (parse_m2_type (pstate)->builtin_int,
483 TYPE_LENGTH ($3));
484 }
c906108c
SS
485 ;
486
487exp : STRING
f1b8ceef 488 { error (_("strings are not implemented")); }
c906108c
SS
489 ;
490
025bb325 491/* This will be used for extensions later. Like adding modules. */
c906108c
SS
492block : fblock
493 { $$ = SYMBOL_BLOCK_VALUE($1); }
494 ;
495
496fblock : BLOCKNAME
497 { struct symbol *sym
61f4b350 498 = lookup_symbol (copy_name ($1).c_str (),
1e58a4a4 499 pstate->expression_context_block,
d12307c1 500 VAR_DOMAIN, 0).symbol;
c906108c
SS
501 $$ = sym;}
502 ;
503
504
505/* GDB scope operator */
506fblock : block COLONCOLON BLOCKNAME
507 { struct symbol *tem
61f4b350 508 = lookup_symbol (copy_name ($3).c_str (), $1,
d12307c1 509 VAR_DOMAIN, 0).symbol;
c906108c 510 if (!tem || SYMBOL_CLASS (tem) != LOC_BLOCK)
001083c6 511 error (_("No function \"%s\" in specified context."),
61f4b350 512 copy_name ($3).c_str ());
c906108c
SS
513 $$ = tem;
514 }
515 ;
516
517/* Useful for assigning to PROCEDURE variables */
518variable: fblock
f1b8ceef 519 {
9e5e03df
TT
520 block_symbol sym { $1, nullptr };
521 pstate->push_new<var_value_operation> (sym);
f1b8ceef 522 }
c906108c
SS
523 ;
524
525/* GDB internal ($foo) variable */
cfeadda5 526variable: DOLLAR_VARIABLE
f1b8ceef 527 { pstate->push_dollar ($1); }
c906108c
SS
528 ;
529
530/* GDB scope operator */
531variable: block COLONCOLON NAME
d12307c1 532 { struct block_symbol sym
61f4b350 533 = lookup_symbol (copy_name ($3).c_str (), $1,
d12307c1
PMR
534 VAR_DOMAIN, 0);
535
536 if (sym.symbol == 0)
001083c6 537 error (_("No symbol \"%s\" in specified context."),
61f4b350 538 copy_name ($3).c_str ());
d12307c1 539 if (symbol_read_needs_frame (sym.symbol))
699bd4cf 540 pstate->block_tracker->update (sym);
c906108c 541
9e5e03df 542 pstate->push_new<var_value_operation> (sym);
f1b8ceef 543 }
c906108c
SS
544 ;
545
025bb325 546/* Base case for variables. */
c906108c 547variable: NAME
d12307c1 548 { struct block_symbol sym;
1993b719 549 struct field_of_this_result is_a_field_of_this;
c906108c 550
1b30f421 551 std::string name = copy_name ($1);
1e58a4a4 552 sym
1b30f421 553 = lookup_symbol (name.c_str (),
1e58a4a4
TT
554 pstate->expression_context_block,
555 VAR_DOMAIN,
556 &is_a_field_of_this);
d12307c1 557
f1b8ceef 558 pstate->push_symbol (name.c_str (), sym);
c906108c
SS
559 }
560 ;
561
562type
563 : TYPENAME
1e58a4a4
TT
564 { $$
565 = lookup_typename (pstate->language (),
61f4b350 566 copy_name ($1).c_str (),
1e58a4a4
TT
567 pstate->expression_context_block,
568 0);
569 }
c906108c
SS
570
571 ;
572
573%%
574
c906108c
SS
575/* Take care of parsing a number (anything that starts with a digit).
576 Set yylval and return the token type; update lexptr.
577 LEN is the number of characters in it. */
578
579/*** Needs some error checking for the float case ***/
580
581static int
d04550a6 582parse_number (int olen)
c906108c 583{
5776fca3 584 const char *p = pstate->lexptr;
710122da
DC
585 LONGEST n = 0;
586 LONGEST prevn = 0;
587 int c,i,ischar=0;
588 int base = input_radix;
589 int len = olen;
c906108c
SS
590 int unsigned_p = number_sign == 1 ? 1 : 0;
591
592 if(p[len-1] == 'H')
593 {
594 base = 16;
595 len--;
596 }
597 else if(p[len-1] == 'C' || p[len-1] == 'B')
598 {
599 base = 8;
600 ischar = p[len-1] == 'C';
601 len--;
602 }
603
604 /* Scan the number */
605 for (c = 0; c < len; c++)
606 {
607 if (p[c] == '.' && base == 10)
608 {
609 /* It's a float since it contains a point. */
edd079d9
UW
610 if (!parse_float (p, len,
611 parse_m2_type (pstate)->builtin_real,
612 yylval.val))
613 return ERROR;
614
5776fca3 615 pstate->lexptr += len;
c906108c
SS
616 return FLOAT;
617 }
618 if (p[c] == '.' && base != 10)
001083c6 619 error (_("Floating point numbers must be base 10."));
c906108c 620 if (base == 10 && (p[c] < '0' || p[c] > '9'))
001083c6 621 error (_("Invalid digit \'%c\' in number."),p[c]);
c906108c
SS
622 }
623
624 while (len-- > 0)
625 {
626 c = *p++;
627 n *= base;
628 if( base == 8 && (c == '8' || c == '9'))
001083c6 629 error (_("Invalid digit \'%c\' in octal number."),c);
c906108c
SS
630 if (c >= '0' && c <= '9')
631 i = c - '0';
632 else
633 {
634 if (base == 16 && c >= 'A' && c <= 'F')
635 i = c - 'A' + 10;
636 else
637 return ERROR;
638 }
639 n+=i;
640 if(i >= base)
641 return ERROR;
642 if(!unsigned_p && number_sign == 1 && (prevn >= n))
643 unsigned_p=1; /* Try something unsigned */
644 /* Don't do the range check if n==i and i==0, since that special
025bb325 645 case will give an overflow error. */
c906108c
SS
646 if(RANGE_CHECK && n!=i && i)
647 {
648 if((unsigned_p && (unsigned)prevn >= (unsigned)n) ||
649 ((!unsigned_p && number_sign==-1) && -prevn <= -n))
001083c6 650 range_error (_("Overflow on numeric constant."));
c906108c
SS
651 }
652 prevn=n;
653 }
654
5776fca3 655 pstate->lexptr = p;
c906108c 656 if(*p == 'B' || *p == 'C' || *p == 'H')
5776fca3 657 pstate->lexptr++; /* Advance past B,C or H */
c906108c
SS
658
659 if (ischar)
660 {
661 yylval.ulval = n;
662 return CHAR;
663 }
664 else if ( unsigned_p && number_sign == 1)
665 {
666 yylval.ulval = n;
667 return UINT;
668 }
669 else if((unsigned_p && (n<0))) {
001083c6 670 range_error (_("Overflow on numeric constant -- number too large."));
c906108c
SS
671 /* But, this can return if range_check == range_warn. */
672 }
673 yylval.lval = n;
674 return INT;
675}
676
677
678/* Some tokens */
679
680static struct
681{
682 char name[2];
683 int token;
684} tokentab2[] =
685{
686 { {'<', '>'}, NOTEQUAL },
687 { {':', '='}, ASSIGN },
688 { {'<', '='}, LEQ },
689 { {'>', '='}, GEQ },
690 { {':', ':'}, COLONCOLON },
691
692};
693
694/* Some specific keywords */
695
696struct keyword {
697 char keyw[10];
698 int token;
699};
700
701static struct keyword keytab[] =
702{
703 {"OR" , OROR },
704 {"IN", IN },/* Note space after IN */
705 {"AND", LOGICAL_AND},
706 {"ABS", ABS },
707 {"CHR", CHR },
708 {"DEC", DEC },
709 {"NOT", NOT },
710 {"DIV", DIV },
711 {"INC", INC },
712 {"MAX", MAX_FUNC },
713 {"MIN", MIN_FUNC },
714 {"MOD", MOD },
715 {"ODD", ODD },
716 {"CAP", CAP },
717 {"ORD", ORD },
718 {"VAL", VAL },
719 {"EXCL", EXCL },
720 {"HIGH", HIGH },
721 {"INCL", INCL },
722 {"SIZE", SIZE },
723 {"FLOAT", FLOAT_FUNC },
724 {"TRUNC", TRUNC },
844781a1 725 {"TSIZE", SIZE },
c906108c
SS
726};
727
728
28aaf3fd
TT
729/* Depth of parentheses. */
730static int paren_depth;
731
c906108c
SS
732/* Read one token, getting characters through lexptr. */
733
410a0ff2
SDJ
734/* This is where we will check to make sure that the language and the
735 operators used are compatible */
c906108c
SS
736
737static int
eeae04df 738yylex (void)
c906108c 739{
710122da
DC
740 int c;
741 int namelen;
742 int i;
d7561cbb 743 const char *tokstart;
710122da 744 char quote;
c906108c
SS
745
746 retry:
747
5776fca3 748 pstate->prev_lexptr = pstate->lexptr;
065432a8 749
5776fca3 750 tokstart = pstate->lexptr;
c906108c
SS
751
752
753 /* See if it is a special token of length 2 */
754 for( i = 0 ; i < (int) (sizeof tokentab2 / sizeof tokentab2[0]) ; i++)
1e5e79d0 755 if (strncmp (tokentab2[i].name, tokstart, 2) == 0)
c906108c 756 {
5776fca3 757 pstate->lexptr += 2;
c906108c
SS
758 return tokentab2[i].token;
759 }
760
761 switch (c = *tokstart)
762 {
763 case 0:
764 return 0;
765
766 case ' ':
767 case '\t':
768 case '\n':
5776fca3 769 pstate->lexptr++;
c906108c
SS
770 goto retry;
771
772 case '(':
773 paren_depth++;
5776fca3 774 pstate->lexptr++;
c906108c
SS
775 return c;
776
777 case ')':
778 if (paren_depth == 0)
779 return 0;
780 paren_depth--;
5776fca3 781 pstate->lexptr++;
c906108c
SS
782 return c;
783
784 case ',':
8621b685 785 if (pstate->comma_terminates && paren_depth == 0)
c906108c 786 return 0;
5776fca3 787 pstate->lexptr++;
c906108c
SS
788 return c;
789
790 case '.':
791 /* Might be a floating point number. */
5776fca3 792 if (pstate->lexptr[1] >= '0' && pstate->lexptr[1] <= '9')
c906108c
SS
793 break; /* Falls into number code. */
794 else
795 {
5776fca3 796 pstate->lexptr++;
c906108c
SS
797 return DOT;
798 }
799
800/* These are character tokens that appear as-is in the YACC grammar */
801 case '+':
802 case '-':
803 case '*':
804 case '/':
805 case '^':
806 case '<':
807 case '>':
808 case '[':
809 case ']':
810 case '=':
811 case '{':
812 case '}':
813 case '#':
814 case '@':
815 case '~':
816 case '&':
5776fca3 817 pstate->lexptr++;
c906108c
SS
818 return c;
819
820 case '\'' :
821 case '"':
822 quote = c;
823 for (namelen = 1; (c = tokstart[namelen]) != quote && c != '\0'; namelen++)
824 if (c == '\\')
825 {
826 c = tokstart[++namelen];
827 if (c >= '0' && c <= '9')
828 {
829 c = tokstart[++namelen];
830 if (c >= '0' && c <= '9')
831 c = tokstart[++namelen];
832 }
833 }
834 if(c != quote)
001083c6 835 error (_("Unterminated string or character constant."));
c906108c
SS
836 yylval.sval.ptr = tokstart + 1;
837 yylval.sval.length = namelen - 1;
5776fca3 838 pstate->lexptr += namelen + 1;
c906108c
SS
839
840 if(namelen == 2) /* Single character */
841 {
842 yylval.ulval = tokstart[1];
843 return CHAR;
844 }
845 else
846 return STRING;
847 }
848
849 /* Is it a number? */
850 /* Note: We have already dealt with the case of the token '.'.
851 See case '.' above. */
852 if ((c >= '0' && c <= '9'))
853 {
854 /* It's a number. */
855 int got_dot = 0, got_e = 0;
d7561cbb 856 const char *p = tokstart;
c906108c
SS
857 int toktype;
858
859 for (++p ;; ++p)
860 {
861 if (!got_e && (*p == 'e' || *p == 'E'))
862 got_dot = got_e = 1;
863 else if (!got_dot && *p == '.')
864 got_dot = 1;
865 else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
866 && (*p == '-' || *p == '+'))
867 /* This is the sign of the exponent, not the end of the
868 number. */
869 continue;
870 else if ((*p < '0' || *p > '9') &&
871 (*p < 'A' || *p > 'F') &&
872 (*p != 'H')) /* Modula-2 hexadecimal number */
873 break;
874 }
875 toktype = parse_number (p - tokstart);
dda83cd7 876 if (toktype == ERROR)
c906108c
SS
877 {
878 char *err_copy = (char *) alloca (p - tokstart + 1);
879
880 memcpy (err_copy, tokstart, p - tokstart);
881 err_copy[p - tokstart] = 0;
001083c6 882 error (_("Invalid number \"%s\"."), err_copy);
c906108c 883 }
5776fca3 884 pstate->lexptr = p;
c906108c
SS
885 return toktype;
886 }
887
888 if (!(c == '_' || c == '$'
889 || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))
890 /* We must have come across a bad character (e.g. ';'). */
001083c6 891 error (_("Invalid character '%c' in expression."), c);
c906108c
SS
892
893 /* It's a name. See how long it is. */
894 namelen = 0;
895 for (c = tokstart[namelen];
896 (c == '_' || c == '$' || (c >= '0' && c <= '9')
897 || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'));
898 c = tokstart[++namelen])
899 ;
900
901 /* The token "if" terminates the expression and is NOT
902 removed from the input stream. */
903 if (namelen == 2 && tokstart[0] == 'i' && tokstart[1] == 'f')
904 {
905 return 0;
906 }
907
5776fca3 908 pstate->lexptr += namelen;
c906108c
SS
909
910 /* Lookup special keywords */
911 for(i = 0 ; i < (int) (sizeof(keytab) / sizeof(keytab[0])) ; i++)
1e5e79d0
MD
912 if (namelen == strlen (keytab[i].keyw)
913 && strncmp (tokstart, keytab[i].keyw, namelen) == 0)
c906108c
SS
914 return keytab[i].token;
915
916 yylval.sval.ptr = tokstart;
917 yylval.sval.length = namelen;
918
919 if (*tokstart == '$')
02c72701 920 return DOLLAR_VARIABLE;
c906108c
SS
921
922 /* Use token-type BLOCKNAME for symbols that happen to be defined as
923 functions. If this is not so, then ...
924 Use token-type TYPENAME for symbols that happen to be defined
925 currently as names of types; NAME for other symbols.
926 The caller is not constrained to care about the distinction. */
927 {
61f4b350 928 std::string tmp = copy_name (yylval.sval);
c906108c
SS
929 struct symbol *sym;
930
61f4b350 931 if (lookup_symtab (tmp.c_str ()))
c906108c 932 return BLOCKNAME;
61f4b350 933 sym = lookup_symbol (tmp.c_str (), pstate->expression_context_block,
1e58a4a4 934 VAR_DOMAIN, 0).symbol;
c906108c
SS
935 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
936 return BLOCKNAME;
b858499d 937 if (lookup_typename (pstate->language (),
61f4b350 938 tmp.c_str (), pstate->expression_context_block, 1))
c906108c
SS
939 return TYPENAME;
940
941 if(sym)
942 {
712f90be 943 switch(SYMBOL_CLASS (sym))
c906108c
SS
944 {
945 case LOC_STATIC:
946 case LOC_REGISTER:
947 case LOC_ARG:
948 case LOC_REF_ARG:
c906108c
SS
949 case LOC_REGPARM_ADDR:
950 case LOC_LOCAL:
c906108c
SS
951 case LOC_CONST:
952 case LOC_CONST_BYTES:
953 case LOC_OPTIMIZED_OUT:
4c2df51b 954 case LOC_COMPUTED:
c906108c
SS
955 return NAME;
956
957 case LOC_TYPEDEF:
958 return TYPENAME;
959
960 case LOC_BLOCK:
961 return BLOCKNAME;
962
963 case LOC_UNDEF:
001083c6 964 error (_("internal: Undefined class in m2lex()"));
c906108c
SS
965
966 case LOC_LABEL:
967 case LOC_UNRESOLVED:
001083c6 968 error (_("internal: Unforseen case in m2lex()"));
c4093a6a
JM
969
970 default:
001083c6 971 error (_("unhandled token in m2lex()"));
c4093a6a 972 break;
c906108c
SS
973 }
974 }
975 else
976 {
025bb325 977 /* Built-in BOOLEAN type. This is sort of a hack. */
733f5eea 978 if (startswith (tokstart, "TRUE"))
c906108c
SS
979 {
980 yylval.ulval = 1;
981 return M2_TRUE;
982 }
733f5eea 983 else if (startswith (tokstart, "FALSE"))
c906108c
SS
984 {
985 yylval.ulval = 0;
986 return M2_FALSE;
987 }
988 }
989
025bb325 990 /* Must be another type of name... */
c906108c
SS
991 return NAME;
992 }
993}
994
410a0ff2 995int
790e2a12 996m2_language::parser (struct parser_state *par_state) const
410a0ff2 997{
410a0ff2 998 /* Setting up the parser state. */
eae49211 999 scoped_restore pstate_restore = make_scoped_restore (&pstate);
410a0ff2
SDJ
1000 gdb_assert (par_state != NULL);
1001 pstate = par_state;
28aaf3fd 1002 paren_depth = 0;
410a0ff2 1003
f1b8ceef
TT
1004 int result = yyparse ();
1005 if (!result)
1006 pstate->set_operation (pstate->pop ());
1007 return result;
410a0ff2
SDJ
1008}
1009
69d340c6 1010static void
a121b7c1 1011yyerror (const char *msg)
c906108c 1012{
5776fca3
TT
1013 if (pstate->prev_lexptr)
1014 pstate->lexptr = pstate->prev_lexptr;
065432a8 1015
5776fca3 1016 error (_("A %s in expression, near `%s'."), msg, pstate->lexptr);
c906108c 1017}
This page took 2.591791 seconds and 4 git commands to generate.