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