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