1 /* YACC parser for C expressions, for GDB.
2 Copyright (C) 1986-2022 Free Software Foundation, Inc.
4 This file is part of GDB.
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.
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.
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/>. */
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.
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. */
40 #include "expression.h"
42 #include "parser-defs.h"
45 #include "c-support.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 */
51 #include "cp-support.h"
52 #include "macroscope.h"
53 #include "objc-lang.h"
54 #include "typeprint.h"
56 #include "type-stack.h"
57 #include "target-float.h"
60 #define parse_type(ps) builtin_type (ps->gdbarch ())
62 /* Remap normal yacc parser interface names (yyparse, yylex, yyerror,
64 #define GDB_YY_REMAP_PREFIX c_
67 /* The state of the parser, used internally when we are parsing the
70 static struct parser_state
*pstate
= NULL
;
72 /* Data that must be held for the duration of a parse. */
76 /* These are used to hold type lists and type stacks that are
77 allocated during the parse. */
78 std
::vector
<std
::unique_ptr
<std
::vector
<struct type
*>>> type_lists
;
79 std
::vector
<std
::unique_ptr
<struct type_stack
>> type_stacks
;
81 /* Storage for some strings allocated during the parse. */
82 std
::vector
<gdb
::unique_xmalloc_ptr
<char>> strings
;
84 /* When we find that lexptr (the global var defined in parse.c) is
85 pointing at a macro invocation, we expand the invocation, and call
86 scan_macro_expansion to save the old lexptr here and point lexptr
87 into the expanded text. When we reach the end of that, we call
88 end_macro_expansion to pop back to the value we saved here. The
89 macro expansion code promises to return only fully-expanded text,
90 so we don't need to "push" more than one level.
92 This is disgusting, of course. It would be cleaner to do all macro
93 expansion beforehand, and then hand that to lexptr. But we don't
94 really know where the expression ends. Remember, in a command like
96 (gdb) break *ADDRESS if CONDITION
98 we evaluate ADDRESS in the scope of the current frame, but we
99 evaluate CONDITION in the scope of the breakpoint's location. So
100 it's simply wrong to try to macro-expand the whole thing at once. */
101 const char *macro_original_text
= nullptr
;
103 /* We save all intermediate macro expansions on this obstack for the
104 duration of a single parse. The expansion text may sometimes have
105 to live past the end of the expansion, due to yacc lookahead.
106 Rather than try to be clever about saving the data for a single
107 token, we simply keep it all and delete it after parsing has
109 auto_obstack expansion_obstack
;
111 /* The type stack. */
112 struct type_stack type_stack
;
115 /* This is set and cleared in c_parse. */
117 static struct c_parse_state
*cpstate
;
121 static int yylex (void);
123 static void yyerror (const char *);
125 static int type_aggregate_p
(struct type
*);
127 using namespace expr
;
130 /* Although the yacc "value" of an expression is not used,
131 since the result is stored in the structure being created,
132 other node types do have values. */
147 struct typed_stoken tsval
;
149 struct symtoken ssym
;
151 const struct block
*bval
;
152 enum exp_opcode opcode
;
154 struct stoken_vector svec
;
155 std
::vector
<struct type
*> *tvec
;
157 struct type_stack
*type_stack
;
159 struct objc_class_str theclass
;
163 /* YYSTYPE gets defined by %union */
164 static int parse_number
(struct parser_state
*par_state
,
165 const char *, int, int, YYSTYPE *);
166 static struct stoken operator_stoken
(const char *);
167 static struct stoken typename_stoken
(const char *);
168 static void check_parameter_typelist
(std
::vector
<struct type
*> *);
170 #if defined(YYBISON) && YYBISON < 30800
171 static void c_print_token
(FILE *file
, int type
, YYSTYPE value
);
172 #define YYPRINT(FILE, TYPE, VALUE) c_print_token (FILE, TYPE, VALUE)
176 %type
<voidval
> exp exp1 type_exp start variable qualified_name lcurly function_method
178 %type
<tval
> type typebase scalar_type
179 %type
<tvec
> nonempty_typelist func_mod parameter_typelist
180 /* %type <bval> block */
182 /* Fancy type parsing. */
184 %type
<lval
> array_mod
185 %type
<tval
> conversion_type_id
187 %type
<type_stack
> ptr_operator_ts abs_decl direct_abs_decl
189 %token
<typed_val_int
> INT COMPLEX_INT
190 %token
<typed_val_float
> FLOAT COMPLEX_FLOAT
192 /* Both NAME and TYPENAME tokens represent symbols in the input,
193 and both convey their data as strings.
194 But a TYPENAME is a string that happens to be defined as a typedef
195 or builtin type name (such as int or char)
196 and a NAME is any other symbol.
197 Contexts where this distinction is not important can use the
198 nonterminal "name", which matches either NAME or TYPENAME. */
200 %token
<tsval
> STRING
201 %token
<sval
> NSSTRING
/* ObjC Foundation "NSString" literal */
202 %token SELECTOR
/* ObjC "@selector" pseudo-operator */
204 %token
<ssym
> NAME
/* BLOCKNAME defined below to give it higher precedence. */
205 %token
<ssym
> UNKNOWN_CPP_NAME
206 %token
<voidval
> COMPLETE
207 %token
<tsym
> TYPENAME
208 %token
<theclass
> CLASSNAME
/* ObjC Class name */
209 %type
<sval
> name field_name
210 %type
<svec
> string_exp
211 %type
<ssym
> name_not_typename
212 %type
<tsym
> type_name
214 /* This is like a '[' token, but is only generated when parsing
215 Objective C. This lets us reuse the same parser without
216 erroneously parsing ObjC-specific expressions in C. */
219 /* A NAME_OR_INT is a symbol which is not known in the symbol table,
220 but which would parse as a valid number in the current input radix.
221 E.g. "c" when input_radix==16. Depending on the parse, it will be
222 turned into a name or into a number. */
224 %token
<ssym
> NAME_OR_INT
227 %token STRUCT CLASS UNION ENUM SIZEOF ALIGNOF UNSIGNED COLONCOLON
232 %token REINTERPRET_CAST DYNAMIC_CAST STATIC_CAST CONST_CAST
238 /* Special type cases, put in to allow the parser to distinguish different
240 %token SIGNED_KEYWORD LONG SHORT INT_KEYWORD CONST_KEYWORD VOLATILE_KEYWORD DOUBLE_KEYWORD
241 %token RESTRICT ATOMIC
242 %token FLOAT_KEYWORD COMPLEX
244 %token
<sval
> DOLLAR_VARIABLE
246 %token
<opcode
> ASSIGN_MODIFY
255 %right
'=' ASSIGN_MODIFY
263 %left
'<' '>' LEQ GEQ
268 %right UNARY INCREMENT DECREMENT
269 %right ARROW ARROW_STAR
'.' DOT_STAR
'[' OBJC_LBRAC
'('
270 %token
<ssym
> BLOCKNAME
271 %token
<bval
> FILENAME
286 pstate
->push_new
<type_operation
> ($1);
290 pstate
->wrap
<typeof_operation
> ();
292 | TYPEOF
'(' type
')'
294 pstate
->push_new
<type_operation
> ($3);
296 | DECLTYPE
'(' exp
')'
298 pstate
->wrap
<decltype_operation
> ();
302 /* Expressions, including the comma operator. */
305 { pstate
->wrap2
<comma_operation
> (); }
308 /* Expressions, not including the comma operator. */
309 exp
: '*' exp %prec UNARY
310 { pstate
->wrap
<unop_ind_operation
> (); }
313 exp
: '&' exp %prec UNARY
314 { pstate
->wrap
<unop_addr_operation
> (); }
317 exp
: '-' exp %prec UNARY
318 { pstate
->wrap
<unary_neg_operation
> (); }
321 exp
: '+' exp %prec UNARY
322 { pstate
->wrap
<unary_plus_operation
> (); }
325 exp
: '!' exp %prec UNARY
327 if
(pstate
->language
()->la_language
329 pstate
->wrap
<opencl_not_operation
> ();
331 pstate
->wrap
<unary_logical_not_operation
> ();
335 exp
: '~' exp %prec UNARY
336 { pstate
->wrap
<unary_complement_operation
> (); }
339 exp
: INCREMENT exp %prec UNARY
340 { pstate
->wrap
<preinc_operation
> (); }
343 exp
: DECREMENT exp %prec UNARY
344 { pstate
->wrap
<predec_operation
> (); }
347 exp
: exp INCREMENT %prec UNARY
348 { pstate
->wrap
<postinc_operation
> (); }
351 exp
: exp DECREMENT %prec UNARY
352 { pstate
->wrap
<postdec_operation
> (); }
355 exp
: TYPEID
'(' exp
')' %prec UNARY
356 { pstate
->wrap
<typeid_operation
> (); }
359 exp
: TYPEID
'(' type_exp
')' %prec UNARY
360 { pstate
->wrap
<typeid_operation
> (); }
363 exp
: SIZEOF exp %prec UNARY
364 { pstate
->wrap
<unop_sizeof_operation
> (); }
367 exp
: ALIGNOF
'(' type_exp
')' %prec UNARY
368 { pstate
->wrap
<unop_alignof_operation
> (); }
371 exp
: exp ARROW field_name
373 pstate
->push_new
<structop_ptr_operation
>
374 (pstate
->pop
(), copy_name
($3));
378 exp
: exp ARROW field_name COMPLETE
380 structop_base_operation
*op
381 = new structop_ptr_operation
(pstate
->pop
(),
383 pstate
->mark_struct_expression
(op
);
384 pstate
->push
(operation_up
(op
));
388 exp
: exp ARROW COMPLETE
390 structop_base_operation
*op
391 = new structop_ptr_operation
(pstate
->pop
(), "");
392 pstate
->mark_struct_expression
(op
);
393 pstate
->push
(operation_up
(op
));
397 exp
: exp ARROW
'~' name
399 pstate
->push_new
<structop_ptr_operation
>
400 (pstate
->pop
(), "~" + copy_name
($4));
404 exp
: exp ARROW
'~' name COMPLETE
406 structop_base_operation
*op
407 = new structop_ptr_operation
(pstate
->pop
(),
408 "~" + copy_name
($4));
409 pstate
->mark_struct_expression
(op
);
410 pstate
->push
(operation_up
(op
));
414 exp
: exp ARROW qualified_name
415 { /* exp->type::name becomes exp->*(&type::name) */
416 /* Note: this doesn't work if name is a
417 static member! FIXME */
418 pstate
->wrap
<unop_addr_operation
> ();
419 pstate
->wrap2
<structop_mptr_operation
> (); }
422 exp
: exp ARROW_STAR exp
423 { pstate
->wrap2
<structop_mptr_operation
> (); }
426 exp
: exp
'.' field_name
428 if
(pstate
->language
()->la_language
430 pstate
->push_new
<opencl_structop_operation
>
431 (pstate
->pop
(), copy_name
($3));
433 pstate
->push_new
<structop_operation
>
434 (pstate
->pop
(), copy_name
($3));
438 exp
: exp
'.' field_name COMPLETE
440 structop_base_operation
*op
441 = new structop_operation
(pstate
->pop
(),
443 pstate
->mark_struct_expression
(op
);
444 pstate
->push
(operation_up
(op
));
448 exp
: exp
'.' COMPLETE
450 structop_base_operation
*op
451 = new structop_operation
(pstate
->pop
(), "");
452 pstate
->mark_struct_expression
(op
);
453 pstate
->push
(operation_up
(op
));
457 exp
: exp
'.' '~' name
459 pstate
->push_new
<structop_operation
>
460 (pstate
->pop
(), "~" + copy_name
($4));
464 exp
: exp
'.' '~' name COMPLETE
466 structop_base_operation
*op
467 = new structop_operation
(pstate
->pop
(),
468 "~" + copy_name
($4));
469 pstate
->mark_struct_expression
(op
);
470 pstate
->push
(operation_up
(op
));
474 exp
: exp
'.' qualified_name
475 { /* exp.type::name becomes exp.*(&type::name) */
476 /* Note: this doesn't work if name is a
477 static member! FIXME */
478 pstate
->wrap
<unop_addr_operation
> ();
479 pstate
->wrap2
<structop_member_operation
> (); }
482 exp
: exp DOT_STAR exp
483 { pstate
->wrap2
<structop_member_operation
> (); }
486 exp
: exp
'[' exp1
']'
487 { pstate
->wrap2
<subscript_operation
> (); }
490 exp
: exp OBJC_LBRAC exp1
']'
491 { pstate
->wrap2
<subscript_operation
> (); }
495 * The rules below parse ObjC message calls of the form:
496 * '[' target selector {':' argument}* ']'
499 exp
: OBJC_LBRAC TYPENAME
503 std
::string copy
= copy_name
($2.stoken
);
504 theclass
= lookup_objc_class
(pstate
->gdbarch
(),
507 error (_
("%s is not an ObjC Class"),
509 pstate
->push_new
<long_const_operation
>
510 (parse_type
(pstate
)->builtin_int
,
515 { end_msglist
(pstate
); }
518 exp
: OBJC_LBRAC CLASSNAME
520 pstate
->push_new
<long_const_operation
>
521 (parse_type
(pstate
)->builtin_int
,
522 (LONGEST
) $2.theclass
);
526 { end_msglist
(pstate
); }
532 { end_msglist
(pstate
); }
536 { add_msglist
(&$1, 0); }
544 msgarg
: name
':' exp
545 { add_msglist
(&$1, 1); }
546 |
':' exp
/* Unnamed arg. */
547 { add_msglist
(0, 1); }
548 |
',' exp
/* Variable number of args. */
549 { add_msglist
(0, 0); }
553 /* This is to save the value of arglist_len
554 being accumulated by an outer function call. */
555 { pstate
->start_arglist
(); }
556 arglist
')' %prec ARROW
558 std
::vector
<operation_up
> args
559 = pstate
->pop_vector
(pstate
->end_arglist
());
560 pstate
->push_new
<funcall_operation
>
561 (pstate
->pop
(), std
::move
(args
));
565 /* This is here to disambiguate with the production for
566 "func()::static_var" further below, which uses
567 function_method_void. */
568 exp
: exp
'(' ')' %prec ARROW
570 pstate
->push_new
<funcall_operation
>
571 (pstate
->pop
(), std
::vector
<operation_up
> ());
576 exp
: UNKNOWN_CPP_NAME
'('
578 /* This could potentially be a an argument defined
579 lookup function (Koenig). */
580 /* This is to save the value of arglist_len
581 being accumulated by an outer function call. */
582 pstate
->start_arglist
();
584 arglist
')' %prec ARROW
586 std
::vector
<operation_up
> args
587 = pstate
->pop_vector
(pstate
->end_arglist
());
588 pstate
->push_new
<adl_func_operation
>
589 (copy_name
($1.stoken
),
590 pstate
->expression_context_block
,
596 { pstate
->start_arglist
(); }
603 { pstate
->arglist_len
= 1; }
606 arglist
: arglist
',' exp %prec ABOVE_COMMA
607 { pstate
->arglist_len
++; }
610 function_method: exp
'(' parameter_typelist
')' const_or_volatile
612 std
::vector
<struct type
*> *type_list
= $3;
613 /* Save the const/volatile qualifiers as
614 recorded by the const_or_volatile
615 production's actions. */
616 type_instance_flags flags
617 = (cpstate
->type_stack
618 .follow_type_instance_flags
());
619 pstate
->push_new
<type_instance_operation
>
620 (flags
, std
::move
(*type_list
),
625 function_method_void: exp
'(' ')' const_or_volatile
627 type_instance_flags flags
628 = (cpstate
->type_stack
629 .follow_type_instance_flags
());
630 pstate
->push_new
<type_instance_operation
>
631 (flags
, std
::vector
<type
*> (), pstate
->pop
());
635 exp
: function_method
638 /* Normally we must interpret "func()" as a function call, instead of
639 a type. The user needs to write func(void) to disambiguate.
640 However, in the "func()::static_var" case, there's no
642 function_method_void_or_typelist: function_method
643 | function_method_void
646 exp
: function_method_void_or_typelist COLONCOLON name
648 pstate
->push_new
<func_static_var_operation
>
649 (pstate
->pop
(), copy_name
($3));
654 { $$
= pstate
->end_arglist
() - 1; }
656 exp
: lcurly arglist rcurly %prec ARROW
658 std
::vector
<operation_up
> args
659 = pstate
->pop_vector
($3 + 1);
660 pstate
->push_new
<array_operation
> (0, $3,
665 exp
: lcurly type_exp rcurly exp %prec UNARY
666 { pstate
->wrap2
<unop_memval_type_operation
> (); }
669 exp
: '(' type_exp
')' exp %prec UNARY
671 if
(pstate
->language
()->la_language
673 pstate
->wrap2
<opencl_cast_type_operation
> ();
675 pstate
->wrap2
<unop_cast_type_operation
> ();
683 /* Binary operators in order of decreasing precedence. */
686 { pstate
->wrap2
<repeat_operation
> (); }
690 { pstate
->wrap2
<mul_operation
> (); }
694 { pstate
->wrap2
<div_operation
> (); }
698 { pstate
->wrap2
<rem_operation
> (); }
702 { pstate
->wrap2
<add_operation
> (); }
706 { pstate
->wrap2
<sub_operation
> (); }
710 { pstate
->wrap2
<lsh_operation
> (); }
714 { pstate
->wrap2
<rsh_operation
> (); }
719 if
(pstate
->language
()->la_language
721 pstate
->wrap2
<opencl_equal_operation
> ();
723 pstate
->wrap2
<equal_operation
> ();
727 exp
: exp NOTEQUAL exp
729 if
(pstate
->language
()->la_language
731 pstate
->wrap2
<opencl_notequal_operation
> ();
733 pstate
->wrap2
<notequal_operation
> ();
739 if
(pstate
->language
()->la_language
741 pstate
->wrap2
<opencl_leq_operation
> ();
743 pstate
->wrap2
<leq_operation
> ();
749 if
(pstate
->language
()->la_language
751 pstate
->wrap2
<opencl_geq_operation
> ();
753 pstate
->wrap2
<geq_operation
> ();
759 if
(pstate
->language
()->la_language
761 pstate
->wrap2
<opencl_less_operation
> ();
763 pstate
->wrap2
<less_operation
> ();
769 if
(pstate
->language
()->la_language
771 pstate
->wrap2
<opencl_gtr_operation
> ();
773 pstate
->wrap2
<gtr_operation
> ();
778 { pstate
->wrap2
<bitwise_and_operation
> (); }
782 { pstate
->wrap2
<bitwise_xor_operation
> (); }
786 { pstate
->wrap2
<bitwise_ior_operation
> (); }
791 if
(pstate
->language
()->la_language
794 operation_up rhs
= pstate
->pop
();
795 operation_up lhs
= pstate
->pop
();
796 pstate
->push_new
<opencl_logical_binop_operation
>
797 (BINOP_LOGICAL_AND
, std
::move
(lhs
),
801 pstate
->wrap2
<logical_and_operation
> ();
807 if
(pstate
->language
()->la_language
810 operation_up rhs
= pstate
->pop
();
811 operation_up lhs
= pstate
->pop
();
812 pstate
->push_new
<opencl_logical_binop_operation
>
813 (BINOP_LOGICAL_OR
, std
::move
(lhs
),
817 pstate
->wrap2
<logical_or_operation
> ();
821 exp
: exp
'?' exp
':' exp %prec
'?'
823 operation_up last
= pstate
->pop
();
824 operation_up mid
= pstate
->pop
();
825 operation_up first
= pstate
->pop
();
826 if
(pstate
->language
()->la_language
828 pstate
->push_new
<opencl_ternop_cond_operation
>
829 (std
::move
(first
), std
::move
(mid
),
832 pstate
->push_new
<ternop_cond_operation
>
833 (std
::move
(first
), std
::move
(mid
),
840 if
(pstate
->language
()->la_language
842 pstate
->wrap2
<opencl_assign_operation
> ();
844 pstate
->wrap2
<assign_operation
> ();
848 exp
: exp ASSIGN_MODIFY exp
850 operation_up rhs
= pstate
->pop
();
851 operation_up lhs
= pstate
->pop
();
852 pstate
->push_new
<assign_modify_operation
>
853 ($2, std
::move
(lhs
), std
::move
(rhs
));
859 pstate
->push_new
<long_const_operation
>
867 = (make_operation
<long_const_operation
>
868 ($1.type
->target_type
(), 0));
870 = (make_operation
<long_const_operation
>
871 ($1.type
->target_type
(), $1.val
));
872 pstate
->push_new
<complex_operation
>
873 (std
::move
(real
), std
::move
(imag
), $1.type
);
879 struct stoken_vector vec
;
882 pstate
->push_c_string
($1.type
, &vec
);
888 parse_number
(pstate
, $1.stoken.ptr
,
889 $1.stoken.length
, 0, &val
);
890 pstate
->push_new
<long_const_operation
>
891 (val.typed_val_int.type
,
892 val.typed_val_int.val
);
900 std
::copy
(std
::begin
($1.val
), std
::end
($1.val
),
902 pstate
->push_new
<float_const_operation
> ($1.type
, data
);
908 struct type
*underlying
= $1.type
->target_type
();
911 target_float_from_host_double
(val.data
(),
914 = (make_operation
<float_const_operation
>
917 std
::copy
(std
::begin
($1.val
), std
::end
($1.val
),
920 = (make_operation
<float_const_operation
>
923 pstate
->push_new
<complex_operation
>
924 (std
::move
(real
), std
::move
(imag
),
932 exp
: DOLLAR_VARIABLE
934 pstate
->push_dollar
($1);
938 exp
: SELECTOR
'(' name
')'
940 pstate
->push_new
<objc_selector_operation
>
945 exp
: SIZEOF
'(' type
')' %prec UNARY
946 { struct type
*type
= $3;
947 struct type
*int_type
948 = lookup_signed_typename
(pstate
->language
(),
950 type
= check_typedef
(type
);
952 /* $5.3.3/2 of the C++ Standard (n3290 draft)
953 says of sizeof: "When applied to a reference
954 or a reference type, the result is the size of
955 the referenced type." */
956 if
(TYPE_IS_REFERENCE
(type
))
957 type
= check_typedef
(type
->target_type
());
959 pstate
->push_new
<long_const_operation
>
960 (int_type
, type
->length
());
964 exp
: REINTERPRET_CAST
'<' type_exp
'>' '(' exp
')' %prec UNARY
965 { pstate
->wrap2
<reinterpret_cast_operation
> (); }
968 exp
: STATIC_CAST
'<' type_exp
'>' '(' exp
')' %prec UNARY
969 { pstate
->wrap2
<unop_cast_type_operation
> (); }
972 exp
: DYNAMIC_CAST
'<' type_exp
'>' '(' exp
')' %prec UNARY
973 { pstate
->wrap2
<dynamic_cast_operation
> (); }
976 exp
: CONST_CAST
'<' type_exp
'>' '(' exp
')' %prec UNARY
977 { /* We could do more error checking here, but
978 it doesn't seem worthwhile. */
979 pstate
->wrap2
<unop_cast_type_operation
> (); }
985 /* We copy the string here, and not in the
986 lexer, to guarantee that we do not leak a
987 string. Note that we follow the
988 NUL-termination convention of the
990 struct typed_stoken
*vec
= XNEW
(struct typed_stoken
);
995 vec
->length
= $1.length
;
996 vec
->ptr
= (char *) malloc
($1.length
+ 1);
997 memcpy
(vec
->ptr
, $1.ptr
, $1.length
+ 1);
1002 /* Note that we NUL-terminate here, but just
1006 $$.tokens
= XRESIZEVEC
(struct typed_stoken
,
1009 p
= (char *) malloc
($2.length
+ 1);
1010 memcpy
(p
, $2.ptr
, $2.length
+ 1);
1012 $$.tokens
[$$.len
- 1].type
= $2.type
;
1013 $$.tokens
[$$.len
- 1].length
= $2.length
;
1014 $$.tokens
[$$.len
- 1].ptr
= p
;
1021 c_string_type type
= C_STRING
;
1023 for
(i
= 0; i
< $1.len
; ++i
)
1025 switch
($1.tokens
[i
].type
)
1032 if
(type
!= C_STRING
1033 && type
!= $1.tokens
[i
].type
)
1034 error (_
("Undefined string concatenation."));
1035 type
= (enum c_string_type_values
) $1.tokens
[i
].type
;
1038 /* internal error */
1039 internal_error
("unrecognized type in string concatenation");
1043 pstate
->push_c_string
(type
, &$1);
1044 for
(i
= 0; i
< $1.len
; ++i
)
1045 free
($1.tokens
[i
].ptr
);
1050 exp
: NSSTRING
/* ObjC NextStep NSString constant
1051 * of the form '@' '"' string '"'.
1054 pstate
->push_new
<objc_nsstring_operation
>
1061 { pstate
->push_new
<long_const_operation
>
1062 (parse_type
(pstate
)->builtin_bool
, 1);
1067 { pstate
->push_new
<long_const_operation
>
1068 (parse_type
(pstate
)->builtin_bool
, 0);
1077 $$
= $1.sym.symbol
->value_block
();
1079 error (_
("No file or function \"%s\"."),
1080 copy_name
($1.stoken
).c_str
());
1088 block
: block COLONCOLON name
1090 std
::string copy
= copy_name
($3);
1092 = lookup_symbol
(copy.c_str
(), $1,
1093 VAR_DOMAIN
, NULL
).symbol
;
1095 if
(!tem || tem
->aclass
() != LOC_BLOCK
)
1096 error (_
("No function \"%s\" in specified context."),
1098 $$
= tem
->value_block
(); }
1101 variable: name_not_typename ENTRY
1102 { struct symbol
*sym
= $1.sym.symbol
;
1104 if
(sym
== NULL ||
!sym
->is_argument
()
1105 ||
!symbol_read_needs_frame
(sym
))
1106 error (_
("@entry can be used only for function "
1107 "parameters, not for \"%s\""),
1108 copy_name
($1.stoken
).c_str
());
1110 pstate
->push_new
<var_entry_value_operation
> (sym
);
1114 variable: block COLONCOLON name
1116 std
::string copy
= copy_name
($3);
1117 struct block_symbol sym
1118 = lookup_symbol
(copy.c_str
(), $1,
1121 if
(sym.symbol
== 0)
1122 error (_
("No symbol \"%s\" in specified context."),
1124 if
(symbol_read_needs_frame
(sym.symbol
))
1125 pstate
->block_tracker
->update
(sym
);
1127 pstate
->push_new
<var_value_operation
> (sym
);
1131 qualified_name: TYPENAME COLONCOLON name
1133 struct type
*type
= $1.type
;
1134 type
= check_typedef
(type
);
1135 if
(!type_aggregate_p
(type
))
1136 error (_
("`%s' is not defined as an aggregate type."),
1137 TYPE_SAFE_NAME
(type
));
1139 pstate
->push_new
<scope_operation
> (type
,
1142 | TYPENAME COLONCOLON
'~' name
1144 struct type
*type
= $1.type
;
1146 type
= check_typedef
(type
);
1147 if
(!type_aggregate_p
(type
))
1148 error (_
("`%s' is not defined as an aggregate type."),
1149 TYPE_SAFE_NAME
(type
));
1150 std
::string name
= "~" + std
::string ($4.ptr
,
1153 /* Check for valid destructor name. */
1154 destructor_name_p
(name.c_str
(), $1.type
);
1155 pstate
->push_new
<scope_operation
> (type
,
1158 | TYPENAME COLONCOLON name COLONCOLON name
1160 std
::string copy
= copy_name
($3);
1161 error (_
("No type \"%s\" within class "
1162 "or namespace \"%s\"."),
1163 copy.c_str
(), TYPE_SAFE_NAME
($1.type
));
1167 variable: qualified_name
1168 | COLONCOLON name_not_typename
1170 std
::string name
= copy_name
($2.stoken
);
1171 struct block_symbol sym
1172 = lookup_symbol
(name.c_str
(),
1173 (const struct block
*) NULL
,
1175 pstate
->push_symbol
(name.c_str
(), sym
);
1179 variable: name_not_typename
1180 { struct block_symbol sym
= $1.sym
;
1184 if
(symbol_read_needs_frame
(sym.symbol
))
1185 pstate
->block_tracker
->update
(sym
);
1187 /* If we found a function, see if it's
1188 an ifunc resolver that has the same
1189 address as the ifunc symbol itself.
1190 If so, prefer the ifunc symbol. */
1192 bound_minimal_symbol resolver
1193 = find_gnu_ifunc
(sym.symbol
);
1194 if
(resolver.minsym
!= NULL
)
1195 pstate
->push_new
<var_msym_value_operation
>
1198 pstate
->push_new
<var_value_operation
> (sym
);
1200 else if
($1.is_a_field_of_this
)
1202 /* C++: it hangs off of `this'. Must
1203 not inadvertently convert from a method call
1205 pstate
->block_tracker
->update
(sym
);
1207 = make_operation
<op_this_operation
> ();
1208 pstate
->push_new
<structop_ptr_operation
>
1209 (std
::move
(thisop
), copy_name
($1.stoken
));
1213 std
::string arg
= copy_name
($1.stoken
);
1215 bound_minimal_symbol msymbol
1216 = lookup_bound_minimal_symbol
(arg.c_str
());
1217 if
(msymbol.minsym
== NULL
)
1219 if
(!have_full_symbols
() && !have_partial_symbols
())
1220 error (_
("No symbol table is loaded. Use the \"file\" command."));
1222 error (_
("No symbol \"%s\" in current context."),
1226 /* This minsym might be an alias for
1227 another function. See if we can find
1228 the debug symbol for the target, and
1229 if so, use it instead, since it has
1230 return type / prototype info. This
1231 is important for example for "p
1232 *__errno_location()". */
1233 symbol
*alias_target
1234 = ((msymbol.minsym
->type
() != mst_text_gnu_ifunc
1235 && msymbol.minsym
->type
() != mst_data_gnu_ifunc
)
1236 ? find_function_alias_target
(msymbol
)
1238 if
(alias_target
!= NULL
)
1240 block_symbol bsym
{ alias_target
,
1241 alias_target
->value_block
() };
1242 pstate
->push_new
<var_value_operation
> (bsym
);
1245 pstate
->push_new
<var_msym_value_operation
>
1251 const_or_volatile: const_or_volatile_noopt
1257 { cpstate
->type_stack.insert
(tp_const
); }
1259 { cpstate
->type_stack.insert
(tp_volatile
); }
1261 { cpstate
->type_stack.insert
(tp_atomic
); }
1263 { cpstate
->type_stack.insert
(tp_restrict
); }
1266 cpstate
->type_stack.insert
(pstate
,
1267 copy_name
($2.stoken
).c_str
());
1269 |
'@' UNKNOWN_CPP_NAME
1271 cpstate
->type_stack.insert
(pstate
,
1272 copy_name
($2.stoken
).c_str
());
1276 qualifier_seq_noopt:
1278 | qualifier_seq_noopt single_qualifier
1288 { cpstate
->type_stack.insert
(tp_pointer
); }
1291 { cpstate
->type_stack.insert
(tp_pointer
); }
1294 { cpstate
->type_stack.insert
(tp_reference
); }
1296 { cpstate
->type_stack.insert
(tp_reference
); }
1298 { cpstate
->type_stack.insert
(tp_rvalue_reference
); }
1299 | ANDAND ptr_operator
1300 { cpstate
->type_stack.insert
(tp_rvalue_reference
); }
1303 ptr_operator_ts: ptr_operator
1305 $$
= cpstate
->type_stack.create
();
1306 cpstate
->type_stacks.emplace_back
($$
);
1310 abs_decl: ptr_operator_ts direct_abs_decl
1311 { $$
= $2->append
($1); }
1316 direct_abs_decl: '(' abs_decl
')'
1318 | direct_abs_decl array_mod
1320 cpstate
->type_stack.push
($1);
1321 cpstate
->type_stack.push
($2);
1322 cpstate
->type_stack.push
(tp_array
);
1323 $$
= cpstate
->type_stack.create
();
1324 cpstate
->type_stacks.emplace_back
($$
);
1328 cpstate
->type_stack.push
($1);
1329 cpstate
->type_stack.push
(tp_array
);
1330 $$
= cpstate
->type_stack.create
();
1331 cpstate
->type_stacks.emplace_back
($$
);
1334 | direct_abs_decl func_mod
1336 cpstate
->type_stack.push
($1);
1337 cpstate
->type_stack.push
($2);
1338 $$
= cpstate
->type_stack.create
();
1339 cpstate
->type_stacks.emplace_back
($$
);
1343 cpstate
->type_stack.push
($1);
1344 $$
= cpstate
->type_stack.create
();
1345 cpstate
->type_stacks.emplace_back
($$
);
1355 | OBJC_LBRAC INT
']'
1361 $$
= new std
::vector
<struct type
*>;
1362 cpstate
->type_lists.emplace_back
($$
);
1364 |
'(' parameter_typelist
')'
1368 /* We used to try to recognize pointer to member types here, but
1369 that didn't work (shift/reduce conflicts meant that these rules never
1370 got executed). The problem is that
1371 int (foo::bar::baz::bizzle)
1372 is a function type but
1373 int (foo::bar::baz::bizzle::*)
1374 is a pointer to member type. Stroustrup loses again! */
1379 /* A helper production that recognizes scalar types that can validly
1380 be used with _Complex. */
1384 { $$
= lookup_signed_typename
(pstate
->language
(),
1387 { $$
= lookup_signed_typename
(pstate
->language
(),
1390 { $$
= lookup_signed_typename
(pstate
->language
(),
1393 { $$
= lookup_signed_typename
(pstate
->language
(),
1395 | LONG SIGNED_KEYWORD INT_KEYWORD
1396 { $$
= lookup_signed_typename
(pstate
->language
(),
1398 | LONG SIGNED_KEYWORD
1399 { $$
= lookup_signed_typename
(pstate
->language
(),
1401 | SIGNED_KEYWORD LONG INT_KEYWORD
1402 { $$
= lookup_signed_typename
(pstate
->language
(),
1404 | UNSIGNED LONG INT_KEYWORD
1405 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1407 | LONG UNSIGNED INT_KEYWORD
1408 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1411 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1414 { $$
= lookup_signed_typename
(pstate
->language
(),
1416 | LONG LONG INT_KEYWORD
1417 { $$
= lookup_signed_typename
(pstate
->language
(),
1419 | LONG LONG SIGNED_KEYWORD INT_KEYWORD
1420 { $$
= lookup_signed_typename
(pstate
->language
(),
1422 | LONG LONG SIGNED_KEYWORD
1423 { $$
= lookup_signed_typename
(pstate
->language
(),
1425 | SIGNED_KEYWORD LONG LONG
1426 { $$
= lookup_signed_typename
(pstate
->language
(),
1428 | SIGNED_KEYWORD LONG LONG INT_KEYWORD
1429 { $$
= lookup_signed_typename
(pstate
->language
(),
1431 | UNSIGNED LONG LONG
1432 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1434 | UNSIGNED LONG LONG INT_KEYWORD
1435 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1437 | LONG LONG UNSIGNED
1438 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1440 | LONG LONG UNSIGNED INT_KEYWORD
1441 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1444 { $$
= lookup_signed_typename
(pstate
->language
(),
1446 | SHORT SIGNED_KEYWORD INT_KEYWORD
1447 { $$
= lookup_signed_typename
(pstate
->language
(),
1449 | SHORT SIGNED_KEYWORD
1450 { $$
= lookup_signed_typename
(pstate
->language
(),
1452 | UNSIGNED SHORT INT_KEYWORD
1453 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1456 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1458 | SHORT UNSIGNED INT_KEYWORD
1459 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1462 { $$
= lookup_typename
(pstate
->language
(),
1467 { $$
= lookup_typename
(pstate
->language
(),
1471 | LONG DOUBLE_KEYWORD
1472 { $$
= lookup_typename
(pstate
->language
(),
1476 | UNSIGNED type_name
1477 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1478 $2.type
->name
()); }
1480 { $$
= lookup_unsigned_typename
(pstate
->language
(),
1482 | SIGNED_KEYWORD type_name
1483 { $$
= lookup_signed_typename
(pstate
->language
(),
1484 $2.type
->name
()); }
1486 { $$
= lookup_signed_typename
(pstate
->language
(),
1490 /* Implements (approximately): (type-qualifier)* type-specifier.
1492 When type-specifier is only ever a single word, like 'float' then these
1493 arrive as pre-built TYPENAME tokens thanks to the classify_name
1494 function. However, when a type-specifier can contain multiple words,
1495 for example 'double' can appear as just 'double' or 'long double', and
1496 similarly 'long' can appear as just 'long' or in 'long double', then
1497 these type-specifiers are parsed into their own tokens in the function
1498 lex_one_token and the ident_tokens array. These separate tokens are all
1505 | COMPLEX scalar_type
1507 $$
= init_complex_type
(nullptr
, $2);
1511 = lookup_struct
(copy_name
($2).c_str
(),
1512 pstate
->expression_context_block
);
1516 pstate
->mark_completion_tag
(TYPE_CODE_STRUCT
,
1520 | STRUCT name COMPLETE
1522 pstate
->mark_completion_tag
(TYPE_CODE_STRUCT
,
1527 { $$
= lookup_struct
1528 (copy_name
($2).c_str
(),
1529 pstate
->expression_context_block
);
1533 pstate
->mark_completion_tag
(TYPE_CODE_STRUCT
,
1537 | CLASS name COMPLETE
1539 pstate
->mark_completion_tag
(TYPE_CODE_STRUCT
,
1545 = lookup_union
(copy_name
($2).c_str
(),
1546 pstate
->expression_context_block
);
1550 pstate
->mark_completion_tag
(TYPE_CODE_UNION
,
1554 | UNION name COMPLETE
1556 pstate
->mark_completion_tag
(TYPE_CODE_UNION
,
1561 { $$
= lookup_enum
(copy_name
($2).c_str
(),
1562 pstate
->expression_context_block
);
1566 pstate
->mark_completion_tag
(TYPE_CODE_ENUM
, "", 0);
1569 | ENUM name COMPLETE
1571 pstate
->mark_completion_tag
(TYPE_CODE_ENUM
, $2.ptr
,
1575 /* It appears that this rule for templates is never
1576 reduced; template recognition happens by lookahead
1577 in the token processing code in yylex. */
1578 | TEMPLATE name
'<' type
'>'
1579 { $$
= lookup_template_type
1580 (copy_name
($2).c_str
(), $4,
1581 pstate
->expression_context_block
);
1583 | qualifier_seq_noopt typebase
1584 { $$
= cpstate
->type_stack.follow_types
($2); }
1585 | typebase qualifier_seq_noopt
1586 { $$
= cpstate
->type_stack.follow_types
($1); }
1592 $$.stoken.ptr
= "int";
1593 $$.stoken.length
= 3;
1594 $$.type
= lookup_signed_typename
(pstate
->language
(),
1599 $$.stoken.ptr
= "long";
1600 $$.stoken.length
= 4;
1601 $$.type
= lookup_signed_typename
(pstate
->language
(),
1606 $$.stoken.ptr
= "short";
1607 $$.stoken.length
= 5;
1608 $$.type
= lookup_signed_typename
(pstate
->language
(),
1615 { check_parameter_typelist
($1); }
1616 | nonempty_typelist
',' DOTDOTDOT
1618 $1->push_back
(NULL
);
1619 check_parameter_typelist
($1);
1627 std
::vector
<struct type
*> *typelist
1628 = new std
::vector
<struct type
*>;
1629 cpstate
->type_lists.emplace_back
(typelist
);
1631 typelist
->push_back
($1);
1634 | nonempty_typelist
',' type
1644 cpstate
->type_stack.push
($2);
1645 $$
= cpstate
->type_stack.follow_types
($1);
1649 conversion_type_id: typebase conversion_declarator
1650 { $$
= cpstate
->type_stack.follow_types
($1); }
1653 conversion_declarator: /* Nothing. */
1654 | ptr_operator conversion_declarator
1657 const_and_volatile: CONST_KEYWORD VOLATILE_KEYWORD
1658 | VOLATILE_KEYWORD CONST_KEYWORD
1661 const_or_volatile_noopt: const_and_volatile
1662 { cpstate
->type_stack.insert
(tp_const
);
1663 cpstate
->type_stack.insert
(tp_volatile
);
1666 { cpstate
->type_stack.insert
(tp_const
); }
1668 { cpstate
->type_stack.insert
(tp_volatile
); }
1672 { $$
= operator_stoken
(" new"); }
1674 { $$
= operator_stoken
(" delete"); }
1675 | OPERATOR NEW
'[' ']'
1676 { $$
= operator_stoken
(" new[]"); }
1677 | OPERATOR DELETE
'[' ']'
1678 { $$
= operator_stoken
(" delete[]"); }
1679 | OPERATOR NEW OBJC_LBRAC
']'
1680 { $$
= operator_stoken
(" new[]"); }
1681 | OPERATOR DELETE OBJC_LBRAC
']'
1682 { $$
= operator_stoken
(" delete[]"); }
1684 { $$
= operator_stoken
("+"); }
1686 { $$
= operator_stoken
("-"); }
1688 { $$
= operator_stoken
("*"); }
1690 { $$
= operator_stoken
("/"); }
1692 { $$
= operator_stoken
("%"); }
1694 { $$
= operator_stoken
("^"); }
1696 { $$
= operator_stoken
("&"); }
1698 { $$
= operator_stoken
("|"); }
1700 { $$
= operator_stoken
("~"); }
1702 { $$
= operator_stoken
("!"); }
1704 { $$
= operator_stoken
("="); }
1706 { $$
= operator_stoken
("<"); }
1708 { $$
= operator_stoken
(">"); }
1709 | OPERATOR ASSIGN_MODIFY
1710 { const char *op
= " unknown";
1734 case BINOP_BITWISE_IOR
:
1737 case BINOP_BITWISE_AND
:
1740 case BINOP_BITWISE_XOR
:
1747 $$
= operator_stoken
(op
);
1750 { $$
= operator_stoken
("<<"); }
1752 { $$
= operator_stoken
(">>"); }
1754 { $$
= operator_stoken
("=="); }
1756 { $$
= operator_stoken
("!="); }
1758 { $$
= operator_stoken
("<="); }
1760 { $$
= operator_stoken
(">="); }
1762 { $$
= operator_stoken
("&&"); }
1764 { $$
= operator_stoken
("||"); }
1765 | OPERATOR INCREMENT
1766 { $$
= operator_stoken
("++"); }
1767 | OPERATOR DECREMENT
1768 { $$
= operator_stoken
("--"); }
1770 { $$
= operator_stoken
(","); }
1771 | OPERATOR ARROW_STAR
1772 { $$
= operator_stoken
("->*"); }
1774 { $$
= operator_stoken
("->"); }
1776 { $$
= operator_stoken
("()"); }
1778 { $$
= operator_stoken
("[]"); }
1779 | OPERATOR OBJC_LBRAC
']'
1780 { $$
= operator_stoken
("[]"); }
1781 | OPERATOR conversion_type_id
1784 c_print_type
($2, NULL
, &buf
, -1, 0,
1785 pstate
->language
()->la_language
,
1786 &type_print_raw_options
);
1787 std
::string name
= buf.release
();
1789 /* This also needs canonicalization. */
1790 gdb
::unique_xmalloc_ptr
<char> canon
1791 = cp_canonicalize_string
(name.c_str
());
1792 if
(canon
!= nullptr
)
1793 name
= canon.get
();
1794 $$
= operator_stoken
((" " + name
).c_str
());
1798 /* This rule exists in order to allow some tokens that would not normally
1799 match the 'name' rule to appear as fields within a struct. The example
1800 that initially motivated this was the RISC-V target which models the
1801 floating point registers as a union with fields called 'float' and
1805 | DOUBLE_KEYWORD
{ $$
= typename_stoken
("double"); }
1806 | FLOAT_KEYWORD
{ $$
= typename_stoken
("float"); }
1807 | INT_KEYWORD
{ $$
= typename_stoken
("int"); }
1808 | LONG
{ $$
= typename_stoken
("long"); }
1809 | SHORT
{ $$
= typename_stoken
("short"); }
1810 | SIGNED_KEYWORD
{ $$
= typename_stoken
("signed"); }
1811 | UNSIGNED
{ $$
= typename_stoken
("unsigned"); }
1814 name
: NAME
{ $$
= $1.stoken
; }
1815 | BLOCKNAME
{ $$
= $1.stoken
; }
1816 | TYPENAME
{ $$
= $1.stoken
; }
1817 | NAME_OR_INT
{ $$
= $1.stoken
; }
1818 | UNKNOWN_CPP_NAME
{ $$
= $1.stoken
; }
1822 name_not_typename
: NAME
1824 /* These would be useful if name_not_typename was useful, but it is just
1825 a fake for "variable", so these cause reduce/reduce conflicts because
1826 the parser can't tell whether NAME_OR_INT is a name_not_typename (=variable,
1827 =exp) or just an exp. If name_not_typename was ever used in an lvalue
1828 context where only a name could occur, this might be useful.
1833 struct field_of_this_result is_a_field_of_this
;
1837 = lookup_symbol
($1.ptr
,
1838 pstate
->expression_context_block
,
1840 &is_a_field_of_this
);
1841 $$.is_a_field_of_this
1842 = is_a_field_of_this.type
!= NULL
;
1849 /* Returns a stoken of the operator name given by OP (which does not
1850 include the string "operator"). */
1852 static struct stoken
1853 operator_stoken
(const char *op
)
1855 struct stoken st
= { NULL
, 0 };
1858 st.length
= CP_OPERATOR_LEN
+ strlen
(op
);
1859 buf
= (char *) malloc
(st.length
+ 1);
1860 strcpy
(buf
, CP_OPERATOR_STR
);
1864 /* The toplevel (c_parse) will free the memory allocated here. */
1865 cpstate
->strings.emplace_back
(buf
);
1869 /* Returns a stoken of the type named TYPE. */
1871 static struct stoken
1872 typename_stoken
(const char *type
)
1874 struct stoken st
= { type
, 0 };
1875 st.length
= strlen
(type
);
1879 /* Return true if the type is aggregate-like. */
1882 type_aggregate_p
(struct type
*type
)
1884 return
(type
->code
() == TYPE_CODE_STRUCT
1885 || type
->code
() == TYPE_CODE_UNION
1886 || type
->code
() == TYPE_CODE_NAMESPACE
1887 ||
(type
->code
() == TYPE_CODE_ENUM
1888 && type
->is_declared_class
()));
1891 /* Validate a parameter typelist. */
1894 check_parameter_typelist
(std
::vector
<struct type
*> *params
)
1899 for
(ix
= 0; ix
< params
->size
(); ++ix
)
1901 type
= (*params
)[ix
];
1902 if
(type
!= NULL
&& check_typedef
(type
)->code
() == TYPE_CODE_VOID
)
1906 if
(params
->size
() == 1)
1911 error (_
("parameter types following 'void'"));
1914 error (_
("'void' invalid as parameter type"));
1919 /* Take care of parsing a number (anything that starts with a digit).
1920 Set yylval and return the token type; update lexptr.
1921 LEN is the number of characters in it. */
1923 /*** Needs some error checking for the float case ***/
1926 parse_number
(struct parser_state
*par_state
,
1927 const char *buf
, int len
, int parsed_float
, YYSTYPE *putithere
)
1934 int base
= input_radix
;
1937 /* Number of "L" suffixes encountered. */
1940 /* Imaginary number. */
1941 bool imaginary_p
= false
;
1943 /* We have found a "L" or "U" (or "i") suffix. */
1944 int found_suffix
= 0;
1948 p
= (char *) alloca
(len
);
1949 memcpy
(p
, buf
, len
);
1953 if
(len
>= 1 && p
[len
- 1] == 'i')
1959 /* Handle suffixes for decimal floating-point: "df", "dd" or "dl". */
1960 if
(len
>= 2 && p
[len
- 2] == 'd' && p
[len
- 1] == 'f')
1962 putithere
->typed_val_float.type
1963 = parse_type
(par_state
)->builtin_decfloat
;
1966 else if
(len
>= 2 && p
[len
- 2] == 'd' && p
[len
- 1] == 'd')
1968 putithere
->typed_val_float.type
1969 = parse_type
(par_state
)->builtin_decdouble
;
1972 else if
(len
>= 2 && p
[len
- 2] == 'd' && p
[len
- 1] == 'l')
1974 putithere
->typed_val_float.type
1975 = parse_type
(par_state
)->builtin_declong
;
1978 /* Handle suffixes: 'f' for float, 'l' for long double. */
1979 else if
(len
>= 1 && TOLOWER
(p
[len
- 1]) == 'f')
1981 putithere
->typed_val_float.type
1982 = parse_type
(par_state
)->builtin_float
;
1985 else if
(len
>= 1 && TOLOWER
(p
[len
- 1]) == 'l')
1987 putithere
->typed_val_float.type
1988 = parse_type
(par_state
)->builtin_long_double
;
1991 /* Default type for floating-point literals is double. */
1994 putithere
->typed_val_float.type
1995 = parse_type
(par_state
)->builtin_double
;
1998 if
(!parse_float
(p
, len
,
1999 putithere
->typed_val_float.type
,
2000 putithere
->typed_val_float.val
))
2004 putithere
->typed_val_float.type
2005 = init_complex_type
(nullptr
, putithere
->typed_val_float.type
);
2007 return imaginary_p ? COMPLEX_FLOAT
: FLOAT
;
2010 /* Handle base-switching prefixes 0x, 0t, 0d, 0 */
2011 if
(p
[0] == '0' && len
> 1)
2054 if
(c
>= 'A' && c
<= 'Z')
2056 if
(c
!= 'l' && c
!= 'u' && c
!= 'i')
2058 if
(c
>= '0' && c
<= '9')
2066 if
(base
> 10 && c
>= 'a' && c
<= 'f')
2070 n
+= i
= c
- 'a' + 10;
2088 return ERROR
; /* Char not a digit */
2091 return ERROR
; /* Invalid digit in this base */
2093 if
(c
!= 'l' && c
!= 'u' && c
!= 'i')
2095 /* Test for overflow. */
2096 if
(prevn
== 0 && n
== 0)
2098 else if
(prevn
>= n
)
2099 error (_
("Numeric constant too large."));
2104 /* An integer constant is an int, a long, or a long long. An L
2105 suffix forces it to be long; an LL suffix forces it to be long
2106 long. If not forced to a larger size, it gets the first type of
2107 the above that it fits in. To figure out whether it fits, we
2108 shift it right and see whether anything remains. Note that we
2109 can't shift sizeof (LONGEST) * HOST_CHAR_BIT bits or more in one
2110 operation, because many compilers will warn about such a shift
2111 (which always produces a zero result). Sometimes gdbarch_int_bit
2112 or gdbarch_long_bit will be that big, sometimes not. To deal with
2113 the case where it is we just always shift the value more than
2114 once, with fewer bits each time. */
2115 int int_bits
= gdbarch_int_bit
(par_state
->gdbarch
());
2116 int long_bits
= gdbarch_long_bit
(par_state
->gdbarch
());
2117 int long_long_bits
= gdbarch_long_long_bit
(par_state
->gdbarch
());
2119 /* No 'u' suffix. */
2122 = ((/* 'u' suffix. */
2124 ||
(/* Not a decimal. */
2126 ||
(/* Allowed as a convenience, in case decimal doesn't fit in largest
2128 !fits_in_type
(1, n
, long_long_bits
, true
)));
2130 /* No 'l' or 'll' suffix. */
2133 /* No 'll' suffix. */
2135 if
(have_int
&& have_signed
&& fits_in_type
(1, n
, int_bits
, true
))
2136 putithere
->typed_val_int.type
= parse_type
(par_state
)->builtin_int
;
2137 else if
(have_int
&& have_unsigned
&& fits_in_type
(1, n
, int_bits
, false
))
2138 putithere
->typed_val_int.type
2139 = parse_type
(par_state
)->builtin_unsigned_int
;
2140 else if
(have_long
&& have_signed
&& fits_in_type
(1, n
, long_bits
, true
))
2141 putithere
->typed_val_int.type
= parse_type
(par_state
)->builtin_long
;
2142 else if
(have_long
&& have_unsigned
&& fits_in_type
(1, n
, long_bits
, false
))
2143 putithere
->typed_val_int.type
2144 = parse_type
(par_state
)->builtin_unsigned_long
;
2145 else if
(have_signed
&& fits_in_type
(1, n
, long_long_bits
, true
))
2146 putithere
->typed_val_int.type
2147 = parse_type
(par_state
)->builtin_long_long
;
2148 else if
(have_unsigned
&& fits_in_type
(1, n
, long_long_bits
, false
))
2149 putithere
->typed_val_int.type
2150 = parse_type
(par_state
)->builtin_unsigned_long_long
;
2152 error (_
("Numeric constant too large."));
2153 putithere
->typed_val_int.val
= n
;
2156 putithere
->typed_val_int.type
2157 = init_complex_type
(nullptr
, putithere
->typed_val_int.type
);
2159 return imaginary_p ? COMPLEX_INT
: INT
;
2162 /* Temporary obstack used for holding strings. */
2163 static struct obstack tempbuf
;
2164 static int tempbuf_init
;
2166 /* Parse a C escape sequence. The initial backslash of the sequence
2167 is at (*PTR)[-1]. *PTR will be updated to point to just after the
2168 last character of the sequence. If OUTPUT is not NULL, the
2169 translated form of the escape sequence will be written there. If
2170 OUTPUT is NULL, no output is written and the call will only affect
2171 *PTR. If an escape sequence is expressed in target bytes, then the
2172 entire sequence will simply be copied to OUTPUT. Return 1 if any
2173 character was emitted, 0 otherwise. */
2176 c_parse_escape
(const char **ptr
, struct obstack
*output
)
2178 const char *tokptr
= *ptr
;
2181 /* Some escape sequences undergo character set conversion. Those we
2185 /* Hex escapes do not undergo character set conversion, so keep
2186 the escape sequence for later. */
2189 obstack_grow_str
(output
, "\\x");
2191 if
(!ISXDIGIT
(*tokptr
))
2192 error (_
("\\x escape without a following hex digit"));
2193 while
(ISXDIGIT
(*tokptr
))
2196 obstack_1grow
(output
, *tokptr
);
2201 /* Octal escapes do not undergo character set conversion, so
2202 keep the escape sequence for later. */
2214 obstack_grow_str
(output
, "\\");
2216 i
< 3 && ISDIGIT
(*tokptr
) && *tokptr
!= '8' && *tokptr
!= '9';
2220 obstack_1grow
(output
, *tokptr
);
2226 /* We handle UCNs later. We could handle them here, but that
2227 would mean a spurious error in the case where the UCN could
2228 be converted to the target charset but not the host
2234 int i
, len
= c
== 'U' ?
8 : 4;
2237 obstack_1grow
(output
, '\\');
2238 obstack_1grow
(output
, *tokptr
);
2241 if
(!ISXDIGIT
(*tokptr
))
2242 error (_
("\\%c escape without a following hex digit"), c
);
2243 for
(i
= 0; i
< len
&& ISXDIGIT
(*tokptr
); ++i
)
2246 obstack_1grow
(output
, *tokptr
);
2252 /* We must pass backslash through so that it does not
2253 cause quoting during the second expansion. */
2256 obstack_grow_str
(output
, "\\\\");
2260 /* Escapes which undergo conversion. */
2263 obstack_1grow
(output
, '\a');
2268 obstack_1grow
(output
, '\b');
2273 obstack_1grow
(output
, '\f');
2278 obstack_1grow
(output
, '\n');
2283 obstack_1grow
(output
, '\r');
2288 obstack_1grow
(output
, '\t');
2293 obstack_1grow
(output
, '\v');
2297 /* GCC extension. */
2300 obstack_1grow
(output
, HOST_ESCAPE_CHAR
);
2304 /* Backslash-newline expands to nothing at all. */
2310 /* A few escapes just expand to the character itself. */
2314 /* GCC extensions. */
2319 /* Unrecognized escapes turn into the character itself. */
2322 obstack_1grow
(output
, *tokptr
);
2330 /* Parse a string or character literal from TOKPTR. The string or
2331 character may be wide or unicode. *OUTPTR is set to just after the
2332 end of the literal in the input string. The resulting token is
2333 stored in VALUE. This returns a token value, either STRING or
2334 CHAR, depending on what was parsed. *HOST_CHARS is set to the
2335 number of host characters in the literal. */
2338 parse_string_or_char
(const char *tokptr
, const char **outptr
,
2339 struct typed_stoken
*value
, int *host_chars
)
2345 /* Build the gdb internal form of the input string in tempbuf. Note
2346 that the buffer is null byte terminated *only* for the
2347 convenience of debugging gdb itself and printing the buffer
2348 contents when the buffer contains no embedded nulls. Gdb does
2349 not depend upon the buffer being null byte terminated, it uses
2350 the length string instead. This allows gdb to handle C strings
2351 (as well as strings in other languages) with embedded null
2357 obstack_free
(&tempbuf
, NULL
);
2358 obstack_init
(&tempbuf
);
2360 /* Record the string type. */
2363 type
= C_WIDE_STRING
;
2366 else if
(*tokptr
== 'u')
2371 else if
(*tokptr
== 'U')
2376 else if
(*tokptr
== '@')
2378 /* An Objective C string. */
2386 /* Skip the quote. */
2400 *host_chars
+= c_parse_escape
(&tokptr
, &tempbuf
);
2402 else if
(c
== quote
)
2406 obstack_1grow
(&tempbuf
, c
);
2408 /* FIXME: this does the wrong thing with multi-byte host
2409 characters. We could use mbrlen here, but that would
2410 make "set host-charset" a bit less useful. */
2415 if
(*tokptr
!= quote
)
2418 error (_
("Unterminated string in expression."));
2420 error (_
("Unmatched single quote."));
2425 value
->ptr
= (char *) obstack_base
(&tempbuf
);
2426 value
->length
= obstack_object_size
(&tempbuf
);
2430 return quote
== '"' ?
(is_objc ? NSSTRING
: STRING
) : CHAR
;
2433 /* This is used to associate some attributes with a token. */
2437 /* If this bit is set, the token is C++-only. */
2441 /* If this bit is set, the token is C-only. */
2445 /* If this bit is set, the token is conditional: if there is a
2446 symbol of the same name, then the token is a symbol; otherwise,
2447 the token is a keyword. */
2451 DEF_ENUM_FLAGS_TYPE
(enum token_flag
, token_flags
);
2457 enum exp_opcode opcode
;
2461 static const struct token tokentab3
[] =
2463 {">>=", ASSIGN_MODIFY
, BINOP_RSH
, 0},
2464 {"<<=", ASSIGN_MODIFY
, BINOP_LSH
, 0},
2465 {"->*", ARROW_STAR
, OP_NULL
, FLAG_CXX
},
2466 {"...", DOTDOTDOT
, OP_NULL
, 0}
2469 static const struct token tokentab2
[] =
2471 {"+=", ASSIGN_MODIFY
, BINOP_ADD
, 0},
2472 {"-=", ASSIGN_MODIFY
, BINOP_SUB
, 0},
2473 {"*=", ASSIGN_MODIFY
, BINOP_MUL
, 0},
2474 {"/=", ASSIGN_MODIFY
, BINOP_DIV
, 0},
2475 {"%=", ASSIGN_MODIFY
, BINOP_REM
, 0},
2476 {"|=", ASSIGN_MODIFY
, BINOP_BITWISE_IOR
, 0},
2477 {"&=", ASSIGN_MODIFY
, BINOP_BITWISE_AND
, 0},
2478 {"^=", ASSIGN_MODIFY
, BINOP_BITWISE_XOR
, 0},
2479 {"++", INCREMENT
, OP_NULL
, 0},
2480 {"--", DECREMENT
, OP_NULL
, 0},
2481 {"->", ARROW
, OP_NULL
, 0},
2482 {"&&", ANDAND
, OP_NULL
, 0},
2483 {"||", OROR
, OP_NULL
, 0},
2484 /* "::" is *not* only C++: gdb overrides its meaning in several
2485 different ways, e.g., 'filename'::func, function::variable. */
2486 {"::", COLONCOLON
, OP_NULL
, 0},
2487 {"<<", LSH
, OP_NULL
, 0},
2488 {">>", RSH
, OP_NULL
, 0},
2489 {"==", EQUAL
, OP_NULL
, 0},
2490 {"!=", NOTEQUAL
, OP_NULL
, 0},
2491 {"<=", LEQ
, OP_NULL
, 0},
2492 {">=", GEQ
, OP_NULL
, 0},
2493 {".*", DOT_STAR
, OP_NULL
, FLAG_CXX
}
2496 /* Identifier-like tokens. Only type-specifiers than can appear in
2497 multi-word type names (for example 'double' can appear in 'long
2498 double') need to be listed here. type-specifiers that are only ever
2499 single word (like 'char') are handled by the classify_name function. */
2500 static const struct token ident_tokens
[] =
2502 {"unsigned", UNSIGNED
, OP_NULL
, 0},
2503 {"template", TEMPLATE
, OP_NULL
, FLAG_CXX
},
2504 {"volatile", VOLATILE_KEYWORD
, OP_NULL
, 0},
2505 {"struct", STRUCT
, OP_NULL
, 0},
2506 {"signed", SIGNED_KEYWORD
, OP_NULL
, 0},
2507 {"sizeof", SIZEOF
, OP_NULL
, 0},
2508 {"_Alignof", ALIGNOF
, OP_NULL
, 0},
2509 {"alignof", ALIGNOF
, OP_NULL
, FLAG_CXX
},
2510 {"double", DOUBLE_KEYWORD
, OP_NULL
, 0},
2511 {"float", FLOAT_KEYWORD
, OP_NULL
, 0},
2512 {"false", FALSEKEYWORD
, OP_NULL
, FLAG_CXX
},
2513 {"class", CLASS
, OP_NULL
, FLAG_CXX
},
2514 {"union", UNION
, OP_NULL
, 0},
2515 {"short", SHORT
, OP_NULL
, 0},
2516 {"const", CONST_KEYWORD
, OP_NULL
, 0},
2517 {"restrict", RESTRICT
, OP_NULL
, FLAG_C | FLAG_SHADOW
},
2518 {"__restrict__", RESTRICT
, OP_NULL
, 0},
2519 {"__restrict", RESTRICT
, OP_NULL
, 0},
2520 {"_Atomic", ATOMIC
, OP_NULL
, 0},
2521 {"enum", ENUM
, OP_NULL
, 0},
2522 {"long", LONG
, OP_NULL
, 0},
2523 {"_Complex", COMPLEX
, OP_NULL
, 0},
2524 {"__complex__", COMPLEX
, OP_NULL
, 0},
2526 {"true", TRUEKEYWORD
, OP_NULL
, FLAG_CXX
},
2527 {"int", INT_KEYWORD
, OP_NULL
, 0},
2528 {"new", NEW
, OP_NULL
, FLAG_CXX
},
2529 {"delete", DELETE
, OP_NULL
, FLAG_CXX
},
2530 {"operator", OPERATOR
, OP_NULL
, FLAG_CXX
},
2532 {"and", ANDAND
, OP_NULL
, FLAG_CXX
},
2533 {"and_eq", ASSIGN_MODIFY
, BINOP_BITWISE_AND
, FLAG_CXX
},
2534 {"bitand", '&', OP_NULL
, FLAG_CXX
},
2535 {"bitor", '|', OP_NULL
, FLAG_CXX
},
2536 {"compl", '~', OP_NULL
, FLAG_CXX
},
2537 {"not", '!', OP_NULL
, FLAG_CXX
},
2538 {"not_eq", NOTEQUAL
, OP_NULL
, FLAG_CXX
},
2539 {"or", OROR
, OP_NULL
, FLAG_CXX
},
2540 {"or_eq", ASSIGN_MODIFY
, BINOP_BITWISE_IOR
, FLAG_CXX
},
2541 {"xor", '^', OP_NULL
, FLAG_CXX
},
2542 {"xor_eq", ASSIGN_MODIFY
, BINOP_BITWISE_XOR
, FLAG_CXX
},
2544 {"const_cast", CONST_CAST
, OP_NULL
, FLAG_CXX
},
2545 {"dynamic_cast", DYNAMIC_CAST
, OP_NULL
, FLAG_CXX
},
2546 {"static_cast", STATIC_CAST
, OP_NULL
, FLAG_CXX
},
2547 {"reinterpret_cast", REINTERPRET_CAST
, OP_NULL
, FLAG_CXX
},
2549 {"__typeof__", TYPEOF
, OP_TYPEOF
, 0 },
2550 {"__typeof", TYPEOF
, OP_TYPEOF
, 0 },
2551 {"typeof", TYPEOF
, OP_TYPEOF
, FLAG_SHADOW
},
2552 {"__decltype", DECLTYPE
, OP_DECLTYPE
, FLAG_CXX
},
2553 {"decltype", DECLTYPE
, OP_DECLTYPE
, FLAG_CXX | FLAG_SHADOW
},
2555 {"typeid", TYPEID
, OP_TYPEID
, FLAG_CXX
}
2560 scan_macro_expansion
(const char *expansion
)
2562 /* We'd better not be trying to push the stack twice. */
2563 gdb_assert
(! cpstate
->macro_original_text
);
2565 /* Copy to the obstack. */
2566 const char *copy
= obstack_strdup
(&cpstate
->expansion_obstack
, expansion
);
2568 /* Save the old lexptr value, so we can return to it when we're done
2569 parsing the expanded text. */
2570 cpstate
->macro_original_text
= pstate
->lexptr
;
2571 pstate
->lexptr
= copy
;
2575 scanning_macro_expansion
(void)
2577 return cpstate
->macro_original_text
!= 0;
2581 finished_macro_expansion
(void)
2583 /* There'd better be something to pop back to. */
2584 gdb_assert
(cpstate
->macro_original_text
);
2586 /* Pop back to the original text. */
2587 pstate
->lexptr
= cpstate
->macro_original_text
;
2588 cpstate
->macro_original_text
= 0;
2591 /* Return true iff the token represents a C++ cast operator. */
2594 is_cast_operator
(const char *token
, int len
)
2596 return
(! strncmp
(token
, "dynamic_cast", len
)
2597 ||
! strncmp
(token
, "static_cast", len
)
2598 ||
! strncmp
(token
, "reinterpret_cast", len
)
2599 ||
! strncmp
(token
, "const_cast", len
));
2602 /* The scope used for macro expansion. */
2603 static struct macro_scope
*expression_macro_scope
;
2605 /* This is set if a NAME token appeared at the very end of the input
2606 string, with no whitespace separating the name from the EOF. This
2607 is used only when parsing to do field name completion. */
2608 static int saw_name_at_eof
;
2610 /* This is set if the previously-returned token was a structure
2611 operator -- either '.' or ARROW. */
2612 static bool last_was_structop
;
2614 /* Depth of parentheses. */
2615 static int paren_depth
;
2617 /* Read one token, getting characters through lexptr. */
2620 lex_one_token
(struct parser_state
*par_state
, bool *is_quoted_name
)
2624 const char *tokstart
;
2625 bool saw_structop
= last_was_structop
;
2627 last_was_structop
= false
;
2628 *is_quoted_name
= false
;
2632 /* Check if this is a macro invocation that we need to expand. */
2633 if
(! scanning_macro_expansion
())
2635 gdb
::unique_xmalloc_ptr
<char> expanded
2636 = macro_expand_next
(&pstate
->lexptr
, *expression_macro_scope
);
2638 if
(expanded
!= nullptr
)
2639 scan_macro_expansion
(expanded.get
());
2642 pstate
->prev_lexptr
= pstate
->lexptr
;
2644 tokstart
= pstate
->lexptr
;
2645 /* See if it is a special token of length 3. */
2646 for
(const auto
&token
: tokentab3
)
2647 if
(strncmp
(tokstart
, token.oper
, 3) == 0)
2649 if
((token.flags
& FLAG_CXX
) != 0
2650 && par_state
->language
()->la_language
!= language_cplus
)
2652 gdb_assert
((token.flags
& FLAG_C
) == 0);
2654 pstate
->lexptr
+= 3;
2655 yylval.opcode
= token.opcode
;
2659 /* See if it is a special token of length 2. */
2660 for
(const auto
&token
: tokentab2
)
2661 if
(strncmp
(tokstart
, token.oper
, 2) == 0)
2663 if
((token.flags
& FLAG_CXX
) != 0
2664 && par_state
->language
()->la_language
!= language_cplus
)
2666 gdb_assert
((token.flags
& FLAG_C
) == 0);
2668 pstate
->lexptr
+= 2;
2669 yylval.opcode
= token.opcode
;
2670 if
(token.token
== ARROW
)
2671 last_was_structop
= 1;
2675 switch
(c
= *tokstart
)
2678 /* If we were just scanning the result of a macro expansion,
2679 then we need to resume scanning the original text.
2680 If we're parsing for field name completion, and the previous
2681 token allows such completion, return a COMPLETE token.
2682 Otherwise, we were already scanning the original text, and
2683 we're really done. */
2684 if
(scanning_macro_expansion
())
2686 finished_macro_expansion
();
2689 else if
(saw_name_at_eof
)
2691 saw_name_at_eof
= 0;
2694 else if
(par_state
->parse_completion
&& saw_structop
)
2709 if
(par_state
->language
()->la_language
== language_objc
2716 if
(paren_depth
== 0)
2723 if
(pstate
->comma_terminates
2725 && ! scanning_macro_expansion
())
2731 /* Might be a floating point number. */
2732 if
(pstate
->lexptr
[1] < '0' || pstate
->lexptr
[1] > '9')
2734 last_was_structop
= true
;
2735 goto symbol
; /* Nope, must be a symbol. */
2750 /* It's a number. */
2751 int got_dot
= 0, got_e
= 0, got_p
= 0, toktype
;
2752 const char *p
= tokstart
;
2753 int hex
= input_radix
> 10;
2755 if
(c
== '0' && (p
[1] == 'x' || p
[1] == 'X'))
2760 else if
(c
== '0' && (p
[1]=='t' || p
[1]=='T' || p
[1]=='d' || p
[1]=='D'))
2768 /* This test includes !hex because 'e' is a valid hex digit
2769 and thus does not indicate a floating point number when
2770 the radix is hex. */
2771 if
(!hex
&& !got_e
&& !got_p
&& (*p
== 'e' ||
*p
== 'E'))
2772 got_dot
= got_e
= 1;
2773 else if
(!got_e
&& !got_p
&& (*p
== 'p' ||
*p
== 'P'))
2774 got_dot
= got_p
= 1;
2775 /* This test does not include !hex, because a '.' always indicates
2776 a decimal floating point number regardless of the radix. */
2777 else if
(!got_dot
&& *p
== '.')
2779 else if
(((got_e
&& (p
[-1] == 'e' || p
[-1] == 'E'))
2780 ||
(got_p
&& (p
[-1] == 'p' || p
[-1] == 'P')))
2781 && (*p
== '-' ||
*p
== '+'))
2782 /* This is the sign of the exponent, not the end of the
2785 /* We will take any letters or digits. parse_number will
2786 complain if past the radix, or if L or U are not final. */
2787 else if
((*p
< '0' ||
*p
> '9')
2788 && ((*p
< 'a' ||
*p
> 'z')
2789 && (*p
< 'A' ||
*p
> 'Z')))
2792 toktype
= parse_number
(par_state
, tokstart
, p
- tokstart
,
2793 got_dot | got_e | got_p
, &yylval);
2794 if
(toktype
== ERROR
)
2796 char *err_copy
= (char *) alloca
(p
- tokstart
+ 1);
2798 memcpy
(err_copy
, tokstart
, p
- tokstart
);
2799 err_copy
[p
- tokstart
] = 0;
2800 error (_
("Invalid number \"%s\"."), err_copy
);
2808 const char *p
= &tokstart
[1];
2810 if
(par_state
->language
()->la_language
== language_objc
)
2812 size_t len
= strlen
("selector");
2814 if
(strncmp
(p
, "selector", len
) == 0
2815 && (p
[len
] == '\0' || ISSPACE
(p
[len
])))
2817 pstate
->lexptr
= p
+ len
;
2824 while
(ISSPACE
(*p
))
2826 size_t len
= strlen
("entry");
2827 if
(strncmp
(p
, "entry", len
) == 0 && !c_ident_is_alnum
(p
[len
])
2830 pstate
->lexptr
= &p
[len
];
2859 if
(tokstart
[1] != '"' && tokstart
[1] != '\'')
2868 int result
= parse_string_or_char
(tokstart
, &pstate
->lexptr
,
2869 &yylval.tsval
, &host_len
);
2873 error (_
("Empty character constant."));
2874 else if
(host_len
> 2 && c
== '\'')
2877 namelen
= pstate
->lexptr
- tokstart
- 1;
2878 *is_quoted_name
= true
;
2882 else if
(host_len
> 1)
2883 error (_
("Invalid character constant."));
2889 if
(!(c
== '_' || c
== '$' || c_ident_is_alpha
(c
)))
2890 /* We must have come across a bad character (e.g. ';'). */
2891 error (_
("Invalid character '%c' in expression."), c
);
2893 /* It's a name. See how long it is. */
2895 for
(c
= tokstart
[namelen
];
2896 (c
== '_' || c
== '$' || c_ident_is_alnum
(c
) || c
== '<');)
2898 /* Template parameter lists are part of the name.
2899 FIXME: This mishandles `print $a<4&&$a>3'. */
2903 if
(! is_cast_operator
(tokstart
, namelen
))
2905 /* Scan ahead to get rest of the template specification. Note
2906 that we look ahead only when the '<' adjoins non-whitespace
2907 characters; for comparison expressions, e.g. "a < b > c",
2908 there must be spaces before the '<', etc. */
2909 const char *p
= find_template_name_end
(tokstart
+ namelen
);
2912 namelen
= p
- tokstart
;
2916 c
= tokstart
[++namelen
];
2919 /* The token "if" terminates the expression and is NOT removed from
2920 the input stream. It doesn't count if it appears in the
2921 expansion of a macro. */
2923 && tokstart
[0] == 'i'
2924 && tokstart
[1] == 'f'
2925 && ! scanning_macro_expansion
())
2930 /* For the same reason (breakpoint conditions), "thread N"
2931 terminates the expression. "thread" could be an identifier, but
2932 an identifier is never followed by a number without intervening
2933 punctuation. "task" is similar. Handle abbreviations of these,
2934 similarly to breakpoint.c:find_condition_and_thread. */
2936 && (strncmp
(tokstart
, "thread", namelen
) == 0
2937 || strncmp
(tokstart
, "task", namelen
) == 0)
2938 && (tokstart
[namelen
] == ' ' || tokstart
[namelen
] == '\t')
2939 && ! scanning_macro_expansion
())
2941 const char *p
= tokstart
+ namelen
+ 1;
2943 while
(*p
== ' ' ||
*p
== '\t')
2945 if
(*p
>= '0' && *p
<= '9')
2949 pstate
->lexptr
+= namelen
;
2953 yylval.sval.ptr
= tokstart
;
2954 yylval.sval.length
= namelen
;
2956 /* Catch specific keywords. */
2957 std
::string copy
= copy_name
(yylval.sval
);
2958 for
(const auto
&token
: ident_tokens
)
2959 if
(copy
== token.oper
)
2961 if
((token.flags
& FLAG_CXX
) != 0
2962 && par_state
->language
()->la_language
!= language_cplus
)
2964 if
((token.flags
& FLAG_C
) != 0
2965 && par_state
->language
()->la_language
!= language_c
2966 && par_state
->language
()->la_language
!= language_objc
)
2969 if
((token.flags
& FLAG_SHADOW
) != 0)
2971 struct field_of_this_result is_a_field_of_this
;
2973 if
(lookup_symbol
(copy.c_str
(),
2974 pstate
->expression_context_block
,
2976 (par_state
->language
()->la_language
2977 == language_cplus ?
&is_a_field_of_this
2981 /* The keyword is shadowed. */
2986 /* It is ok to always set this, even though we don't always
2987 strictly need to. */
2988 yylval.opcode
= token.opcode
;
2992 if
(*tokstart
== '$')
2993 return DOLLAR_VARIABLE
;
2995 if
(pstate
->parse_completion
&& *pstate
->lexptr
== '\0')
2996 saw_name_at_eof
= 1;
2998 yylval.ssym.stoken
= yylval.sval
;
2999 yylval.ssym.sym.symbol
= NULL
;
3000 yylval.ssym.sym.block
= NULL
;
3001 yylval.ssym.is_a_field_of_this
= 0;
3005 /* An object of this type is pushed on a FIFO by the "outer" lexer. */
3006 struct token_and_value
3012 /* A FIFO of tokens that have been read but not yet returned to the
3014 static std
::vector
<token_and_value
> token_fifo
;
3016 /* Non-zero if the lexer should return tokens from the FIFO. */
3019 /* Temporary storage for c_lex; this holds symbol names as they are
3021 static auto_obstack name_obstack
;
3023 /* Classify a NAME token. The contents of the token are in `yylval'.
3024 Updates yylval and returns the new token type. BLOCK is the block
3025 in which lookups start; this can be NULL to mean the global scope.
3026 IS_QUOTED_NAME is non-zero if the name token was originally quoted
3027 in single quotes. IS_AFTER_STRUCTOP is true if this name follows
3028 a structure operator -- either '.' or ARROW */
3031 classify_name
(struct parser_state
*par_state
, const struct block
*block
,
3032 bool is_quoted_name
, bool is_after_structop
)
3034 struct block_symbol bsym
;
3035 struct field_of_this_result is_a_field_of_this
;
3037 std
::string copy
= copy_name
(yylval.sval
);
3039 /* Initialize this in case we *don't* use it in this call; that way
3040 we can refer to it unconditionally below. */
3041 memset
(&is_a_field_of_this
, 0, sizeof
(is_a_field_of_this
));
3043 bsym
= lookup_symbol
(copy.c_str
(), block
, VAR_DOMAIN
,
3044 par_state
->language
()->name_of_this
()
3045 ?
&is_a_field_of_this
: NULL
);
3047 if
(bsym.symbol
&& bsym.symbol
->aclass
() == LOC_BLOCK
)
3049 yylval.ssym.sym
= bsym
;
3050 yylval.ssym.is_a_field_of_this
= is_a_field_of_this.type
!= NULL
;
3053 else if
(!bsym.symbol
)
3055 /* If we found a field of 'this', we might have erroneously
3056 found a constructor where we wanted a type name. Handle this
3057 case by noticing that we found a constructor and then look up
3058 the type tag instead. */
3059 if
(is_a_field_of_this.type
!= NULL
3060 && is_a_field_of_this.fn_field
!= NULL
3061 && TYPE_FN_FIELD_CONSTRUCTOR
(is_a_field_of_this.fn_field
->fn_fields
,
3064 struct field_of_this_result inner_is_a_field_of_this
;
3066 bsym
= lookup_symbol
(copy.c_str
(), block
, STRUCT_DOMAIN
,
3067 &inner_is_a_field_of_this
);
3068 if
(bsym.symbol
!= NULL
)
3070 yylval.tsym.type
= bsym.symbol
->type
();
3075 /* If we found a field on the "this" object, or we are looking
3076 up a field on a struct, then we want to prefer it over a
3077 filename. However, if the name was quoted, then it is better
3078 to check for a filename or a block, since this is the only
3079 way the user has of requiring the extension to be used. */
3080 if
((is_a_field_of_this.type
== NULL
&& !is_after_structop
)
3083 /* See if it's a file name. */
3084 struct symtab
*symtab
;
3086 symtab
= lookup_symtab
(copy.c_str
());
3090 = symtab
->compunit
()->blockvector
()->static_block
();
3097 if
(bsym.symbol
&& bsym.symbol
->aclass
() == LOC_TYPEDEF
)
3099 yylval.tsym.type
= bsym.symbol
->type
();
3103 /* See if it's an ObjC classname. */
3104 if
(par_state
->language
()->la_language
== language_objc
&& !bsym.symbol
)
3106 CORE_ADDR Class
= lookup_objc_class
(par_state
->gdbarch
(),
3112 yylval.theclass.theclass
= Class
;
3113 sym
= lookup_struct_typedef
(copy.c_str
(),
3114 par_state
->expression_context_block
, 1);
3116 yylval.theclass.type
= sym
->type
();
3121 /* Input names that aren't symbols but ARE valid hex numbers, when
3122 the input radix permits them, can be names or numbers depending
3123 on the parse. Note we support radixes > 16 here. */
3125 && ((copy
[0] >= 'a' && copy
[0] < 'a' + input_radix
- 10)
3126 ||
(copy
[0] >= 'A' && copy
[0] < 'A' + input_radix
- 10)))
3128 YYSTYPE newlval
; /* Its value is ignored. */
3129 int hextype
= parse_number
(par_state
, copy.c_str
(), yylval.sval.length
,
3134 yylval.ssym.sym
= bsym
;
3135 yylval.ssym.is_a_field_of_this
= is_a_field_of_this.type
!= NULL
;
3140 /* Any other kind of symbol */
3141 yylval.ssym.sym
= bsym
;
3142 yylval.ssym.is_a_field_of_this
= is_a_field_of_this.type
!= NULL
;
3144 if
(bsym.symbol
== NULL
3145 && par_state
->language
()->la_language
== language_cplus
3146 && is_a_field_of_this.type
== NULL
3147 && lookup_minimal_symbol
(copy.c_str
(), NULL
, NULL
).minsym
== NULL
)
3148 return UNKNOWN_CPP_NAME
;
3153 /* Like classify_name, but used by the inner loop of the lexer, when a
3154 name might have already been seen. CONTEXT is the context type, or
3155 NULL if this is the first component of a name. */
3158 classify_inner_name
(struct parser_state
*par_state
,
3159 const struct block
*block
, struct type
*context
)
3163 if
(context
== NULL
)
3164 return classify_name
(par_state
, block
, false
, false
);
3166 type
= check_typedef
(context
);
3167 if
(!type_aggregate_p
(type
))
3170 std
::string copy
= copy_name
(yylval.ssym.stoken
);
3171 /* N.B. We assume the symbol can only be in VAR_DOMAIN. */
3172 yylval.ssym.sym
= cp_lookup_nested_symbol
(type
, copy.c_str
(), block
,
3175 /* If no symbol was found, search for a matching base class named
3176 COPY. This will allow users to enter qualified names of class members
3177 relative to the `this' pointer. */
3178 if
(yylval.ssym.sym.symbol
== NULL
)
3180 struct type
*base_type
= cp_find_type_baseclass_by_name
(type
,
3183 if
(base_type
!= NULL
)
3185 yylval.tsym.type
= base_type
;
3192 switch
(yylval.ssym.sym.symbol
->aclass
())
3196 /* cp_lookup_nested_symbol might have accidentally found a constructor
3197 named COPY when we really wanted a base class of the same name.
3198 Double-check this case by looking for a base class. */
3200 struct type
*base_type
3201 = cp_find_type_baseclass_by_name
(type
, copy.c_str
());
3203 if
(base_type
!= NULL
)
3205 yylval.tsym.type
= base_type
;
3212 yylval.tsym.type
= yylval.ssym.sym.symbol
->type
();
3218 internal_error
(_
("not reached"));
3221 /* The outer level of a two-level lexer. This calls the inner lexer
3222 to return tokens. It then either returns these tokens, or
3223 aggregates them into a larger token. This lets us work around a
3224 problem in our parsing approach, where the parser could not
3225 distinguish between qualified names and qualified types at the
3228 This approach is still not ideal, because it mishandles template
3229 types. See the comment in lex_one_token for an example. However,
3230 this is still an improvement over the earlier approach, and will
3231 suffice until we move to better parsing technology. */
3236 token_and_value current
;
3237 int first_was_coloncolon
, last_was_coloncolon
;
3238 struct type
*context_type
= NULL
;
3239 int last_to_examine
, next_to_examine
, checkpoint
;
3240 const struct block
*search_block
;
3241 bool is_quoted_name
, last_lex_was_structop
;
3243 if
(popping
&& !token_fifo.empty
())
3247 last_lex_was_structop
= last_was_structop
;
3249 /* Read the first token and decide what to do. Most of the
3250 subsequent code is C++-only; but also depends on seeing a "::" or
3252 current.token
= lex_one_token
(pstate
, &is_quoted_name
);
3253 if
(current.token
== NAME
)
3254 current.token
= classify_name
(pstate
, pstate
->expression_context_block
,
3255 is_quoted_name
, last_lex_was_structop
);
3256 if
(pstate
->language
()->la_language
!= language_cplus
3257 ||
(current.token
!= TYPENAME
&& current.token
!= COLONCOLON
3258 && current.token
!= FILENAME
))
3259 return current.token
;
3261 /* Read any sequence of alternating "::" and name-like tokens into
3263 current.value
= yylval;
3264 token_fifo.push_back
(current
);
3265 last_was_coloncolon
= current.token
== COLONCOLON
;
3270 /* We ignore quoted names other than the very first one.
3271 Subsequent ones do not have any special meaning. */
3272 current.token
= lex_one_token
(pstate
, &ignore
);
3273 current.value
= yylval;
3274 token_fifo.push_back
(current
);
3276 if
((last_was_coloncolon
&& current.token
!= NAME
)
3277 ||
(!last_was_coloncolon
&& current.token
!= COLONCOLON
))
3279 last_was_coloncolon
= !last_was_coloncolon
;
3283 /* We always read one extra token, so compute the number of tokens
3284 to examine accordingly. */
3285 last_to_examine
= token_fifo.size
() - 2;
3286 next_to_examine
= 0;
3288 current
= token_fifo
[next_to_examine
];
3291 name_obstack.clear
();
3293 if
(current.token
== FILENAME
)
3294 search_block
= current.value.bval
;
3295 else if
(current.token
== COLONCOLON
)
3296 search_block
= NULL
;
3299 gdb_assert
(current.token
== TYPENAME
);
3300 search_block
= pstate
->expression_context_block
;
3301 obstack_grow
(&name_obstack
, current.value.sval.ptr
,
3302 current.value.sval.length
);
3303 context_type
= current.value.tsym.type
;
3307 first_was_coloncolon
= current.token
== COLONCOLON
;
3308 last_was_coloncolon
= first_was_coloncolon
;
3310 while
(next_to_examine
<= last_to_examine
)
3312 token_and_value next
;
3314 next
= token_fifo
[next_to_examine
];
3317 if
(next.token
== NAME
&& last_was_coloncolon
)
3321 yylval = next.value
;
3322 classification
= classify_inner_name
(pstate
, search_block
,
3324 /* We keep going until we either run out of names, or until
3325 we have a qualified name which is not a type. */
3326 if
(classification
!= TYPENAME
&& classification
!= NAME
)
3329 /* Accept up to this token. */
3330 checkpoint
= next_to_examine
;
3332 /* Update the partial name we are constructing. */
3333 if
(context_type
!= NULL
)
3335 /* We don't want to put a leading "::" into the name. */
3336 obstack_grow_str
(&name_obstack
, "::");
3338 obstack_grow
(&name_obstack
, next.value.sval.ptr
,
3339 next.value.sval.length
);
3341 yylval.sval.ptr
= (const char *) obstack_base
(&name_obstack
);
3342 yylval.sval.length
= obstack_object_size
(&name_obstack
);
3343 current.value
= yylval;
3344 current.token
= classification
;
3346 last_was_coloncolon
= 0;
3348 if
(classification
== NAME
)
3351 context_type
= yylval.tsym.type
;
3353 else if
(next.token
== COLONCOLON
&& !last_was_coloncolon
)
3354 last_was_coloncolon
= 1;
3357 /* We've reached the end of the name. */
3362 /* If we have a replacement token, install it as the first token in
3363 the FIFO, and delete the other constituent tokens. */
3366 current.value.sval.ptr
3367 = obstack_strndup
(&cpstate
->expansion_obstack
,
3368 current.value.sval.ptr
,
3369 current.value.sval.length
);
3371 token_fifo
[0] = current
;
3373 token_fifo.erase
(token_fifo.begin
() + 1,
3374 token_fifo.begin
() + checkpoint
);
3378 current
= token_fifo
[0];
3379 token_fifo.erase
(token_fifo.begin
());
3380 yylval = current.value
;
3381 return current.token
;
3385 c_parse
(struct parser_state
*par_state
)
3387 /* Setting up the parser state. */
3388 scoped_restore pstate_restore
= make_scoped_restore
(&pstate
);
3389 gdb_assert
(par_state
!= NULL
);
3392 c_parse_state cstate
;
3393 scoped_restore cstate_restore
= make_scoped_restore
(&cpstate
, &cstate
);
3395 gdb
::unique_xmalloc_ptr
<struct macro_scope
> macro_scope
;
3397 if
(par_state
->expression_context_block
)
3399 = sal_macro_scope
(find_pc_line
(par_state
->expression_context_pc
, 0));
3401 macro_scope
= default_macro_scope
();
3403 macro_scope
= user_macro_scope
();
3405 scoped_restore restore_macro_scope
3406 = make_scoped_restore
(&expression_macro_scope
, macro_scope.get
());
3408 scoped_restore restore_yydebug
= make_scoped_restore
(&yydebug,
3411 /* Initialize some state used by the lexer. */
3412 last_was_structop
= false
;
3413 saw_name_at_eof
= 0;
3416 token_fifo.clear
();
3418 name_obstack.clear
();
3420 int result
= yyparse ();
3422 pstate
->set_operation
(pstate
->pop
());
3426 #if defined(YYBISON) && YYBISON < 30800
3429 /* This is called via the YYPRINT macro when parser debugging is
3430 enabled. It prints a token's value. */
3433 c_print_token
(FILE *file
, int type
, YYSTYPE value
)
3438 parser_fprintf
(file
, "typed_val_int<%s, %s>",
3439 TYPE_SAFE_NAME
(value.typed_val_int.type
),
3440 pulongest
(value.typed_val_int.val
));
3446 char *copy
= (char *) alloca
(value.tsval.length
+ 1);
3448 memcpy
(copy
, value.tsval.ptr
, value.tsval.length
);
3449 copy
[value.tsval.length
] = '\0';
3451 parser_fprintf
(file
, "tsval<type=%d, %s>", value.tsval.type
, copy
);
3456 case DOLLAR_VARIABLE
:
3457 parser_fprintf
(file
, "sval<%s>", copy_name
(value.sval
).c_str
());
3461 parser_fprintf
(file
, "tsym<type=%s, name=%s>",
3462 TYPE_SAFE_NAME
(value.tsym.type
),
3463 copy_name
(value.tsym.stoken
).c_str
());
3467 case UNKNOWN_CPP_NAME
:
3470 parser_fprintf
(file
, "ssym<name=%s, sym=%s, field_of_this=%d>",
3471 copy_name
(value.ssym.stoken
).c_str
(),
3472 (value.ssym.sym.symbol
== NULL
3473 ?
"(null)" : value.ssym.sym.symbol
->print_name
()),
3474 value.ssym.is_a_field_of_this
);
3478 parser_fprintf
(file
, "bval<%s>", host_address_to_string
(value.bval
));
3486 yyerror (const char *msg
)
3488 if
(pstate
->prev_lexptr
)
3489 pstate
->lexptr
= pstate
->prev_lexptr
;
3491 error (_
("A %s in expression, near `%s'."), msg
, pstate
->lexptr
);