buildsym API cleanup
[deliverable/binutils-gdb.git] / gdb / c-exp.y
CommitLineData
c906108c 1/* YACC parser for C expressions, for GDB.
ecd75fc8 2 Copyright (C) 1986-2014 Free Software Foundation, Inc.
c906108c 3
5b1ba0e5 4 This file is part of GDB.
c906108c 5
5b1ba0e5
NS
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
c906108c 10
5b1ba0e5
NS
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
c906108c 15
5b1ba0e5
NS
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
18
19/* Parse a C expression from text in a string,
20 and return the result as a struct expression pointer.
21 That structure contains arithmetic operations in reverse polish,
22 with constants represented by operations that are followed by special data.
23 See expression.h for the details of the format.
24 What is important here is that it can be built up sequentially
25 during the process of parsing; the lower levels of the tree always
26 come first in the result.
27
28 Note that malloc's and realloc's in this file are transformed to
29 xmalloc and xrealloc respectively by the same sed command in the
30 makefile that remaps any other malloc/realloc inserted by the parser
31 generator. Doing this with #defines and trying to control the interaction
32 with include files (<malloc.h> and <stdlib.h> for example) just became
33 too messy, particularly when such includes can be inserted at random
34 times by the parser generator. */
35
36%{
37
38#include "defs.h"
c906108c
SS
39#include <ctype.h>
40#include "expression.h"
41#include "value.h"
42#include "parser-defs.h"
43#include "language.h"
44#include "c-lang.h"
45#include "bfd.h" /* Required by objfiles.h. */
46#include "symfile.h" /* Required by objfiles.h. */
47#include "objfiles.h" /* For have_full_symbols and have_partial_symbols */
234b45d4 48#include "charset.h"
fe898f56 49#include "block.h"
79c2c32d 50#include "cp-support.h"
27bc4d80 51#include "dfp.h"
7c8adf68 52#include "macroscope.h"
f2e8016f 53#include "objc-lang.h"
79d43c61 54#include "typeprint.h"
6592e36f 55#include "cp-abi.h"
c906108c 56
410a0ff2 57#define parse_type(ps) builtin_type (parse_gdbarch (ps))
3e79cecf 58
c906108c
SS
59/* Remap normal yacc parser interface names (yyparse, yylex, yyerror, etc),
60 as well as gratuitiously global symbol names, so we can have multiple
61 yacc generated parsers in gdb. Note that these are only the variables
62 produced by yacc. If other parser generators (bison, byacc, etc) produce
63 additional global names that conflict at link time, then those parser
64 generators need to be fixed instead of adding those names to this list. */
65
66#define yymaxdepth c_maxdepth
65d12d83 67#define yyparse c_parse_internal
c906108c
SS
68#define yylex c_lex
69#define yyerror c_error
70#define yylval c_lval
71#define yychar c_char
72#define yydebug c_debug
73#define yypact c_pact
74#define yyr1 c_r1
75#define yyr2 c_r2
76#define yydef c_def
77#define yychk c_chk
78#define yypgo c_pgo
79#define yyact c_act
80#define yyexca c_exca
81#define yyerrflag c_errflag
82#define yynerrs c_nerrs
83#define yyps c_ps
84#define yypv c_pv
85#define yys c_s
86#define yy_yys c_yys
87#define yystate c_state
88#define yytmp c_tmp
89#define yyv c_v
90#define yy_yyv c_yyv
91#define yyval c_val
92#define yylloc c_lloc
93#define yyreds c_reds /* With YYDEBUG defined */
94#define yytoks c_toks /* With YYDEBUG defined */
06891d83
JT
95#define yyname c_name /* With YYDEBUG defined */
96#define yyrule c_rule /* With YYDEBUG defined */
c906108c
SS
97#define yylhs c_yylhs
98#define yylen c_yylen
99#define yydefred c_yydefred
100#define yydgoto c_yydgoto
101#define yysindex c_yysindex
102#define yyrindex c_yyrindex
103#define yygindex c_yygindex
104#define yytable c_yytable
105#define yycheck c_yycheck
a7aa5b8a
MK
106#define yyss c_yyss
107#define yysslim c_yysslim
108#define yyssp c_yyssp
109#define yystacksize c_yystacksize
110#define yyvs c_yyvs
111#define yyvsp c_yyvsp
c906108c
SS
112
113#ifndef YYDEBUG
f461f5cf 114#define YYDEBUG 1 /* Default to yydebug support */
c906108c
SS
115#endif
116
f461f5cf
PM
117#define YYFPRINTF parser_fprintf
118
410a0ff2
SDJ
119/* The state of the parser, used internally when we are parsing the
120 expression. */
121
122static struct parser_state *pstate = NULL;
123
a14ed312 124int yyparse (void);
c906108c 125
a14ed312 126static int yylex (void);
c906108c 127
a14ed312 128void yyerror (char *);
c906108c 129
3d567982
TT
130static int type_aggregate_p (struct type *);
131
c906108c
SS
132%}
133
134/* Although the yacc "value" of an expression is not used,
135 since the result is stored in the structure being created,
136 other node types do have values. */
137
138%union
139 {
140 LONGEST lval;
141 struct {
142 LONGEST val;
143 struct type *type;
144 } typed_val_int;
145 struct {
146 DOUBLEST dval;
147 struct type *type;
148 } typed_val_float;
27bc4d80
TJB
149 struct {
150 gdb_byte val[16];
151 struct type *type;
152 } typed_val_decfloat;
c906108c
SS
153 struct type *tval;
154 struct stoken sval;
6c7a06a3 155 struct typed_stoken tsval;
c906108c
SS
156 struct ttype tsym;
157 struct symtoken ssym;
158 int voidval;
3977b71f 159 const struct block *bval;
c906108c 160 enum exp_opcode opcode;
c906108c 161
6c7a06a3 162 struct stoken_vector svec;
71918a86 163 VEC (type_ptr) *tvec;
fcde5961
TT
164
165 struct type_stack *type_stack;
f2e8016f
TT
166
167 struct objc_class_str class;
c906108c
SS
168 }
169
170%{
171/* YYSTYPE gets defined by %union */
410a0ff2
SDJ
172static int parse_number (struct parser_state *par_state,
173 const char *, int, int, YYSTYPE *);
66c53f2b 174static struct stoken operator_stoken (const char *);
e314d629 175static void check_parameter_typelist (VEC (type_ptr) *);
410a0ff2
SDJ
176static void write_destructor_name (struct parser_state *par_state,
177 struct stoken);
9507860e 178
12c5175d 179#ifdef YYBISON
9507860e
TT
180static void c_print_token (FILE *file, int type, YYSTYPE value);
181#define YYPRINT(FILE, TYPE, VALUE) c_print_token (FILE, TYPE, VALUE)
12c5175d 182#endif
c906108c
SS
183%}
184
185%type <voidval> exp exp1 type_exp start variable qualified_name lcurly
186%type <lval> rcurly
48e32051 187%type <tval> type typebase
a6fb9c08 188%type <tvec> nonempty_typelist func_mod parameter_typelist
c906108c
SS
189/* %type <bval> block */
190
191/* Fancy type parsing. */
c906108c
SS
192%type <tval> ptype
193%type <lval> array_mod
95c391b6 194%type <tval> conversion_type_id
c906108c 195
fcde5961
TT
196%type <type_stack> ptr_operator_ts abs_decl direct_abs_decl
197
c906108c
SS
198%token <typed_val_int> INT
199%token <typed_val_float> FLOAT
27bc4d80 200%token <typed_val_decfloat> DECFLOAT
c906108c
SS
201
202/* Both NAME and TYPENAME tokens represent symbols in the input,
203 and both convey their data as strings.
204 But a TYPENAME is a string that happens to be defined as a typedef
205 or builtin type name (such as int or char)
206 and a NAME is any other symbol.
207 Contexts where this distinction is not important can use the
208 nonterminal "name", which matches either NAME or TYPENAME. */
209
6c7a06a3 210%token <tsval> STRING
f2e8016f
TT
211%token <sval> NSSTRING /* ObjC Foundation "NSString" literal */
212%token SELECTOR /* ObjC "@selector" pseudo-operator */
6c7a06a3 213%token <tsval> CHAR
c906108c 214%token <ssym> NAME /* BLOCKNAME defined below to give it higher precedence. */
7322dca9 215%token <ssym> UNKNOWN_CPP_NAME
65d12d83 216%token <voidval> COMPLETE
c906108c 217%token <tsym> TYPENAME
f2e8016f 218%token <class> CLASSNAME /* ObjC Class name */
6c7a06a3
TT
219%type <sval> name
220%type <svec> string_exp
c906108c
SS
221%type <ssym> name_not_typename
222%type <tsym> typename
223
f2e8016f
TT
224 /* This is like a '[' token, but is only generated when parsing
225 Objective C. This lets us reuse the same parser without
226 erroneously parsing ObjC-specific expressions in C. */
227%token OBJC_LBRAC
228
c906108c
SS
229/* A NAME_OR_INT is a symbol which is not known in the symbol table,
230 but which would parse as a valid number in the current input radix.
231 E.g. "c" when input_radix==16. Depending on the parse, it will be
232 turned into a name or into a number. */
233
234%token <ssym> NAME_OR_INT
235
66c53f2b 236%token OPERATOR
c906108c
SS
237%token STRUCT CLASS UNION ENUM SIZEOF UNSIGNED COLONCOLON
238%token TEMPLATE
239%token ERROR
66c53f2b
KS
240%token NEW DELETE
241%type <sval> operator
4e8f195d 242%token REINTERPRET_CAST DYNAMIC_CAST STATIC_CAST CONST_CAST
941b2081 243%token ENTRY
608b4967
TT
244%token TYPEOF
245%token DECLTYPE
6e72ca20 246%token TYPEID
c906108c
SS
247
248/* Special type cases, put in to allow the parser to distinguish different
249 legal basetypes. */
250%token SIGNED_KEYWORD LONG SHORT INT_KEYWORD CONST_KEYWORD VOLATILE_KEYWORD DOUBLE_KEYWORD
251
48e32051 252%token <sval> VARIABLE
c906108c
SS
253
254%token <opcode> ASSIGN_MODIFY
255
256/* C++ */
c906108c
SS
257%token TRUEKEYWORD
258%token FALSEKEYWORD
259
260
261%left ','
262%left ABOVE_COMMA
263%right '=' ASSIGN_MODIFY
264%right '?'
265%left OROR
266%left ANDAND
267%left '|'
268%left '^'
269%left '&'
270%left EQUAL NOTEQUAL
271%left '<' '>' LEQ GEQ
272%left LSH RSH
273%left '@'
274%left '+' '-'
275%left '*' '/' '%'
276%right UNARY INCREMENT DECREMENT
f2e8016f 277%right ARROW ARROW_STAR '.' DOT_STAR '[' OBJC_LBRAC '('
c906108c
SS
278%token <ssym> BLOCKNAME
279%token <bval> FILENAME
280%type <bval> block
281%left COLONCOLON
282
a6fb9c08
TT
283%token DOTDOTDOT
284
c906108c
SS
285\f
286%%
287
288start : exp1
289 | type_exp
290 ;
291
292type_exp: type
410a0ff2
SDJ
293 { write_exp_elt_opcode(pstate, OP_TYPE);
294 write_exp_elt_type(pstate, $1);
295 write_exp_elt_opcode(pstate, OP_TYPE);}
608b4967
TT
296 | TYPEOF '(' exp ')'
297 {
410a0ff2 298 write_exp_elt_opcode (pstate, OP_TYPEOF);
608b4967
TT
299 }
300 | TYPEOF '(' type ')'
301 {
410a0ff2
SDJ
302 write_exp_elt_opcode (pstate, OP_TYPE);
303 write_exp_elt_type (pstate, $3);
304 write_exp_elt_opcode (pstate, OP_TYPE);
608b4967
TT
305 }
306 | DECLTYPE '(' exp ')'
307 {
410a0ff2 308 write_exp_elt_opcode (pstate, OP_DECLTYPE);
608b4967 309 }
c906108c
SS
310 ;
311
312/* Expressions, including the comma operator. */
313exp1 : exp
314 | exp1 ',' exp
410a0ff2 315 { write_exp_elt_opcode (pstate, BINOP_COMMA); }
c906108c
SS
316 ;
317
318/* Expressions, not including the comma operator. */
319exp : '*' exp %prec UNARY
410a0ff2 320 { write_exp_elt_opcode (pstate, UNOP_IND); }
ef944135 321 ;
c906108c
SS
322
323exp : '&' exp %prec UNARY
410a0ff2 324 { write_exp_elt_opcode (pstate, UNOP_ADDR); }
ef944135 325 ;
c906108c
SS
326
327exp : '-' exp %prec UNARY
410a0ff2 328 { write_exp_elt_opcode (pstate, UNOP_NEG); }
c906108c
SS
329 ;
330
36e9969c 331exp : '+' exp %prec UNARY
410a0ff2 332 { write_exp_elt_opcode (pstate, UNOP_PLUS); }
36e9969c
NS
333 ;
334
c906108c 335exp : '!' exp %prec UNARY
410a0ff2 336 { write_exp_elt_opcode (pstate, UNOP_LOGICAL_NOT); }
c906108c
SS
337 ;
338
339exp : '~' exp %prec UNARY
410a0ff2 340 { write_exp_elt_opcode (pstate, UNOP_COMPLEMENT); }
c906108c
SS
341 ;
342
343exp : INCREMENT exp %prec UNARY
410a0ff2 344 { write_exp_elt_opcode (pstate, UNOP_PREINCREMENT); }
c906108c
SS
345 ;
346
347exp : DECREMENT exp %prec UNARY
410a0ff2 348 { write_exp_elt_opcode (pstate, UNOP_PREDECREMENT); }
c906108c
SS
349 ;
350
351exp : exp INCREMENT %prec UNARY
410a0ff2 352 { write_exp_elt_opcode (pstate, UNOP_POSTINCREMENT); }
c906108c
SS
353 ;
354
355exp : exp DECREMENT %prec UNARY
410a0ff2 356 { write_exp_elt_opcode (pstate, UNOP_POSTDECREMENT); }
c906108c
SS
357 ;
358
6e72ca20 359exp : TYPEID '(' exp ')' %prec UNARY
410a0ff2 360 { write_exp_elt_opcode (pstate, OP_TYPEID); }
6e72ca20
TT
361 ;
362
363exp : TYPEID '(' type_exp ')' %prec UNARY
410a0ff2 364 { write_exp_elt_opcode (pstate, OP_TYPEID); }
6e72ca20
TT
365 ;
366
c906108c 367exp : SIZEOF exp %prec UNARY
410a0ff2 368 { write_exp_elt_opcode (pstate, UNOP_SIZEOF); }
c906108c
SS
369 ;
370
371exp : exp ARROW name
410a0ff2
SDJ
372 { write_exp_elt_opcode (pstate, STRUCTOP_PTR);
373 write_exp_string (pstate, $3);
374 write_exp_elt_opcode (pstate, STRUCTOP_PTR); }
c906108c
SS
375 ;
376
65d12d83 377exp : exp ARROW name COMPLETE
410a0ff2
SDJ
378 { mark_struct_expression (pstate);
379 write_exp_elt_opcode (pstate, STRUCTOP_PTR);
380 write_exp_string (pstate, $3);
381 write_exp_elt_opcode (pstate, STRUCTOP_PTR); }
65d12d83
TT
382 ;
383
384exp : exp ARROW COMPLETE
385 { struct stoken s;
410a0ff2
SDJ
386 mark_struct_expression (pstate);
387 write_exp_elt_opcode (pstate, STRUCTOP_PTR);
65d12d83
TT
388 s.ptr = "";
389 s.length = 0;
410a0ff2
SDJ
390 write_exp_string (pstate, s);
391 write_exp_elt_opcode (pstate, STRUCTOP_PTR); }
65d12d83
TT
392 ;
393
24955f63 394exp : exp ARROW '~' name
410a0ff2
SDJ
395 { write_exp_elt_opcode (pstate, STRUCTOP_PTR);
396 write_destructor_name (pstate, $4);
397 write_exp_elt_opcode (pstate, STRUCTOP_PTR); }
24955f63
TT
398 ;
399
400exp : exp ARROW '~' name COMPLETE
410a0ff2
SDJ
401 { mark_struct_expression (pstate);
402 write_exp_elt_opcode (pstate, STRUCTOP_PTR);
403 write_destructor_name (pstate, $4);
404 write_exp_elt_opcode (pstate, STRUCTOP_PTR); }
24955f63
TT
405 ;
406
c906108c
SS
407exp : exp ARROW qualified_name
408 { /* exp->type::name becomes exp->*(&type::name) */
409 /* Note: this doesn't work if name is a
410 static member! FIXME */
410a0ff2
SDJ
411 write_exp_elt_opcode (pstate, UNOP_ADDR);
412 write_exp_elt_opcode (pstate, STRUCTOP_MPTR); }
c906108c
SS
413 ;
414
c1af96a0 415exp : exp ARROW_STAR exp
410a0ff2 416 { write_exp_elt_opcode (pstate, STRUCTOP_MPTR); }
c906108c
SS
417 ;
418
419exp : exp '.' name
410a0ff2
SDJ
420 { write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
421 write_exp_string (pstate, $3);
422 write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
c906108c
SS
423 ;
424
65d12d83 425exp : exp '.' name COMPLETE
410a0ff2
SDJ
426 { mark_struct_expression (pstate);
427 write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
428 write_exp_string (pstate, $3);
429 write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
65d12d83
TT
430 ;
431
432exp : exp '.' COMPLETE
433 { struct stoken s;
410a0ff2
SDJ
434 mark_struct_expression (pstate);
435 write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
65d12d83
TT
436 s.ptr = "";
437 s.length = 0;
410a0ff2
SDJ
438 write_exp_string (pstate, s);
439 write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
65d12d83
TT
440 ;
441
24955f63 442exp : exp '.' '~' name
410a0ff2
SDJ
443 { write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
444 write_destructor_name (pstate, $4);
445 write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
24955f63
TT
446 ;
447
448exp : exp '.' '~' name COMPLETE
410a0ff2
SDJ
449 { mark_struct_expression (pstate);
450 write_exp_elt_opcode (pstate, STRUCTOP_STRUCT);
451 write_destructor_name (pstate, $4);
452 write_exp_elt_opcode (pstate, STRUCTOP_STRUCT); }
24955f63
TT
453 ;
454
c906108c
SS
455exp : exp '.' qualified_name
456 { /* exp.type::name becomes exp.*(&type::name) */
457 /* Note: this doesn't work if name is a
458 static member! FIXME */
410a0ff2
SDJ
459 write_exp_elt_opcode (pstate, UNOP_ADDR);
460 write_exp_elt_opcode (pstate, STRUCTOP_MEMBER); }
c906108c
SS
461 ;
462
c1af96a0 463exp : exp DOT_STAR exp
410a0ff2 464 { write_exp_elt_opcode (pstate, STRUCTOP_MEMBER); }
c906108c
SS
465 ;
466
467exp : exp '[' exp1 ']'
410a0ff2 468 { write_exp_elt_opcode (pstate, BINOP_SUBSCRIPT); }
c906108c
SS
469 ;
470
f2e8016f 471exp : exp OBJC_LBRAC exp1 ']'
410a0ff2 472 { write_exp_elt_opcode (pstate, BINOP_SUBSCRIPT); }
f2e8016f
TT
473 ;
474
475/*
476 * The rules below parse ObjC message calls of the form:
477 * '[' target selector {':' argument}* ']'
478 */
479
480exp : OBJC_LBRAC TYPENAME
481 {
482 CORE_ADDR class;
483
410a0ff2 484 class = lookup_objc_class (parse_gdbarch (pstate),
f2e8016f
TT
485 copy_name ($2.stoken));
486 if (class == 0)
487 error (_("%s is not an ObjC Class"),
488 copy_name ($2.stoken));
410a0ff2
SDJ
489 write_exp_elt_opcode (pstate, OP_LONG);
490 write_exp_elt_type (pstate,
491 parse_type (pstate)->builtin_int);
492 write_exp_elt_longcst (pstate, (LONGEST) class);
493 write_exp_elt_opcode (pstate, OP_LONG);
f2e8016f
TT
494 start_msglist();
495 }
496 msglist ']'
410a0ff2
SDJ
497 { write_exp_elt_opcode (pstate, OP_OBJC_MSGCALL);
498 end_msglist (pstate);
499 write_exp_elt_opcode (pstate, OP_OBJC_MSGCALL);
f2e8016f
TT
500 }
501 ;
502
503exp : OBJC_LBRAC CLASSNAME
504 {
410a0ff2
SDJ
505 write_exp_elt_opcode (pstate, OP_LONG);
506 write_exp_elt_type (pstate,
507 parse_type (pstate)->builtin_int);
508 write_exp_elt_longcst (pstate, (LONGEST) $2.class);
509 write_exp_elt_opcode (pstate, OP_LONG);
f2e8016f
TT
510 start_msglist();
511 }
512 msglist ']'
410a0ff2
SDJ
513 { write_exp_elt_opcode (pstate, OP_OBJC_MSGCALL);
514 end_msglist (pstate);
515 write_exp_elt_opcode (pstate, OP_OBJC_MSGCALL);
f2e8016f
TT
516 }
517 ;
518
519exp : OBJC_LBRAC exp
520 { start_msglist(); }
521 msglist ']'
410a0ff2
SDJ
522 { write_exp_elt_opcode (pstate, OP_OBJC_MSGCALL);
523 end_msglist (pstate);
524 write_exp_elt_opcode (pstate, OP_OBJC_MSGCALL);
f2e8016f
TT
525 }
526 ;
527
528msglist : name
529 { add_msglist(&$1, 0); }
530 | msgarglist
531 ;
532
533msgarglist : msgarg
534 | msgarglist msgarg
535 ;
536
537msgarg : name ':' exp
538 { add_msglist(&$1, 1); }
539 | ':' exp /* Unnamed arg. */
540 { add_msglist(0, 1); }
541 | ',' exp /* Variable number of args. */
542 { add_msglist(0, 0); }
543 ;
544
c906108c
SS
545exp : exp '('
546 /* This is to save the value of arglist_len
547 being accumulated by an outer function call. */
548 { start_arglist (); }
549 arglist ')' %prec ARROW
410a0ff2
SDJ
550 { write_exp_elt_opcode (pstate, OP_FUNCALL);
551 write_exp_elt_longcst (pstate,
552 (LONGEST) end_arglist ());
553 write_exp_elt_opcode (pstate, OP_FUNCALL); }
c906108c
SS
554 ;
555
941b2081 556exp : UNKNOWN_CPP_NAME '('
7322dca9
SW
557 {
558 /* This could potentially be a an argument defined
559 lookup function (Koenig). */
410a0ff2
SDJ
560 write_exp_elt_opcode (pstate, OP_ADL_FUNC);
561 write_exp_elt_block (pstate,
562 expression_context_block);
563 write_exp_elt_sym (pstate,
564 NULL); /* Placeholder. */
565 write_exp_string (pstate, $1.stoken);
566 write_exp_elt_opcode (pstate, OP_ADL_FUNC);
7322dca9
SW
567
568 /* This is to save the value of arglist_len
569 being accumulated by an outer function call. */
570
571 start_arglist ();
572 }
573 arglist ')' %prec ARROW
574 {
410a0ff2
SDJ
575 write_exp_elt_opcode (pstate, OP_FUNCALL);
576 write_exp_elt_longcst (pstate,
577 (LONGEST) end_arglist ());
578 write_exp_elt_opcode (pstate, OP_FUNCALL);
7322dca9
SW
579 }
580 ;
581
c906108c
SS
582lcurly : '{'
583 { start_arglist (); }
584 ;
585
586arglist :
587 ;
588
589arglist : exp
590 { arglist_len = 1; }
591 ;
592
593arglist : arglist ',' exp %prec ABOVE_COMMA
594 { arglist_len++; }
595 ;
596
a6fb9c08 597exp : exp '(' parameter_typelist ')' const_or_volatile
072bba3b 598 { int i;
71918a86
TT
599 VEC (type_ptr) *type_list = $3;
600 struct type *type_elt;
601 LONGEST len = VEC_length (type_ptr, type_list);
602
410a0ff2
SDJ
603 write_exp_elt_opcode (pstate, TYPE_INSTANCE);
604 write_exp_elt_longcst (pstate, len);
71918a86
TT
605 for (i = 0;
606 VEC_iterate (type_ptr, type_list, i, type_elt);
607 ++i)
410a0ff2
SDJ
608 write_exp_elt_type (pstate, type_elt);
609 write_exp_elt_longcst(pstate, len);
610 write_exp_elt_opcode (pstate, TYPE_INSTANCE);
71918a86 611 VEC_free (type_ptr, type_list);
072bba3b
KS
612 }
613 ;
614
c906108c
SS
615rcurly : '}'
616 { $$ = end_arglist () - 1; }
617 ;
618exp : lcurly arglist rcurly %prec ARROW
410a0ff2
SDJ
619 { write_exp_elt_opcode (pstate, OP_ARRAY);
620 write_exp_elt_longcst (pstate, (LONGEST) 0);
621 write_exp_elt_longcst (pstate, (LONGEST) $3);
622 write_exp_elt_opcode (pstate, OP_ARRAY); }
c906108c
SS
623 ;
624
9eaf6705 625exp : lcurly type_exp rcurly exp %prec UNARY
410a0ff2 626 { write_exp_elt_opcode (pstate, UNOP_MEMVAL_TYPE); }
c906108c
SS
627 ;
628
9eaf6705 629exp : '(' type_exp ')' exp %prec UNARY
410a0ff2 630 { write_exp_elt_opcode (pstate, UNOP_CAST_TYPE); }
c906108c
SS
631 ;
632
633exp : '(' exp1 ')'
634 { }
635 ;
636
637/* Binary operators in order of decreasing precedence. */
638
639exp : exp '@' exp
410a0ff2 640 { write_exp_elt_opcode (pstate, BINOP_REPEAT); }
c906108c
SS
641 ;
642
643exp : exp '*' exp
410a0ff2 644 { write_exp_elt_opcode (pstate, BINOP_MUL); }
c906108c
SS
645 ;
646
647exp : exp '/' exp
410a0ff2 648 { write_exp_elt_opcode (pstate, BINOP_DIV); }
c906108c
SS
649 ;
650
651exp : exp '%' exp
410a0ff2 652 { write_exp_elt_opcode (pstate, BINOP_REM); }
c906108c
SS
653 ;
654
655exp : exp '+' exp
410a0ff2 656 { write_exp_elt_opcode (pstate, BINOP_ADD); }
c906108c
SS
657 ;
658
659exp : exp '-' exp
410a0ff2 660 { write_exp_elt_opcode (pstate, BINOP_SUB); }
c906108c
SS
661 ;
662
663exp : exp LSH exp
410a0ff2 664 { write_exp_elt_opcode (pstate, BINOP_LSH); }
c906108c
SS
665 ;
666
667exp : exp RSH exp
410a0ff2 668 { write_exp_elt_opcode (pstate, BINOP_RSH); }
c906108c
SS
669 ;
670
671exp : exp EQUAL exp
410a0ff2 672 { write_exp_elt_opcode (pstate, BINOP_EQUAL); }
c906108c
SS
673 ;
674
675exp : exp NOTEQUAL exp
410a0ff2 676 { write_exp_elt_opcode (pstate, BINOP_NOTEQUAL); }
c906108c
SS
677 ;
678
679exp : exp LEQ exp
410a0ff2 680 { write_exp_elt_opcode (pstate, BINOP_LEQ); }
c906108c
SS
681 ;
682
683exp : exp GEQ exp
410a0ff2 684 { write_exp_elt_opcode (pstate, BINOP_GEQ); }
c906108c
SS
685 ;
686
687exp : exp '<' exp
410a0ff2 688 { write_exp_elt_opcode (pstate, BINOP_LESS); }
c906108c
SS
689 ;
690
691exp : exp '>' exp
410a0ff2 692 { write_exp_elt_opcode (pstate, BINOP_GTR); }
c906108c
SS
693 ;
694
695exp : exp '&' exp
410a0ff2 696 { write_exp_elt_opcode (pstate, BINOP_BITWISE_AND); }
c906108c
SS
697 ;
698
699exp : exp '^' exp
410a0ff2 700 { write_exp_elt_opcode (pstate, BINOP_BITWISE_XOR); }
c906108c
SS
701 ;
702
703exp : exp '|' exp
410a0ff2 704 { write_exp_elt_opcode (pstate, BINOP_BITWISE_IOR); }
c906108c
SS
705 ;
706
707exp : exp ANDAND exp
410a0ff2 708 { write_exp_elt_opcode (pstate, BINOP_LOGICAL_AND); }
c906108c
SS
709 ;
710
711exp : exp OROR exp
410a0ff2 712 { write_exp_elt_opcode (pstate, BINOP_LOGICAL_OR); }
c906108c
SS
713 ;
714
715exp : exp '?' exp ':' exp %prec '?'
410a0ff2 716 { write_exp_elt_opcode (pstate, TERNOP_COND); }
c906108c
SS
717 ;
718
719exp : exp '=' exp
410a0ff2 720 { write_exp_elt_opcode (pstate, BINOP_ASSIGN); }
c906108c
SS
721 ;
722
723exp : exp ASSIGN_MODIFY exp
410a0ff2
SDJ
724 { write_exp_elt_opcode (pstate, BINOP_ASSIGN_MODIFY);
725 write_exp_elt_opcode (pstate, $2);
726 write_exp_elt_opcode (pstate,
727 BINOP_ASSIGN_MODIFY); }
c906108c
SS
728 ;
729
730exp : INT
410a0ff2
SDJ
731 { write_exp_elt_opcode (pstate, OP_LONG);
732 write_exp_elt_type (pstate, $1.type);
733 write_exp_elt_longcst (pstate, (LONGEST) ($1.val));
734 write_exp_elt_opcode (pstate, OP_LONG); }
c906108c
SS
735 ;
736
6c7a06a3
TT
737exp : CHAR
738 {
739 struct stoken_vector vec;
740 vec.len = 1;
741 vec.tokens = &$1;
410a0ff2 742 write_exp_string_vector (pstate, $1.type, &vec);
6c7a06a3
TT
743 }
744 ;
745
c906108c
SS
746exp : NAME_OR_INT
747 { YYSTYPE val;
410a0ff2
SDJ
748 parse_number (pstate, $1.stoken.ptr,
749 $1.stoken.length, 0, &val);
750 write_exp_elt_opcode (pstate, OP_LONG);
751 write_exp_elt_type (pstate, val.typed_val_int.type);
752 write_exp_elt_longcst (pstate,
753 (LONGEST) val.typed_val_int.val);
754 write_exp_elt_opcode (pstate, OP_LONG);
c906108c
SS
755 }
756 ;
757
758
759exp : FLOAT
410a0ff2
SDJ
760 { write_exp_elt_opcode (pstate, OP_DOUBLE);
761 write_exp_elt_type (pstate, $1.type);
762 write_exp_elt_dblcst (pstate, $1.dval);
763 write_exp_elt_opcode (pstate, OP_DOUBLE); }
c906108c
SS
764 ;
765
27bc4d80 766exp : DECFLOAT
410a0ff2
SDJ
767 { write_exp_elt_opcode (pstate, OP_DECFLOAT);
768 write_exp_elt_type (pstate, $1.type);
769 write_exp_elt_decfloatcst (pstate, $1.val);
770 write_exp_elt_opcode (pstate, OP_DECFLOAT); }
27bc4d80
TJB
771 ;
772
c906108c
SS
773exp : variable
774 ;
775
776exp : VARIABLE
48e32051 777 {
410a0ff2 778 write_dollar_variable (pstate, $1);
48e32051 779 }
c906108c
SS
780 ;
781
f2e8016f
TT
782exp : SELECTOR '(' name ')'
783 {
410a0ff2
SDJ
784 write_exp_elt_opcode (pstate, OP_OBJC_SELECTOR);
785 write_exp_string (pstate, $3);
786 write_exp_elt_opcode (pstate, OP_OBJC_SELECTOR); }
f2e8016f
TT
787 ;
788
c906108c 789exp : SIZEOF '(' type ')' %prec UNARY
245a5f0b
KS
790 { struct type *type = $3;
791 write_exp_elt_opcode (pstate, OP_LONG);
410a0ff2
SDJ
792 write_exp_elt_type (pstate, lookup_signed_typename
793 (parse_language (pstate),
794 parse_gdbarch (pstate),
f4b8a18d 795 "int"));
245a5f0b
KS
796 CHECK_TYPEDEF (type);
797
798 /* $5.3.3/2 of the C++ Standard (n3290 draft)
799 says of sizeof: "When applied to a reference
800 or a reference type, the result is the size of
801 the referenced type." */
802 if (TYPE_CODE (type) == TYPE_CODE_REF)
803 type = check_typedef (TYPE_TARGET_TYPE (type));
410a0ff2 804 write_exp_elt_longcst (pstate,
245a5f0b 805 (LONGEST) TYPE_LENGTH (type));
410a0ff2 806 write_exp_elt_opcode (pstate, OP_LONG); }
c906108c
SS
807 ;
808
9eaf6705 809exp : REINTERPRET_CAST '<' type_exp '>' '(' exp ')' %prec UNARY
410a0ff2
SDJ
810 { write_exp_elt_opcode (pstate,
811 UNOP_REINTERPRET_CAST); }
4e8f195d
TT
812 ;
813
9eaf6705 814exp : STATIC_CAST '<' type_exp '>' '(' exp ')' %prec UNARY
410a0ff2 815 { write_exp_elt_opcode (pstate, UNOP_CAST_TYPE); }
4e8f195d
TT
816 ;
817
9eaf6705 818exp : DYNAMIC_CAST '<' type_exp '>' '(' exp ')' %prec UNARY
410a0ff2 819 { write_exp_elt_opcode (pstate, UNOP_DYNAMIC_CAST); }
4e8f195d
TT
820 ;
821
9eaf6705 822exp : CONST_CAST '<' type_exp '>' '(' exp ')' %prec UNARY
4e8f195d
TT
823 { /* We could do more error checking here, but
824 it doesn't seem worthwhile. */
410a0ff2 825 write_exp_elt_opcode (pstate, UNOP_CAST_TYPE); }
4e8f195d
TT
826 ;
827
c209f847
TT
828string_exp:
829 STRING
830 {
831 /* We copy the string here, and not in the
832 lexer, to guarantee that we do not leak a
833 string. Note that we follow the
834 NUL-termination convention of the
835 lexer. */
6c7a06a3
TT
836 struct typed_stoken *vec = XNEW (struct typed_stoken);
837 $$.len = 1;
838 $$.tokens = vec;
839
840 vec->type = $1.type;
841 vec->length = $1.length;
842 vec->ptr = malloc ($1.length + 1);
843 memcpy (vec->ptr, $1.ptr, $1.length + 1);
c209f847
TT
844 }
845
846 | string_exp STRING
847 {
848 /* Note that we NUL-terminate here, but just
849 for convenience. */
6c7a06a3
TT
850 char *p;
851 ++$$.len;
852 $$.tokens = realloc ($$.tokens,
853 $$.len * sizeof (struct typed_stoken));
854
855 p = malloc ($2.length + 1);
856 memcpy (p, $2.ptr, $2.length + 1);
857
858 $$.tokens[$$.len - 1].type = $2.type;
859 $$.tokens[$$.len - 1].length = $2.length;
860 $$.tokens[$$.len - 1].ptr = p;
c209f847
TT
861 }
862 ;
863
864exp : string_exp
6c7a06a3
TT
865 {
866 int i;
867 enum c_string_type type = C_STRING;
868
869 for (i = 0; i < $1.len; ++i)
c906108c 870 {
6c7a06a3
TT
871 switch ($1.tokens[i].type)
872 {
873 case C_STRING:
874 break;
875 case C_WIDE_STRING:
876 case C_STRING_16:
877 case C_STRING_32:
878 if (type != C_STRING
879 && type != $1.tokens[i].type)
001083c6 880 error (_("Undefined string concatenation."));
6c7a06a3
TT
881 type = $1.tokens[i].type;
882 break;
883 default:
884 /* internal error */
885 internal_error (__FILE__, __LINE__,
886 "unrecognized type in string concatenation");
887 }
c906108c 888 }
6c7a06a3 889
410a0ff2 890 write_exp_string_vector (pstate, type, &$1);
6c7a06a3
TT
891 for (i = 0; i < $1.len; ++i)
892 free ($1.tokens[i].ptr);
893 free ($1.tokens);
c209f847 894 }
c906108c
SS
895 ;
896
f2e8016f
TT
897exp : NSSTRING /* ObjC NextStep NSString constant
898 * of the form '@' '"' string '"'.
899 */
410a0ff2
SDJ
900 { write_exp_elt_opcode (pstate, OP_OBJC_NSSTRING);
901 write_exp_string (pstate, $1);
902 write_exp_elt_opcode (pstate, OP_OBJC_NSSTRING); }
f2e8016f
TT
903 ;
904
c906108c 905/* C++. */
c906108c 906exp : TRUEKEYWORD
410a0ff2
SDJ
907 { write_exp_elt_opcode (pstate, OP_LONG);
908 write_exp_elt_type (pstate,
909 parse_type (pstate)->builtin_bool);
910 write_exp_elt_longcst (pstate, (LONGEST) 1);
911 write_exp_elt_opcode (pstate, OP_LONG); }
c906108c
SS
912 ;
913
914exp : FALSEKEYWORD
410a0ff2
SDJ
915 { write_exp_elt_opcode (pstate, OP_LONG);
916 write_exp_elt_type (pstate,
917 parse_type (pstate)->builtin_bool);
918 write_exp_elt_longcst (pstate, (LONGEST) 0);
919 write_exp_elt_opcode (pstate, OP_LONG); }
c906108c
SS
920 ;
921
922/* end of C++. */
923
924block : BLOCKNAME
925 {
926 if ($1.sym)
927 $$ = SYMBOL_BLOCK_VALUE ($1.sym);
928 else
001083c6 929 error (_("No file or function \"%s\"."),
c906108c
SS
930 copy_name ($1.stoken));
931 }
932 | FILENAME
933 {
934 $$ = $1;
935 }
936 ;
937
938block : block COLONCOLON name
939 { struct symbol *tem
940 = lookup_symbol (copy_name ($3), $1,
1993b719 941 VAR_DOMAIN, NULL);
c906108c 942 if (!tem || SYMBOL_CLASS (tem) != LOC_BLOCK)
001083c6 943 error (_("No function \"%s\" in specified context."),
c906108c
SS
944 copy_name ($3));
945 $$ = SYMBOL_BLOCK_VALUE (tem); }
946 ;
947
941b2081 948variable: name_not_typename ENTRY
36b11add
JK
949 { struct symbol *sym = $1.sym;
950
951 if (sym == NULL || !SYMBOL_IS_ARGUMENT (sym)
952 || !symbol_read_needs_frame (sym))
953 error (_("@entry can be used only for function "
954 "parameters, not for \"%s\""),
955 copy_name ($1.stoken));
956
410a0ff2
SDJ
957 write_exp_elt_opcode (pstate, OP_VAR_ENTRY_VALUE);
958 write_exp_elt_sym (pstate, sym);
959 write_exp_elt_opcode (pstate, OP_VAR_ENTRY_VALUE);
36b11add
JK
960 }
961 ;
962
c906108c
SS
963variable: block COLONCOLON name
964 { struct symbol *sym;
965 sym = lookup_symbol (copy_name ($3), $1,
1993b719 966 VAR_DOMAIN, NULL);
c906108c 967 if (sym == 0)
001083c6 968 error (_("No symbol \"%s\" in specified context."),
c906108c 969 copy_name ($3));
72384ba3
PH
970 if (symbol_read_needs_frame (sym))
971 {
972 if (innermost_block == 0
973 || contained_in (block_found,
974 innermost_block))
975 innermost_block = block_found;
976 }
c906108c 977
410a0ff2 978 write_exp_elt_opcode (pstate, OP_VAR_VALUE);
c906108c 979 /* block_found is set by lookup_symbol. */
410a0ff2
SDJ
980 write_exp_elt_block (pstate, block_found);
981 write_exp_elt_sym (pstate, sym);
982 write_exp_elt_opcode (pstate, OP_VAR_VALUE); }
c906108c
SS
983 ;
984
48e32051 985qualified_name: TYPENAME COLONCOLON name
c906108c 986 {
48e32051 987 struct type *type = $1.type;
e8269d5f 988 CHECK_TYPEDEF (type);
3d567982 989 if (!type_aggregate_p (type))
001083c6 990 error (_("`%s' is not defined as an aggregate type."),
7fc75ca7 991 TYPE_SAFE_NAME (type));
c906108c 992
410a0ff2
SDJ
993 write_exp_elt_opcode (pstate, OP_SCOPE);
994 write_exp_elt_type (pstate, type);
995 write_exp_string (pstate, $3);
996 write_exp_elt_opcode (pstate, OP_SCOPE);
c906108c 997 }
48e32051 998 | TYPENAME COLONCOLON '~' name
c906108c 999 {
48e32051 1000 struct type *type = $1.type;
c906108c 1001 struct stoken tmp_token;
d7561cbb
KS
1002 char *buf;
1003
e8269d5f 1004 CHECK_TYPEDEF (type);
3d567982 1005 if (!type_aggregate_p (type))
001083c6 1006 error (_("`%s' is not defined as an aggregate type."),
7fc75ca7 1007 TYPE_SAFE_NAME (type));
d7561cbb
KS
1008 buf = alloca ($4.length + 2);
1009 tmp_token.ptr = buf;
c906108c 1010 tmp_token.length = $4.length + 1;
d7561cbb
KS
1011 buf[0] = '~';
1012 memcpy (buf+1, $4.ptr, $4.length);
1013 buf[tmp_token.length] = 0;
c906108c
SS
1014
1015 /* Check for valid destructor name. */
d8228535 1016 destructor_name_p (tmp_token.ptr, $1.type);
410a0ff2
SDJ
1017 write_exp_elt_opcode (pstate, OP_SCOPE);
1018 write_exp_elt_type (pstate, type);
1019 write_exp_string (pstate, tmp_token);
1020 write_exp_elt_opcode (pstate, OP_SCOPE);
c906108c 1021 }
48e32051
TT
1022 | TYPENAME COLONCOLON name COLONCOLON name
1023 {
1024 char *copy = copy_name ($3);
1025 error (_("No type \"%s\" within class "
1026 "or namespace \"%s\"."),
7fc75ca7 1027 copy, TYPE_SAFE_NAME ($1.type));
48e32051 1028 }
c906108c
SS
1029 ;
1030
1031variable: qualified_name
48e32051 1032 | COLONCOLON name_not_typename
c906108c 1033 {
48e32051 1034 char *name = copy_name ($2.stoken);
c906108c 1035 struct symbol *sym;
7c7b6655 1036 struct bound_minimal_symbol msymbol;
c906108c
SS
1037
1038 sym =
1039 lookup_symbol (name, (const struct block *) NULL,
1993b719 1040 VAR_DOMAIN, NULL);
c906108c
SS
1041 if (sym)
1042 {
410a0ff2
SDJ
1043 write_exp_elt_opcode (pstate, OP_VAR_VALUE);
1044 write_exp_elt_block (pstate, NULL);
1045 write_exp_elt_sym (pstate, sym);
1046 write_exp_elt_opcode (pstate, OP_VAR_VALUE);
c906108c
SS
1047 break;
1048 }
1049
7c7b6655
TT
1050 msymbol = lookup_bound_minimal_symbol (name);
1051 if (msymbol.minsym != NULL)
410a0ff2 1052 write_exp_msymbol (pstate, msymbol);
c841afd5 1053 else if (!have_full_symbols () && !have_partial_symbols ())
001083c6 1054 error (_("No symbol table is loaded. Use the \"file\" command."));
c906108c 1055 else
001083c6 1056 error (_("No symbol \"%s\" in current context."), name);
c906108c
SS
1057 }
1058 ;
1059
1060variable: name_not_typename
1061 { struct symbol *sym = $1.sym;
1062
1063 if (sym)
1064 {
1065 if (symbol_read_needs_frame (sym))
1066 {
5aafa1cc
PM
1067 if (innermost_block == 0
1068 || contained_in (block_found,
1069 innermost_block))
c906108c
SS
1070 innermost_block = block_found;
1071 }
1072
410a0ff2 1073 write_exp_elt_opcode (pstate, OP_VAR_VALUE);
c906108c
SS
1074 /* We want to use the selected frame, not
1075 another more inner frame which happens to
1076 be in the same block. */
410a0ff2
SDJ
1077 write_exp_elt_block (pstate, NULL);
1078 write_exp_elt_sym (pstate, sym);
1079 write_exp_elt_opcode (pstate, OP_VAR_VALUE);
c906108c
SS
1080 }
1081 else if ($1.is_a_field_of_this)
1082 {
1083 /* C++: it hangs off of `this'. Must
1084 not inadvertently convert from a method call
1085 to data ref. */
5aafa1cc
PM
1086 if (innermost_block == 0
1087 || contained_in (block_found,
1088 innermost_block))
c906108c 1089 innermost_block = block_found;
410a0ff2
SDJ
1090 write_exp_elt_opcode (pstate, OP_THIS);
1091 write_exp_elt_opcode (pstate, OP_THIS);
1092 write_exp_elt_opcode (pstate, STRUCTOP_PTR);
1093 write_exp_string (pstate, $1.stoken);
1094 write_exp_elt_opcode (pstate, STRUCTOP_PTR);
c906108c
SS
1095 }
1096 else
1097 {
7c7b6655 1098 struct bound_minimal_symbol msymbol;
710122da 1099 char *arg = copy_name ($1.stoken);
c906108c
SS
1100
1101 msymbol =
7c7b6655
TT
1102 lookup_bound_minimal_symbol (arg);
1103 if (msymbol.minsym != NULL)
410a0ff2 1104 write_exp_msymbol (pstate, msymbol);
c906108c 1105 else if (!have_full_symbols () && !have_partial_symbols ())
001083c6 1106 error (_("No symbol table is loaded. Use the \"file\" command."));
c906108c 1107 else
001083c6 1108 error (_("No symbol \"%s\" in current context."),
c906108c
SS
1109 copy_name ($1.stoken));
1110 }
1111 }
1112 ;
1113
47663de5 1114space_identifier : '@' NAME
410a0ff2 1115 { insert_type_address_space (pstate, copy_name ($2.stoken)); }
47663de5 1116 ;
c906108c 1117
47663de5
MS
1118const_or_volatile: const_or_volatile_noopt
1119 |
c906108c 1120 ;
47663de5
MS
1121
1122cv_with_space_id : const_or_volatile space_identifier const_or_volatile
56e2d25a 1123 ;
47663de5
MS
1124
1125const_or_volatile_or_space_identifier_noopt: cv_with_space_id
1126 | const_or_volatile_noopt
56e2d25a 1127 ;
47663de5
MS
1128
1129const_or_volatile_or_space_identifier:
1130 const_or_volatile_or_space_identifier_noopt
1131 |
56e2d25a 1132 ;
47663de5 1133
95c391b6
TT
1134ptr_operator:
1135 ptr_operator '*'
1136 { insert_type (tp_pointer); }
1137 const_or_volatile_or_space_identifier
95c391b6
TT
1138 | '*'
1139 { insert_type (tp_pointer); }
1140 const_or_volatile_or_space_identifier
c906108c 1141 | '&'
16d01384 1142 { insert_type (tp_reference); }
95c391b6 1143 | '&' ptr_operator
16d01384 1144 { insert_type (tp_reference); }
95c391b6
TT
1145 ;
1146
fcde5961
TT
1147ptr_operator_ts: ptr_operator
1148 {
1149 $$ = get_type_stack ();
1150 /* This cleanup is eventually run by
1151 c_parse. */
1152 make_cleanup (type_stack_cleanup, $$);
1153 }
1154 ;
1155
1156abs_decl: ptr_operator_ts direct_abs_decl
1157 { $$ = append_type_stack ($2, $1); }
1158 | ptr_operator_ts
c906108c
SS
1159 | direct_abs_decl
1160 ;
1161
1162direct_abs_decl: '(' abs_decl ')'
fcde5961 1163 { $$ = $2; }
c906108c
SS
1164 | direct_abs_decl array_mod
1165 {
fcde5961 1166 push_type_stack ($1);
c906108c
SS
1167 push_type_int ($2);
1168 push_type (tp_array);
fcde5961 1169 $$ = get_type_stack ();
c906108c
SS
1170 }
1171 | array_mod
1172 {
1173 push_type_int ($1);
1174 push_type (tp_array);
fcde5961 1175 $$ = get_type_stack ();
c906108c
SS
1176 }
1177
1178 | direct_abs_decl func_mod
fcde5961
TT
1179 {
1180 push_type_stack ($1);
71918a86 1181 push_typelist ($2);
fcde5961
TT
1182 $$ = get_type_stack ();
1183 }
c906108c 1184 | func_mod
fcde5961 1185 {
71918a86 1186 push_typelist ($1);
fcde5961
TT
1187 $$ = get_type_stack ();
1188 }
c906108c
SS
1189 ;
1190
1191array_mod: '[' ']'
1192 { $$ = -1; }
f2e8016f
TT
1193 | OBJC_LBRAC ']'
1194 { $$ = -1; }
c906108c
SS
1195 | '[' INT ']'
1196 { $$ = $2.val; }
f2e8016f
TT
1197 | OBJC_LBRAC INT ']'
1198 { $$ = $2.val; }
c906108c
SS
1199 ;
1200
1201func_mod: '(' ')'
71918a86 1202 { $$ = NULL; }
a6fb9c08 1203 | '(' parameter_typelist ')'
71918a86 1204 { $$ = $2; }
c906108c
SS
1205 ;
1206
a22229c4 1207/* We used to try to recognize pointer to member types here, but
c906108c
SS
1208 that didn't work (shift/reduce conflicts meant that these rules never
1209 got executed). The problem is that
1210 int (foo::bar::baz::bizzle)
1211 is a function type but
1212 int (foo::bar::baz::bizzle::*)
1213 is a pointer to member type. Stroustrup loses again! */
1214
1215type : ptype
c906108c
SS
1216 ;
1217
1218typebase /* Implements (approximately): (type-qualifier)* type-specifier */
1219 : TYPENAME
1220 { $$ = $1.type; }
1221 | INT_KEYWORD
410a0ff2
SDJ
1222 { $$ = lookup_signed_typename (parse_language (pstate),
1223 parse_gdbarch (pstate),
f4b8a18d 1224 "int"); }
c906108c 1225 | LONG
410a0ff2
SDJ
1226 { $$ = lookup_signed_typename (parse_language (pstate),
1227 parse_gdbarch (pstate),
f4b8a18d 1228 "long"); }
c906108c 1229 | SHORT
410a0ff2
SDJ
1230 { $$ = lookup_signed_typename (parse_language (pstate),
1231 parse_gdbarch (pstate),
f4b8a18d 1232 "short"); }
c906108c 1233 | LONG INT_KEYWORD
410a0ff2
SDJ
1234 { $$ = lookup_signed_typename (parse_language (pstate),
1235 parse_gdbarch (pstate),
f4b8a18d 1236 "long"); }
b2c4da81 1237 | LONG SIGNED_KEYWORD INT_KEYWORD
410a0ff2
SDJ
1238 { $$ = lookup_signed_typename (parse_language (pstate),
1239 parse_gdbarch (pstate),
f4b8a18d 1240 "long"); }
b2c4da81 1241 | LONG SIGNED_KEYWORD
410a0ff2
SDJ
1242 { $$ = lookup_signed_typename (parse_language (pstate),
1243 parse_gdbarch (pstate),
f4b8a18d 1244 "long"); }
b2c4da81 1245 | SIGNED_KEYWORD LONG INT_KEYWORD
410a0ff2
SDJ
1246 { $$ = lookup_signed_typename (parse_language (pstate),
1247 parse_gdbarch (pstate),
f4b8a18d 1248 "long"); }
c906108c 1249 | UNSIGNED LONG INT_KEYWORD
410a0ff2
SDJ
1250 { $$ = lookup_unsigned_typename (parse_language (pstate),
1251 parse_gdbarch (pstate),
f4b8a18d 1252 "long"); }
b2c4da81 1253 | LONG UNSIGNED INT_KEYWORD
410a0ff2
SDJ
1254 { $$ = lookup_unsigned_typename (parse_language (pstate),
1255 parse_gdbarch (pstate),
f4b8a18d 1256 "long"); }
b2c4da81 1257 | LONG UNSIGNED
410a0ff2
SDJ
1258 { $$ = lookup_unsigned_typename (parse_language (pstate),
1259 parse_gdbarch (pstate),
f4b8a18d 1260 "long"); }
c906108c 1261 | LONG LONG
410a0ff2
SDJ
1262 { $$ = lookup_signed_typename (parse_language (pstate),
1263 parse_gdbarch (pstate),
f4b8a18d 1264 "long long"); }
c906108c 1265 | LONG LONG INT_KEYWORD
410a0ff2
SDJ
1266 { $$ = lookup_signed_typename (parse_language (pstate),
1267 parse_gdbarch (pstate),
f4b8a18d 1268 "long long"); }
b2c4da81 1269 | LONG LONG SIGNED_KEYWORD INT_KEYWORD
410a0ff2
SDJ
1270 { $$ = lookup_signed_typename (parse_language (pstate),
1271 parse_gdbarch (pstate),
f4b8a18d 1272 "long long"); }
b2c4da81 1273 | LONG LONG SIGNED_KEYWORD
410a0ff2
SDJ
1274 { $$ = lookup_signed_typename (parse_language (pstate),
1275 parse_gdbarch (pstate),
f4b8a18d 1276 "long long"); }
b2c4da81 1277 | SIGNED_KEYWORD LONG LONG
410a0ff2
SDJ
1278 { $$ = lookup_signed_typename (parse_language (pstate),
1279 parse_gdbarch (pstate),
f4b8a18d 1280 "long long"); }
55baeb84 1281 | SIGNED_KEYWORD LONG LONG INT_KEYWORD
410a0ff2
SDJ
1282 { $$ = lookup_signed_typename (parse_language (pstate),
1283 parse_gdbarch (pstate),
f4b8a18d 1284 "long long"); }
c906108c 1285 | UNSIGNED LONG LONG
410a0ff2
SDJ
1286 { $$ = lookup_unsigned_typename (parse_language (pstate),
1287 parse_gdbarch (pstate),
f4b8a18d 1288 "long long"); }
c906108c 1289 | UNSIGNED LONG LONG INT_KEYWORD
410a0ff2
SDJ
1290 { $$ = lookup_unsigned_typename (parse_language (pstate),
1291 parse_gdbarch (pstate),
f4b8a18d 1292 "long long"); }
b2c4da81 1293 | LONG LONG UNSIGNED
410a0ff2
SDJ
1294 { $$ = lookup_unsigned_typename (parse_language (pstate),
1295 parse_gdbarch (pstate),
f4b8a18d 1296 "long long"); }
b2c4da81 1297 | LONG LONG UNSIGNED INT_KEYWORD
410a0ff2
SDJ
1298 { $$ = lookup_unsigned_typename (parse_language (pstate),
1299 parse_gdbarch (pstate),
f4b8a18d 1300 "long long"); }
c906108c 1301 | SHORT INT_KEYWORD
410a0ff2
SDJ
1302 { $$ = lookup_signed_typename (parse_language (pstate),
1303 parse_gdbarch (pstate),
f4b8a18d 1304 "short"); }
b2c4da81 1305 | SHORT SIGNED_KEYWORD INT_KEYWORD
410a0ff2
SDJ
1306 { $$ = lookup_signed_typename (parse_language (pstate),
1307 parse_gdbarch (pstate),
f4b8a18d 1308 "short"); }
b2c4da81 1309 | SHORT SIGNED_KEYWORD
410a0ff2
SDJ
1310 { $$ = lookup_signed_typename (parse_language (pstate),
1311 parse_gdbarch (pstate),
f4b8a18d 1312 "short"); }
c906108c 1313 | UNSIGNED SHORT INT_KEYWORD
410a0ff2
SDJ
1314 { $$ = lookup_unsigned_typename (parse_language (pstate),
1315 parse_gdbarch (pstate),
f4b8a18d 1316 "short"); }
b2c4da81 1317 | SHORT UNSIGNED
410a0ff2
SDJ
1318 { $$ = lookup_unsigned_typename (parse_language (pstate),
1319 parse_gdbarch (pstate),
f4b8a18d 1320 "short"); }
b2c4da81 1321 | SHORT UNSIGNED INT_KEYWORD
410a0ff2
SDJ
1322 { $$ = lookup_unsigned_typename (parse_language (pstate),
1323 parse_gdbarch (pstate),
f4b8a18d 1324 "short"); }
c906108c 1325 | DOUBLE_KEYWORD
410a0ff2
SDJ
1326 { $$ = lookup_typename (parse_language (pstate),
1327 parse_gdbarch (pstate),
1328 "double",
1329 (struct block *) NULL,
f4b8a18d 1330 0); }
c906108c 1331 | LONG DOUBLE_KEYWORD
410a0ff2
SDJ
1332 { $$ = lookup_typename (parse_language (pstate),
1333 parse_gdbarch (pstate),
f4b8a18d 1334 "long double",
410a0ff2
SDJ
1335 (struct block *) NULL,
1336 0); }
c906108c
SS
1337 | STRUCT name
1338 { $$ = lookup_struct (copy_name ($2),
1339 expression_context_block); }
2f68a895
TT
1340 | STRUCT COMPLETE
1341 {
1342 mark_completion_tag (TYPE_CODE_STRUCT, "", 0);
1343 $$ = NULL;
1344 }
1345 | STRUCT name COMPLETE
1346 {
1347 mark_completion_tag (TYPE_CODE_STRUCT, $2.ptr,
1348 $2.length);
1349 $$ = NULL;
1350 }
c906108c
SS
1351 | CLASS name
1352 { $$ = lookup_struct (copy_name ($2),
1353 expression_context_block); }
2f68a895
TT
1354 | CLASS COMPLETE
1355 {
4753d33b 1356 mark_completion_tag (TYPE_CODE_STRUCT, "", 0);
2f68a895
TT
1357 $$ = NULL;
1358 }
1359 | CLASS name COMPLETE
1360 {
4753d33b 1361 mark_completion_tag (TYPE_CODE_STRUCT, $2.ptr,
2f68a895
TT
1362 $2.length);
1363 $$ = NULL;
1364 }
c906108c
SS
1365 | UNION name
1366 { $$ = lookup_union (copy_name ($2),
1367 expression_context_block); }
2f68a895
TT
1368 | UNION COMPLETE
1369 {
1370 mark_completion_tag (TYPE_CODE_UNION, "", 0);
1371 $$ = NULL;
1372 }
1373 | UNION name COMPLETE
1374 {
1375 mark_completion_tag (TYPE_CODE_UNION, $2.ptr,
1376 $2.length);
1377 $$ = NULL;
1378 }
c906108c
SS
1379 | ENUM name
1380 { $$ = lookup_enum (copy_name ($2),
1381 expression_context_block); }
2f68a895
TT
1382 | ENUM COMPLETE
1383 {
1384 mark_completion_tag (TYPE_CODE_ENUM, "", 0);
1385 $$ = NULL;
1386 }
1387 | ENUM name COMPLETE
1388 {
1389 mark_completion_tag (TYPE_CODE_ENUM, $2.ptr,
1390 $2.length);
1391 $$ = NULL;
1392 }
c906108c 1393 | UNSIGNED typename
410a0ff2
SDJ
1394 { $$ = lookup_unsigned_typename (parse_language (pstate),
1395 parse_gdbarch (pstate),
e6c014f2 1396 TYPE_NAME($2.type)); }
c906108c 1397 | UNSIGNED
410a0ff2
SDJ
1398 { $$ = lookup_unsigned_typename (parse_language (pstate),
1399 parse_gdbarch (pstate),
f4b8a18d 1400 "int"); }
c906108c 1401 | SIGNED_KEYWORD typename
410a0ff2
SDJ
1402 { $$ = lookup_signed_typename (parse_language (pstate),
1403 parse_gdbarch (pstate),
e6c014f2 1404 TYPE_NAME($2.type)); }
c906108c 1405 | SIGNED_KEYWORD
410a0ff2
SDJ
1406 { $$ = lookup_signed_typename (parse_language (pstate),
1407 parse_gdbarch (pstate),
f4b8a18d 1408 "int"); }
c906108c
SS
1409 /* It appears that this rule for templates is never
1410 reduced; template recognition happens by lookahead
1411 in the token processing code in yylex. */
1412 | TEMPLATE name '<' type '>'
1413 { $$ = lookup_template_type(copy_name($2), $4,
1414 expression_context_block);
1415 }
47663de5
MS
1416 | const_or_volatile_or_space_identifier_noopt typebase
1417 { $$ = follow_types ($2); }
1418 | typebase const_or_volatile_or_space_identifier_noopt
1419 { $$ = follow_types ($1); }
c906108c
SS
1420 ;
1421
1422typename: TYPENAME
1423 | INT_KEYWORD
1424 {
1425 $$.stoken.ptr = "int";
1426 $$.stoken.length = 3;
410a0ff2
SDJ
1427 $$.type = lookup_signed_typename (parse_language (pstate),
1428 parse_gdbarch (pstate),
f4b8a18d 1429 "int");
c906108c
SS
1430 }
1431 | LONG
1432 {
1433 $$.stoken.ptr = "long";
1434 $$.stoken.length = 4;
410a0ff2
SDJ
1435 $$.type = lookup_signed_typename (parse_language (pstate),
1436 parse_gdbarch (pstate),
f4b8a18d 1437 "long");
c906108c
SS
1438 }
1439 | SHORT
1440 {
1441 $$.stoken.ptr = "short";
1442 $$.stoken.length = 5;
410a0ff2
SDJ
1443 $$.type = lookup_signed_typename (parse_language (pstate),
1444 parse_gdbarch (pstate),
f4b8a18d 1445 "short");
c906108c
SS
1446 }
1447 ;
1448
a6fb9c08
TT
1449parameter_typelist:
1450 nonempty_typelist
e314d629 1451 { check_parameter_typelist ($1); }
a6fb9c08
TT
1452 | nonempty_typelist ',' DOTDOTDOT
1453 {
1454 VEC_safe_push (type_ptr, $1, NULL);
e314d629 1455 check_parameter_typelist ($1);
a6fb9c08
TT
1456 $$ = $1;
1457 }
1458 ;
1459
c906108c
SS
1460nonempty_typelist
1461 : type
71918a86
TT
1462 {
1463 VEC (type_ptr) *typelist = NULL;
1464 VEC_safe_push (type_ptr, typelist, $1);
1465 $$ = typelist;
c906108c
SS
1466 }
1467 | nonempty_typelist ',' type
71918a86
TT
1468 {
1469 VEC_safe_push (type_ptr, $1, $3);
1470 $$ = $1;
c906108c
SS
1471 }
1472 ;
1473
47663de5 1474ptype : typebase
95c391b6 1475 | ptype abs_decl
fcde5961
TT
1476 {
1477 push_type_stack ($2);
1478 $$ = follow_types ($1);
1479 }
47663de5
MS
1480 ;
1481
95c391b6
TT
1482conversion_type_id: typebase conversion_declarator
1483 { $$ = follow_types ($1); }
1484 ;
1485
1486conversion_declarator: /* Nothing. */
1487 | ptr_operator conversion_declarator
1488 ;
1489
47663de5
MS
1490const_and_volatile: CONST_KEYWORD VOLATILE_KEYWORD
1491 | VOLATILE_KEYWORD CONST_KEYWORD
1492 ;
1493
1494const_or_volatile_noopt: const_and_volatile
95c391b6
TT
1495 { insert_type (tp_const);
1496 insert_type (tp_volatile);
47663de5
MS
1497 }
1498 | CONST_KEYWORD
95c391b6 1499 { insert_type (tp_const); }
47663de5 1500 | VOLATILE_KEYWORD
95c391b6 1501 { insert_type (tp_volatile); }
47663de5
MS
1502 ;
1503
66c53f2b
KS
1504operator: OPERATOR NEW
1505 { $$ = operator_stoken (" new"); }
1506 | OPERATOR DELETE
4cd18215 1507 { $$ = operator_stoken (" delete"); }
66c53f2b
KS
1508 | OPERATOR NEW '[' ']'
1509 { $$ = operator_stoken (" new[]"); }
1510 | OPERATOR DELETE '[' ']'
4cd18215 1511 { $$ = operator_stoken (" delete[]"); }
f2e8016f
TT
1512 | OPERATOR NEW OBJC_LBRAC ']'
1513 { $$ = operator_stoken (" new[]"); }
1514 | OPERATOR DELETE OBJC_LBRAC ']'
1515 { $$ = operator_stoken (" delete[]"); }
66c53f2b
KS
1516 | OPERATOR '+'
1517 { $$ = operator_stoken ("+"); }
1518 | OPERATOR '-'
1519 { $$ = operator_stoken ("-"); }
1520 | OPERATOR '*'
1521 { $$ = operator_stoken ("*"); }
1522 | OPERATOR '/'
1523 { $$ = operator_stoken ("/"); }
1524 | OPERATOR '%'
1525 { $$ = operator_stoken ("%"); }
1526 | OPERATOR '^'
1527 { $$ = operator_stoken ("^"); }
1528 | OPERATOR '&'
1529 { $$ = operator_stoken ("&"); }
1530 | OPERATOR '|'
1531 { $$ = operator_stoken ("|"); }
1532 | OPERATOR '~'
1533 { $$ = operator_stoken ("~"); }
1534 | OPERATOR '!'
1535 { $$ = operator_stoken ("!"); }
1536 | OPERATOR '='
1537 { $$ = operator_stoken ("="); }
1538 | OPERATOR '<'
1539 { $$ = operator_stoken ("<"); }
1540 | OPERATOR '>'
1541 { $$ = operator_stoken (">"); }
1542 | OPERATOR ASSIGN_MODIFY
1543 { const char *op = "unknown";
1544 switch ($2)
1545 {
1546 case BINOP_RSH:
1547 op = ">>=";
1548 break;
1549 case BINOP_LSH:
1550 op = "<<=";
1551 break;
1552 case BINOP_ADD:
1553 op = "+=";
1554 break;
1555 case BINOP_SUB:
1556 op = "-=";
1557 break;
1558 case BINOP_MUL:
1559 op = "*=";
1560 break;
1561 case BINOP_DIV:
1562 op = "/=";
1563 break;
1564 case BINOP_REM:
1565 op = "%=";
1566 break;
1567 case BINOP_BITWISE_IOR:
1568 op = "|=";
1569 break;
1570 case BINOP_BITWISE_AND:
1571 op = "&=";
1572 break;
1573 case BINOP_BITWISE_XOR:
1574 op = "^=";
1575 break;
1576 default:
1577 break;
1578 }
1579
1580 $$ = operator_stoken (op);
1581 }
1582 | OPERATOR LSH
1583 { $$ = operator_stoken ("<<"); }
1584 | OPERATOR RSH
1585 { $$ = operator_stoken (">>"); }
1586 | OPERATOR EQUAL
1587 { $$ = operator_stoken ("=="); }
1588 | OPERATOR NOTEQUAL
1589 { $$ = operator_stoken ("!="); }
1590 | OPERATOR LEQ
1591 { $$ = operator_stoken ("<="); }
1592 | OPERATOR GEQ
1593 { $$ = operator_stoken (">="); }
1594 | OPERATOR ANDAND
1595 { $$ = operator_stoken ("&&"); }
1596 | OPERATOR OROR
1597 { $$ = operator_stoken ("||"); }
1598 | OPERATOR INCREMENT
1599 { $$ = operator_stoken ("++"); }
1600 | OPERATOR DECREMENT
1601 { $$ = operator_stoken ("--"); }
1602 | OPERATOR ','
1603 { $$ = operator_stoken (","); }
1604 | OPERATOR ARROW_STAR
1605 { $$ = operator_stoken ("->*"); }
1606 | OPERATOR ARROW
1607 { $$ = operator_stoken ("->"); }
1608 | OPERATOR '(' ')'
1609 { $$ = operator_stoken ("()"); }
1610 | OPERATOR '[' ']'
1611 { $$ = operator_stoken ("[]"); }
f2e8016f
TT
1612 | OPERATOR OBJC_LBRAC ']'
1613 { $$ = operator_stoken ("[]"); }
95c391b6 1614 | OPERATOR conversion_type_id
66c53f2b
KS
1615 { char *name;
1616 long length;
1617 struct ui_file *buf = mem_fileopen ();
1618
79d43c61
TT
1619 c_print_type ($2, NULL, buf, -1, 0,
1620 &type_print_raw_options);
66c53f2b
KS
1621 name = ui_file_xstrdup (buf, &length);
1622 ui_file_delete (buf);
1623 $$ = operator_stoken (name);
1624 free (name);
1625 }
1626 ;
1627
1628
1629
c906108c
SS
1630name : NAME { $$ = $1.stoken; }
1631 | BLOCKNAME { $$ = $1.stoken; }
1632 | TYPENAME { $$ = $1.stoken; }
1633 | NAME_OR_INT { $$ = $1.stoken; }
7322dca9 1634 | UNKNOWN_CPP_NAME { $$ = $1.stoken; }
66c53f2b 1635 | operator { $$ = $1; }
c906108c
SS
1636 ;
1637
1638name_not_typename : NAME
1639 | BLOCKNAME
1640/* These would be useful if name_not_typename was useful, but it is just
1641 a fake for "variable", so these cause reduce/reduce conflicts because
1642 the parser can't tell whether NAME_OR_INT is a name_not_typename (=variable,
1643 =exp) or just an exp. If name_not_typename was ever used in an lvalue
1644 context where only a name could occur, this might be useful.
1645 | NAME_OR_INT
1646 */
6e31430b
TT
1647 | operator
1648 {
1993b719
TT
1649 struct field_of_this_result is_a_field_of_this;
1650
6e31430b
TT
1651 $$.stoken = $1;
1652 $$.sym = lookup_symbol ($1.ptr,
1653 expression_context_block,
1654 VAR_DOMAIN,
1993b719
TT
1655 &is_a_field_of_this);
1656 $$.is_a_field_of_this
1657 = is_a_field_of_this.type != NULL;
6e31430b 1658 }
7322dca9 1659 | UNKNOWN_CPP_NAME
c906108c
SS
1660 ;
1661
1662%%
1663
24955f63
TT
1664/* Like write_exp_string, but prepends a '~'. */
1665
1666static void
410a0ff2 1667write_destructor_name (struct parser_state *par_state, struct stoken token)
24955f63
TT
1668{
1669 char *copy = alloca (token.length + 1);
1670
1671 copy[0] = '~';
1672 memcpy (&copy[1], token.ptr, token.length);
1673
1674 token.ptr = copy;
1675 ++token.length;
1676
410a0ff2 1677 write_exp_string (par_state, token);
24955f63
TT
1678}
1679
66c53f2b
KS
1680/* Returns a stoken of the operator name given by OP (which does not
1681 include the string "operator"). */
1682static struct stoken
1683operator_stoken (const char *op)
1684{
1685 static const char *operator_string = "operator";
1686 struct stoken st = { NULL, 0 };
d7561cbb
KS
1687 char *buf;
1688
66c53f2b 1689 st.length = strlen (operator_string) + strlen (op);
d7561cbb
KS
1690 buf = malloc (st.length + 1);
1691 strcpy (buf, operator_string);
1692 strcat (buf, op);
1693 st.ptr = buf;
66c53f2b
KS
1694
1695 /* The toplevel (c_parse) will free the memory allocated here. */
d7561cbb 1696 make_cleanup (free, buf);
66c53f2b
KS
1697 return st;
1698};
1699
3d567982
TT
1700/* Return true if the type is aggregate-like. */
1701
1702static int
1703type_aggregate_p (struct type *type)
1704{
1705 return (TYPE_CODE (type) == TYPE_CODE_STRUCT
1706 || TYPE_CODE (type) == TYPE_CODE_UNION
1707 || TYPE_CODE (type) == TYPE_CODE_NAMESPACE
1708 || (TYPE_CODE (type) == TYPE_CODE_ENUM
1709 && TYPE_DECLARED_CLASS (type)));
1710}
1711
e314d629
TT
1712/* Validate a parameter typelist. */
1713
1714static void
1715check_parameter_typelist (VEC (type_ptr) *params)
1716{
1717 struct type *type;
1718 int ix;
1719
1720 for (ix = 0; VEC_iterate (type_ptr, params, ix, type); ++ix)
1721 {
1722 if (type != NULL && TYPE_CODE (check_typedef (type)) == TYPE_CODE_VOID)
1723 {
1724 if (ix == 0)
1725 {
1726 if (VEC_length (type_ptr, params) == 1)
1727 {
1728 /* Ok. */
1729 break;
1730 }
1731 VEC_free (type_ptr, params);
1732 error (_("parameter types following 'void'"));
1733 }
1734 else
1735 {
1736 VEC_free (type_ptr, params);
1737 error (_("'void' invalid as parameter type"));
1738 }
1739 }
1740 }
1741}
1742
c906108c
SS
1743/* Take care of parsing a number (anything that starts with a digit).
1744 Set yylval and return the token type; update lexptr.
1745 LEN is the number of characters in it. */
1746
1747/*** Needs some error checking for the float case ***/
1748
1749static int
410a0ff2
SDJ
1750parse_number (struct parser_state *par_state,
1751 const char *buf, int len, int parsed_float, YYSTYPE *putithere)
c906108c
SS
1752{
1753 /* FIXME: Shouldn't these be unsigned? We don't deal with negative values
1754 here, and we do kind of silly things like cast to unsigned. */
710122da
DC
1755 LONGEST n = 0;
1756 LONGEST prevn = 0;
c906108c
SS
1757 ULONGEST un;
1758
710122da
DC
1759 int i = 0;
1760 int c;
1761 int base = input_radix;
c906108c
SS
1762 int unsigned_p = 0;
1763
1764 /* Number of "L" suffixes encountered. */
1765 int long_p = 0;
1766
1767 /* We have found a "L" or "U" suffix. */
1768 int found_suffix = 0;
1769
1770 ULONGEST high_bit;
1771 struct type *signed_type;
1772 struct type *unsigned_type;
d7561cbb
KS
1773 char *p;
1774
1775 p = alloca (len);
1776 memcpy (p, buf, len);
c906108c
SS
1777
1778 if (parsed_float)
1779 {
27bc4d80
TJB
1780 /* If it ends at "df", "dd" or "dl", take it as type of decimal floating
1781 point. Return DECFLOAT. */
1782
fe9441f6 1783 if (len >= 2 && p[len - 2] == 'd' && p[len - 1] == 'f')
27bc4d80
TJB
1784 {
1785 p[len - 2] = '\0';
1786 putithere->typed_val_decfloat.type
410a0ff2 1787 = parse_type (par_state)->builtin_decfloat;
e17a4113 1788 decimal_from_string (putithere->typed_val_decfloat.val, 4,
410a0ff2
SDJ
1789 gdbarch_byte_order (parse_gdbarch (par_state)),
1790 p);
fe9441f6
JK
1791 p[len - 2] = 'd';
1792 return DECFLOAT;
27bc4d80
TJB
1793 }
1794
fe9441f6 1795 if (len >= 2 && p[len - 2] == 'd' && p[len - 1] == 'd')
27bc4d80
TJB
1796 {
1797 p[len - 2] = '\0';
1798 putithere->typed_val_decfloat.type
410a0ff2 1799 = parse_type (par_state)->builtin_decdouble;
e17a4113 1800 decimal_from_string (putithere->typed_val_decfloat.val, 8,
410a0ff2
SDJ
1801 gdbarch_byte_order (parse_gdbarch (par_state)),
1802 p);
fe9441f6
JK
1803 p[len - 2] = 'd';
1804 return DECFLOAT;
27bc4d80
TJB
1805 }
1806
fe9441f6 1807 if (len >= 2 && p[len - 2] == 'd' && p[len - 1] == 'l')
27bc4d80
TJB
1808 {
1809 p[len - 2] = '\0';
1810 putithere->typed_val_decfloat.type
410a0ff2 1811 = parse_type (par_state)->builtin_declong;
e17a4113 1812 decimal_from_string (putithere->typed_val_decfloat.val, 16,
410a0ff2
SDJ
1813 gdbarch_byte_order (parse_gdbarch (par_state)),
1814 p);
fe9441f6
JK
1815 p[len - 2] = 'd';
1816 return DECFLOAT;
27bc4d80
TJB
1817 }
1818
410a0ff2 1819 if (! parse_c_float (parse_gdbarch (par_state), p, len,
d30f5e1f
DE
1820 &putithere->typed_val_float.dval,
1821 &putithere->typed_val_float.type))
1822 return ERROR;
c906108c
SS
1823 return FLOAT;
1824 }
1825
1826 /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
ebf13736 1827 if (p[0] == '0' && len > 1)
c906108c
SS
1828 switch (p[1])
1829 {
1830 case 'x':
1831 case 'X':
1832 if (len >= 3)
1833 {
1834 p += 2;
1835 base = 16;
1836 len -= 2;
1837 }
1838 break;
1839
b5cfddf5
JK
1840 case 'b':
1841 case 'B':
1842 if (len >= 3)
1843 {
1844 p += 2;
1845 base = 2;
1846 len -= 2;
1847 }
1848 break;
1849
c906108c
SS
1850 case 't':
1851 case 'T':
1852 case 'd':
1853 case 'D':
1854 if (len >= 3)
1855 {
1856 p += 2;
1857 base = 10;
1858 len -= 2;
1859 }
1860 break;
1861
1862 default:
1863 base = 8;
1864 break;
1865 }
1866
1867 while (len-- > 0)
1868 {
1869 c = *p++;
1870 if (c >= 'A' && c <= 'Z')
1871 c += 'a' - 'A';
1872 if (c != 'l' && c != 'u')
1873 n *= base;
1874 if (c >= '0' && c <= '9')
1875 {
1876 if (found_suffix)
1877 return ERROR;
1878 n += i = c - '0';
1879 }
1880 else
1881 {
1882 if (base > 10 && c >= 'a' && c <= 'f')
1883 {
1884 if (found_suffix)
1885 return ERROR;
1886 n += i = c - 'a' + 10;
1887 }
1888 else if (c == 'l')
1889 {
1890 ++long_p;
1891 found_suffix = 1;
1892 }
1893 else if (c == 'u')
1894 {
1895 unsigned_p = 1;
1896 found_suffix = 1;
1897 }
1898 else
1899 return ERROR; /* Char not a digit */
1900 }
1901 if (i >= base)
1902 return ERROR; /* Invalid digit in this base */
1903
1904 /* Portably test for overflow (only works for nonzero values, so make
1905 a second check for zero). FIXME: Can't we just make n and prevn
1906 unsigned and avoid this? */
1907 if (c != 'l' && c != 'u' && (prevn >= n) && n != 0)
1908 unsigned_p = 1; /* Try something unsigned */
1909
1910 /* Portably test for unsigned overflow.
1911 FIXME: This check is wrong; for example it doesn't find overflow
1912 on 0x123456789 when LONGEST is 32 bits. */
1913 if (c != 'l' && c != 'u' && n != 0)
1914 {
1915 if ((unsigned_p && (ULONGEST) prevn >= (ULONGEST) n))
001083c6 1916 error (_("Numeric constant too large."));
c906108c
SS
1917 }
1918 prevn = n;
1919 }
1920
1921 /* An integer constant is an int, a long, or a long long. An L
1922 suffix forces it to be long; an LL suffix forces it to be long
1923 long. If not forced to a larger size, it gets the first type of
1924 the above that it fits in. To figure out whether it fits, we
1925 shift it right and see whether anything remains. Note that we
1926 can't shift sizeof (LONGEST) * HOST_CHAR_BIT bits or more in one
1927 operation, because many compilers will warn about such a shift
9a76efb6
UW
1928 (which always produces a zero result). Sometimes gdbarch_int_bit
1929 or gdbarch_long_bit will be that big, sometimes not. To deal with
c906108c
SS
1930 the case where it is we just always shift the value more than
1931 once, with fewer bits each time. */
1932
1933 un = (ULONGEST)n >> 2;
1934 if (long_p == 0
410a0ff2 1935 && (un >> (gdbarch_int_bit (parse_gdbarch (par_state)) - 2)) == 0)
c906108c 1936 {
410a0ff2
SDJ
1937 high_bit
1938 = ((ULONGEST)1) << (gdbarch_int_bit (parse_gdbarch (par_state)) - 1);
c906108c
SS
1939
1940 /* A large decimal (not hex or octal) constant (between INT_MAX
1941 and UINT_MAX) is a long or unsigned long, according to ANSI,
1942 never an unsigned int, but this code treats it as unsigned
1943 int. This probably should be fixed. GCC gives a warning on
1944 such constants. */
1945
410a0ff2
SDJ
1946 unsigned_type = parse_type (par_state)->builtin_unsigned_int;
1947 signed_type = parse_type (par_state)->builtin_int;
c906108c
SS
1948 }
1949 else if (long_p <= 1
410a0ff2 1950 && (un >> (gdbarch_long_bit (parse_gdbarch (par_state)) - 2)) == 0)
c906108c 1951 {
410a0ff2
SDJ
1952 high_bit
1953 = ((ULONGEST)1) << (gdbarch_long_bit (parse_gdbarch (par_state)) - 1);
1954 unsigned_type = parse_type (par_state)->builtin_unsigned_long;
1955 signed_type = parse_type (par_state)->builtin_long;
c906108c
SS
1956 }
1957 else
1958 {
1959 int shift;
9a76efb6 1960 if (sizeof (ULONGEST) * HOST_CHAR_BIT
410a0ff2 1961 < gdbarch_long_long_bit (parse_gdbarch (par_state)))
c906108c
SS
1962 /* A long long does not fit in a LONGEST. */
1963 shift = (sizeof (ULONGEST) * HOST_CHAR_BIT - 1);
1964 else
410a0ff2 1965 shift = (gdbarch_long_long_bit (parse_gdbarch (par_state)) - 1);
c906108c 1966 high_bit = (ULONGEST) 1 << shift;
410a0ff2
SDJ
1967 unsigned_type = parse_type (par_state)->builtin_unsigned_long_long;
1968 signed_type = parse_type (par_state)->builtin_long_long;
c906108c
SS
1969 }
1970
1971 putithere->typed_val_int.val = n;
1972
1973 /* If the high bit of the worked out type is set then this number
1974 has to be unsigned. */
1975
1976 if (unsigned_p || (n & high_bit))
1977 {
1978 putithere->typed_val_int.type = unsigned_type;
1979 }
1980 else
1981 {
1982 putithere->typed_val_int.type = signed_type;
1983 }
1984
1985 return INT;
1986}
1987
6c7a06a3
TT
1988/* Temporary obstack used for holding strings. */
1989static struct obstack tempbuf;
1990static int tempbuf_init;
1991
1992/* Parse a C escape sequence. The initial backslash of the sequence
1993 is at (*PTR)[-1]. *PTR will be updated to point to just after the
1994 last character of the sequence. If OUTPUT is not NULL, the
1995 translated form of the escape sequence will be written there. If
1996 OUTPUT is NULL, no output is written and the call will only affect
1997 *PTR. If an escape sequence is expressed in target bytes, then the
1998 entire sequence will simply be copied to OUTPUT. Return 1 if any
1999 character was emitted, 0 otherwise. */
2000
2001int
d7561cbb 2002c_parse_escape (const char **ptr, struct obstack *output)
6c7a06a3 2003{
d7561cbb 2004 const char *tokptr = *ptr;
6c7a06a3
TT
2005 int result = 1;
2006
2007 /* Some escape sequences undergo character set conversion. Those we
2008 translate here. */
2009 switch (*tokptr)
2010 {
2011 /* Hex escapes do not undergo character set conversion, so keep
2012 the escape sequence for later. */
2013 case 'x':
2014 if (output)
2015 obstack_grow_str (output, "\\x");
2016 ++tokptr;
2017 if (!isxdigit (*tokptr))
2018 error (_("\\x escape without a following hex digit"));
2019 while (isxdigit (*tokptr))
2020 {
2021 if (output)
2022 obstack_1grow (output, *tokptr);
2023 ++tokptr;
2024 }
2025 break;
2026
2027 /* Octal escapes do not undergo character set conversion, so
2028 keep the escape sequence for later. */
2029 case '0':
2030 case '1':
2031 case '2':
2032 case '3':
2033 case '4':
2034 case '5':
2035 case '6':
2036 case '7':
30b66ecc
TT
2037 {
2038 int i;
2039 if (output)
2040 obstack_grow_str (output, "\\");
2041 for (i = 0;
2042 i < 3 && isdigit (*tokptr) && *tokptr != '8' && *tokptr != '9';
2043 ++i)
2044 {
2045 if (output)
2046 obstack_1grow (output, *tokptr);
2047 ++tokptr;
2048 }
2049 }
6c7a06a3
TT
2050 break;
2051
2052 /* We handle UCNs later. We could handle them here, but that
2053 would mean a spurious error in the case where the UCN could
2054 be converted to the target charset but not the host
2055 charset. */
2056 case 'u':
2057 case 'U':
2058 {
2059 char c = *tokptr;
2060 int i, len = c == 'U' ? 8 : 4;
2061 if (output)
2062 {
2063 obstack_1grow (output, '\\');
2064 obstack_1grow (output, *tokptr);
2065 }
2066 ++tokptr;
2067 if (!isxdigit (*tokptr))
2068 error (_("\\%c escape without a following hex digit"), c);
2069 for (i = 0; i < len && isxdigit (*tokptr); ++i)
2070 {
2071 if (output)
2072 obstack_1grow (output, *tokptr);
2073 ++tokptr;
2074 }
2075 }
2076 break;
2077
2078 /* We must pass backslash through so that it does not
2079 cause quoting during the second expansion. */
2080 case '\\':
2081 if (output)
2082 obstack_grow_str (output, "\\\\");
2083 ++tokptr;
2084 break;
2085
2086 /* Escapes which undergo conversion. */
2087 case 'a':
2088 if (output)
2089 obstack_1grow (output, '\a');
2090 ++tokptr;
2091 break;
2092 case 'b':
2093 if (output)
2094 obstack_1grow (output, '\b');
2095 ++tokptr;
2096 break;
2097 case 'f':
2098 if (output)
2099 obstack_1grow (output, '\f');
2100 ++tokptr;
2101 break;
2102 case 'n':
2103 if (output)
2104 obstack_1grow (output, '\n');
2105 ++tokptr;
2106 break;
2107 case 'r':
2108 if (output)
2109 obstack_1grow (output, '\r');
2110 ++tokptr;
2111 break;
2112 case 't':
2113 if (output)
2114 obstack_1grow (output, '\t');
2115 ++tokptr;
2116 break;
2117 case 'v':
2118 if (output)
2119 obstack_1grow (output, '\v');
2120 ++tokptr;
2121 break;
2122
2123 /* GCC extension. */
2124 case 'e':
2125 if (output)
2126 obstack_1grow (output, HOST_ESCAPE_CHAR);
2127 ++tokptr;
2128 break;
2129
2130 /* Backslash-newline expands to nothing at all. */
2131 case '\n':
2132 ++tokptr;
2133 result = 0;
2134 break;
2135
2136 /* A few escapes just expand to the character itself. */
2137 case '\'':
2138 case '\"':
2139 case '?':
2140 /* GCC extensions. */
2141 case '(':
2142 case '{':
2143 case '[':
2144 case '%':
2145 /* Unrecognized escapes turn into the character itself. */
2146 default:
2147 if (output)
2148 obstack_1grow (output, *tokptr);
2149 ++tokptr;
2150 break;
2151 }
2152 *ptr = tokptr;
2153 return result;
2154}
2155
2156/* Parse a string or character literal from TOKPTR. The string or
2157 character may be wide or unicode. *OUTPTR is set to just after the
2158 end of the literal in the input string. The resulting token is
2159 stored in VALUE. This returns a token value, either STRING or
2160 CHAR, depending on what was parsed. *HOST_CHARS is set to the
2161 number of host characters in the literal. */
2162static int
d7561cbb
KS
2163parse_string_or_char (const char *tokptr, const char **outptr,
2164 struct typed_stoken *value, int *host_chars)
6c7a06a3 2165{
8c5630cb 2166 int quote;
6c7a06a3 2167 enum c_string_type type;
f2e8016f 2168 int is_objc = 0;
6c7a06a3
TT
2169
2170 /* Build the gdb internal form of the input string in tempbuf. Note
2171 that the buffer is null byte terminated *only* for the
2172 convenience of debugging gdb itself and printing the buffer
2173 contents when the buffer contains no embedded nulls. Gdb does
2174 not depend upon the buffer being null byte terminated, it uses
2175 the length string instead. This allows gdb to handle C strings
2176 (as well as strings in other languages) with embedded null
2177 bytes */
2178
2179 if (!tempbuf_init)
2180 tempbuf_init = 1;
2181 else
2182 obstack_free (&tempbuf, NULL);
2183 obstack_init (&tempbuf);
2184
2185 /* Record the string type. */
2186 if (*tokptr == 'L')
2187 {
2188 type = C_WIDE_STRING;
2189 ++tokptr;
2190 }
2191 else if (*tokptr == 'u')
2192 {
2193 type = C_STRING_16;
2194 ++tokptr;
2195 }
2196 else if (*tokptr == 'U')
2197 {
2198 type = C_STRING_32;
2199 ++tokptr;
2200 }
f2e8016f
TT
2201 else if (*tokptr == '@')
2202 {
2203 /* An Objective C string. */
2204 is_objc = 1;
2205 type = C_STRING;
2206 ++tokptr;
2207 }
6c7a06a3
TT
2208 else
2209 type = C_STRING;
2210
2211 /* Skip the quote. */
2212 quote = *tokptr;
2213 if (quote == '\'')
2214 type |= C_CHAR;
2215 ++tokptr;
2216
2217 *host_chars = 0;
2218
2219 while (*tokptr)
2220 {
2221 char c = *tokptr;
2222 if (c == '\\')
2223 {
2224 ++tokptr;
2225 *host_chars += c_parse_escape (&tokptr, &tempbuf);
2226 }
2227 else if (c == quote)
2228 break;
2229 else
2230 {
2231 obstack_1grow (&tempbuf, c);
2232 ++tokptr;
2233 /* FIXME: this does the wrong thing with multi-byte host
2234 characters. We could use mbrlen here, but that would
2235 make "set host-charset" a bit less useful. */
2236 ++*host_chars;
2237 }
2238 }
2239
2240 if (*tokptr != quote)
2241 {
2242 if (quote == '"')
001083c6 2243 error (_("Unterminated string in expression."));
6c7a06a3 2244 else
001083c6 2245 error (_("Unmatched single quote."));
6c7a06a3
TT
2246 }
2247 ++tokptr;
2248
2249 value->type = type;
2250 value->ptr = obstack_base (&tempbuf);
2251 value->length = obstack_object_size (&tempbuf);
2252
2253 *outptr = tokptr;
2254
f2e8016f 2255 return quote == '"' ? (is_objc ? NSSTRING : STRING) : CHAR;
6c7a06a3
TT
2256}
2257
274b54d7
TT
2258/* This is used to associate some attributes with a token. */
2259
2260enum token_flags
2261{
2262 /* If this bit is set, the token is C++-only. */
2263
2264 FLAG_CXX = 1,
2265
2266 /* If this bit is set, the token is conditional: if there is a
2267 symbol of the same name, then the token is a symbol; otherwise,
2268 the token is a keyword. */
2269
2270 FLAG_SHADOW = 2
2271};
2272
c906108c
SS
2273struct token
2274{
2275 char *operator;
2276 int token;
2277 enum exp_opcode opcode;
274b54d7 2278 enum token_flags flags;
c906108c
SS
2279};
2280
2281static const struct token tokentab3[] =
2282 {
ba163c7e 2283 {">>=", ASSIGN_MODIFY, BINOP_RSH, 0},
c1af96a0 2284 {"<<=", ASSIGN_MODIFY, BINOP_LSH, 0},
274b54d7 2285 {"->*", ARROW_STAR, BINOP_END, FLAG_CXX},
a6fb9c08 2286 {"...", DOTDOTDOT, BINOP_END, 0}
c906108c
SS
2287 };
2288
2289static const struct token tokentab2[] =
2290 {
ba163c7e
TT
2291 {"+=", ASSIGN_MODIFY, BINOP_ADD, 0},
2292 {"-=", ASSIGN_MODIFY, BINOP_SUB, 0},
2293 {"*=", ASSIGN_MODIFY, BINOP_MUL, 0},
2294 {"/=", ASSIGN_MODIFY, BINOP_DIV, 0},
2295 {"%=", ASSIGN_MODIFY, BINOP_REM, 0},
2296 {"|=", ASSIGN_MODIFY, BINOP_BITWISE_IOR, 0},
2297 {"&=", ASSIGN_MODIFY, BINOP_BITWISE_AND, 0},
2298 {"^=", ASSIGN_MODIFY, BINOP_BITWISE_XOR, 0},
2299 {"++", INCREMENT, BINOP_END, 0},
2300 {"--", DECREMENT, BINOP_END, 0},
2301 {"->", ARROW, BINOP_END, 0},
2302 {"&&", ANDAND, BINOP_END, 0},
2303 {"||", OROR, BINOP_END, 0},
ec7f2efe
KS
2304 /* "::" is *not* only C++: gdb overrides its meaning in several
2305 different ways, e.g., 'filename'::func, function::variable. */
ba163c7e
TT
2306 {"::", COLONCOLON, BINOP_END, 0},
2307 {"<<", LSH, BINOP_END, 0},
2308 {">>", RSH, BINOP_END, 0},
2309 {"==", EQUAL, BINOP_END, 0},
2310 {"!=", NOTEQUAL, BINOP_END, 0},
2311 {"<=", LEQ, BINOP_END, 0},
c1af96a0 2312 {">=", GEQ, BINOP_END, 0},
274b54d7 2313 {".*", DOT_STAR, BINOP_END, FLAG_CXX}
ba163c7e
TT
2314 };
2315
2316/* Identifier-like tokens. */
2317static const struct token ident_tokens[] =
2318 {
2319 {"unsigned", UNSIGNED, OP_NULL, 0},
274b54d7 2320 {"template", TEMPLATE, OP_NULL, FLAG_CXX},
ba163c7e
TT
2321 {"volatile", VOLATILE_KEYWORD, OP_NULL, 0},
2322 {"struct", STRUCT, OP_NULL, 0},
2323 {"signed", SIGNED_KEYWORD, OP_NULL, 0},
2324 {"sizeof", SIZEOF, OP_NULL, 0},
2325 {"double", DOUBLE_KEYWORD, OP_NULL, 0},
274b54d7
TT
2326 {"false", FALSEKEYWORD, OP_NULL, FLAG_CXX},
2327 {"class", CLASS, OP_NULL, FLAG_CXX},
ba163c7e
TT
2328 {"union", UNION, OP_NULL, 0},
2329 {"short", SHORT, OP_NULL, 0},
2330 {"const", CONST_KEYWORD, OP_NULL, 0},
2331 {"enum", ENUM, OP_NULL, 0},
2332 {"long", LONG, OP_NULL, 0},
274b54d7 2333 {"true", TRUEKEYWORD, OP_NULL, FLAG_CXX},
ba163c7e 2334 {"int", INT_KEYWORD, OP_NULL, 0},
274b54d7
TT
2335 {"new", NEW, OP_NULL, FLAG_CXX},
2336 {"delete", DELETE, OP_NULL, FLAG_CXX},
2337 {"operator", OPERATOR, OP_NULL, FLAG_CXX},
2338
2339 {"and", ANDAND, BINOP_END, FLAG_CXX},
2340 {"and_eq", ASSIGN_MODIFY, BINOP_BITWISE_AND, FLAG_CXX},
2341 {"bitand", '&', OP_NULL, FLAG_CXX},
2342 {"bitor", '|', OP_NULL, FLAG_CXX},
2343 {"compl", '~', OP_NULL, FLAG_CXX},
2344 {"not", '!', OP_NULL, FLAG_CXX},
2345 {"not_eq", NOTEQUAL, BINOP_END, FLAG_CXX},
2346 {"or", OROR, BINOP_END, FLAG_CXX},
2347 {"or_eq", ASSIGN_MODIFY, BINOP_BITWISE_IOR, FLAG_CXX},
2348 {"xor", '^', OP_NULL, FLAG_CXX},
2349 {"xor_eq", ASSIGN_MODIFY, BINOP_BITWISE_XOR, FLAG_CXX},
2350
2351 {"const_cast", CONST_CAST, OP_NULL, FLAG_CXX },
2352 {"dynamic_cast", DYNAMIC_CAST, OP_NULL, FLAG_CXX },
2353 {"static_cast", STATIC_CAST, OP_NULL, FLAG_CXX },
608b4967
TT
2354 {"reinterpret_cast", REINTERPRET_CAST, OP_NULL, FLAG_CXX },
2355
2356 {"__typeof__", TYPEOF, OP_TYPEOF, 0 },
2357 {"__typeof", TYPEOF, OP_TYPEOF, 0 },
2358 {"typeof", TYPEOF, OP_TYPEOF, FLAG_SHADOW },
2359 {"__decltype", DECLTYPE, OP_DECLTYPE, FLAG_CXX },
6e72ca20
TT
2360 {"decltype", DECLTYPE, OP_DECLTYPE, FLAG_CXX | FLAG_SHADOW },
2361
2362 {"typeid", TYPEID, OP_TYPEID, FLAG_CXX}
c906108c
SS
2363 };
2364
7c8adf68
TT
2365/* When we find that lexptr (the global var defined in parse.c) is
2366 pointing at a macro invocation, we expand the invocation, and call
2367 scan_macro_expansion to save the old lexptr here and point lexptr
2368 into the expanded text. When we reach the end of that, we call
2369 end_macro_expansion to pop back to the value we saved here. The
2370 macro expansion code promises to return only fully-expanded text,
2371 so we don't need to "push" more than one level.
2372
2373 This is disgusting, of course. It would be cleaner to do all macro
2374 expansion beforehand, and then hand that to lexptr. But we don't
2375 really know where the expression ends. Remember, in a command like
2376
2377 (gdb) break *ADDRESS if CONDITION
2378
2379 we evaluate ADDRESS in the scope of the current frame, but we
2380 evaluate CONDITION in the scope of the breakpoint's location. So
2381 it's simply wrong to try to macro-expand the whole thing at once. */
d7561cbb 2382static const char *macro_original_text;
7c8adf68
TT
2383
2384/* We save all intermediate macro expansions on this obstack for the
2385 duration of a single parse. The expansion text may sometimes have
2386 to live past the end of the expansion, due to yacc lookahead.
2387 Rather than try to be clever about saving the data for a single
2388 token, we simply keep it all and delete it after parsing has
2389 completed. */
2390static struct obstack expansion_obstack;
2391
2392static void
2393scan_macro_expansion (char *expansion)
2394{
2395 char *copy;
2396
2397 /* We'd better not be trying to push the stack twice. */
2398 gdb_assert (! macro_original_text);
2399
2400 /* Copy to the obstack, and then free the intermediate
2401 expansion. */
2402 copy = obstack_copy0 (&expansion_obstack, expansion, strlen (expansion));
2403 xfree (expansion);
2404
2405 /* Save the old lexptr value, so we can return to it when we're done
2406 parsing the expanded text. */
2407 macro_original_text = lexptr;
2408 lexptr = copy;
2409}
2410
2411
2412static int
2413scanning_macro_expansion (void)
2414{
2415 return macro_original_text != 0;
2416}
2417
2418
2419static void
2420finished_macro_expansion (void)
2421{
2422 /* There'd better be something to pop back to. */
2423 gdb_assert (macro_original_text);
2424
2425 /* Pop back to the original text. */
2426 lexptr = macro_original_text;
2427 macro_original_text = 0;
2428}
2429
2430
2431static void
2432scan_macro_cleanup (void *dummy)
2433{
2434 if (macro_original_text)
2435 finished_macro_expansion ();
2436
2437 obstack_free (&expansion_obstack, NULL);
2438}
2439
4e8f195d
TT
2440/* Return true iff the token represents a C++ cast operator. */
2441
2442static int
2443is_cast_operator (const char *token, int len)
2444{
2445 return (! strncmp (token, "dynamic_cast", len)
2446 || ! strncmp (token, "static_cast", len)
2447 || ! strncmp (token, "reinterpret_cast", len)
2448 || ! strncmp (token, "const_cast", len));
2449}
7c8adf68
TT
2450
2451/* The scope used for macro expansion. */
2452static struct macro_scope *expression_macro_scope;
2453
65d12d83
TT
2454/* This is set if a NAME token appeared at the very end of the input
2455 string, with no whitespace separating the name from the EOF. This
2456 is used only when parsing to do field name completion. */
2457static int saw_name_at_eof;
2458
2459/* This is set if the previously-returned token was a structure
2460 operator -- either '.' or ARROW. This is used only when parsing to
2461 do field name completion. */
2462static int last_was_structop;
2463
c906108c
SS
2464/* Read one token, getting characters through lexptr. */
2465
2466static int
410a0ff2 2467lex_one_token (struct parser_state *par_state, int *is_quoted_name)
c906108c
SS
2468{
2469 int c;
2470 int namelen;
2471 unsigned int i;
d7561cbb 2472 const char *tokstart;
65d12d83 2473 int saw_structop = last_was_structop;
ba163c7e 2474 char *copy;
65d12d83
TT
2475
2476 last_was_structop = 0;
805e1f19 2477 *is_quoted_name = 0;
65d12d83 2478
c906108c
SS
2479 retry:
2480
84f0252a
JB
2481 /* Check if this is a macro invocation that we need to expand. */
2482 if (! scanning_macro_expansion ())
2483 {
2484 char *expanded = macro_expand_next (&lexptr,
7c8adf68
TT
2485 standard_macro_lookup,
2486 expression_macro_scope);
84f0252a
JB
2487
2488 if (expanded)
2489 scan_macro_expansion (expanded);
2490 }
2491
665132f9 2492 prev_lexptr = lexptr;
c906108c
SS
2493
2494 tokstart = lexptr;
2495 /* See if it is a special token of length 3. */
2496 for (i = 0; i < sizeof tokentab3 / sizeof tokentab3[0]; i++)
bf896cb0 2497 if (strncmp (tokstart, tokentab3[i].operator, 3) == 0)
c906108c 2498 {
274b54d7 2499 if ((tokentab3[i].flags & FLAG_CXX) != 0
410a0ff2 2500 && parse_language (par_state)->la_language != language_cplus)
ec7f2efe
KS
2501 break;
2502
c906108c
SS
2503 lexptr += 3;
2504 yylval.opcode = tokentab3[i].opcode;
2505 return tokentab3[i].token;
2506 }
2507
2508 /* See if it is a special token of length 2. */
2509 for (i = 0; i < sizeof tokentab2 / sizeof tokentab2[0]; i++)
bf896cb0 2510 if (strncmp (tokstart, tokentab2[i].operator, 2) == 0)
c906108c 2511 {
274b54d7 2512 if ((tokentab2[i].flags & FLAG_CXX) != 0
410a0ff2 2513 && parse_language (par_state)->la_language != language_cplus)
ec7f2efe
KS
2514 break;
2515
c906108c
SS
2516 lexptr += 2;
2517 yylval.opcode = tokentab2[i].opcode;
155da517 2518 if (parse_completion && tokentab2[i].token == ARROW)
65d12d83 2519 last_was_structop = 1;
c906108c
SS
2520 return tokentab2[i].token;
2521 }
2522
2523 switch (c = *tokstart)
2524 {
2525 case 0:
84f0252a
JB
2526 /* If we were just scanning the result of a macro expansion,
2527 then we need to resume scanning the original text.
65d12d83
TT
2528 If we're parsing for field name completion, and the previous
2529 token allows such completion, return a COMPLETE token.
84f0252a
JB
2530 Otherwise, we were already scanning the original text, and
2531 we're really done. */
2532 if (scanning_macro_expansion ())
2533 {
2534 finished_macro_expansion ();
2535 goto retry;
2536 }
65d12d83
TT
2537 else if (saw_name_at_eof)
2538 {
2539 saw_name_at_eof = 0;
2540 return COMPLETE;
2541 }
2542 else if (saw_structop)
2543 return COMPLETE;
84f0252a
JB
2544 else
2545 return 0;
c906108c
SS
2546
2547 case ' ':
2548 case '\t':
2549 case '\n':
2550 lexptr++;
2551 goto retry;
2552
379a77b5 2553 case '[':
c906108c
SS
2554 case '(':
2555 paren_depth++;
2556 lexptr++;
410a0ff2
SDJ
2557 if (parse_language (par_state)->la_language == language_objc
2558 && c == '[')
f2e8016f 2559 return OBJC_LBRAC;
c906108c
SS
2560 return c;
2561
379a77b5 2562 case ']':
c906108c
SS
2563 case ')':
2564 if (paren_depth == 0)
2565 return 0;
2566 paren_depth--;
2567 lexptr++;
2568 return c;
2569
2570 case ',':
84f0252a
JB
2571 if (comma_terminates
2572 && paren_depth == 0
2573 && ! scanning_macro_expansion ())
c906108c
SS
2574 return 0;
2575 lexptr++;
2576 return c;
2577
2578 case '.':
2579 /* Might be a floating point number. */
2580 if (lexptr[1] < '0' || lexptr[1] > '9')
65d12d83 2581 {
155da517 2582 if (parse_completion)
65d12d83
TT
2583 last_was_structop = 1;
2584 goto symbol; /* Nope, must be a symbol. */
2585 }
c906108c
SS
2586 /* FALL THRU into number case. */
2587
2588 case '0':
2589 case '1':
2590 case '2':
2591 case '3':
2592 case '4':
2593 case '5':
2594 case '6':
2595 case '7':
2596 case '8':
2597 case '9':
2598 {
2599 /* It's a number. */
2600 int got_dot = 0, got_e = 0, toktype;
d7561cbb 2601 const char *p = tokstart;
c906108c
SS
2602 int hex = input_radix > 10;
2603
2604 if (c == '0' && (p[1] == 'x' || p[1] == 'X'))
2605 {
2606 p += 2;
2607 hex = 1;
2608 }
2609 else if (c == '0' && (p[1]=='t' || p[1]=='T' || p[1]=='d' || p[1]=='D'))
2610 {
2611 p += 2;
2612 hex = 0;
2613 }
2614
2615 for (;; ++p)
2616 {
2617 /* This test includes !hex because 'e' is a valid hex digit
2618 and thus does not indicate a floating point number when
2619 the radix is hex. */
2620 if (!hex && !got_e && (*p == 'e' || *p == 'E'))
2621 got_dot = got_e = 1;
2622 /* This test does not include !hex, because a '.' always indicates
2623 a decimal floating point number regardless of the radix. */
2624 else if (!got_dot && *p == '.')
2625 got_dot = 1;
2626 else if (got_e && (p[-1] == 'e' || p[-1] == 'E')
2627 && (*p == '-' || *p == '+'))
2628 /* This is the sign of the exponent, not the end of the
2629 number. */
2630 continue;
2631 /* We will take any letters or digits. parse_number will
2632 complain if past the radix, or if L or U are not final. */
2633 else if ((*p < '0' || *p > '9')
2634 && ((*p < 'a' || *p > 'z')
2635 && (*p < 'A' || *p > 'Z')))
2636 break;
2637 }
410a0ff2
SDJ
2638 toktype = parse_number (par_state, tokstart, p - tokstart,
2639 got_dot|got_e, &yylval);
c906108c
SS
2640 if (toktype == ERROR)
2641 {
2642 char *err_copy = (char *) alloca (p - tokstart + 1);
2643
2644 memcpy (err_copy, tokstart, p - tokstart);
2645 err_copy[p - tokstart] = 0;
001083c6 2646 error (_("Invalid number \"%s\"."), err_copy);
c906108c
SS
2647 }
2648 lexptr = p;
2649 return toktype;
2650 }
2651
941b2081
JK
2652 case '@':
2653 {
d7561cbb 2654 const char *p = &tokstart[1];
941b2081
JK
2655 size_t len = strlen ("entry");
2656
410a0ff2 2657 if (parse_language (par_state)->la_language == language_objc)
f2e8016f
TT
2658 {
2659 size_t len = strlen ("selector");
2660
2661 if (strncmp (p, "selector", len) == 0
2662 && (p[len] == '\0' || isspace (p[len])))
2663 {
2664 lexptr = p + len;
2665 return SELECTOR;
2666 }
2667 else if (*p == '"')
2668 goto parse_string;
2669 }
2670
941b2081
JK
2671 while (isspace (*p))
2672 p++;
2673 if (strncmp (p, "entry", len) == 0 && !isalnum (p[len])
2674 && p[len] != '_')
2675 {
2676 lexptr = &p[len];
2677 return ENTRY;
2678 }
2679 }
2680 /* FALLTHRU */
c906108c
SS
2681 case '+':
2682 case '-':
2683 case '*':
2684 case '/':
2685 case '%':
2686 case '|':
2687 case '&':
2688 case '^':
2689 case '~':
2690 case '!':
c906108c
SS
2691 case '<':
2692 case '>':
c906108c
SS
2693 case '?':
2694 case ':':
2695 case '=':
2696 case '{':
2697 case '}':
2698 symbol:
2699 lexptr++;
2700 return c;
2701
6c7a06a3
TT
2702 case 'L':
2703 case 'u':
2704 case 'U':
2705 if (tokstart[1] != '"' && tokstart[1] != '\'')
2706 break;
2707 /* Fall through. */
2708 case '\'':
c906108c 2709 case '"':
f2e8016f
TT
2710
2711 parse_string:
6c7a06a3
TT
2712 {
2713 int host_len;
2714 int result = parse_string_or_char (tokstart, &lexptr, &yylval.tsval,
2715 &host_len);
2716 if (result == CHAR)
c906108c 2717 {
6c7a06a3 2718 if (host_len == 0)
001083c6 2719 error (_("Empty character constant."));
6c7a06a3 2720 else if (host_len > 2 && c == '\'')
c906108c 2721 {
6c7a06a3
TT
2722 ++tokstart;
2723 namelen = lexptr - tokstart - 1;
805e1f19
TT
2724 *is_quoted_name = 1;
2725
6c7a06a3 2726 goto tryname;
c906108c 2727 }
6c7a06a3 2728 else if (host_len > 1)
001083c6 2729 error (_("Invalid character constant."));
c906108c 2730 }
6c7a06a3
TT
2731 return result;
2732 }
c906108c
SS
2733 }
2734
2735 if (!(c == '_' || c == '$'
2736 || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')))
2737 /* We must have come across a bad character (e.g. ';'). */
001083c6 2738 error (_("Invalid character '%c' in expression."), c);
c906108c
SS
2739
2740 /* It's a name. See how long it is. */
2741 namelen = 0;
2742 for (c = tokstart[namelen];
2743 (c == '_' || c == '$' || (c >= '0' && c <= '9')
2744 || (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c == '<');)
2745 {
2746 /* Template parameter lists are part of the name.
2747 FIXME: This mishandles `print $a<4&&$a>3'. */
2748
2749 if (c == '<')
4e8f195d
TT
2750 {
2751 if (! is_cast_operator (tokstart, namelen))
2752 {
2753 /* Scan ahead to get rest of the template specification. Note
2754 that we look ahead only when the '<' adjoins non-whitespace
2755 characters; for comparison expressions, e.g. "a < b > c",
2756 there must be spaces before the '<', etc. */
c906108c 2757
d7561cbb
KS
2758 const char *p = find_template_name_end (tokstart + namelen);
2759
4e8f195d
TT
2760 if (p)
2761 namelen = p - tokstart;
2762 }
2763 break;
c906108c
SS
2764 }
2765 c = tokstart[++namelen];
2766 }
2767
84f0252a
JB
2768 /* The token "if" terminates the expression and is NOT removed from
2769 the input stream. It doesn't count if it appears in the
2770 expansion of a macro. */
2771 if (namelen == 2
2772 && tokstart[0] == 'i'
2773 && tokstart[1] == 'f'
2774 && ! scanning_macro_expansion ())
c906108c
SS
2775 {
2776 return 0;
2777 }
2778
b6199126
DJ
2779 /* For the same reason (breakpoint conditions), "thread N"
2780 terminates the expression. "thread" could be an identifier, but
2781 an identifier is never followed by a number without intervening
2782 punctuation. "task" is similar. Handle abbreviations of these,
2783 similarly to breakpoint.c:find_condition_and_thread. */
2784 if (namelen >= 1
2785 && (strncmp (tokstart, "thread", namelen) == 0
2786 || strncmp (tokstart, "task", namelen) == 0)
2787 && (tokstart[namelen] == ' ' || tokstart[namelen] == '\t')
2788 && ! scanning_macro_expansion ())
2789 {
d7561cbb
KS
2790 const char *p = tokstart + namelen + 1;
2791
b6199126
DJ
2792 while (*p == ' ' || *p == '\t')
2793 p++;
2794 if (*p >= '0' && *p <= '9')
2795 return 0;
2796 }
2797
c906108c
SS
2798 lexptr += namelen;
2799
2800 tryname:
2801
c906108c
SS
2802 yylval.sval.ptr = tokstart;
2803 yylval.sval.length = namelen;
2804
ba163c7e
TT
2805 /* Catch specific keywords. */
2806 copy = copy_name (yylval.sval);
2807 for (i = 0; i < sizeof ident_tokens / sizeof ident_tokens[0]; i++)
2808 if (strcmp (copy, ident_tokens[i].operator) == 0)
2809 {
274b54d7 2810 if ((ident_tokens[i].flags & FLAG_CXX) != 0
410a0ff2 2811 && parse_language (par_state)->la_language != language_cplus)
ba163c7e
TT
2812 break;
2813
274b54d7
TT
2814 if ((ident_tokens[i].flags & FLAG_SHADOW) != 0)
2815 {
1993b719 2816 struct field_of_this_result is_a_field_of_this;
274b54d7
TT
2817
2818 if (lookup_symbol (copy, expression_context_block,
2819 VAR_DOMAIN,
410a0ff2
SDJ
2820 (parse_language (par_state)->la_language
2821 == language_cplus ? &is_a_field_of_this
274b54d7
TT
2822 : NULL))
2823 != NULL)
2824 {
2825 /* The keyword is shadowed. */
2826 break;
2827 }
2828 }
2829
ba163c7e
TT
2830 /* It is ok to always set this, even though we don't always
2831 strictly need to. */
2832 yylval.opcode = ident_tokens[i].opcode;
2833 return ident_tokens[i].token;
2834 }
2835
c906108c 2836 if (*tokstart == '$')
48e32051
TT
2837 return VARIABLE;
2838
155da517 2839 if (parse_completion && *lexptr == '\0')
48e32051 2840 saw_name_at_eof = 1;
e234dfaf
TT
2841
2842 yylval.ssym.stoken = yylval.sval;
2843 yylval.ssym.sym = NULL;
2844 yylval.ssym.is_a_field_of_this = 0;
48e32051
TT
2845 return NAME;
2846}
2847
2848/* An object of this type is pushed on a FIFO by the "outer" lexer. */
2849typedef struct
2850{
2851 int token;
e707a91d 2852 YYSTYPE value;
48e32051
TT
2853} token_and_value;
2854
2855DEF_VEC_O (token_and_value);
2856
2857/* A FIFO of tokens that have been read but not yet returned to the
2858 parser. */
2859static VEC (token_and_value) *token_fifo;
2860
2861/* Non-zero if the lexer should return tokens from the FIFO. */
2862static int popping;
2863
2864/* Temporary storage for c_lex; this holds symbol names as they are
2865 built up. */
2866static struct obstack name_obstack;
2867
2868/* Classify a NAME token. The contents of the token are in `yylval'.
2869 Updates yylval and returns the new token type. BLOCK is the block
805e1f19
TT
2870 in which lookups start; this can be NULL to mean the global scope.
2871 IS_QUOTED_NAME is non-zero if the name token was originally quoted
2872 in single quotes. */
48e32051 2873static int
410a0ff2
SDJ
2874classify_name (struct parser_state *par_state, const struct block *block,
2875 int is_quoted_name)
48e32051
TT
2876{
2877 struct symbol *sym;
2878 char *copy;
1993b719 2879 struct field_of_this_result is_a_field_of_this;
48e32051
TT
2880
2881 copy = copy_name (yylval.sval);
2882
1993b719
TT
2883 /* Initialize this in case we *don't* use it in this call; that way
2884 we can refer to it unconditionally below. */
2885 memset (&is_a_field_of_this, 0, sizeof (is_a_field_of_this));
2886
48e32051 2887 sym = lookup_symbol (copy, block, VAR_DOMAIN,
410a0ff2 2888 parse_language (par_state)->la_name_of_this
1993b719 2889 ? &is_a_field_of_this : NULL);
48e32051
TT
2890
2891 if (sym && SYMBOL_CLASS (sym) == LOC_BLOCK)
c906108c 2892 {
48e32051 2893 yylval.ssym.sym = sym;
1993b719 2894 yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
48e32051 2895 return BLOCKNAME;
c906108c 2896 }
48e32051
TT
2897 else if (!sym)
2898 {
6592e36f
TT
2899 /* If we found a field of 'this', we might have erroneously
2900 found a constructor where we wanted a type name. Handle this
2901 case by noticing that we found a constructor and then look up
2902 the type tag instead. */
2903 if (is_a_field_of_this.type != NULL
2904 && is_a_field_of_this.fn_field != NULL
2905 && TYPE_FN_FIELD_CONSTRUCTOR (is_a_field_of_this.fn_field->fn_fields,
2906 0))
2907 {
2908 struct field_of_this_result inner_is_a_field_of_this;
2909
2910 sym = lookup_symbol (copy, block, STRUCT_DOMAIN,
2911 &inner_is_a_field_of_this);
2912 if (sym != NULL)
2913 {
2914 yylval.tsym.type = SYMBOL_TYPE (sym);
2915 return TYPENAME;
2916 }
2917 }
805e1f19
TT
2918
2919 /* If we found a field, then we want to prefer it over a
2920 filename. However, if the name was quoted, then it is better
2921 to check for a filename or a block, since this is the only
2922 way the user has of requiring the extension to be used. */
2923 if (is_a_field_of_this.type == NULL || is_quoted_name)
2924 {
2925 /* See if it's a file name. */
2926 struct symtab *symtab;
2927
2928 symtab = lookup_symtab (copy);
2929 if (symtab)
2930 {
2931 yylval.bval = BLOCKVECTOR_BLOCK (BLOCKVECTOR (symtab),
2932 STATIC_BLOCK);
2933 return FILENAME;
2934 }
2935 }
48e32051 2936 }
c906108c 2937
48e32051
TT
2938 if (sym && SYMBOL_CLASS (sym) == LOC_TYPEDEF)
2939 {
2940 yylval.tsym.type = SYMBOL_TYPE (sym);
47663de5 2941 return TYPENAME;
48e32051 2942 }
c906108c 2943
48e32051 2944 yylval.tsym.type
410a0ff2
SDJ
2945 = language_lookup_primitive_type_by_name (parse_language (par_state),
2946 parse_gdbarch (par_state),
2947 copy);
48e32051
TT
2948 if (yylval.tsym.type != NULL)
2949 return TYPENAME;
2950
f2e8016f 2951 /* See if it's an ObjC classname. */
410a0ff2 2952 if (parse_language (par_state)->la_language == language_objc && !sym)
f2e8016f 2953 {
410a0ff2 2954 CORE_ADDR Class = lookup_objc_class (parse_gdbarch (par_state), copy);
f2e8016f
TT
2955 if (Class)
2956 {
2957 yylval.class.class = Class;
826f0041
TT
2958 sym = lookup_struct_typedef (copy, expression_context_block, 1);
2959 if (sym)
f2e8016f
TT
2960 yylval.class.type = SYMBOL_TYPE (sym);
2961 return CLASSNAME;
2962 }
2963 }
2964
48e32051
TT
2965 /* Input names that aren't symbols but ARE valid hex numbers, when
2966 the input radix permits them, can be names or numbers depending
2967 on the parse. Note we support radixes > 16 here. */
2968 if (!sym
2969 && ((copy[0] >= 'a' && copy[0] < 'a' + input_radix - 10)
2970 || (copy[0] >= 'A' && copy[0] < 'A' + input_radix - 10)))
2971 {
2972 YYSTYPE newlval; /* Its value is ignored. */
410a0ff2
SDJ
2973 int hextype = parse_number (par_state, copy, yylval.sval.length,
2974 0, &newlval);
48e32051
TT
2975 if (hextype == INT)
2976 {
2977 yylval.ssym.sym = sym;
1993b719 2978 yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
48e32051
TT
2979 return NAME_OR_INT;
2980 }
2981 }
2982
2983 /* Any other kind of symbol */
2984 yylval.ssym.sym = sym;
1993b719 2985 yylval.ssym.is_a_field_of_this = is_a_field_of_this.type != NULL;
7322dca9
SW
2986
2987 if (sym == NULL
410a0ff2 2988 && parse_language (par_state)->la_language == language_cplus
1993b719 2989 && is_a_field_of_this.type == NULL
3b7344d5 2990 && lookup_minimal_symbol (copy, NULL, NULL).minsym == NULL)
7322dca9
SW
2991 return UNKNOWN_CPP_NAME;
2992
48e32051
TT
2993 return NAME;
2994}
c906108c 2995
48e32051 2996/* Like classify_name, but used by the inner loop of the lexer, when a
e234dfaf
TT
2997 name might have already been seen. CONTEXT is the context type, or
2998 NULL if this is the first component of a name. */
50af5481 2999
48e32051 3000static int
410a0ff2
SDJ
3001classify_inner_name (struct parser_state *par_state,
3002 const struct block *block, struct type *context)
48e32051 3003{
df54f8eb 3004 struct type *type;
48e32051
TT
3005 char *copy;
3006
e234dfaf 3007 if (context == NULL)
410a0ff2 3008 return classify_name (par_state, block, 0);
48e32051 3009
e234dfaf 3010 type = check_typedef (context);
3d567982 3011 if (!type_aggregate_p (type))
50af5481 3012 return ERROR;
48e32051 3013
e234dfaf
TT
3014 copy = copy_name (yylval.ssym.stoken);
3015 yylval.ssym.sym = cp_lookup_nested_symbol (type, copy, block);
f7e3ecae
KS
3016
3017 /* If no symbol was found, search for a matching base class named
3018 COPY. This will allow users to enter qualified names of class members
3019 relative to the `this' pointer. */
50af5481 3020 if (yylval.ssym.sym == NULL)
f7e3ecae
KS
3021 {
3022 struct type *base_type = find_type_baseclass_by_name (type, copy);
3023
3024 if (base_type != NULL)
3025 {
3026 yylval.tsym.type = base_type;
3027 return TYPENAME;
3028 }
3029
3030 return ERROR;
3031 }
50af5481
JK
3032
3033 switch (SYMBOL_CLASS (yylval.ssym.sym))
3034 {
3035 case LOC_BLOCK:
3036 case LOC_LABEL:
f7e3ecae
KS
3037 /* cp_lookup_nested_symbol might have accidentally found a constructor
3038 named COPY when we really wanted a base class of the same name.
3039 Double-check this case by looking for a base class. */
3040 {
3041 struct type *base_type = find_type_baseclass_by_name (type, copy);
3042
3043 if (base_type != NULL)
3044 {
3045 yylval.tsym.type = base_type;
3046 return TYPENAME;
3047 }
3048 }
50af5481 3049 return ERROR;
48e32051 3050
50af5481
JK
3051 case LOC_TYPEDEF:
3052 yylval.tsym.type = SYMBOL_TYPE (yylval.ssym.sym);;
3053 return TYPENAME;
48e32051 3054
50af5481 3055 default:
50af5481
JK
3056 return NAME;
3057 }
3058 internal_error (__FILE__, __LINE__, _("not reached"));
48e32051
TT
3059}
3060
3061/* The outer level of a two-level lexer. This calls the inner lexer
3062 to return tokens. It then either returns these tokens, or
3063 aggregates them into a larger token. This lets us work around a
3064 problem in our parsing approach, where the parser could not
3065 distinguish between qualified names and qualified types at the
3066 right point.
3067
3068 This approach is still not ideal, because it mishandles template
3069 types. See the comment in lex_one_token for an example. However,
3070 this is still an improvement over the earlier approach, and will
3071 suffice until we move to better parsing technology. */
3072static int
3073yylex (void)
3074{
3075 token_and_value current;
b2f83c08 3076 int first_was_coloncolon, last_was_coloncolon;
e234dfaf 3077 struct type *context_type = NULL;
b2f83c08
TT
3078 int last_to_examine, next_to_examine, checkpoint;
3079 const struct block *search_block;
805e1f19 3080 int is_quoted_name;
48e32051
TT
3081
3082 if (popping && !VEC_empty (token_and_value, token_fifo))
b2f83c08 3083 goto do_pop;
48e32051
TT
3084 popping = 0;
3085
b2f83c08
TT
3086 /* Read the first token and decide what to do. Most of the
3087 subsequent code is C++-only; but also depends on seeing a "::" or
3088 name-like token. */
410a0ff2 3089 current.token = lex_one_token (pstate, &is_quoted_name);
48e32051 3090 if (current.token == NAME)
410a0ff2
SDJ
3091 current.token = classify_name (pstate, expression_context_block,
3092 is_quoted_name);
3093 if (parse_language (pstate)->la_language != language_cplus
b2f83c08
TT
3094 || (current.token != TYPENAME && current.token != COLONCOLON
3095 && current.token != FILENAME))
48e32051
TT
3096 return current.token;
3097
b2f83c08
TT
3098 /* Read any sequence of alternating "::" and name-like tokens into
3099 the token FIFO. */
3100 current.value = yylval;
3101 VEC_safe_push (token_and_value, token_fifo, &current);
3102 last_was_coloncolon = current.token == COLONCOLON;
3103 while (1)
3104 {
805e1f19
TT
3105 int ignore;
3106
3107 /* We ignore quoted names other than the very first one.
3108 Subsequent ones do not have any special meaning. */
410a0ff2 3109 current.token = lex_one_token (pstate, &ignore);
b2f83c08
TT
3110 current.value = yylval;
3111 VEC_safe_push (token_and_value, token_fifo, &current);
3112
3113 if ((last_was_coloncolon && current.token != NAME)
3114 || (!last_was_coloncolon && current.token != COLONCOLON))
3115 break;
3116 last_was_coloncolon = !last_was_coloncolon;
3117 }
3118 popping = 1;
3119
3120 /* We always read one extra token, so compute the number of tokens
3121 to examine accordingly. */
3122 last_to_examine = VEC_length (token_and_value, token_fifo) - 2;
3123 next_to_examine = 0;
3124
3125 current = *VEC_index (token_and_value, token_fifo, next_to_examine);
3126 ++next_to_examine;
3127
48e32051 3128 obstack_free (&name_obstack, obstack_base (&name_obstack));
b2f83c08
TT
3129 checkpoint = 0;
3130 if (current.token == FILENAME)
3131 search_block = current.value.bval;
3132 else if (current.token == COLONCOLON)
3133 search_block = NULL;
3134 else
e234dfaf 3135 {
b2f83c08
TT
3136 gdb_assert (current.token == TYPENAME);
3137 search_block = expression_context_block;
3138 obstack_grow (&name_obstack, current.value.sval.ptr,
3139 current.value.sval.length);
3140 context_type = current.value.tsym.type;
3141 checkpoint = 1;
e234dfaf 3142 }
b2f83c08
TT
3143
3144 first_was_coloncolon = current.token == COLONCOLON;
3145 last_was_coloncolon = first_was_coloncolon;
3146
3147 while (next_to_examine <= last_to_examine)
48e32051 3148 {
b2f83c08 3149 token_and_value *next;
48e32051 3150
b2f83c08
TT
3151 next = VEC_index (token_and_value, token_fifo, next_to_examine);
3152 ++next_to_examine;
48e32051 3153
b2f83c08 3154 if (next->token == NAME && last_was_coloncolon)
48e32051
TT
3155 {
3156 int classification;
3157
b2f83c08 3158 yylval = next->value;
410a0ff2
SDJ
3159 classification = classify_inner_name (pstate, search_block,
3160 context_type);
48e32051
TT
3161 /* We keep going until we either run out of names, or until
3162 we have a qualified name which is not a type. */
50af5481 3163 if (classification != TYPENAME && classification != NAME)
b2f83c08
TT
3164 break;
3165
3166 /* Accept up to this token. */
3167 checkpoint = next_to_examine;
48e32051
TT
3168
3169 /* Update the partial name we are constructing. */
e234dfaf 3170 if (context_type != NULL)
48e32051
TT
3171 {
3172 /* We don't want to put a leading "::" into the name. */
3173 obstack_grow_str (&name_obstack, "::");
3174 }
b2f83c08
TT
3175 obstack_grow (&name_obstack, next->value.sval.ptr,
3176 next->value.sval.length);
48e32051
TT
3177
3178 yylval.sval.ptr = obstack_base (&name_obstack);
3179 yylval.sval.length = obstack_object_size (&name_obstack);
3180 current.value = yylval;
3181 current.token = classification;
3182
3183 last_was_coloncolon = 0;
e234dfaf
TT
3184
3185 if (classification == NAME)
3186 break;
3187
3188 context_type = yylval.tsym.type;
48e32051 3189 }
b2f83c08 3190 else if (next->token == COLONCOLON && !last_was_coloncolon)
48e32051
TT
3191 last_was_coloncolon = 1;
3192 else
3193 {
3194 /* We've reached the end of the name. */
48e32051
TT
3195 break;
3196 }
48e32051
TT
3197 }
3198
b2f83c08
TT
3199 /* If we have a replacement token, install it as the first token in
3200 the FIFO, and delete the other constituent tokens. */
3201 if (checkpoint > 0)
48e32051 3202 {
b2f83c08
TT
3203 current.value.sval.ptr = obstack_copy0 (&expansion_obstack,
3204 current.value.sval.ptr,
3205 current.value.sval.length);
3206
3207 VEC_replace (token_and_value, token_fifo, 0, &current);
3208 if (checkpoint > 1)
3209 VEC_block_remove (token_and_value, token_fifo, 1, checkpoint - 1);
48e32051
TT
3210 }
3211
b2f83c08
TT
3212 do_pop:
3213 current = *VEC_index (token_and_value, token_fifo, 0);
3214 VEC_ordered_remove (token_and_value, token_fifo, 0);
48e32051 3215 yylval = current.value;
48e32051 3216 return current.token;
c906108c
SS
3217}
3218
65d12d83 3219int
410a0ff2 3220c_parse (struct parser_state *par_state)
65d12d83 3221{
7c8adf68 3222 int result;
410a0ff2
SDJ
3223 struct cleanup *back_to;
3224
3225 /* Setting up the parser state. */
3226 gdb_assert (par_state != NULL);
3227 pstate = par_state;
3228
3229 back_to = make_cleanup (free_current_contents, &expression_macro_scope);
3230 make_cleanup_clear_parser_state (&pstate);
7c8adf68
TT
3231
3232 /* Set up the scope for macro expansion. */
3233 expression_macro_scope = NULL;
3234
3235 if (expression_context_block)
3236 expression_macro_scope
3237 = sal_macro_scope (find_pc_line (expression_context_pc, 0));
3238 else
3239 expression_macro_scope = default_macro_scope ();
3240 if (! expression_macro_scope)
3241 expression_macro_scope = user_macro_scope ();
3242
3243 /* Initialize macro expansion code. */
3244 obstack_init (&expansion_obstack);
3245 gdb_assert (! macro_original_text);
3246 make_cleanup (scan_macro_cleanup, 0);
3247
92981e24
TT
3248 make_cleanup_restore_integer (&yydebug);
3249 yydebug = parser_debug;
3250
7c8adf68 3251 /* Initialize some state used by the lexer. */
65d12d83
TT
3252 last_was_structop = 0;
3253 saw_name_at_eof = 0;
7c8adf68 3254
48e32051
TT
3255 VEC_free (token_and_value, token_fifo);
3256 popping = 0;
3257 obstack_init (&name_obstack);
3258 make_cleanup_obstack_free (&name_obstack);
3259
7c8adf68
TT
3260 result = yyparse ();
3261 do_cleanups (back_to);
410a0ff2 3262
7c8adf68 3263 return result;
65d12d83
TT
3264}
3265
12c5175d
MK
3266#ifdef YYBISON
3267
9507860e
TT
3268/* This is called via the YYPRINT macro when parser debugging is
3269 enabled. It prints a token's value. */
3270
3271static void
3272c_print_token (FILE *file, int type, YYSTYPE value)
3273{
3274 switch (type)
3275 {
3276 case INT:
3277 fprintf (file, "typed_val_int<%s, %s>",
3278 TYPE_SAFE_NAME (value.typed_val_int.type),
3279 pulongest (value.typed_val_int.val));
3280 break;
3281
3282 case CHAR:
3283 case STRING:
3284 {
3285 char *copy = alloca (value.tsval.length + 1);
3286
3287 memcpy (copy, value.tsval.ptr, value.tsval.length);
3288 copy[value.tsval.length] = '\0';
3289
3290 fprintf (file, "tsval<type=%d, %s>", value.tsval.type, copy);
3291 }
3292 break;
3293
3294 case NSSTRING:
3295 case VARIABLE:
3296 fprintf (file, "sval<%s>", copy_name (value.sval));
3297 break;
3298
3299 case TYPENAME:
3300 fprintf (file, "tsym<type=%s, name=%s>",
3301 TYPE_SAFE_NAME (value.tsym.type),
3302 copy_name (value.tsym.stoken));
3303 break;
3304
3305 case NAME:
3306 case UNKNOWN_CPP_NAME:
3307 case NAME_OR_INT:
3308 case BLOCKNAME:
3309 fprintf (file, "ssym<name=%s, sym=%s, field_of_this=%d>",
3310 copy_name (value.ssym.stoken),
3311 (value.ssym.sym == NULL
3312 ? "(null)" : SYMBOL_PRINT_NAME (value.ssym.sym)),
3313 value.ssym.is_a_field_of_this);
3314 break;
3315
3316 case FILENAME:
3317 fprintf (file, "bval<%s>", host_address_to_string (value.bval));
3318 break;
3319 }
3320}
7c8adf68 3321
12c5175d
MK
3322#endif
3323
c906108c 3324void
68c1b02d 3325yyerror (char *msg)
c906108c 3326{
665132f9
MS
3327 if (prev_lexptr)
3328 lexptr = prev_lexptr;
3329
001083c6 3330 error (_("A %s in expression, near `%s'."), (msg ? msg : "error"), lexptr);
c906108c 3331}
This page took 1.144251 seconds and 4 git commands to generate.