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