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