2008-12-22 Adam Denton <adenton@yahoo.com>
[deliverable/binutils-gdb.git] / gdb / c-exp.y
CommitLineData
c906108c 1/* YACC parser for C expressions, for GDB.
197e01b6 2 Copyright (C) 1986, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
9b254dd1
DJ
3 1998, 1999, 2000, 2003, 2004, 2006, 2007, 2008
4 Free Software Foundation, Inc.
c906108c
SS
5
6This file is part of GDB.
7
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2 of the License, or
11(at your option) any later version.
12
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with this program; if not, write to the Free Software
197e01b6
EZ
20Foundation, Inc., 51 Franklin Street, Fifth Floor,
21Boston, MA 02110-1301, USA. */
c906108c
SS
22
23/* Parse a C expression from text in a string,
24 and return the result as a struct expression pointer.
25 That structure contains arithmetic operations in reverse polish,
26 with constants represented by operations that are followed by special data.
27 See expression.h for the details of the format.
28 What is important here is that it can be built up sequentially
29 during the process of parsing; the lower levels of the tree always
30 come first in the result.
31
32 Note that malloc's and realloc's in this file are transformed to
33 xmalloc and xrealloc respectively by the same sed command in the
34 makefile that remaps any other malloc/realloc inserted by the parser
35 generator. Doing this with #defines and trying to control the interaction
36 with include files (<malloc.h> and <stdlib.h> for example) just became
37 too messy, particularly when such includes can be inserted at random
38 times by the parser generator. */
39
40%{
41
42#include "defs.h"
43#include "gdb_string.h"
44#include <ctype.h>
45#include "expression.h"
46#include "value.h"
47#include "parser-defs.h"
48#include "language.h"
49#include "c-lang.h"
50#include "bfd.h" /* Required by objfiles.h. */
51#include "symfile.h" /* Required by objfiles.h. */
52#include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
234b45d4 53#include "charset.h"
fe898f56 54#include "block.h"
79c2c32d 55#include "cp-support.h"
27bc4d80 56#include "dfp.h"
7c8adf68
TT
57#include "gdb_assert.h"
58#include "macroscope.h"
c906108c 59
3e79cecf
UW
60#define parse_type builtin_type (parse_gdbarch)
61
c906108c
SS
62/* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
63 as well as gratuitiously global symbol names, so we can have multiple
64 yacc generated parsers in gdb. Note that these are only the variables
65 produced by yacc. If other parser generators (bison, byacc, etc) produce
66 additional global names that conflict at link time, then those parser
67 generators need to be fixed instead of adding those names to this list. */
68
69#define yymaxdepth c_maxdepth
65d12d83 70#define yyparse c_parse_internal
c906108c
SS
71#define yylex c_lex
72#define yyerror c_error
73#define yylval c_lval
74#define yychar c_char
75#define yydebug c_debug
76#define yypact c_pact
77#define yyr1 c_r1
78#define yyr2 c_r2
79#define yydef c_def
80#define yychk c_chk
81#define yypgo c_pgo
82#define yyact c_act
83#define yyexca c_exca
84#define yyerrflag c_errflag
85#define yynerrs c_nerrs
86#define yyps c_ps
87#define yypv c_pv
88#define yys c_s
89#define yy_yys c_yys
90#define yystate c_state
91#define yytmp c_tmp
92#define yyv c_v
93#define yy_yyv c_yyv
94#define yyval c_val
95#define yylloc c_lloc
96#define yyreds c_reds /* With YYDEBUG defined */
97#define yytoks c_toks /* With YYDEBUG defined */
06891d83
JT
98#define yyname c_name /* With YYDEBUG defined */
99#define yyrule c_rule /* With YYDEBUG defined */
c906108c
SS
100#define yylhs c_yylhs
101#define yylen c_yylen
102#define yydefred c_yydefred
103#define yydgoto c_yydgoto
104#define yysindex c_yysindex
105#define yyrindex c_yyrindex
106#define yygindex c_yygindex
107#define yytable c_yytable
108#define yycheck c_yycheck
109
110#ifndef YYDEBUG
f461f5cf 111#define YYDEBUG 1 /* Default to yydebug support */
c906108c
SS
112#endif
113
f461f5cf
PM
114#define YYFPRINTF parser_fprintf
115
a14ed312 116int yyparse (void);
c906108c 117
a14ed312 118static int yylex (void);
c906108c 119
a14ed312 120void yyerror (char *);
c906108c
SS
121
122%}
123
124/* Although the yacc "value" of an expression is not used,
125 since the result is stored in the structure being created,
126 other node types do have values. */
127
128%union
129 {
130 LONGEST lval;
131 struct {
132 LONGEST val;
133 struct type *type;
134 } typed_val_int;
135 struct {
136 DOUBLEST dval;
137 struct type *type;
138 } typed_val_float;
27bc4d80
TJB
139 struct {
140 gdb_byte val[16];
141 struct type *type;
142 } typed_val_decfloat;
c906108c
SS
143 struct symbol *sym;
144 struct type *tval;
145 struct stoken sval;
146 struct ttype tsym;
147 struct symtoken ssym;
148 int voidval;
149 struct block *bval;
150 enum exp_opcode opcode;
151 struct internalvar *ivar;
152
153 struct type **tvec;
154 int *ivec;
155 }
156
157%{
158/* YYSTYPE gets defined by %union */
a14ed312 159static int parse_number (char *, int, int, YYSTYPE *);
c906108c
SS
160%}
161
162%type <voidval> exp exp1 type_exp start variable qualified_name lcurly
163%type <lval> rcurly
79c2c32d 164%type <tval> type typebase qualified_type
c906108c
SS
165%type <tvec> nonempty_typelist
166/* %type <bval> block */
167
168/* Fancy type parsing. */
169%type <voidval> func_mod direct_abs_decl abs_decl
170%type <tval> ptype
171%type <lval> array_mod
172
173%token <typed_val_int> INT
174%token <typed_val_float> FLOAT
27bc4d80 175%token <typed_val_decfloat> DECFLOAT
c906108c
SS
176
177/* Both NAME and TYPENAME tokens represent symbols in the input,
178 and both convey their data as strings.
179 But a TYPENAME is a string that happens to be defined as a typedef
180 or builtin type name (such as int or char)
181 and a NAME is any other symbol.
182 Contexts where this distinction is not important can use the
183 nonterminal "name", which matches either NAME or TYPENAME. */
184
185%token <sval> STRING
186%token <ssym> NAME /* BLOCKNAME defined below to give it higher precedence. */
65d12d83 187%token <voidval> COMPLETE
c906108c 188%token <tsym> TYPENAME
c209f847 189%type <sval> name string_exp
c906108c
SS
190%type <ssym> name_not_typename
191%type <tsym> typename
192
193/* A NAME_OR_INT is a symbol which is not known in the symbol table,
194 but which would parse as a valid number in the current input radix.
195 E.g. "c" when input_radix==16. Depending on the parse, it will be
196 turned into a name or into a number. */
197
198%token <ssym> NAME_OR_INT
199
200%token STRUCT CLASS UNION ENUM SIZEOF UNSIGNED COLONCOLON
201%token TEMPLATE
202%token ERROR
203
204/* Special type cases, put in to allow the parser to distinguish different
205 legal basetypes. */
206%token SIGNED_KEYWORD LONG SHORT INT_KEYWORD CONST_KEYWORD VOLATILE_KEYWORD DOUBLE_KEYWORD
207
208%token <voidval> VARIABLE
209
210%token <opcode> ASSIGN_MODIFY
211
212/* C++ */
c906108c
SS
213%token TRUEKEYWORD
214%token FALSEKEYWORD
215
216
217%left ','
218%left ABOVE_COMMA
219%right '=' ASSIGN_MODIFY
220%right '?'
221%left OROR
222%left ANDAND
223%left '|'
224%left '^'
225%left '&'
226%left EQUAL NOTEQUAL
227%left '<' '>' LEQ GEQ
228%left LSH RSH
229%left '@'
230%left '+' '-'
231%left '*' '/' '%'
232%right UNARY INCREMENT DECREMENT
233%right ARROW '.' '[' '('
234%token <ssym> BLOCKNAME
235%token <bval> FILENAME
236%type <bval> block
237%left COLONCOLON
238
239\f
240%%
241
242start : exp1
243 | type_exp
244 ;
245
246type_exp: type
247 { write_exp_elt_opcode(OP_TYPE);
248 write_exp_elt_type($1);
249 write_exp_elt_opcode(OP_TYPE);}
250 ;
251
252/* Expressions, including the comma operator. */
253exp1 : exp
254 | exp1 ',' exp
255 { write_exp_elt_opcode (BINOP_COMMA); }
256 ;
257
258/* Expressions, not including the comma operator. */
259exp : '*' exp %prec UNARY
260 { write_exp_elt_opcode (UNOP_IND); }
ef944135 261 ;
c906108c
SS
262
263exp : '&' exp %prec UNARY
264 { write_exp_elt_opcode (UNOP_ADDR); }
ef944135 265 ;
c906108c
SS
266
267exp : '-' exp %prec UNARY
268 { write_exp_elt_opcode (UNOP_NEG); }
269 ;
270
36e9969c
NS
271exp : '+' exp %prec UNARY
272 { write_exp_elt_opcode (UNOP_PLUS); }
273 ;
274
c906108c
SS
275exp : '!' exp %prec UNARY
276 { write_exp_elt_opcode (UNOP_LOGICAL_NOT); }
277 ;
278
279exp : '~' exp %prec UNARY
280 { write_exp_elt_opcode (UNOP_COMPLEMENT); }
281 ;
282
283exp : INCREMENT exp %prec UNARY
284 { write_exp_elt_opcode (UNOP_PREINCREMENT); }
285 ;
286
287exp : DECREMENT exp %prec UNARY
288 { write_exp_elt_opcode (UNOP_PREDECREMENT); }
289 ;
290
291exp : exp INCREMENT %prec UNARY
292 { write_exp_elt_opcode (UNOP_POSTINCREMENT); }
293 ;
294
295exp : exp DECREMENT %prec UNARY
296 { write_exp_elt_opcode (UNOP_POSTDECREMENT); }
297 ;
298
299exp : SIZEOF exp %prec UNARY
300 { write_exp_elt_opcode (UNOP_SIZEOF); }
301 ;
302
303exp : exp ARROW name
304 { write_exp_elt_opcode (STRUCTOP_PTR);
305 write_exp_string ($3);
306 write_exp_elt_opcode (STRUCTOP_PTR); }
307 ;
308
65d12d83
TT
309exp : exp ARROW name COMPLETE
310 { mark_struct_expression ();
311 write_exp_elt_opcode (STRUCTOP_PTR);
312 write_exp_string ($3);
313 write_exp_elt_opcode (STRUCTOP_PTR); }
314 ;
315
316exp : exp ARROW COMPLETE
317 { struct stoken s;
318 mark_struct_expression ();
319 write_exp_elt_opcode (STRUCTOP_PTR);
320 s.ptr = "";
321 s.length = 0;
322 write_exp_string (s);
323 write_exp_elt_opcode (STRUCTOP_PTR); }
324 ;
325
c906108c
SS
326exp : exp ARROW qualified_name
327 { /* exp->type::name becomes exp->*(&type::name) */
328 /* Note: this doesn't work if name is a
329 static member! FIXME */
330 write_exp_elt_opcode (UNOP_ADDR);
331 write_exp_elt_opcode (STRUCTOP_MPTR); }
332 ;
333
334exp : exp ARROW '*' exp
335 { write_exp_elt_opcode (STRUCTOP_MPTR); }
336 ;
337
338exp : exp '.' name
339 { write_exp_elt_opcode (STRUCTOP_STRUCT);
340 write_exp_string ($3);
341 write_exp_elt_opcode (STRUCTOP_STRUCT); }
342 ;
343
65d12d83
TT
344exp : exp '.' name COMPLETE
345 { mark_struct_expression ();
346 write_exp_elt_opcode (STRUCTOP_STRUCT);
347 write_exp_string ($3);
348 write_exp_elt_opcode (STRUCTOP_STRUCT); }
349 ;
350
351exp : exp '.' COMPLETE
352 { struct stoken s;
353 mark_struct_expression ();
354 write_exp_elt_opcode (STRUCTOP_STRUCT);
355 s.ptr = "";
356 s.length = 0;
357 write_exp_string (s);
358 write_exp_elt_opcode (STRUCTOP_STRUCT); }
359 ;
360
c906108c
SS
361exp : exp '.' qualified_name
362 { /* exp.type::name becomes exp.*(&type::name) */
363 /* Note: this doesn't work if name is a
364 static member! FIXME */
365 write_exp_elt_opcode (UNOP_ADDR);
366 write_exp_elt_opcode (STRUCTOP_MEMBER); }
367 ;
368
369exp : exp '.' '*' exp
370 { write_exp_elt_opcode (STRUCTOP_MEMBER); }
371 ;
372
373exp : exp '[' exp1 ']'
374 { write_exp_elt_opcode (BINOP_SUBSCRIPT); }
375 ;
376
377exp : exp '('
378 /* This is to save the value of arglist_len
379 being accumulated by an outer function call. */
380 { start_arglist (); }
381 arglist ')' %prec ARROW
382 { write_exp_elt_opcode (OP_FUNCALL);
383 write_exp_elt_longcst ((LONGEST) end_arglist ());
384 write_exp_elt_opcode (OP_FUNCALL); }
385 ;
386
387lcurly : '{'
388 { start_arglist (); }
389 ;
390
391arglist :
392 ;
393
394arglist : exp
395 { arglist_len = 1; }
396 ;
397
398arglist : arglist ',' exp %prec ABOVE_COMMA
399 { arglist_len++; }
400 ;
401
402rcurly : '}'
403 { $$ = end_arglist () - 1; }
404 ;
405exp : lcurly arglist rcurly %prec ARROW
406 { write_exp_elt_opcode (OP_ARRAY);
407 write_exp_elt_longcst ((LONGEST) 0);
408 write_exp_elt_longcst ((LONGEST) $3);
409 write_exp_elt_opcode (OP_ARRAY); }
410 ;
411
412exp : lcurly type rcurly exp %prec UNARY
413 { write_exp_elt_opcode (UNOP_MEMVAL);
414 write_exp_elt_type ($2);
415 write_exp_elt_opcode (UNOP_MEMVAL); }
416 ;
417
418exp : '(' type ')' exp %prec UNARY
419 { write_exp_elt_opcode (UNOP_CAST);
420 write_exp_elt_type ($2);
421 write_exp_elt_opcode (UNOP_CAST); }
422 ;
423
424exp : '(' exp1 ')'
425 { }
426 ;
427
428/* Binary operators in order of decreasing precedence. */
429
430exp : exp '@' exp
431 { write_exp_elt_opcode (BINOP_REPEAT); }
432 ;
433
434exp : exp '*' exp
435 { write_exp_elt_opcode (BINOP_MUL); }
436 ;
437
438exp : exp '/' exp
439 { write_exp_elt_opcode (BINOP_DIV); }
440 ;
441
442exp : exp '%' exp
443 { write_exp_elt_opcode (BINOP_REM); }
444 ;
445
446exp : exp '+' exp
447 { write_exp_elt_opcode (BINOP_ADD); }
448 ;
449
450exp : exp '-' exp
451 { write_exp_elt_opcode (BINOP_SUB); }
452 ;
453
454exp : exp LSH exp
455 { write_exp_elt_opcode (BINOP_LSH); }
456 ;
457
458exp : exp RSH exp
459 { write_exp_elt_opcode (BINOP_RSH); }
460 ;
461
462exp : exp EQUAL exp
463 { write_exp_elt_opcode (BINOP_EQUAL); }
464 ;
465
466exp : exp NOTEQUAL exp
467 { write_exp_elt_opcode (BINOP_NOTEQUAL); }
468 ;
469
470exp : exp LEQ exp
471 { write_exp_elt_opcode (BINOP_LEQ); }
472 ;
473
474exp : exp GEQ exp
475 { write_exp_elt_opcode (BINOP_GEQ); }
476 ;
477
478exp : exp '<' exp
479 { write_exp_elt_opcode (BINOP_LESS); }
480 ;
481
482exp : exp '>' exp
483 { write_exp_elt_opcode (BINOP_GTR); }
484 ;
485
486exp : exp '&' exp
487 { write_exp_elt_opcode (BINOP_BITWISE_AND); }
488 ;
489
490exp : exp '^' exp
491 { write_exp_elt_opcode (BINOP_BITWISE_XOR); }
492 ;
493
494exp : exp '|' exp
495 { write_exp_elt_opcode (BINOP_BITWISE_IOR); }
496 ;
497
498exp : exp ANDAND exp
499 { write_exp_elt_opcode (BINOP_LOGICAL_AND); }
500 ;
501
502exp : exp OROR exp
503 { write_exp_elt_opcode (BINOP_LOGICAL_OR); }
504 ;
505
506exp : exp '?' exp ':' exp %prec '?'
507 { write_exp_elt_opcode (TERNOP_COND); }
508 ;
509
510exp : exp '=' exp
511 { write_exp_elt_opcode (BINOP_ASSIGN); }
512 ;
513
514exp : exp ASSIGN_MODIFY exp
515 { write_exp_elt_opcode (BINOP_ASSIGN_MODIFY);
516 write_exp_elt_opcode ($2);
517 write_exp_elt_opcode (BINOP_ASSIGN_MODIFY); }
518 ;
519
520exp : INT
521 { write_exp_elt_opcode (OP_LONG);
522 write_exp_elt_type ($1.type);
523 write_exp_elt_longcst ((LONGEST)($1.val));
524 write_exp_elt_opcode (OP_LONG); }
525 ;
526
527exp : NAME_OR_INT
528 { YYSTYPE val;
529 parse_number ($1.stoken.ptr, $1.stoken.length, 0, &val);
530 write_exp_elt_opcode (OP_LONG);
531 write_exp_elt_type (val.typed_val_int.type);
532 write_exp_elt_longcst ((LONGEST)val.typed_val_int.val);
533 write_exp_elt_opcode (OP_LONG);
534 }
535 ;
536
537
538exp : FLOAT
539 { write_exp_elt_opcode (OP_DOUBLE);
540 write_exp_elt_type ($1.type);
541 write_exp_elt_dblcst ($1.dval);
542 write_exp_elt_opcode (OP_DOUBLE); }
543 ;
544
27bc4d80
TJB
545exp : DECFLOAT
546 { write_exp_elt_opcode (OP_DECFLOAT);
547 write_exp_elt_type ($1.type);
548 write_exp_elt_decfloatcst ($1.val);
549 write_exp_elt_opcode (OP_DECFLOAT); }
550 ;
551
c906108c
SS
552exp : variable
553 ;
554
555exp : VARIABLE
556 /* Already written by write_dollar_variable. */
557 ;
558
559exp : SIZEOF '(' type ')' %prec UNARY
560 { write_exp_elt_opcode (OP_LONG);
3e79cecf 561 write_exp_elt_type (parse_type->builtin_int);
c906108c
SS
562 CHECK_TYPEDEF ($3);
563 write_exp_elt_longcst ((LONGEST) TYPE_LENGTH ($3));
564 write_exp_elt_opcode (OP_LONG); }
565 ;
566
c209f847
TT
567string_exp:
568 STRING
569 {
570 /* We copy the string here, and not in the
571 lexer, to guarantee that we do not leak a
572 string. Note that we follow the
573 NUL-termination convention of the
574 lexer. */
575 $$.length = $1.length;
576 $$.ptr = malloc ($1.length + 1);
577 memcpy ($$.ptr, $1.ptr, $1.length + 1);
578 }
579
580 | string_exp STRING
581 {
582 /* Note that we NUL-terminate here, but just
583 for convenience. */
584 struct stoken t;
585 t.length = $1.length + $2.length;
586 t.ptr = malloc (t.length + 1);
587 memcpy (t.ptr, $1.ptr, $1.length);
588 memcpy (t.ptr + $1.length, $2.ptr, $2.length + 1);
589 free ($1.ptr);
590 $$ = t;
591 }
592 ;
593
594exp : string_exp
c906108c
SS
595 { /* C strings are converted into array constants with
596 an explicit null byte added at the end. Thus
597 the array upper bound is the string length.
598 There is no such thing in C as a completely empty
599 string. */
600 char *sp = $1.ptr; int count = $1.length;
601 while (count-- > 0)
602 {
603 write_exp_elt_opcode (OP_LONG);
3e79cecf 604 write_exp_elt_type (parse_type->builtin_char);
c906108c
SS
605 write_exp_elt_longcst ((LONGEST)(*sp++));
606 write_exp_elt_opcode (OP_LONG);
607 }
608 write_exp_elt_opcode (OP_LONG);
3e79cecf 609 write_exp_elt_type (parse_type->builtin_char);
c906108c
SS
610 write_exp_elt_longcst ((LONGEST)'\0');
611 write_exp_elt_opcode (OP_LONG);
612 write_exp_elt_opcode (OP_ARRAY);
613 write_exp_elt_longcst ((LONGEST) 0);
614 write_exp_elt_longcst ((LONGEST) ($1.length));
c209f847
TT
615 write_exp_elt_opcode (OP_ARRAY);
616 free ($1.ptr);
617 }
c906108c
SS
618 ;
619
620/* C++. */
c906108c
SS
621exp : TRUEKEYWORD
622 { write_exp_elt_opcode (OP_LONG);
3e79cecf 623 write_exp_elt_type (parse_type->builtin_bool);
c906108c
SS
624 write_exp_elt_longcst ((LONGEST) 1);
625 write_exp_elt_opcode (OP_LONG); }
626 ;
627
628exp : FALSEKEYWORD
629 { write_exp_elt_opcode (OP_LONG);
3e79cecf 630 write_exp_elt_type (parse_type->builtin_bool);
c906108c
SS
631 write_exp_elt_longcst ((LONGEST) 0);
632 write_exp_elt_opcode (OP_LONG); }
633 ;
634
635/* end of C++. */
636
637block : BLOCKNAME
638 {
639 if ($1.sym)
640 $$ = SYMBOL_BLOCK_VALUE ($1.sym);
641 else
642 error ("No file or function \"%s\".",
643 copy_name ($1.stoken));
644 }
645 | FILENAME
646 {
647 $$ = $1;
648 }
649 ;
650
651block : block COLONCOLON name
652 { struct symbol *tem
653 = lookup_symbol (copy_name ($3), $1,
2570f2b7 654 VAR_DOMAIN, (int *) NULL);
c906108c
SS
655 if (!tem || SYMBOL_CLASS (tem) != LOC_BLOCK)
656 error ("No function \"%s\" in specified context.",
657 copy_name ($3));
658 $$ = SYMBOL_BLOCK_VALUE (tem); }
659 ;
660
661variable: block COLONCOLON name
662 { struct symbol *sym;
663 sym = lookup_symbol (copy_name ($3), $1,
2570f2b7 664 VAR_DOMAIN, (int *) NULL);
c906108c
SS
665 if (sym == 0)
666 error ("No symbol \"%s\" in specified context.",
667 copy_name ($3));
668
669 write_exp_elt_opcode (OP_VAR_VALUE);
670 /* block_found is set by lookup_symbol. */
671 write_exp_elt_block (block_found);
672 write_exp_elt_sym (sym);
673 write_exp_elt_opcode (OP_VAR_VALUE); }
674 ;
675
676qualified_name: typebase COLONCOLON name
677 {
678 struct type *type = $1;
679 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
79c2c32d
DC
680 && TYPE_CODE (type) != TYPE_CODE_UNION
681 && TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
c906108c
SS
682 error ("`%s' is not defined as an aggregate type.",
683 TYPE_NAME (type));
684
685 write_exp_elt_opcode (OP_SCOPE);
686 write_exp_elt_type (type);
687 write_exp_string ($3);
688 write_exp_elt_opcode (OP_SCOPE);
689 }
690 | typebase COLONCOLON '~' name
691 {
692 struct type *type = $1;
693 struct stoken tmp_token;
694 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
79c2c32d
DC
695 && TYPE_CODE (type) != TYPE_CODE_UNION
696 && TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
c906108c
SS
697 error ("`%s' is not defined as an aggregate type.",
698 TYPE_NAME (type));
699
700 tmp_token.ptr = (char*) alloca ($4.length + 2);
701 tmp_token.length = $4.length + 1;
702 tmp_token.ptr[0] = '~';
703 memcpy (tmp_token.ptr+1, $4.ptr, $4.length);
704 tmp_token.ptr[tmp_token.length] = 0;
705
706 /* Check for valid destructor name. */
707 destructor_name_p (tmp_token.ptr, type);
708 write_exp_elt_opcode (OP_SCOPE);
709 write_exp_elt_type (type);
710 write_exp_string (tmp_token);
711 write_exp_elt_opcode (OP_SCOPE);
712 }
713 ;
714
715variable: qualified_name
716 | COLONCOLON name
717 {
718 char *name = copy_name ($2);
719 struct symbol *sym;
720 struct minimal_symbol *msymbol;
721
722 sym =
723 lookup_symbol (name, (const struct block *) NULL,
2570f2b7 724 VAR_DOMAIN, (int *) NULL);
c906108c
SS
725 if (sym)
726 {
727 write_exp_elt_opcode (OP_VAR_VALUE);
728 write_exp_elt_block (NULL);
729 write_exp_elt_sym (sym);
730 write_exp_elt_opcode (OP_VAR_VALUE);
731 break;
732 }
733
734 msymbol = lookup_minimal_symbol (name, NULL, NULL);
735 if (msymbol != NULL)
c841afd5
UW
736 write_exp_msymbol (msymbol);
737 else if (!have_full_symbols () && !have_partial_symbols ())
738 error ("No symbol table is loaded. Use the \"file\" command.");
c906108c 739 else
c841afd5 740 error ("No symbol \"%s\" in current context.", name);
c906108c
SS
741 }
742 ;
743
744variable: name_not_typename
745 { struct symbol *sym = $1.sym;
746
747 if (sym)
748 {
749 if (symbol_read_needs_frame (sym))
750 {
751 if (innermost_block == 0 ||
752 contained_in (block_found,
753 innermost_block))
754 innermost_block = block_found;
755 }
756
757 write_exp_elt_opcode (OP_VAR_VALUE);
758 /* We want to use the selected frame, not
759 another more inner frame which happens to
760 be in the same block. */
761 write_exp_elt_block (NULL);
762 write_exp_elt_sym (sym);
763 write_exp_elt_opcode (OP_VAR_VALUE);
764 }
765 else if ($1.is_a_field_of_this)
766 {
767 /* C++: it hangs off of `this'. Must
768 not inadvertently convert from a method call
769 to data ref. */
770 if (innermost_block == 0 ||
771 contained_in (block_found, innermost_block))
772 innermost_block = block_found;
773 write_exp_elt_opcode (OP_THIS);
774 write_exp_elt_opcode (OP_THIS);
775 write_exp_elt_opcode (STRUCTOP_PTR);
776 write_exp_string ($1.stoken);
777 write_exp_elt_opcode (STRUCTOP_PTR);
778 }
779 else
780 {
781 struct minimal_symbol *msymbol;
710122da 782 char *arg = copy_name ($1.stoken);
c906108c
SS
783
784 msymbol =
785 lookup_minimal_symbol (arg, NULL, NULL);
786 if (msymbol != NULL)
c841afd5 787 write_exp_msymbol (msymbol);
c906108c
SS
788 else if (!have_full_symbols () && !have_partial_symbols ())
789 error ("No symbol table is loaded. Use the \"file\" command.");
790 else
791 error ("No symbol \"%s\" in current context.",
792 copy_name ($1.stoken));
793 }
794 }
795 ;
796
47663de5
MS
797space_identifier : '@' NAME
798 { push_type_address_space (copy_name ($2.stoken));
799 push_type (tp_space_identifier);
800 }
801 ;
c906108c 802
47663de5
MS
803const_or_volatile: const_or_volatile_noopt
804 |
c906108c 805 ;
47663de5
MS
806
807cv_with_space_id : const_or_volatile space_identifier const_or_volatile
56e2d25a 808 ;
47663de5
MS
809
810const_or_volatile_or_space_identifier_noopt: cv_with_space_id
811 | const_or_volatile_noopt
56e2d25a 812 ;
47663de5
MS
813
814const_or_volatile_or_space_identifier:
815 const_or_volatile_or_space_identifier_noopt
816 |
56e2d25a 817 ;
47663de5 818
c906108c
SS
819abs_decl: '*'
820 { push_type (tp_pointer); $$ = 0; }
821 | '*' abs_decl
822 { push_type (tp_pointer); $$ = $2; }
823 | '&'
824 { push_type (tp_reference); $$ = 0; }
825 | '&' abs_decl
826 { push_type (tp_reference); $$ = $2; }
827 | direct_abs_decl
828 ;
829
830direct_abs_decl: '(' abs_decl ')'
831 { $$ = $2; }
832 | direct_abs_decl array_mod
833 {
834 push_type_int ($2);
835 push_type (tp_array);
836 }
837 | array_mod
838 {
839 push_type_int ($1);
840 push_type (tp_array);
841 $$ = 0;
842 }
843
844 | direct_abs_decl func_mod
845 { push_type (tp_function); }
846 | func_mod
847 { push_type (tp_function); }
848 ;
849
850array_mod: '[' ']'
851 { $$ = -1; }
852 | '[' INT ']'
853 { $$ = $2.val; }
854 ;
855
856func_mod: '(' ')'
857 { $$ = 0; }
858 | '(' nonempty_typelist ')'
8dbb1c65 859 { free ($2); $$ = 0; }
c906108c
SS
860 ;
861
a22229c4 862/* We used to try to recognize pointer to member types here, but
c906108c
SS
863 that didn't work (shift/reduce conflicts meant that these rules never
864 got executed). The problem is that
865 int (foo::bar::baz::bizzle)
866 is a function type but
867 int (foo::bar::baz::bizzle::*)
868 is a pointer to member type. Stroustrup loses again! */
869
870type : ptype
c906108c
SS
871 ;
872
873typebase /* Implements (approximately): (type-qualifier)* type-specifier */
874 : TYPENAME
875 { $$ = $1.type; }
876 | INT_KEYWORD
3e79cecf 877 { $$ = parse_type->builtin_int; }
c906108c 878 | LONG
3e79cecf 879 { $$ = parse_type->builtin_long; }
c906108c 880 | SHORT
3e79cecf 881 { $$ = parse_type->builtin_short; }
c906108c 882 | LONG INT_KEYWORD
3e79cecf 883 { $$ = parse_type->builtin_long; }
b2c4da81 884 | LONG SIGNED_KEYWORD INT_KEYWORD
3e79cecf 885 { $$ = parse_type->builtin_long; }
b2c4da81 886 | LONG SIGNED_KEYWORD
3e79cecf 887 { $$ = parse_type->builtin_long; }
b2c4da81 888 | SIGNED_KEYWORD LONG INT_KEYWORD
3e79cecf 889 { $$ = parse_type->builtin_long; }
c906108c 890 | UNSIGNED LONG INT_KEYWORD
3e79cecf 891 { $$ = parse_type->builtin_unsigned_long; }
b2c4da81 892 | LONG UNSIGNED INT_KEYWORD
3e79cecf 893 { $$ = parse_type->builtin_unsigned_long; }
b2c4da81 894 | LONG UNSIGNED
3e79cecf 895 { $$ = parse_type->builtin_unsigned_long; }
c906108c 896 | LONG LONG
3e79cecf 897 { $$ = parse_type->builtin_long_long; }
c906108c 898 | LONG LONG INT_KEYWORD
3e79cecf 899 { $$ = parse_type->builtin_long_long; }
b2c4da81 900 | LONG LONG SIGNED_KEYWORD INT_KEYWORD
3e79cecf 901 { $$ = parse_type->builtin_long_long; }
b2c4da81 902 | LONG LONG SIGNED_KEYWORD
3e79cecf 903 { $$ = parse_type->builtin_long_long; }
b2c4da81 904 | SIGNED_KEYWORD LONG LONG
3e79cecf 905 { $$ = parse_type->builtin_long_long; }
55baeb84 906 | SIGNED_KEYWORD LONG LONG INT_KEYWORD
3e79cecf 907 { $$ = parse_type->builtin_long_long; }
c906108c 908 | UNSIGNED LONG LONG
3e79cecf 909 { $$ = parse_type->builtin_unsigned_long_long; }
c906108c 910 | UNSIGNED LONG LONG INT_KEYWORD
3e79cecf 911 { $$ = parse_type->builtin_unsigned_long_long; }
b2c4da81 912 | LONG LONG UNSIGNED
3e79cecf 913 { $$ = parse_type->builtin_unsigned_long_long; }
b2c4da81 914 | LONG LONG UNSIGNED INT_KEYWORD
3e79cecf 915 { $$ = parse_type->builtin_unsigned_long_long; }
c906108c 916 | SHORT INT_KEYWORD
3e79cecf 917 { $$ = parse_type->builtin_short; }
b2c4da81 918 | SHORT SIGNED_KEYWORD INT_KEYWORD
3e79cecf 919 { $$ = parse_type->builtin_short; }
b2c4da81 920 | SHORT SIGNED_KEYWORD
3e79cecf 921 { $$ = parse_type->builtin_short; }
c906108c 922 | UNSIGNED SHORT INT_KEYWORD
3e79cecf 923 { $$ = parse_type->builtin_unsigned_short; }
b2c4da81 924 | SHORT UNSIGNED
3e79cecf 925 { $$ = parse_type->builtin_unsigned_short; }
b2c4da81 926 | SHORT UNSIGNED INT_KEYWORD
3e79cecf 927 { $$ = parse_type->builtin_unsigned_short; }
c906108c 928 | DOUBLE_KEYWORD
3e79cecf 929 { $$ = parse_type->builtin_double; }
c906108c 930 | LONG DOUBLE_KEYWORD
3e79cecf 931 { $$ = parse_type->builtin_long_double; }
c906108c
SS
932 | STRUCT name
933 { $$ = lookup_struct (copy_name ($2),
934 expression_context_block); }
935 | CLASS name
936 { $$ = lookup_struct (copy_name ($2),
937 expression_context_block); }
938 | UNION name
939 { $$ = lookup_union (copy_name ($2),
940 expression_context_block); }
941 | ENUM name
942 { $$ = lookup_enum (copy_name ($2),
943 expression_context_block); }
944 | UNSIGNED typename
945 { $$ = lookup_unsigned_typename (TYPE_NAME($2.type)); }
946 | UNSIGNED
3e79cecf 947 { $$ = parse_type->builtin_unsigned_int; }
c906108c
SS
948 | SIGNED_KEYWORD typename
949 { $$ = lookup_signed_typename (TYPE_NAME($2.type)); }
950 | SIGNED_KEYWORD
3e79cecf 951 { $$ = parse_type->builtin_int; }
c906108c
SS
952 /* It appears that this rule for templates is never
953 reduced; template recognition happens by lookahead
954 in the token processing code in yylex. */
955 | TEMPLATE name '<' type '>'
956 { $$ = lookup_template_type(copy_name($2), $4,
957 expression_context_block);
958 }
47663de5
MS
959 | const_or_volatile_or_space_identifier_noopt typebase
960 { $$ = follow_types ($2); }
961 | typebase const_or_volatile_or_space_identifier_noopt
962 { $$ = follow_types ($1); }
79c2c32d
DC
963 | qualified_type
964 ;
965
966/* FIXME: carlton/2003-09-25: This next bit leads to lots of
967 reduce-reduce conflicts, because the parser doesn't know whether or
968 not to use qualified_name or qualified_type: the rules are
969 identical. If the parser is parsing 'A::B::x', then, when it sees
970 the second '::', it knows that the expression to the left of it has
971 to be a type, so it uses qualified_type. But if it is parsing just
972 'A::B', then it doesn't have any way of knowing which rule to use,
973 so there's a reduce-reduce conflict; it picks qualified_name, since
974 that occurs earlier in this file than qualified_type.
975
976 There's no good way to fix this with the grammar as it stands; as
977 far as I can tell, some of the problems arise from ambiguities that
978 GDB introduces ('start' can be either an expression or a type), but
979 some of it is inherent to the nature of C++ (you want to treat the
980 input "(FOO)" fairly differently depending on whether FOO is an
981 expression or a type, and if FOO is a complex expression, this can
982 be hard to determine at the right time). Fortunately, it works
983 pretty well in most cases. For example, if you do 'ptype A::B',
984 where A::B is a nested type, then the parser will mistakenly
985 misidentify it as an expression; but evaluate_subexp will get
986 called with 'noside' set to EVAL_AVOID_SIDE_EFFECTS, and everything
987 will work out anyways. But there are situations where the parser
988 will get confused: the most common one that I've run into is when
989 you want to do
990
991 print *((A::B *) x)"
992
993 where the parser doesn't realize that A::B has to be a type until
994 it hits the first right paren, at which point it's too late. (The
995 workaround is to type "print *(('A::B' *) x)" instead.) (And
996 another solution is to fix our symbol-handling code so that the
997 user never wants to type something like that in the first place,
998 because we get all the types right without the user's help!)
999
1000 Perhaps we could fix this by making the lexer smarter. Some of
1001 this functionality used to be in the lexer, but in a way that
1002 worked even less well than the current solution: that attempt
1003 involved having the parser sometimes handle '::' and having the
1004 lexer sometimes handle it, and without a clear division of
1005 responsibility, it quickly degenerated into a big mess. Probably
1006 the eventual correct solution will give more of a role to the lexer
1007 (ideally via code that is shared between the lexer and
1008 decode_line_1), but I'm not holding my breath waiting for somebody
1009 to get around to cleaning this up... */
1010
79c2c32d
DC
1011qualified_type: typebase COLONCOLON name
1012 {
1013 struct type *type = $1;
1014 struct type *new_type;
1015 char *ncopy = alloca ($3.length + 1);
1016
1017 memcpy (ncopy, $3.ptr, $3.length);
1018 ncopy[$3.length] = '\0';
1019
63d06c5c
DC
1020 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
1021 && TYPE_CODE (type) != TYPE_CODE_UNION
1022 && TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
1023 error ("`%s' is not defined as an aggregate type.",
79c2c32d
DC
1024 TYPE_NAME (type));
1025
1026 new_type = cp_lookup_nested_type (type, ncopy,
1027 expression_context_block);
1028 if (new_type == NULL)
63d06c5c 1029 error ("No type \"%s\" within class or namespace \"%s\".",
79c2c32d
DC
1030 ncopy, TYPE_NAME (type));
1031
1032 $$ = new_type;
1033 }
c906108c
SS
1034 ;
1035
1036typename: TYPENAME
1037 | INT_KEYWORD
1038 {
1039 $$.stoken.ptr = "int";
1040 $$.stoken.length = 3;
3e79cecf 1041 $$.type = parse_type->builtin_int;
c906108c
SS
1042 }
1043 | LONG
1044 {
1045 $$.stoken.ptr = "long";
1046 $$.stoken.length = 4;
3e79cecf 1047 $$.type = parse_type->builtin_long;
c906108c
SS
1048 }
1049 | SHORT
1050 {
1051 $$.stoken.ptr = "short";
1052 $$.stoken.length = 5;
3e79cecf 1053 $$.type = parse_type->builtin_short;
c906108c
SS
1054 }
1055 ;
1056
1057nonempty_typelist
1058 : type
1059 { $$ = (struct type **) malloc (sizeof (struct type *) * 2);
1060 $<ivec>$[0] = 1; /* Number of types in vector */
1061 $$[1] = $1;
1062 }
1063 | nonempty_typelist ',' type
1064 { int len = sizeof (struct type *) * (++($<ivec>1[0]) + 1);
1065 $$ = (struct type **) realloc ((char *) $1, len);
1066 $$[$<ivec>$[0]] = $3;
1067 }
1068 ;
1069
47663de5
MS
1070ptype : typebase
1071 | ptype const_or_volatile_or_space_identifier abs_decl const_or_volatile_or_space_identifier
1072 { $$ = follow_types ($1); }
1073 ;
1074
1075const_and_volatile: CONST_KEYWORD VOLATILE_KEYWORD
1076 | VOLATILE_KEYWORD CONST_KEYWORD
1077 ;
1078
1079const_or_volatile_noopt: const_and_volatile
1080 { push_type (tp_const);
1081 push_type (tp_volatile);
1082 }
1083 | CONST_KEYWORD
1084 { push_type (tp_const); }
1085 | VOLATILE_KEYWORD
1086 { push_type (tp_volatile); }
1087 ;
1088
c906108c
SS
1089name : NAME { $$ = $1.stoken; }
1090 | BLOCKNAME { $$ = $1.stoken; }
1091 | TYPENAME { $$ = $1.stoken; }
1092 | NAME_OR_INT { $$ = $1.stoken; }
1093 ;
1094
1095name_not_typename : NAME
1096 | BLOCKNAME
1097/* These would be useful if name_not_typename was useful, but it is just
1098 a fake for "variable", so these cause reduce/reduce conflicts because
1099 the parser can't tell whether NAME_OR_INT is a name_not_typename (=variable,
1100 =exp) or just an exp. If name_not_typename was ever used in an lvalue
1101 context where only a name could occur, this might be useful.
1102 | NAME_OR_INT
1103 */
1104 ;
1105
1106%%
1107
1108/* Take care of parsing a number (anything that starts with a digit).
1109 Set yylval and return the token type; update lexptr.
1110 LEN is the number of characters in it. */
1111
1112/*** Needs some error checking for the float case ***/
1113
1114static int
1115parse_number (p, len, parsed_float, putithere)
710122da
DC
1116 char *p;
1117 int len;
c906108c
SS
1118 int parsed_float;
1119 YYSTYPE *putithere;
1120{
1121 /* FIXME: Shouldn't these be unsigned? We don't deal with negative values
1122 here, and we do kind of silly things like cast to unsigned. */
710122da
DC
1123 LONGEST n = 0;
1124 LONGEST prevn = 0;
c906108c
SS
1125 ULONGEST un;
1126
710122da
DC
1127 int i = 0;
1128 int c;
1129 int base = input_radix;
c906108c
SS
1130 int unsigned_p = 0;
1131
1132 /* Number of "L" suffixes encountered. */
1133 int long_p = 0;
1134
1135 /* We have found a "L" or "U" suffix. */
1136 int found_suffix = 0;
1137
1138 ULONGEST high_bit;
1139 struct type *signed_type;
1140 struct type *unsigned_type;
1141
1142 if (parsed_float)
1143 {
1144 /* It's a float since it contains a point or an exponent. */
fe9441f6
JK
1145 char *s;
1146 int num; /* number of tokens scanned by scanf */
1147 char saved_char;
27bc4d80
TJB
1148
1149 /* If it ends at "df", "dd" or "dl", take it as type of decimal floating
1150 point. Return DECFLOAT. */
1151
fe9441f6 1152 if (len >= 2 && p[len - 2] == 'd' && p[len - 1] == 'f')
27bc4d80
TJB
1153 {
1154 p[len - 2] = '\0';
1155 putithere->typed_val_decfloat.type
3e79cecf 1156 = parse_type->builtin_decfloat;
27bc4d80 1157 decimal_from_string (putithere->typed_val_decfloat.val, 4, p);
fe9441f6
JK
1158 p[len - 2] = 'd';
1159 return DECFLOAT;
27bc4d80
TJB
1160 }
1161
fe9441f6 1162 if (len >= 2 && p[len - 2] == 'd' && p[len - 1] == 'd')
27bc4d80
TJB
1163 {
1164 p[len - 2] = '\0';
1165 putithere->typed_val_decfloat.type
3e79cecf 1166 = parse_type->builtin_decdouble;
27bc4d80 1167 decimal_from_string (putithere->typed_val_decfloat.val, 8, p);
fe9441f6
JK
1168 p[len - 2] = 'd';
1169 return DECFLOAT;
27bc4d80
TJB
1170 }
1171
fe9441f6 1172 if (len >= 2 && p[len - 2] == 'd' && p[len - 1] == 'l')
27bc4d80
TJB
1173 {
1174 p[len - 2] = '\0';
1175 putithere->typed_val_decfloat.type
3e79cecf 1176 = parse_type->builtin_declong;
27bc4d80 1177 decimal_from_string (putithere->typed_val_decfloat.val, 16, p);
fe9441f6
JK
1178 p[len - 2] = 'd';
1179 return DECFLOAT;
27bc4d80
TJB
1180 }
1181
fe9441f6
JK
1182 s = malloc (len);
1183 saved_char = p[len];
1184 p[len] = 0; /* null-terminate the token */
689e4e2d 1185 num = sscanf (p, "%" DOUBLEST_SCAN_FORMAT "%s",
96c1eda2 1186 &putithere->typed_val_float.dval, s);
c906108c 1187 p[len] = saved_char; /* restore the input stream */
42969d33
WZ
1188
1189 if (num == 1)
1190 putithere->typed_val_float.type =
3e79cecf 1191 parse_type->builtin_double;
42969d33
WZ
1192
1193 if (num == 2 )
1194 {
1195 /* See if it has any float suffix: 'f' for float, 'l' for long
1196 double. */
1197 if (!strcasecmp (s, "f"))
1198 putithere->typed_val_float.type =
3e79cecf 1199 parse_type->builtin_float;
42969d33
WZ
1200 else if (!strcasecmp (s, "l"))
1201 putithere->typed_val_float.type =
3e79cecf 1202 parse_type->builtin_long_double;
42969d33 1203 else
348038cd
MS
1204 {
1205 free (s);
1206 return ERROR;
1207 }
42969d33 1208 }
c906108c 1209
348038cd 1210 free (s);
c906108c
SS
1211 return FLOAT;
1212 }
1213
1214 /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
1215 if (p[0] == '0')
1216 switch (p[1])
1217 {
1218 case 'x':
1219 case 'X':
1220 if (len >= 3)
1221 {
1222 p += 2;
1223 base = 16;
1224 len -= 2;
1225 }
1226 break;
1227
1228 case 't':
1229 case 'T':
1230 case 'd':
1231 case 'D':
1232 if (len >= 3)
1233 {
1234 p += 2;
1235 base = 10;
1236 len -= 2;
1237 }
1238 break;
1239
1240 default:
1241 base = 8;
1242 break;
1243 }
1244
1245 while (len-- > 0)
1246 {
1247 c = *p++;
1248 if (c >= 'A' && c <= 'Z')
1249 c += 'a' - 'A';
1250 if (c != 'l' && c != 'u')
1251 n *= base;
1252 if (c >= '0' && c <= '9')
1253 {
1254 if (found_suffix)
1255 return ERROR;
1256 n += i = c - '0';
1257 }
1258 else
1259 {
1260 if (base > 10 && c >= 'a' && c <= 'f')
1261 {
1262 if (found_suffix)
1263 return ERROR;
1264 n += i = c - 'a' + 10;
1265 }
1266 else if (c == 'l')
1267 {
1268 ++long_p;
1269 found_suffix = 1;
1270 }
1271 else if (c == 'u')
1272 {
1273 unsigned_p = 1;
1274 found_suffix = 1;
1275 }
1276 else
1277 return ERROR; /* Char not a digit */
1278 }
1279 if (i >= base)
1280 return ERROR; /* Invalid digit in this base */
1281
1282 /* Portably test for overflow (only works for nonzero values, so make
1283 a second check for zero). FIXME: Can't we just make n and prevn
1284 unsigned and avoid this? */
1285 if (c != 'l' && c != 'u' && (prevn >= n) && n != 0)
1286 unsigned_p = 1; /* Try something unsigned */
1287
1288 /* Portably test for unsigned overflow.
1289 FIXME: This check is wrong; for example it doesn't find overflow
1290 on 0x123456789 when LONGEST is 32 bits. */
1291 if (c != 'l' && c != 'u' && n != 0)
1292 {
1293 if ((unsigned_p && (ULONGEST) prevn >= (ULONGEST) n))
1294 error ("Numeric constant too large.");
1295 }
1296 prevn = n;
1297 }
1298
1299 /* An integer constant is an int, a long, or a long long. An L
1300 suffix forces it to be long; an LL suffix forces it to be long
1301 long. If not forced to a larger size, it gets the first type of
1302 the above that it fits in. To figure out whether it fits, we
1303 shift it right and see whether anything remains. Note that we
1304 can't shift sizeof (LONGEST) * HOST_CHAR_BIT bits or more in one
1305 operation, because many compilers will warn about such a shift
9a76efb6
UW
1306 (which always produces a zero result). Sometimes gdbarch_int_bit
1307 or gdbarch_long_bit will be that big, sometimes not. To deal with
c906108c
SS
1308 the case where it is we just always shift the value more than
1309 once, with fewer bits each time. */
1310
1311 un = (ULONGEST)n >> 2;
1312 if (long_p == 0
3e79cecf 1313 && (un >> (gdbarch_int_bit (parse_gdbarch) - 2)) == 0)
c906108c 1314 {
3e79cecf 1315 high_bit = ((ULONGEST)1) << (gdbarch_int_bit (parse_gdbarch) - 1);
c906108c
SS
1316
1317 /* A large decimal (not hex or octal) constant (between INT_MAX
1318 and UINT_MAX) is a long or unsigned long, according to ANSI,
1319 never an unsigned int, but this code treats it as unsigned
1320 int. This probably should be fixed. GCC gives a warning on
1321 such constants. */
1322
3e79cecf
UW
1323 unsigned_type = parse_type->builtin_unsigned_int;
1324 signed_type = parse_type->builtin_int;
c906108c
SS
1325 }
1326 else if (long_p <= 1
3e79cecf 1327 && (un >> (gdbarch_long_bit (parse_gdbarch) - 2)) == 0)
c906108c 1328 {
3e79cecf
UW
1329 high_bit = ((ULONGEST)1) << (gdbarch_long_bit (parse_gdbarch) - 1);
1330 unsigned_type = parse_type->builtin_unsigned_long;
1331 signed_type = parse_type->builtin_long;
c906108c
SS
1332 }
1333 else
1334 {
1335 int shift;
9a76efb6 1336 if (sizeof (ULONGEST) * HOST_CHAR_BIT
3e79cecf 1337 < gdbarch_long_long_bit (parse_gdbarch))
c906108c
SS
1338 /* A long long does not fit in a LONGEST. */
1339 shift = (sizeof (ULONGEST) * HOST_CHAR_BIT - 1);
1340 else
3e79cecf 1341 shift = (gdbarch_long_long_bit (parse_gdbarch) - 1);
c906108c 1342 high_bit = (ULONGEST) 1 << shift;
3e79cecf
UW
1343 unsigned_type = parse_type->builtin_unsigned_long_long;
1344 signed_type = parse_type->builtin_long_long;
c906108c
SS
1345 }
1346
1347 putithere->typed_val_int.val = n;
1348
1349 /* If the high bit of the worked out type is set then this number
1350 has to be unsigned. */
1351
1352 if (unsigned_p || (n & high_bit))
1353 {
1354 putithere->typed_val_int.type = unsigned_type;
1355 }
1356 else
1357 {
1358 putithere->typed_val_int.type = signed_type;
1359 }
1360
1361 return INT;
1362}
1363
1364struct token
1365{
1366 char *operator;
1367 int token;
1368 enum exp_opcode opcode;
1369};
1370
1371static const struct token tokentab3[] =
1372 {
1373 {">>=", ASSIGN_MODIFY, BINOP_RSH},
1374 {"<<=", ASSIGN_MODIFY, BINOP_LSH}
1375 };
1376
1377static const struct token tokentab2[] =
1378 {
1379 {"+=", ASSIGN_MODIFY, BINOP_ADD},
1380 {"-=", ASSIGN_MODIFY, BINOP_SUB},
1381 {"*=", ASSIGN_MODIFY, BINOP_MUL},
1382 {"/=", ASSIGN_MODIFY, BINOP_DIV},
1383 {"%=", ASSIGN_MODIFY, BINOP_REM},
1384 {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR},
1385 {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND},
1386 {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR},
1387 {"++", INCREMENT, BINOP_END},
1388 {"--", DECREMENT, BINOP_END},
1389 {"->", ARROW, BINOP_END},
1390 {"&&", ANDAND, BINOP_END},
1391 {"||", OROR, BINOP_END},
1392 {"::", COLONCOLON, BINOP_END},
1393 {"<<", LSH, BINOP_END},
1394 {">>", RSH, BINOP_END},
1395 {"==", EQUAL, BINOP_END},
1396 {"!=", NOTEQUAL, BINOP_END},
1397 {"<=", LEQ, BINOP_END},
1398 {">=", GEQ, BINOP_END}
1399 };
1400
7c8adf68
TT
1401/* When we find that lexptr (the global var defined in parse.c) is
1402 pointing at a macro invocation, we expand the invocation, and call
1403 scan_macro_expansion to save the old lexptr here and point lexptr
1404 into the expanded text. When we reach the end of that, we call
1405 end_macro_expansion to pop back to the value we saved here. The
1406 macro expansion code promises to return only fully-expanded text,
1407 so we don't need to "push" more than one level.
1408
1409 This is disgusting, of course. It would be cleaner to do all macro
1410 expansion beforehand, and then hand that to lexptr. But we don't
1411 really know where the expression ends. Remember, in a command like
1412
1413 (gdb) break *ADDRESS if CONDITION
1414
1415 we evaluate ADDRESS in the scope of the current frame, but we
1416 evaluate CONDITION in the scope of the breakpoint's location. So
1417 it's simply wrong to try to macro-expand the whole thing at once. */
1418static char *macro_original_text;
1419
1420/* We save all intermediate macro expansions on this obstack for the
1421 duration of a single parse. The expansion text may sometimes have
1422 to live past the end of the expansion, due to yacc lookahead.
1423 Rather than try to be clever about saving the data for a single
1424 token, we simply keep it all and delete it after parsing has
1425 completed. */
1426static struct obstack expansion_obstack;
1427
1428static void
1429scan_macro_expansion (char *expansion)
1430{
1431 char *copy;
1432
1433 /* We'd better not be trying to push the stack twice. */
1434 gdb_assert (! macro_original_text);
1435
1436 /* Copy to the obstack, and then free the intermediate
1437 expansion. */
1438 copy = obstack_copy0 (&expansion_obstack, expansion, strlen (expansion));
1439 xfree (expansion);
1440
1441 /* Save the old lexptr value, so we can return to it when we're done
1442 parsing the expanded text. */
1443 macro_original_text = lexptr;
1444 lexptr = copy;
1445}
1446
1447
1448static int
1449scanning_macro_expansion (void)
1450{
1451 return macro_original_text != 0;
1452}
1453
1454
1455static void
1456finished_macro_expansion (void)
1457{
1458 /* There'd better be something to pop back to. */
1459 gdb_assert (macro_original_text);
1460
1461 /* Pop back to the original text. */
1462 lexptr = macro_original_text;
1463 macro_original_text = 0;
1464}
1465
1466
1467static void
1468scan_macro_cleanup (void *dummy)
1469{
1470 if (macro_original_text)
1471 finished_macro_expansion ();
1472
1473 obstack_free (&expansion_obstack, NULL);
1474}
1475
1476
1477/* The scope used for macro expansion. */
1478static struct macro_scope *expression_macro_scope;
1479
65d12d83
TT
1480/* This is set if a NAME token appeared at the very end of the input
1481 string, with no whitespace separating the name from the EOF. This
1482 is used only when parsing to do field name completion. */
1483static int saw_name_at_eof;
1484
1485/* This is set if the previously-returned token was a structure
1486 operator -- either '.' or ARROW. This is used only when parsing to
1487 do field name completion. */
1488static int last_was_structop;
1489
c906108c
SS
1490/* Read one token, getting characters through lexptr. */
1491
1492static int
1493yylex ()
1494{
1495 int c;
1496 int namelen;
1497 unsigned int i;
1498 char *tokstart;
1499 char *tokptr;
1500 int tempbufindex;
1501 static char *tempbuf;
1502 static int tempbufsize;
c906108c
SS
1503 char * token_string = NULL;
1504 int class_prefix = 0;
65d12d83
TT
1505 int saw_structop = last_was_structop;
1506
1507 last_was_structop = 0;
1508
c906108c
SS
1509 retry:
1510
84f0252a
JB
1511 /* Check if this is a macro invocation that we need to expand. */
1512 if (! scanning_macro_expansion ())
1513 {
1514 char *expanded = macro_expand_next (&lexptr,
7c8adf68
TT
1515 standard_macro_lookup,
1516 expression_macro_scope);
84f0252a
JB
1517
1518 if (expanded)
1519 scan_macro_expansion (expanded);
1520 }
1521
665132f9 1522 prev_lexptr = lexptr;
c906108c
SS
1523
1524 tokstart = lexptr;
1525 /* See if it is a special token of length 3. */
1526 for (i = 0; i < sizeof tokentab3 / sizeof tokentab3[0]; i++)
bf896cb0 1527 if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
c906108c
SS
1528 {
1529 lexptr += 3;
1530 yylval.opcode = tokentab3[i].opcode;
1531 return tokentab3[i].token;
1532 }
1533
1534 /* See if it is a special token of length 2. */
1535 for (i = 0; i < sizeof tokentab2 / sizeof tokentab2[0]; i++)
bf896cb0 1536 if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
c906108c
SS
1537 {
1538 lexptr += 2;
1539 yylval.opcode = tokentab2[i].opcode;
37cd5d19 1540 if (in_parse_field && tokentab2[i].token == ARROW)
65d12d83 1541 last_was_structop = 1;
c906108c
SS
1542 return tokentab2[i].token;
1543 }
1544
1545 switch (c = *tokstart)
1546 {
1547 case 0:
84f0252a
JB
1548 /* If we were just scanning the result of a macro expansion,
1549 then we need to resume scanning the original text.
65d12d83
TT
1550 If we're parsing for field name completion, and the previous
1551 token allows such completion, return a COMPLETE token.
84f0252a
JB
1552 Otherwise, we were already scanning the original text, and
1553 we're really done. */
1554 if (scanning_macro_expansion ())
1555 {
1556 finished_macro_expansion ();
1557 goto retry;
1558 }
65d12d83
TT
1559 else if (saw_name_at_eof)
1560 {
1561 saw_name_at_eof = 0;
1562 return COMPLETE;
1563 }
1564 else if (saw_structop)
1565 return COMPLETE;
84f0252a
JB
1566 else
1567 return 0;
c906108c
SS
1568
1569 case ' ':
1570 case '\t':
1571 case '\n':
1572 lexptr++;
1573 goto retry;
1574
1575 case '\'':
1576 /* We either have a character constant ('0' or '\177' for example)
1577 or we have a quoted symbol reference ('foo(int,int)' in C++
1578 for example). */
1579 lexptr++;
1580 c = *lexptr++;
1581 if (c == '\\')
1582 c = parse_escape (&lexptr);
1583 else if (c == '\'')
1584 error ("Empty character constant.");
234b45d4
KB
1585 else if (! host_char_to_target (c, &c))
1586 {
1587 int toklen = lexptr - tokstart + 1;
1588 char *tok = alloca (toklen + 1);
1589 memcpy (tok, tokstart, toklen);
1590 tok[toklen] = '\0';
1591 error ("There is no character corresponding to %s in the target "
1592 "character set `%s'.", tok, target_charset ());
1593 }
c906108c
SS
1594
1595 yylval.typed_val_int.val = c;
3e79cecf 1596 yylval.typed_val_int.type = parse_type->builtin_char;
c906108c
SS
1597
1598 c = *lexptr++;
1599 if (c != '\'')
1600 {
1601 namelen = skip_quoted (tokstart) - tokstart;
1602 if (namelen > 2)
1603 {
1604 lexptr = tokstart + namelen;
c906108c
SS
1605 if (lexptr[-1] != '\'')
1606 error ("Unmatched single quote.");
1607 namelen -= 2;
1608 tokstart++;
1609 goto tryname;
1610 }
1611 error ("Invalid character constant.");
1612 }
1613 return INT;
1614
1615 case '(':
1616 paren_depth++;
1617 lexptr++;
1618 return c;
1619
1620 case ')':
1621 if (paren_depth == 0)
1622 return 0;
1623 paren_depth--;
1624 lexptr++;
1625 return c;
1626
1627 case ',':
84f0252a
JB
1628 if (comma_terminates
1629 && paren_depth == 0
1630 && ! scanning_macro_expansion ())
c906108c
SS
1631 return 0;
1632 lexptr++;
1633 return c;
1634
1635 case '.':
1636 /* Might be a floating point number. */
1637 if (lexptr[1] < '0' || lexptr[1] > '9')
65d12d83
TT
1638 {
1639 if (in_parse_field)
1640 last_was_structop = 1;
1641 goto symbol; /* Nope, must be a symbol. */
1642 }
c906108c
SS
1643 /* FALL THRU into number case. */
1644
1645 case '0':
1646 case '1':
1647 case '2':
1648 case '3':
1649 case '4':
1650 case '5':
1651 case '6':
1652 case '7':
1653 case '8':
1654 case '9':
1655 {
1656 /* It's a number. */
1657 int got_dot = 0, got_e = 0, toktype;
710122da 1658 char *p = tokstart;
c906108c
SS
1659 int hex = input_radix > 10;
1660
1661 if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
1662 {
1663 p += 2;
1664 hex = 1;
1665 }
1666 else if (c == '0' && (p[1]=='t' || p[1]=='T' || p[1]=='d' || p[1]=='D'))
1667 {
1668 p += 2;
1669 hex = 0;
1670 }
1671
1672 for (;; ++p)
1673 {
1674 /* This test includes !hex because 'e' is a valid hex digit
1675 and thus does not indicate a floating point number when
1676 the radix is hex. */
1677 if (!hex && !got_e && (*p == 'e' || *p == 'E'))
1678 got_dot = got_e = 1;
1679 /* This test does not include !hex, because a '.' always indicates
1680 a decimal floating point number regardless of the radix. */
1681 else if (!got_dot && *p == '.')
1682 got_dot = 1;
1683 else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
1684 && (*p == '-' || *p == '+'))
1685 /* This is the sign of the exponent, not the end of the
1686 number. */
1687 continue;
1688 /* We will take any letters or digits. parse_number will
1689 complain if past the radix, or if L or U are not final. */
1690 else if ((*p < '0' || *p > '9')
1691 && ((*p < 'a' || *p > 'z')
1692 && (*p < 'A' || *p > 'Z')))
1693 break;
1694 }
1695 toktype = parse_number (tokstart, p - tokstart, got_dot|got_e, &yylval);
1696 if (toktype == ERROR)
1697 {
1698 char *err_copy = (char *) alloca (p - tokstart + 1);
1699
1700 memcpy (err_copy, tokstart, p - tokstart);
1701 err_copy[p - tokstart] = 0;
1702 error ("Invalid number \"%s\".", err_copy);
1703 }
1704 lexptr = p;
1705 return toktype;
1706 }
1707
1708 case '+':
1709 case '-':
1710 case '*':
1711 case '/':
1712 case '%':
1713 case '|':
1714 case '&':
1715 case '^':
1716 case '~':
1717 case '!':
1718 case '@':
1719 case '<':
1720 case '>':
1721 case '[':
1722 case ']':
1723 case '?':
1724 case ':':
1725 case '=':
1726 case '{':
1727 case '}':
1728 symbol:
1729 lexptr++;
1730 return c;
1731
1732 case '"':
1733
1734 /* Build the gdb internal form of the input string in tempbuf,
1735 translating any standard C escape forms seen. Note that the
1736 buffer is null byte terminated *only* for the convenience of
1737 debugging gdb itself and printing the buffer contents when
1738 the buffer contains no embedded nulls. Gdb does not depend
1739 upon the buffer being null byte terminated, it uses the length
1740 string instead. This allows gdb to handle C strings (as well
1741 as strings in other languages) with embedded null bytes */
1742
1743 tokptr = ++tokstart;
1744 tempbufindex = 0;
1745
1746 do {
234b45d4
KB
1747 char *char_start_pos = tokptr;
1748
c906108c
SS
1749 /* Grow the static temp buffer if necessary, including allocating
1750 the first one on demand. */
1751 if (tempbufindex + 1 >= tempbufsize)
1752 {
1753 tempbuf = (char *) realloc (tempbuf, tempbufsize += 64);
1754 }
1755 switch (*tokptr)
1756 {
1757 case '\0':
1758 case '"':
1759 /* Do nothing, loop will terminate. */
1760 break;
1761 case '\\':
1762 tokptr++;
1763 c = parse_escape (&tokptr);
1764 if (c == -1)
1765 {
1766 continue;
1767 }
1768 tempbuf[tempbufindex++] = c;
1769 break;
1770 default:
234b45d4
KB
1771 c = *tokptr++;
1772 if (! host_char_to_target (c, &c))
1773 {
1774 int len = tokptr - char_start_pos;
1775 char *copy = alloca (len + 1);
1776 memcpy (copy, char_start_pos, len);
1777 copy[len] = '\0';
1778
1779 error ("There is no character corresponding to `%s' "
1780 "in the target character set `%s'.",
1781 copy, target_charset ());
1782 }
1783 tempbuf[tempbufindex++] = c;
c906108c
SS
1784 break;
1785 }
1786 } while ((*tokptr != '"') && (*tokptr != '\0'));
1787 if (*tokptr++ != '"')
1788 {
1789 error ("Unterminated string in expression.");
1790 }
1791 tempbuf[tempbufindex] = '\0'; /* See note above */
1792 yylval.sval.ptr = tempbuf;
1793 yylval.sval.length = tempbufindex;
1794 lexptr = tokptr;
1795 return (STRING);
1796 }
1797
1798 if (!(c == '_' || c == '$'
1799 || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))
1800 /* We must have come across a bad character (e.g. ';'). */
1801 error ("Invalid character '%c' in expression.", c);
1802
1803 /* It's a name. See how long it is. */
1804 namelen = 0;
1805 for (c = tokstart[namelen];
1806 (c == '_' || c == '$' || (c >= '0' && c <= '9')
1807 || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '<');)
1808 {
1809 /* Template parameter lists are part of the name.
1810 FIXME: This mishandles `print $a<4&&$a>3'. */
1811
1812 if (c == '<')
1813 {
c906108c
SS
1814 /* Scan ahead to get rest of the template specification. Note
1815 that we look ahead only when the '<' adjoins non-whitespace
1816 characters; for comparison expressions, e.g. "a < b > c",
1817 there must be spaces before the '<', etc. */
1818
1819 char * p = find_template_name_end (tokstart + namelen);
1820 if (p)
1821 namelen = p - tokstart;
1822 break;
c906108c
SS
1823 }
1824 c = tokstart[++namelen];
1825 }
1826
84f0252a
JB
1827 /* The token "if" terminates the expression and is NOT removed from
1828 the input stream. It doesn't count if it appears in the
1829 expansion of a macro. */
1830 if (namelen == 2
1831 && tokstart[0] == 'i'
1832 && tokstart[1] == 'f'
1833 && ! scanning_macro_expansion ())
c906108c
SS
1834 {
1835 return 0;
1836 }
1837
1838 lexptr += namelen;
1839
1840 tryname:
1841
1842 /* Catch specific keywords. Should be done with a data structure. */
1843 switch (namelen)
1844 {
1845 case 8:
bf896cb0 1846 if (strncmp (tokstart, "unsigned", 8) == 0)
c906108c 1847 return UNSIGNED;
3e79cecf 1848 if (parse_language->la_language == language_cplus
bf896cb0 1849 && strncmp (tokstart, "template", 8) == 0)
c906108c 1850 return TEMPLATE;
bf896cb0 1851 if (strncmp (tokstart, "volatile", 8) == 0)
c906108c
SS
1852 return VOLATILE_KEYWORD;
1853 break;
1854 case 6:
bf896cb0 1855 if (strncmp (tokstart, "struct", 6) == 0)
c906108c 1856 return STRUCT;
bf896cb0 1857 if (strncmp (tokstart, "signed", 6) == 0)
c906108c 1858 return SIGNED_KEYWORD;
bf896cb0 1859 if (strncmp (tokstart, "sizeof", 6) == 0)
c906108c 1860 return SIZEOF;
bf896cb0 1861 if (strncmp (tokstart, "double", 6) == 0)
c906108c
SS
1862 return DOUBLE_KEYWORD;
1863 break;
1864 case 5:
3e79cecf 1865 if (parse_language->la_language == language_cplus)
c906108c 1866 {
bf896cb0 1867 if (strncmp (tokstart, "false", 5) == 0)
c906108c 1868 return FALSEKEYWORD;
bf896cb0 1869 if (strncmp (tokstart, "class", 5) == 0)
c906108c
SS
1870 return CLASS;
1871 }
bf896cb0 1872 if (strncmp (tokstart, "union", 5) == 0)
c906108c 1873 return UNION;
bf896cb0 1874 if (strncmp (tokstart, "short", 5) == 0)
c906108c 1875 return SHORT;
bf896cb0 1876 if (strncmp (tokstart, "const", 5) == 0)
c906108c
SS
1877 return CONST_KEYWORD;
1878 break;
1879 case 4:
bf896cb0 1880 if (strncmp (tokstart, "enum", 4) == 0)
c906108c 1881 return ENUM;
bf896cb0 1882 if (strncmp (tokstart, "long", 4) == 0)
c906108c 1883 return LONG;
3e79cecf 1884 if (parse_language->la_language == language_cplus)
c906108c 1885 {
bf896cb0 1886 if (strncmp (tokstart, "true", 4) == 0)
c906108c 1887 return TRUEKEYWORD;
c906108c
SS
1888 }
1889 break;
1890 case 3:
bf896cb0 1891 if (strncmp (tokstart, "int", 3) == 0)
c906108c
SS
1892 return INT_KEYWORD;
1893 break;
1894 default:
1895 break;
1896 }
1897
1898 yylval.sval.ptr = tokstart;
1899 yylval.sval.length = namelen;
1900
1901 if (*tokstart == '$')
1902 {
1903 write_dollar_variable (yylval.sval);
1904 return VARIABLE;
1905 }
1906
c906108c
SS
1907 /* Use token-type BLOCKNAME for symbols that happen to be defined as
1908 functions or symtabs. If this is not so, then ...
1909 Use token-type TYPENAME for symbols that happen to be defined
1910 currently as names of types; NAME for other symbols.
1911 The caller is not constrained to care about the distinction. */
1912 {
1913 char *tmp = copy_name (yylval.sval);
1914 struct symbol *sym;
1915 int is_a_field_of_this = 0;
1916 int hextype;
1917
1918 sym = lookup_symbol (tmp, expression_context_block,
176620f1 1919 VAR_DOMAIN,
3e79cecf 1920 parse_language->la_language == language_cplus
2570f2b7 1921 ? &is_a_field_of_this : (int *) NULL);
c906108c
SS
1922 /* Call lookup_symtab, not lookup_partial_symtab, in case there are
1923 no psymtabs (coff, xcoff, or some future change to blow away the
1924 psymtabs once once symbols are read). */
1925 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
1926 {
1927 yylval.ssym.sym = sym;
1928 yylval.ssym.is_a_field_of_this = is_a_field_of_this;
1929 return BLOCKNAME;
1930 }
1931 else if (!sym)
1932 { /* See if it's a file name. */
1933 struct symtab *symtab;
1934
1935 symtab = lookup_symtab (tmp);
1936
1937 if (symtab)
1938 {
1939 yylval.bval = BLOCKVECTOR_BLOCK (BLOCKVECTOR (symtab), STATIC_BLOCK);
1940 return FILENAME;
1941 }
1942 }
1943
1944 if (sym && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
1945 {
79c2c32d
DC
1946 /* NOTE: carlton/2003-09-25: There used to be code here to
1947 handle nested types. It didn't work very well. See the
1948 comment before qualified_type for more info. */
c906108c 1949 yylval.tsym.type = SYMBOL_TYPE (sym);
c906108c
SS
1950 return TYPENAME;
1951 }
54a5b07d 1952 yylval.tsym.type
3e79cecf
UW
1953 = language_lookup_primitive_type_by_name (parse_language,
1954 parse_gdbarch, tmp);
54a5b07d 1955 if (yylval.tsym.type != NULL)
47663de5 1956 return TYPENAME;
c906108c
SS
1957
1958 /* Input names that aren't symbols but ARE valid hex numbers,
1959 when the input radix permits them, can be names or numbers
1960 depending on the parse. Note we support radixes > 16 here. */
1961 if (!sym &&
1962 ((tokstart[0] >= 'a' && tokstart[0] < 'a' + input_radix - 10) ||
1963 (tokstart[0] >= 'A' && tokstart[0] < 'A' + input_radix - 10)))
1964 {
1965 YYSTYPE newlval; /* Its value is ignored. */
1966 hextype = parse_number (tokstart, namelen, 0, &newlval);
1967 if (hextype == INT)
1968 {
1969 yylval.ssym.sym = sym;
1970 yylval.ssym.is_a_field_of_this = is_a_field_of_this;
1971 return NAME_OR_INT;
1972 }
1973 }
1974
1975 /* Any other kind of symbol */
1976 yylval.ssym.sym = sym;
1977 yylval.ssym.is_a_field_of_this = is_a_field_of_this;
65d12d83
TT
1978 if (in_parse_field && *lexptr == '\0')
1979 saw_name_at_eof = 1;
c906108c
SS
1980 return NAME;
1981 }
1982}
1983
65d12d83
TT
1984int
1985c_parse (void)
1986{
7c8adf68
TT
1987 int result;
1988 struct cleanup *back_to = make_cleanup (free_current_contents,
1989 &expression_macro_scope);
1990
1991 /* Set up the scope for macro expansion. */
1992 expression_macro_scope = NULL;
1993
1994 if (expression_context_block)
1995 expression_macro_scope
1996 = sal_macro_scope (find_pc_line (expression_context_pc, 0));
1997 else
1998 expression_macro_scope = default_macro_scope ();
1999 if (! expression_macro_scope)
2000 expression_macro_scope = user_macro_scope ();
2001
2002 /* Initialize macro expansion code. */
2003 obstack_init (&expansion_obstack);
2004 gdb_assert (! macro_original_text);
2005 make_cleanup (scan_macro_cleanup, 0);
2006
2007 /* Initialize some state used by the lexer. */
65d12d83
TT
2008 last_was_structop = 0;
2009 saw_name_at_eof = 0;
7c8adf68
TT
2010
2011 result = yyparse ();
2012 do_cleanups (back_to);
2013 return result;
65d12d83
TT
2014}
2015
7c8adf68 2016
c906108c
SS
2017void
2018yyerror (msg)
2019 char *msg;
2020{
665132f9
MS
2021 if (prev_lexptr)
2022 lexptr = prev_lexptr;
2023
c906108c
SS
2024 error ("A %s in expression, near `%s'.", (msg ? msg : "error"), lexptr);
2025}
This page took 0.651692 seconds and 4 git commands to generate.