]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/parser-defs.h
Remove paren_depth global
[thirdparty/binutils-gdb.git] / gdb / parser-defs.h
CommitLineData
c906108c 1/* Parser definitions for GDB.
96cb11df 2
42a4f53d 3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
96cb11df 4
c906108c
SS
5 Modified from expread.y by the Department of Computer Science at the
6 State University of New York at Buffalo.
7
c5aa993b 8 This file is part of GDB.
c906108c 9
c5aa993b
JM
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
a9762ec7 12 the Free Software Foundation; either version 3 of the License, or
c5aa993b 13 (at your option) any later version.
c906108c 14
c5aa993b
JM
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
c906108c 19
c5aa993b 20 You should have received a copy of the GNU General Public License
a9762ec7 21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
22
23#if !defined (PARSER_DEFS_H)
24#define PARSER_DEFS_H 1
25
0747795c 26#include "common/vec.h"
74e5a346 27#include "expression.h"
d16aafd8 28
fe898f56 29struct block;
410a0ff2
SDJ
30struct language_defn;
31struct internalvar;
fe898f56 32
92981e24
TT
33extern int parser_debug;
34
37eedb39
TT
35/* A class that can be used to build a "struct expression". */
36
37struct expr_builder
410a0ff2 38{
1201a264
TT
39 /* Constructor. LANG is the language used to parse the expression.
40 And GDBARCH is the gdbarch to use during parsing. */
e9d9f57e 41
37eedb39 42 expr_builder (const struct language_defn *lang,
e9d9f57e
TT
43 struct gdbarch *gdbarch);
44
37eedb39 45 DISABLE_COPY_AND_ASSIGN (expr_builder);
410a0ff2 46
e9d9f57e
TT
47 /* Resize the allocated expression to the correct size, and return
48 it as an expression_up -- passing ownership to the caller. */
41e3300a 49 ATTRIBUTE_UNUSED_RESULT expression_up release ();
410a0ff2 50
fa9f5be6
TT
51 /* Return the gdbarch that was passed to the constructor. */
52
53 struct gdbarch *gdbarch ()
54 {
55 return expout->gdbarch;
56 }
57
73923d7e
TT
58 /* Return the language that was passed to the constructor. */
59
60 const struct language_defn *language ()
61 {
62 return expout->language_defn;
63 }
64
410a0ff2
SDJ
65 /* The size of the expression above. */
66
67 size_t expout_size;
68
e9d9f57e
TT
69 /* The expression related to this parser state. */
70
71 expression_up expout;
72
410a0ff2
SDJ
73 /* The number of elements already in the expression. This is used
74 to know where to put new elements. */
75
76 size_t expout_ptr;
77};
3e79cecf 78
37eedb39
TT
79/* An instance of this type is instantiated during expression parsing,
80 and passed to the appropriate parser. It holds both inputs to the
81 parser, and result. */
82
83struct parser_state : public expr_builder
84{
85 /* Constructor. LANG is the language used to parse the expression.
86 And GDBARCH is the gdbarch to use during parsing. */
87
88 parser_state (const struct language_defn *lang,
1e58a4a4
TT
89 struct gdbarch *gdbarch,
90 const struct block *context_block,
91 CORE_ADDR context_pc)
92 : expr_builder (lang, gdbarch),
93 expression_context_block (context_block),
94 expression_context_pc (context_pc)
37eedb39
TT
95 {
96 }
97
98 DISABLE_COPY_AND_ASSIGN (parser_state);
37eedb39 99
1e58a4a4
TT
100 /* If this is nonzero, this block is used as the lexical context for
101 symbol names. */
c906108c 102
1e58a4a4 103 const struct block * const expression_context_block;
c906108c 104
1e58a4a4
TT
105 /* If expression_context_block is non-zero, then this is the PC
106 within the block that we want to evaluate expressions at. When
107 debugging C or C++ code, we use this to find the exact line we're
108 at, and then look up the macro definitions active at that
109 point. */
110 const CORE_ADDR expression_context_pc;
111};
84f0252a 112
aee1fcdf
AB
113/* When parsing expressions we track the innermost block that was
114 referenced. */
115
116class innermost_block_tracker
117{
118public:
119 innermost_block_tracker ()
ae451627
AB
120 : m_types (INNERMOST_BLOCK_FOR_SYMBOLS),
121 m_innermost_block (NULL)
aee1fcdf
AB
122 { /* Nothing. */ }
123
124 /* Reset the currently stored innermost block. Usually called before
ae451627
AB
125 parsing a new expression. As the most common case is that we only
126 want to gather the innermost block for symbols in an expression, this
127 becomes the default block tracker type. */
128 void reset (innermost_block_tracker_types t = INNERMOST_BLOCK_FOR_SYMBOLS)
aee1fcdf 129 {
ae451627
AB
130 m_types = t;
131 m_innermost_block = NULL;
aee1fcdf
AB
132 }
133
134 /* Update the stored innermost block if the new block B is more inner
ae451627
AB
135 than the currently stored block, or if no block is stored yet. The
136 type T tells us whether the block B was for a symbol or for a
137 register. The stored innermost block is only updated if the type T is
138 a type we are interested in, the types we are interested in are held
139 in M_TYPES and set during RESET. */
140 void update (const struct block *b, innermost_block_tracker_types t);
aee1fcdf
AB
141
142 /* Overload of main UPDATE method which extracts the block from BS. */
143 void update (const struct block_symbol &bs)
144 {
ae451627 145 update (bs.block, INNERMOST_BLOCK_FOR_SYMBOLS);
aee1fcdf
AB
146 }
147
148 /* Return the stored innermost block. Can be nullptr if no symbols or
149 registers were found during an expression parse, and so no innermost
150 block was defined. */
151 const struct block *block () const
152 {
153 return m_innermost_block;
154 }
155
156private:
ae451627
AB
157 /* The type of innermost block being looked for. */
158 innermost_block_tracker_types m_types;
159
aee1fcdf
AB
160 /* The currently stored innermost block found while parsing an
161 expression. */
162 const struct block *m_innermost_block;
163};
164
ae451627 165/* The innermost context required by the stack and register variables
7ad417dd
TT
166 we've encountered so far. This is cleared by the expression
167 parsing functions before parsing an expression, and can queried
168 once the parse is complete. */
aee1fcdf 169extern innermost_block_tracker innermost_block;
c906108c 170
c906108c
SS
171/* Number of arguments seen so far in innermost function call. */
172extern int arglist_len;
173
174/* A string token, either a char-string or bit-string. Char-strings are
0df8b418 175 used, for example, for the names of symbols. */
c906108c
SS
176
177struct stoken
178 {
0df8b418 179 /* Pointer to first byte of char-string or first bit of bit-string. */
d7561cbb 180 const char *ptr;
0df8b418 181 /* Length of string in bytes for char-string or bits for bit-string. */
c906108c
SS
182 int length;
183 };
184
6c7a06a3
TT
185struct typed_stoken
186 {
187 /* A language-specific type field. */
188 int type;
0df8b418 189 /* Pointer to first byte of char-string or first bit of bit-string. */
6c7a06a3 190 char *ptr;
0df8b418 191 /* Length of string in bytes for char-string or bits for bit-string. */
6c7a06a3
TT
192 int length;
193 };
194
195struct stoken_vector
196 {
197 int len;
198 struct typed_stoken *tokens;
199 };
200
c906108c
SS
201struct ttype
202 {
203 struct stoken stoken;
204 struct type *type;
205 };
206
207struct symtoken
208 {
209 struct stoken stoken;
d12307c1 210 struct block_symbol sym;
c906108c
SS
211 int is_a_field_of_this;
212 };
213
379b85df
AF
214struct objc_class_str
215 {
216 struct stoken stoken;
217 struct type *type;
fe978cb0 218 int theclass;
379b85df
AF
219 };
220
c906108c
SS
221/* For parsing of complicated types.
222 An array should be preceded in the list by the size of the array. */
223enum type_pieces
c5aa993b 224 {
2e2394a0
MS
225 tp_end = -1,
226 tp_pointer,
227 tp_reference,
53cc15f5 228 tp_rvalue_reference,
2e2394a0 229 tp_array,
71918a86
TT
230 tp_function,
231 tp_function_with_arguments,
2e2394a0 232 tp_const,
47663de5 233 tp_volatile,
fcde5961 234 tp_space_identifier,
4d00f5d8
AB
235 tp_type_stack,
236 tp_kind
c5aa993b 237 };
c906108c 238/* The stack can contain either an enum type_pieces or an int. */
c5aa993b
JM
239union type_stack_elt
240 {
241 enum type_pieces piece;
242 int int_val;
fcde5961 243 struct type_stack *stack_val;
02e12e38 244 std::vector<struct type *> *typelist_val;
c5aa993b 245 };
1a7d0ce4
TT
246
247/* The type stack is an instance of this structure. */
248
249struct type_stack
250{
251 /* Elements on the stack. */
858d8004 252 std::vector<union type_stack_elt> elements;
1a7d0ce4 253};
c906108c 254
55aa24fb
SDJ
255/* Reverse an expression from suffix form (in which it is constructed)
256 to prefix form (in which we can conveniently print or execute it).
257 Ordinarily this always returns -1. However, if EXPOUT_LAST_STRUCT
258 is not -1 (i.e., we are trying to complete a field name), it will
259 return the index of the subexpression which is the left-hand-side
260 of the struct operation at EXPOUT_LAST_STRUCT. */
261
262extern int prefixify_expression (struct expression *expr);
263
37eedb39 264extern void write_exp_elt_opcode (struct expr_builder *, enum exp_opcode);
c906108c 265
37eedb39 266extern void write_exp_elt_sym (struct expr_builder *, struct symbol *);
c906108c 267
37eedb39 268extern void write_exp_elt_longcst (struct expr_builder *, LONGEST);
c906108c 269
37eedb39 270extern void write_exp_elt_floatcst (struct expr_builder *, const gdb_byte *);
27bc4d80 271
37eedb39 272extern void write_exp_elt_type (struct expr_builder *, struct type *);
c906108c 273
37eedb39 274extern void write_exp_elt_intern (struct expr_builder *, struct internalvar *);
c906108c 275
37eedb39 276extern void write_exp_string (struct expr_builder *, struct stoken);
c906108c 277
37eedb39 278void write_exp_string_vector (struct expr_builder *, int type,
410a0ff2 279 struct stoken_vector *vec);
6c7a06a3 280
37eedb39 281extern void write_exp_bitstring (struct expr_builder *, struct stoken);
c906108c 282
37eedb39 283extern void write_exp_elt_block (struct expr_builder *, const struct block *);
c906108c 284
37eedb39 285extern void write_exp_elt_objfile (struct expr_builder *,
410a0ff2 286 struct objfile *objfile);
9e35dae4 287
37eedb39 288extern void write_exp_msymbol (struct expr_builder *,
410a0ff2 289 struct bound_minimal_symbol);
c906108c 290
1e58a4a4 291extern void write_dollar_variable (struct parser_state *, struct stoken str);
c906108c 292
37eedb39 293extern void mark_struct_expression (struct expr_builder *);
65d12d83 294
d7561cbb 295extern const char *find_template_name_end (const char *);
c906108c 296
a14ed312 297extern void start_arglist (void);
c906108c 298
a14ed312 299extern int end_arglist (void);
c906108c 300
a14ed312 301extern char *copy_name (struct stoken);
c906108c 302
95c391b6
TT
303extern void insert_type (enum type_pieces);
304
a14ed312 305extern void push_type (enum type_pieces);
c906108c 306
a14ed312 307extern void push_type_int (int);
c906108c 308
37eedb39 309extern void insert_type_address_space (struct expr_builder *, char *);
47663de5 310
a14ed312 311extern enum type_pieces pop_type (void);
c906108c 312
a14ed312 313extern int pop_type_int (void);
c906108c 314
fcde5961
TT
315extern struct type_stack *get_type_stack (void);
316
317extern struct type_stack *append_type_stack (struct type_stack *to,
318 struct type_stack *from);
319
320extern void push_type_stack (struct type_stack *stack);
321
02e12e38 322extern void push_typelist (std::vector<struct type *> *typelist);
71918a86 323
5f9769d1
PH
324extern int dump_subexp (struct expression *, struct ui_file *, int);
325
326extern int dump_subexp_body_standard (struct expression *,
327 struct ui_file *, int);
328
554794dc 329extern void operator_length (const struct expression *, int, int *, int *);
24daaebc 330
554794dc
SDJ
331extern void operator_length_standard (const struct expression *, int, int *,
332 int *);
5f9769d1 333
c0201579
JK
334extern int operator_check_standard (struct expression *exp, int pos,
335 int (*objfile_func)
336 (struct objfile *objfile, void *data),
337 void *data);
338
a121b7c1 339extern const char *op_name_standard (enum exp_opcode);
5f9769d1 340
a14ed312 341extern struct type *follow_types (struct type *);
c906108c 342
3693fdb3
PA
343extern type_instance_flags follow_type_instance_flags ();
344
e9d9f57e 345extern void null_post_parser (expression_up *, int);
e85c3284 346
edd079d9
UW
347extern bool parse_float (const char *p, int len,
348 const struct type *type, gdb_byte *data);
d30f5e1f 349
c906108c
SS
350/* During parsing of a C expression, the pointer to the next character
351 is in this variable. */
352
d7561cbb 353extern const char *lexptr;
c906108c 354
0df8b418 355/* After a token has been recognized, this variable points to it.
665132f9 356 Currently used only for error reporting. */
d7561cbb 357extern const char *prev_lexptr;
665132f9 358
c906108c
SS
359/* Nonzero means stop parsing on first comma (if not within parentheses). */
360
361extern int comma_terminates;
362\f
363/* These codes indicate operator precedences for expression printing,
364 least tightly binding first. */
365/* Adding 1 to a precedence value is done for binary operators,
366 on the operand which is more tightly bound, so that operators
367 of equal precedence within that operand will get parentheses. */
368/* PREC_HYPER and PREC_ABOVE_COMMA are not the precedence of any operator;
369 they are used as the "surrounding precedence" to force
370 various kinds of things to be parenthesized. */
371enum precedence
c5aa993b
JM
372 {
373 PREC_NULL, PREC_COMMA, PREC_ABOVE_COMMA, PREC_ASSIGN, PREC_LOGICAL_OR,
374 PREC_LOGICAL_AND, PREC_BITWISE_IOR, PREC_BITWISE_AND, PREC_BITWISE_XOR,
375 PREC_EQUAL, PREC_ORDER, PREC_SHIFT, PREC_ADD, PREC_MUL, PREC_REPEAT,
376 PREC_HYPER, PREC_PREFIX, PREC_SUFFIX, PREC_BUILTIN_FUNCTION
377 };
c906108c
SS
378
379/* Table mapping opcodes into strings for printing operators
380 and precedences of the operators. */
381
382struct op_print
c5aa993b 383 {
a121b7c1 384 const char *string;
c5aa993b
JM
385 enum exp_opcode opcode;
386 /* Precedence of operator. These values are used only by comparisons. */
387 enum precedence precedence;
388
389 /* For a binary operator: 1 iff right associate.
0df8b418 390 For a unary operator: 1 iff postfix. */
c5aa993b
JM
391 int right_assoc;
392 };
c906108c 393
5f9769d1
PH
394/* Information needed to print, prefixify, and evaluate expressions for
395 a given language. */
396
397struct exp_descriptor
398 {
399 /* Print subexpression. */
400 void (*print_subexp) (struct expression *, int *, struct ui_file *,
401 enum precedence);
402
403 /* Returns number of exp_elements needed to represent an operator and
404 the number of subexpressions it takes. */
554794dc 405 void (*operator_length) (const struct expression*, int, int*, int *);
5f9769d1 406
a1c7835a
YQ
407 /* Call OBJFILE_FUNC for any objfile found being referenced by the
408 single operator of EXP at position POS. Operator parameters are
409 located at positive (POS + number) offsets in EXP. OBJFILE_FUNC
410 should never be called with NULL OBJFILE. OBJFILE_FUNC should
411 get passed an arbitrary caller supplied DATA pointer. If it
412 returns non-zero value then (any other) non-zero value should be
413 immediately returned to the caller. Otherwise zero should be
414 returned. */
c0201579
JK
415 int (*operator_check) (struct expression *exp, int pos,
416 int (*objfile_func) (struct objfile *objfile,
417 void *data),
418 void *data);
419
a5b12627
JB
420 /* Name of this operator for dumping purposes.
421 The returned value should never be NULL, even if EXP_OPCODE is
422 an unknown opcode (a string containing an image of the numeric
423 value of the opcode can be returned, for instance). */
a121b7c1 424 const char *(*op_name) (enum exp_opcode);
5f9769d1
PH
425
426 /* Dump the rest of this (prefix) expression after the operator
427 itself has been printed. See dump_subexp_body_standard in
428 (expprint.c). */
429 int (*dump_subexp_body) (struct expression *, struct ui_file *, int);
430
431 /* Evaluate an expression. */
432 struct value *(*evaluate_exp) (struct type *, struct expression *,
433 int *, enum noside);
434 };
435
436
437/* Default descriptor containing standard definitions of all
438 elements. */
439extern const struct exp_descriptor exp_descriptor_standard;
440
441/* Functions used by language-specific extended operators to (recursively)
442 print/dump subexpressions. */
443
444extern void print_subexp (struct expression *, int *, struct ui_file *,
445 enum precedence);
446
447extern void print_subexp_standard (struct expression *, int *,
448 struct ui_file *, enum precedence);
449
f461f5cf
PM
450/* Function used to avoid direct calls to fprintf
451 in the code generated by the bison parser. */
452
a0b31db1 453extern void parser_fprintf (FILE *, const char *, ...) ATTRIBUTE_PRINTF (2, 3);
f461f5cf 454
c0201579
JK
455extern int exp_uses_objfile (struct expression *exp, struct objfile *objfile);
456
2f68a895
TT
457extern void mark_completion_tag (enum type_code, const char *ptr,
458 int length);
459
c5aa993b 460#endif /* PARSER_DEFS_H */
2f68a895 461