Clear non-significant bits of address on memory access
[deliverable/binutils-gdb.git] / gdb / parse.c
CommitLineData
c906108c 1/* Parse expressions for GDB.
c4a172b5 2
61baf725 3 Copyright (C) 1986-2017 Free Software Foundation, Inc.
c4a172b5 4
c906108c
SS
5 Modified from expread.y by the Department of Computer Science at the
6 State University of New York at Buffalo, 1991.
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/* Parse an expression from text in a string,
ae0c443d 24 and return the result as a struct expression pointer.
c906108c
SS
25 That structure contains arithmetic operations in reverse polish,
26 with constants represented by operations that are followed by special data.
27 See expression.h for the details of the format.
28 What is important here is that it can be built up sequentially
29 during the process of parsing; the lower levels of the tree always
30 come first in the result. */
c5aa993b 31
c906108c 32#include "defs.h"
12c89474 33#include <ctype.h>
e17c207e 34#include "arch-utils.h"
c906108c
SS
35#include "symtab.h"
36#include "gdbtypes.h"
37#include "frame.h"
38#include "expression.h"
39#include "value.h"
40#include "command.h"
41#include "language.h"
0b4e1325 42#include "f-lang.h"
c906108c
SS
43#include "parser-defs.h"
44#include "gdbcmd.h"
c5aa993b 45#include "symfile.h" /* for overlay functions */
f57d151a 46#include "inferior.h"
f69fdf9b 47#include "target-float.h"
fe898f56 48#include "block.h"
59f92a09 49#include "source.h"
9e35dae4 50#include "objfiles.h"
029a67e4 51#include "user-regs.h"
325fac50 52#include <algorithm>
e3ad2841 53#include "common/gdb_optional.h"
e2305d34 54
5f9769d1
PH
55/* Standard set of definitions for printing, dumping, prefixifying,
56 * and evaluating expressions. */
57
58const struct exp_descriptor exp_descriptor_standard =
59 {
60 print_subexp_standard,
61 operator_length_standard,
c0201579 62 operator_check_standard,
5f9769d1
PH
63 op_name_standard,
64 dump_subexp_body_standard,
65 evaluate_subexp_standard
66 };
c906108c
SS
67\f
68/* Global variables declared in parser-defs.h (and commented there). */
270140bd 69const struct block *expression_context_block;
84f0252a 70CORE_ADDR expression_context_pc;
270140bd 71const struct block *innermost_block;
c906108c 72int arglist_len;
1a7d0ce4 73static struct type_stack type_stack;
d7561cbb
KS
74const char *lexptr;
75const char *prev_lexptr;
c906108c
SS
76int paren_depth;
77int comma_terminates;
3a913e29 78
155da517
TT
79/* True if parsing an expression to attempt completion. */
80int parse_completion;
65d12d83
TT
81
82/* The index of the last struct expression directly before a '.' or
83 '->'. This is set when parsing and is only used when completing a
84 field name. It is -1 if no dereference operation was found. */
85static int expout_last_struct = -1;
2f68a895
TT
86
87/* If we are completing a tagged type name, this will be nonzero. */
88static enum type_code expout_tag_completion_type = TYPE_CODE_UNDEF;
89
90/* The token for tagged type name completion. */
91static char *expout_completion_name;
92
c906108c 93\f
ccce17b0 94static unsigned int expressiondebug = 0;
920d2a44
AC
95static void
96show_expressiondebug (struct ui_file *file, int from_tty,
97 struct cmd_list_element *c, const char *value)
98{
99 fprintf_filtered (file, _("Expression debugging is %s.\n"), value);
100}
c906108c 101
92981e24
TT
102
103/* Non-zero if an expression parser should set yydebug. */
104int parser_debug;
105
106static void
107show_parserdebug (struct ui_file *file, int from_tty,
108 struct cmd_list_element *c, const char *value)
109{
110 fprintf_filtered (file, _("Parser debugging is %s.\n"), value);
111}
112
113
65d12d83
TT
114static int prefixify_subexp (struct expression *, struct expression *, int,
115 int);
c906108c 116
4d01a485
PA
117static expression_up parse_exp_in_context (const char **, CORE_ADDR,
118 const struct block *, int,
119 int, int *);
120static expression_up parse_exp_in_context_1 (const char **, CORE_ADDR,
121 const struct block *, int,
122 int, int *);
e85c3284 123
c906108c
SS
124/* Data structure for saving values of arglist_len for function calls whose
125 arguments contain other function calls. */
126
69c1e056 127static std::vector<int> *funcall_chain;
c906108c 128
c906108c
SS
129/* Begin counting arguments for a function call,
130 saving the data about any containing call. */
131
132void
fba45db2 133start_arglist (void)
c906108c 134{
69c1e056 135 funcall_chain->push_back (arglist_len);
c906108c 136 arglist_len = 0;
c906108c
SS
137}
138
139/* Return the number of arguments in a function call just terminated,
140 and restore the data for the containing function call. */
141
142int
fba45db2 143end_arglist (void)
c906108c 144{
f86f5ca3 145 int val = arglist_len;
69c1e056
TT
146 arglist_len = funcall_chain->back ();
147 funcall_chain->pop_back ();
c906108c
SS
148 return val;
149}
150
c906108c 151\f
c906108c 152
55aa24fb 153/* See definition in parser-defs.h. */
2dbca4d6 154
55aa24fb 155void
410a0ff2
SDJ
156initialize_expout (struct parser_state *ps, size_t initial_size,
157 const struct language_defn *lang,
2dbca4d6
SDJ
158 struct gdbarch *gdbarch)
159{
410a0ff2
SDJ
160 ps->expout_size = initial_size;
161 ps->expout_ptr = 0;
224c3ddb
SM
162 ps->expout
163 = (struct expression *) xmalloc (sizeof (struct expression)
164 + EXP_ELEM_TO_BYTES (ps->expout_size));
410a0ff2
SDJ
165 ps->expout->language_defn = lang;
166 ps->expout->gdbarch = gdbarch;
2dbca4d6
SDJ
167}
168
55aa24fb 169/* See definition in parser-defs.h. */
2dbca4d6 170
55aa24fb 171void
410a0ff2 172reallocate_expout (struct parser_state *ps)
2dbca4d6
SDJ
173{
174 /* Record the actual number of expression elements, and then
175 reallocate the expression memory so that we free up any
176 excess elements. */
177
410a0ff2
SDJ
178 ps->expout->nelts = ps->expout_ptr;
179 ps->expout = (struct expression *)
180 xrealloc (ps->expout,
181 sizeof (struct expression)
182 + EXP_ELEM_TO_BYTES (ps->expout_ptr));
2dbca4d6
SDJ
183}
184
410a0ff2
SDJ
185/* This page contains the functions for adding data to the struct expression
186 being constructed. */
187
c906108c
SS
188/* Add one element to the end of the expression. */
189
190/* To avoid a bug in the Sun 4 compiler, we pass things that can fit into
0df8b418 191 a register through here. */
c906108c 192
ae0c443d 193static void
410a0ff2 194write_exp_elt (struct parser_state *ps, const union exp_element *expelt)
c906108c 195{
410a0ff2 196 if (ps->expout_ptr >= ps->expout_size)
c906108c 197 {
410a0ff2
SDJ
198 ps->expout_size *= 2;
199 ps->expout = (struct expression *)
200 xrealloc (ps->expout, sizeof (struct expression)
201 + EXP_ELEM_TO_BYTES (ps->expout_size));
c906108c 202 }
410a0ff2 203 ps->expout->elts[ps->expout_ptr++] = *expelt;
c906108c
SS
204}
205
206void
410a0ff2 207write_exp_elt_opcode (struct parser_state *ps, enum exp_opcode expelt)
c906108c
SS
208{
209 union exp_element tmp;
210
ad3bbd48 211 memset (&tmp, 0, sizeof (union exp_element));
c906108c 212 tmp.opcode = expelt;
410a0ff2 213 write_exp_elt (ps, &tmp);
c906108c
SS
214}
215
216void
410a0ff2 217write_exp_elt_sym (struct parser_state *ps, struct symbol *expelt)
c906108c
SS
218{
219 union exp_element tmp;
220
ad3bbd48 221 memset (&tmp, 0, sizeof (union exp_element));
c906108c 222 tmp.symbol = expelt;
410a0ff2 223 write_exp_elt (ps, &tmp);
c906108c
SS
224}
225
74ea4be4
PA
226void
227write_exp_elt_msym (struct parser_state *ps, minimal_symbol *expelt)
228{
229 union exp_element tmp;
230
231 memset (&tmp, 0, sizeof (union exp_element));
232 tmp.msymbol = expelt;
233 write_exp_elt (ps, &tmp);
234}
235
c906108c 236void
410a0ff2 237write_exp_elt_block (struct parser_state *ps, const struct block *b)
c906108c
SS
238{
239 union exp_element tmp;
ad3bbd48 240
09153d55 241 memset (&tmp, 0, sizeof (union exp_element));
c906108c 242 tmp.block = b;
410a0ff2 243 write_exp_elt (ps, &tmp);
c906108c
SS
244}
245
9e35dae4 246void
410a0ff2 247write_exp_elt_objfile (struct parser_state *ps, struct objfile *objfile)
9e35dae4
DJ
248{
249 union exp_element tmp;
ad3bbd48 250
9e35dae4
DJ
251 memset (&tmp, 0, sizeof (union exp_element));
252 tmp.objfile = objfile;
410a0ff2 253 write_exp_elt (ps, &tmp);
9e35dae4
DJ
254}
255
c906108c 256void
410a0ff2 257write_exp_elt_longcst (struct parser_state *ps, LONGEST expelt)
c906108c
SS
258{
259 union exp_element tmp;
260
ad3bbd48 261 memset (&tmp, 0, sizeof (union exp_element));
c906108c 262 tmp.longconst = expelt;
410a0ff2 263 write_exp_elt (ps, &tmp);
c906108c
SS
264}
265
266void
edd079d9 267write_exp_elt_floatcst (struct parser_state *ps, const gdb_byte expelt[16])
27bc4d80
TJB
268{
269 union exp_element tmp;
270 int index;
271
272 for (index = 0; index < 16; index++)
edd079d9 273 tmp.floatconst[index] = expelt[index];
27bc4d80 274
410a0ff2 275 write_exp_elt (ps, &tmp);
27bc4d80
TJB
276}
277
c906108c 278void
410a0ff2 279write_exp_elt_type (struct parser_state *ps, struct type *expelt)
c906108c
SS
280{
281 union exp_element tmp;
282
ad3bbd48 283 memset (&tmp, 0, sizeof (union exp_element));
c906108c 284 tmp.type = expelt;
410a0ff2 285 write_exp_elt (ps, &tmp);
c906108c
SS
286}
287
288void
410a0ff2 289write_exp_elt_intern (struct parser_state *ps, struct internalvar *expelt)
c906108c
SS
290{
291 union exp_element tmp;
292
ad3bbd48 293 memset (&tmp, 0, sizeof (union exp_element));
c906108c 294 tmp.internalvar = expelt;
410a0ff2 295 write_exp_elt (ps, &tmp);
c906108c
SS
296}
297
298/* Add a string constant to the end of the expression.
299
300 String constants are stored by first writing an expression element
301 that contains the length of the string, then stuffing the string
302 constant itself into however many expression elements are needed
303 to hold it, and then writing another expression element that contains
0df8b418 304 the length of the string. I.e. an expression element at each end of
c906108c
SS
305 the string records the string length, so you can skip over the
306 expression elements containing the actual string bytes from either
307 end of the string. Note that this also allows gdb to handle
308 strings with embedded null bytes, as is required for some languages.
309
310 Don't be fooled by the fact that the string is null byte terminated,
bc3b79fd 311 this is strictly for the convenience of debugging gdb itself.
c906108c
SS
312 Gdb does not depend up the string being null terminated, since the
313 actual length is recorded in expression elements at each end of the
314 string. The null byte is taken into consideration when computing how
315 many expression elements are required to hold the string constant, of
0df8b418 316 course. */
c906108c
SS
317
318
319void
410a0ff2 320write_exp_string (struct parser_state *ps, struct stoken str)
c906108c 321{
f86f5ca3 322 int len = str.length;
410a0ff2 323 size_t lenelt;
f86f5ca3 324 char *strdata;
c906108c
SS
325
326 /* Compute the number of expression elements required to hold the string
327 (including a null byte terminator), along with one expression element
328 at each end to record the actual string length (not including the
0df8b418 329 null byte terminator). */
c906108c
SS
330
331 lenelt = 2 + BYTES_TO_EXP_ELEM (len + 1);
332
410a0ff2 333 increase_expout_size (ps, lenelt);
c906108c
SS
334
335 /* Write the leading length expression element (which advances the current
336 expression element index), then write the string constant followed by a
337 terminating null byte, and then write the trailing length expression
0df8b418 338 element. */
c906108c 339
410a0ff2
SDJ
340 write_exp_elt_longcst (ps, (LONGEST) len);
341 strdata = (char *) &ps->expout->elts[ps->expout_ptr];
c906108c
SS
342 memcpy (strdata, str.ptr, len);
343 *(strdata + len) = '\0';
410a0ff2
SDJ
344 ps->expout_ptr += lenelt - 2;
345 write_exp_elt_longcst (ps, (LONGEST) len);
c906108c
SS
346}
347
6c7a06a3
TT
348/* Add a vector of string constants to the end of the expression.
349
350 This adds an OP_STRING operation, but encodes the contents
351 differently from write_exp_string. The language is expected to
352 handle evaluation of this expression itself.
353
354 After the usual OP_STRING header, TYPE is written into the
355 expression as a long constant. The interpretation of this field is
356 up to the language evaluator.
357
358 Next, each string in VEC is written. The length is written as a
359 long constant, followed by the contents of the string. */
360
361void
410a0ff2
SDJ
362write_exp_string_vector (struct parser_state *ps, int type,
363 struct stoken_vector *vec)
6c7a06a3 364{
410a0ff2
SDJ
365 int i, len;
366 size_t n_slots;
6c7a06a3
TT
367
368 /* Compute the size. We compute the size in number of slots to
369 avoid issues with string padding. */
370 n_slots = 0;
371 for (i = 0; i < vec->len; ++i)
372 {
373 /* One slot for the length of this element, plus the number of
374 slots needed for this string. */
375 n_slots += 1 + BYTES_TO_EXP_ELEM (vec->tokens[i].length);
376 }
377
378 /* One more slot for the type of the string. */
379 ++n_slots;
380
381 /* Now compute a phony string length. */
382 len = EXP_ELEM_TO_BYTES (n_slots) - 1;
383
384 n_slots += 4;
410a0ff2 385 increase_expout_size (ps, n_slots);
6c7a06a3 386
410a0ff2
SDJ
387 write_exp_elt_opcode (ps, OP_STRING);
388 write_exp_elt_longcst (ps, len);
389 write_exp_elt_longcst (ps, type);
6c7a06a3
TT
390
391 for (i = 0; i < vec->len; ++i)
392 {
410a0ff2
SDJ
393 write_exp_elt_longcst (ps, vec->tokens[i].length);
394 memcpy (&ps->expout->elts[ps->expout_ptr], vec->tokens[i].ptr,
6c7a06a3 395 vec->tokens[i].length);
410a0ff2 396 ps->expout_ptr += BYTES_TO_EXP_ELEM (vec->tokens[i].length);
6c7a06a3
TT
397 }
398
410a0ff2
SDJ
399 write_exp_elt_longcst (ps, len);
400 write_exp_elt_opcode (ps, OP_STRING);
6c7a06a3
TT
401}
402
c906108c
SS
403/* Add a bitstring constant to the end of the expression.
404
405 Bitstring constants are stored by first writing an expression element
406 that contains the length of the bitstring (in bits), then stuffing the
407 bitstring constant itself into however many expression elements are
408 needed to hold it, and then writing another expression element that
0df8b418 409 contains the length of the bitstring. I.e. an expression element at
c906108c
SS
410 each end of the bitstring records the bitstring length, so you can skip
411 over the expression elements containing the actual bitstring bytes from
0df8b418 412 either end of the bitstring. */
c906108c
SS
413
414void
410a0ff2 415write_exp_bitstring (struct parser_state *ps, struct stoken str)
c906108c 416{
f86f5ca3
PH
417 int bits = str.length; /* length in bits */
418 int len = (bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
410a0ff2 419 size_t lenelt;
f86f5ca3 420 char *strdata;
c906108c
SS
421
422 /* Compute the number of expression elements required to hold the bitstring,
423 along with one expression element at each end to record the actual
0df8b418 424 bitstring length in bits. */
c906108c
SS
425
426 lenelt = 2 + BYTES_TO_EXP_ELEM (len);
427
410a0ff2 428 increase_expout_size (ps, lenelt);
c906108c
SS
429
430 /* Write the leading length expression element (which advances the current
431 expression element index), then write the bitstring constant, and then
0df8b418 432 write the trailing length expression element. */
c906108c 433
410a0ff2
SDJ
434 write_exp_elt_longcst (ps, (LONGEST) bits);
435 strdata = (char *) &ps->expout->elts[ps->expout_ptr];
c906108c 436 memcpy (strdata, str.ptr, len);
410a0ff2
SDJ
437 ps->expout_ptr += lenelt - 2;
438 write_exp_elt_longcst (ps, (LONGEST) bits);
c906108c
SS
439}
440
74ea4be4
PA
441/* Return the type of MSYMBOL, a minimal symbol of OBJFILE. If
442 ADDRESS_P is not NULL, set it to the MSYMBOL's resolved
443 address. */
c906108c 444
74ea4be4
PA
445type *
446find_minsym_type_and_address (minimal_symbol *msymbol,
447 struct objfile *objfile,
448 CORE_ADDR *address_p)
c906108c 449{
74ea4be4 450 bound_minimal_symbol bound_msym = {msymbol, objfile};
bccdca4a 451 struct gdbarch *gdbarch = get_objfile_arch (objfile);
efd66ac6 452 struct obj_section *section = MSYMBOL_OBJ_SECTION (objfile, msymbol);
712f90be 453 enum minimal_symbol_type type = MSYMBOL_TYPE (msymbol);
bccdca4a
UW
454 CORE_ADDR pc;
455
fbd1b771
JK
456 bool is_tls = (section != NULL
457 && section->the_bfd_section->flags & SEC_THREAD_LOCAL);
458
459 /* Addresses of TLS symbols are really offsets into a
460 per-objfile/per-thread storage block. */
461 CORE_ADDR addr = (is_tls
462 ? MSYMBOL_VALUE_RAW_ADDRESS (bound_msym.minsym)
463 : BMSYMBOL_VALUE_ADDRESS (bound_msym));
464
bccdca4a
UW
465 /* The minimal symbol might point to a function descriptor;
466 resolve it to the actual code address instead. */
467 pc = gdbarch_convert_from_func_ptr_addr (gdbarch, addr, &current_target);
468 if (pc != addr)
469 {
7cbd4a93 470 struct bound_minimal_symbol ifunc_msym = lookup_minimal_symbol_by_pc (pc);
0875794a 471
bccdca4a
UW
472 /* In this case, assume we have a code symbol instead of
473 a data symbol. */
0875794a 474
7cbd4a93
TT
475 if (ifunc_msym.minsym != NULL
476 && MSYMBOL_TYPE (ifunc_msym.minsym) == mst_text_gnu_ifunc
77e371c0 477 && BMSYMBOL_VALUE_ADDRESS (ifunc_msym) == pc)
0875794a
JK
478 {
479 /* A function descriptor has been resolved but PC is still in the
480 STT_GNU_IFUNC resolver body (such as because inferior does not
481 run to be able to call it). */
482
483 type = mst_text_gnu_ifunc;
484 }
485 else
486 type = mst_text;
714835d5 487 section = NULL;
bccdca4a
UW
488 addr = pc;
489 }
490
491 if (overlay_debugging)
714835d5 492 addr = symbol_overlayed_address (addr, section);
c906108c 493
fbd1b771 494 if (is_tls)
9e35dae4 495 {
74ea4be4
PA
496 /* Skip translation if caller does not need the address. */
497 if (address_p != NULL)
498 *address_p = target_translate_tls_address (objfile, addr);
499 return objfile_type (objfile)->nodebug_tls_symbol;
9e35dae4
DJ
500 }
501
74ea4be4
PA
502 if (address_p != NULL)
503 *address_p = addr;
504
bccdca4a 505 switch (type)
c906108c
SS
506 {
507 case mst_text:
508 case mst_file_text:
509 case mst_solib_trampoline:
74ea4be4 510 return objfile_type (objfile)->nodebug_text_symbol;
c906108c 511
0875794a 512 case mst_text_gnu_ifunc:
74ea4be4 513 return objfile_type (objfile)->nodebug_text_gnu_ifunc_symbol;
0875794a 514
c906108c
SS
515 case mst_data:
516 case mst_file_data:
517 case mst_bss:
518 case mst_file_bss:
74ea4be4 519 return objfile_type (objfile)->nodebug_data_symbol;
c906108c 520
0875794a 521 case mst_slot_got_plt:
74ea4be4 522 return objfile_type (objfile)->nodebug_got_plt_symbol;
0875794a 523
c906108c 524 default:
74ea4be4 525 return objfile_type (objfile)->nodebug_unknown_symbol;
c906108c 526 }
74ea4be4
PA
527}
528
529/* Add the appropriate elements for a minimal symbol to the end of
530 the expression. */
531
532void
533write_exp_msymbol (struct parser_state *ps,
534 struct bound_minimal_symbol bound_msym)
535{
536 write_exp_elt_opcode (ps, OP_VAR_MSYM_VALUE);
537 write_exp_elt_objfile (ps, bound_msym.objfile);
538 write_exp_elt_msym (ps, bound_msym.minsym);
539 write_exp_elt_opcode (ps, OP_VAR_MSYM_VALUE);
c906108c 540}
65d12d83
TT
541
542/* Mark the current index as the starting location of a structure
543 expression. This is used when completing on field names. */
544
545void
410a0ff2 546mark_struct_expression (struct parser_state *ps)
65d12d83 547{
2f68a895
TT
548 gdb_assert (parse_completion
549 && expout_tag_completion_type == TYPE_CODE_UNDEF);
410a0ff2 550 expout_last_struct = ps->expout_ptr;
65d12d83
TT
551}
552
2f68a895
TT
553/* Indicate that the current parser invocation is completing a tag.
554 TAG is the type code of the tag, and PTR and LENGTH represent the
555 start of the tag name. */
556
557void
558mark_completion_tag (enum type_code tag, const char *ptr, int length)
559{
560 gdb_assert (parse_completion
561 && expout_tag_completion_type == TYPE_CODE_UNDEF
562 && expout_completion_name == NULL
563 && expout_last_struct == -1);
564 gdb_assert (tag == TYPE_CODE_UNION
565 || tag == TYPE_CODE_STRUCT
2f68a895
TT
566 || tag == TYPE_CODE_ENUM);
567 expout_tag_completion_type = tag;
224c3ddb 568 expout_completion_name = (char *) xmalloc (length + 1);
2f68a895
TT
569 memcpy (expout_completion_name, ptr, length);
570 expout_completion_name[length] = '\0';
571}
572
c906108c
SS
573\f
574/* Recognize tokens that start with '$'. These include:
575
c5aa993b
JM
576 $regname A native register name or a "standard
577 register name".
c906108c 578
c5aa993b
JM
579 $variable A convenience variable with a name chosen
580 by the user.
c906108c 581
c5aa993b
JM
582 $digits Value history with index <digits>, starting
583 from the first value which has index 1.
c906108c 584
c5aa993b 585 $$digits Value history with index <digits> relative
0df8b418 586 to the last value. I.e. $$0 is the last
c5aa993b
JM
587 value, $$1 is the one previous to that, $$2
588 is the one previous to $$1, etc.
c906108c 589
c5aa993b 590 $ | $0 | $$0 The last value in the value history.
c906108c 591
c5aa993b 592 $$ An abbreviation for the second to the last
0df8b418 593 value in the value history, I.e. $$1 */
c906108c
SS
594
595void
410a0ff2 596write_dollar_variable (struct parser_state *ps, struct stoken str)
c906108c 597{
d12307c1 598 struct block_symbol sym;
7c7b6655 599 struct bound_minimal_symbol msym;
c4a3d09a 600 struct internalvar *isym = NULL;
d7318818 601
c906108c 602 /* Handle the tokens $digits; also $ (short for $0) and $$ (short for $$1)
0df8b418 603 and $$digits (equivalent to $<-digits> if you could type that). */
c906108c 604
c906108c
SS
605 int negate = 0;
606 int i = 1;
607 /* Double dollar means negate the number and add -1 as well.
608 Thus $$ alone means -1. */
609 if (str.length >= 2 && str.ptr[1] == '$')
610 {
611 negate = 1;
612 i = 2;
613 }
614 if (i == str.length)
615 {
0df8b418 616 /* Just dollars (one or two). */
c5aa993b 617 i = -negate;
c906108c
SS
618 goto handle_last;
619 }
620 /* Is the rest of the token digits? */
621 for (; i < str.length; i++)
622 if (!(str.ptr[i] >= '0' && str.ptr[i] <= '9'))
623 break;
624 if (i == str.length)
625 {
626 i = atoi (str.ptr + 1 + negate);
627 if (negate)
c5aa993b 628 i = -i;
c906108c
SS
629 goto handle_last;
630 }
c5aa993b 631
c906108c
SS
632 /* Handle tokens that refer to machine registers:
633 $ followed by a register name. */
410a0ff2 634 i = user_reg_map_name_to_regnum (parse_gdbarch (ps),
029a67e4 635 str.ptr + 1, str.length - 1);
c5aa993b 636 if (i >= 0)
c906108c
SS
637 goto handle_register;
638
c4a3d09a
MF
639 /* Any names starting with $ are probably debugger internal variables. */
640
641 isym = lookup_only_internalvar (copy_name (str) + 1);
642 if (isym)
643 {
410a0ff2
SDJ
644 write_exp_elt_opcode (ps, OP_INTERNALVAR);
645 write_exp_elt_intern (ps, isym);
646 write_exp_elt_opcode (ps, OP_INTERNALVAR);
c4a3d09a
MF
647 return;
648 }
649
d7318818 650 /* On some systems, such as HP-UX and hppa-linux, certain system routines
0df8b418 651 have names beginning with $ or $$. Check for those, first. */
d7318818
RC
652
653 sym = lookup_symbol (copy_name (str), (struct block *) NULL,
1993b719 654 VAR_DOMAIN, NULL);
d12307c1 655 if (sym.symbol)
d7318818 656 {
410a0ff2 657 write_exp_elt_opcode (ps, OP_VAR_VALUE);
d12307c1
PMR
658 write_exp_elt_block (ps, sym.block);
659 write_exp_elt_sym (ps, sym.symbol);
410a0ff2 660 write_exp_elt_opcode (ps, OP_VAR_VALUE);
d7318818
RC
661 return;
662 }
7c7b6655
TT
663 msym = lookup_bound_minimal_symbol (copy_name (str));
664 if (msym.minsym)
c906108c 665 {
410a0ff2 666 write_exp_msymbol (ps, msym);
d7318818 667 return;
c906108c 668 }
c5aa993b 669
c4a3d09a 670 /* Any other names are assumed to be debugger internal variables. */
c906108c 671
410a0ff2
SDJ
672 write_exp_elt_opcode (ps, OP_INTERNALVAR);
673 write_exp_elt_intern (ps, create_internalvar (copy_name (str) + 1));
674 write_exp_elt_opcode (ps, OP_INTERNALVAR);
c906108c 675 return;
c5aa993b 676handle_last:
410a0ff2
SDJ
677 write_exp_elt_opcode (ps, OP_LAST);
678 write_exp_elt_longcst (ps, (LONGEST) i);
679 write_exp_elt_opcode (ps, OP_LAST);
c906108c 680 return;
c5aa993b 681handle_register:
410a0ff2 682 write_exp_elt_opcode (ps, OP_REGISTER);
67f3407f
DJ
683 str.length--;
684 str.ptr++;
410a0ff2
SDJ
685 write_exp_string (ps, str);
686 write_exp_elt_opcode (ps, OP_REGISTER);
c906108c
SS
687 return;
688}
689
690
d7561cbb
KS
691const char *
692find_template_name_end (const char *p)
c906108c
SS
693{
694 int depth = 1;
695 int just_seen_right = 0;
696 int just_seen_colon = 0;
697 int just_seen_space = 0;
c5aa993b 698
c906108c
SS
699 if (!p || (*p != '<'))
700 return 0;
701
702 while (*++p)
703 {
704 switch (*p)
c5aa993b
JM
705 {
706 case '\'':
707 case '\"':
708 case '{':
709 case '}':
0df8b418 710 /* In future, may want to allow these?? */
c5aa993b
JM
711 return 0;
712 case '<':
713 depth++; /* start nested template */
714 if (just_seen_colon || just_seen_right || just_seen_space)
715 return 0; /* but not after : or :: or > or space */
716 break;
717 case '>':
718 if (just_seen_colon || just_seen_right)
719 return 0; /* end a (nested?) template */
720 just_seen_right = 1; /* but not after : or :: */
721 if (--depth == 0) /* also disallow >>, insist on > > */
722 return ++p; /* if outermost ended, return */
723 break;
724 case ':':
725 if (just_seen_space || (just_seen_colon > 1))
726 return 0; /* nested class spec coming up */
727 just_seen_colon++; /* we allow :: but not :::: */
728 break;
729 case ' ':
730 break;
731 default:
732 if (!((*p >= 'a' && *p <= 'z') || /* allow token chars */
733 (*p >= 'A' && *p <= 'Z') ||
734 (*p >= '0' && *p <= '9') ||
735 (*p == '_') || (*p == ',') || /* commas for template args */
736 (*p == '&') || (*p == '*') || /* pointer and ref types */
737 (*p == '(') || (*p == ')') || /* function types */
738 (*p == '[') || (*p == ']'))) /* array types */
739 return 0;
740 }
c906108c 741 if (*p != ' ')
c5aa993b 742 just_seen_space = 0;
c906108c 743 if (*p != ':')
c5aa993b 744 just_seen_colon = 0;
c906108c 745 if (*p != '>')
c5aa993b 746 just_seen_right = 0;
c906108c
SS
747 }
748 return 0;
749}
c5aa993b 750\f
c906108c 751
1a4eeb98 752/* Return a null-terminated temporary copy of the name of a string token.
c906108c 753
1a4eeb98
DE
754 Tokens that refer to names do so with explicit pointer and length,
755 so they can share the storage that lexptr is parsing.
756 When it is necessary to pass a name to a function that expects
757 a null-terminated string, the substring is copied out
758 into a separate block of storage.
759
760 N.B. A single buffer is reused on each call. */
c906108c
SS
761
762char *
fba45db2 763copy_name (struct stoken token)
c906108c 764{
1a4eeb98
DE
765 /* A temporary buffer for identifiers, so we can null-terminate them.
766 We allocate this with xrealloc. parse_exp_1 used to allocate with
767 alloca, using the size of the whole expression as a conservative
768 estimate of the space needed. However, macro expansion can
769 introduce names longer than the original expression; there's no
770 practical way to know beforehand how large that might be. */
771 static char *namecopy;
772 static size_t namecopy_size;
773
3a913e29
JB
774 /* Make sure there's enough space for the token. */
775 if (namecopy_size < token.length + 1)
776 {
777 namecopy_size = token.length + 1;
224c3ddb 778 namecopy = (char *) xrealloc (namecopy, token.length + 1);
3a913e29
JB
779 }
780
c906108c
SS
781 memcpy (namecopy, token.ptr, token.length);
782 namecopy[token.length] = 0;
3a913e29 783
c906108c
SS
784 return namecopy;
785}
786\f
55aa24fb
SDJ
787
788/* See comments on parser-defs.h. */
789
790int
f86f5ca3 791prefixify_expression (struct expression *expr)
c906108c 792{
df2a60d0 793 int len = sizeof (struct expression) + EXP_ELEM_TO_BYTES (expr->nelts);
f86f5ca3
PH
794 struct expression *temp;
795 int inpos = expr->nelts, outpos = 0;
c906108c
SS
796
797 temp = (struct expression *) alloca (len);
798
799 /* Copy the original expression into temp. */
800 memcpy (temp, expr, len);
801
65d12d83 802 return prefixify_subexp (temp, expr, inpos, outpos);
c906108c
SS
803}
804
24daaebc
PH
805/* Return the number of exp_elements in the postfix subexpression
806 of EXPR whose operator is at index ENDPOS - 1 in EXPR. */
c906108c 807
cf81cf60 808static int
f86f5ca3 809length_of_subexp (struct expression *expr, int endpos)
24daaebc 810{
6b4398f7 811 int oplen, args;
24daaebc
PH
812
813 operator_length (expr, endpos, &oplen, &args);
814
815 while (args > 0)
816 {
817 oplen += length_of_subexp (expr, endpos - oplen);
818 args--;
819 }
820
821 return oplen;
822}
823
824/* Sets *OPLENP to the length of the operator whose (last) index is
825 ENDPOS - 1 in EXPR, and sets *ARGSP to the number of arguments that
826 operator takes. */
827
828void
554794dc
SDJ
829operator_length (const struct expression *expr, int endpos, int *oplenp,
830 int *argsp)
5f9769d1
PH
831{
832 expr->language_defn->la_exp_desc->operator_length (expr, endpos,
833 oplenp, argsp);
834}
835
836/* Default value for operator_length in exp_descriptor vectors. */
837
838void
554794dc 839operator_length_standard (const struct expression *expr, int endpos,
5f9769d1 840 int *oplenp, int *argsp)
c906108c 841{
f86f5ca3
PH
842 int oplen = 1;
843 int args = 0;
01739a3b 844 enum range_type range_type;
f86f5ca3 845 int i;
c906108c
SS
846
847 if (endpos < 1)
8a3fe4f8 848 error (_("?error in operator_length_standard"));
c906108c
SS
849
850 i = (int) expr->elts[endpos - 1].opcode;
851
852 switch (i)
853 {
854 /* C++ */
855 case OP_SCOPE:
856 oplen = longest_to_int (expr->elts[endpos - 2].longconst);
857 oplen = 5 + BYTES_TO_EXP_ELEM (oplen + 1);
858 break;
859
860 case OP_LONG:
edd079d9 861 case OP_FLOAT:
c906108c 862 case OP_VAR_VALUE:
74ea4be4 863 case OP_VAR_MSYM_VALUE:
c906108c
SS
864 oplen = 4;
865 break;
866
858be34c
PA
867 case OP_FUNC_STATIC_VAR:
868 oplen = longest_to_int (expr->elts[endpos - 2].longconst);
869 oplen = 4 + BYTES_TO_EXP_ELEM (oplen + 1);
870 args = 1;
871 break;
872
c906108c
SS
873 case OP_TYPE:
874 case OP_BOOL:
875 case OP_LAST:
c906108c 876 case OP_INTERNALVAR:
36b11add 877 case OP_VAR_ENTRY_VALUE:
c906108c
SS
878 oplen = 3;
879 break;
880
881 case OP_COMPLEX:
c806c55a 882 oplen = 3;
c906108c 883 args = 2;
c5aa993b 884 break;
c906108c
SS
885
886 case OP_FUNCALL:
887 case OP_F77_UNDETERMINED_ARGLIST:
888 oplen = 3;
889 args = 1 + longest_to_int (expr->elts[endpos - 2].longconst);
890 break;
891
072bba3b 892 case TYPE_INSTANCE:
3693fdb3 893 oplen = 5 + longest_to_int (expr->elts[endpos - 2].longconst);
072bba3b
KS
894 args = 1;
895 break;
896
0df8b418 897 case OP_OBJC_MSGCALL: /* Objective C message (method) call. */
53c551b7
AF
898 oplen = 4;
899 args = 1 + longest_to_int (expr->elts[endpos - 2].longconst);
900 break;
901
c906108c
SS
902 case UNOP_MAX:
903 case UNOP_MIN:
904 oplen = 3;
905 break;
906
9eaf6705 907 case UNOP_CAST_TYPE:
4e8f195d
TT
908 case UNOP_DYNAMIC_CAST:
909 case UNOP_REINTERPRET_CAST:
9eaf6705
TT
910 case UNOP_MEMVAL_TYPE:
911 oplen = 1;
912 args = 2;
913 break;
914
915 case BINOP_VAL:
916 case UNOP_CAST:
c5aa993b 917 case UNOP_MEMVAL:
c906108c
SS
918 oplen = 3;
919 args = 1;
920 break;
921
922 case UNOP_ABS:
923 case UNOP_CAP:
924 case UNOP_CHR:
925 case UNOP_FLOAT:
926 case UNOP_HIGH:
927 case UNOP_ODD:
928 case UNOP_ORD:
929 case UNOP_TRUNC:
608b4967
TT
930 case OP_TYPEOF:
931 case OP_DECLTYPE:
6e72ca20 932 case OP_TYPEID:
c906108c
SS
933 oplen = 1;
934 args = 1;
935 break;
936
7322dca9
SW
937 case OP_ADL_FUNC:
938 oplen = longest_to_int (expr->elts[endpos - 2].longconst);
939 oplen = 4 + BYTES_TO_EXP_ELEM (oplen + 1);
940 oplen++;
941 oplen++;
942 break;
943
c906108c
SS
944 case STRUCTOP_STRUCT:
945 case STRUCTOP_PTR:
946 args = 1;
947 /* fall through */
67f3407f 948 case OP_REGISTER:
c906108c
SS
949 case OP_M2_STRING:
950 case OP_STRING:
3e43a32a 951 case OP_OBJC_NSSTRING: /* Objective C Foundation Class
0df8b418
MS
952 NSString constant. */
953 case OP_OBJC_SELECTOR: /* Objective C "@selector" pseudo-op. */
c906108c 954 case OP_NAME:
c906108c
SS
955 oplen = longest_to_int (expr->elts[endpos - 2].longconst);
956 oplen = 4 + BYTES_TO_EXP_ELEM (oplen + 1);
957 break;
958
c906108c
SS
959 case OP_ARRAY:
960 oplen = 4;
961 args = longest_to_int (expr->elts[endpos - 2].longconst);
962 args -= longest_to_int (expr->elts[endpos - 3].longconst);
963 args += 1;
964 break;
965
966 case TERNOP_COND:
967 case TERNOP_SLICE:
c906108c
SS
968 args = 3;
969 break;
970
971 /* Modula-2 */
c5aa993b 972 case MULTI_SUBSCRIPT:
c906108c 973 oplen = 3;
c5aa993b 974 args = 1 + longest_to_int (expr->elts[endpos - 2].longconst);
c906108c
SS
975 break;
976
977 case BINOP_ASSIGN_MODIFY:
978 oplen = 3;
979 args = 2;
980 break;
981
982 /* C++ */
983 case OP_THIS:
984 oplen = 2;
985 break;
986
01739a3b 987 case OP_RANGE:
0b4e1325 988 oplen = 3;
01739a3b 989 range_type = (enum range_type)
aead7601 990 longest_to_int (expr->elts[endpos - 2].longconst);
0b4e1325 991
0b4e1325
WZ
992 switch (range_type)
993 {
994 case LOW_BOUND_DEFAULT:
995 case HIGH_BOUND_DEFAULT:
996 args = 1;
997 break;
998 case BOTH_BOUND_DEFAULT:
999 args = 0;
1000 break;
1001 case NONE_BOUND_DEFAULT:
1002 args = 2;
1003 break;
1004 }
1005
1006 break;
1007
c906108c
SS
1008 default:
1009 args = 1 + (i < (int) BINOP_END);
1010 }
1011
24daaebc
PH
1012 *oplenp = oplen;
1013 *argsp = args;
c906108c
SS
1014}
1015
1016/* Copy the subexpression ending just before index INEND in INEXPR
1017 into OUTEXPR, starting at index OUTBEG.
65d12d83
TT
1018 In the process, convert it from suffix to prefix form.
1019 If EXPOUT_LAST_STRUCT is -1, then this function always returns -1.
1020 Otherwise, it returns the index of the subexpression which is the
1021 left-hand-side of the expression at EXPOUT_LAST_STRUCT. */
c906108c 1022
65d12d83 1023static int
f86f5ca3
PH
1024prefixify_subexp (struct expression *inexpr,
1025 struct expression *outexpr, int inend, int outbeg)
c906108c 1026{
24daaebc
PH
1027 int oplen;
1028 int args;
f86f5ca3 1029 int i;
c906108c 1030 int *arglens;
65d12d83 1031 int result = -1;
c906108c 1032
24daaebc 1033 operator_length (inexpr, inend, &oplen, &args);
c906108c
SS
1034
1035 /* Copy the final operator itself, from the end of the input
1036 to the beginning of the output. */
1037 inend -= oplen;
1038 memcpy (&outexpr->elts[outbeg], &inexpr->elts[inend],
1039 EXP_ELEM_TO_BYTES (oplen));
1040 outbeg += oplen;
1041
65d12d83
TT
1042 if (expout_last_struct == inend)
1043 result = outbeg - oplen;
1044
c906108c
SS
1045 /* Find the lengths of the arg subexpressions. */
1046 arglens = (int *) alloca (args * sizeof (int));
1047 for (i = args - 1; i >= 0; i--)
1048 {
1049 oplen = length_of_subexp (inexpr, inend);
1050 arglens[i] = oplen;
1051 inend -= oplen;
1052 }
1053
1054 /* Now copy each subexpression, preserving the order of
1055 the subexpressions, but prefixifying each one.
1056 In this loop, inend starts at the beginning of
1057 the expression this level is working on
1058 and marches forward over the arguments.
1059 outbeg does similarly in the output. */
1060 for (i = 0; i < args; i++)
1061 {
65d12d83 1062 int r;
ad3bbd48 1063
c906108c
SS
1064 oplen = arglens[i];
1065 inend += oplen;
65d12d83
TT
1066 r = prefixify_subexp (inexpr, outexpr, inend, outbeg);
1067 if (r != -1)
1068 {
1069 /* Return immediately. We probably have only parsed a
1070 partial expression, so we don't want to try to reverse
1071 the other operands. */
1072 return r;
1073 }
c906108c
SS
1074 outbeg += oplen;
1075 }
65d12d83
TT
1076
1077 return result;
c906108c
SS
1078}
1079\f
c906108c 1080/* Read an expression from the string *STRINGPTR points to,
ae0c443d 1081 parse it, and return a pointer to a struct expression that we malloc.
c906108c
SS
1082 Use block BLOCK as the lexical context for variable names;
1083 if BLOCK is zero, use the block of the selected stack frame.
1084 Meanwhile, advance *STRINGPTR to point after the expression,
1085 at the first nonwhite character that is not part of the expression
1086 (possibly a null character).
1087
1088 If COMMA is nonzero, stop if a comma is reached. */
1089
4d01a485 1090expression_up
bbc13ae3 1091parse_exp_1 (const char **stringptr, CORE_ADDR pc, const struct block *block,
270140bd 1092 int comma)
6f937416
PA
1093{
1094 return parse_exp_in_context (stringptr, pc, block, comma, 0, NULL);
1095}
1096
4d01a485 1097static expression_up
6f937416
PA
1098parse_exp_in_context (const char **stringptr, CORE_ADDR pc,
1099 const struct block *block,
1100 int comma, int void_context_p, int *out_subexp)
e85c3284 1101{
d7561cbb 1102 return parse_exp_in_context_1 (stringptr, pc, block, comma,
6f937416 1103 void_context_p, out_subexp);
e85c3284
PH
1104}
1105
1106/* As for parse_exp_1, except that if VOID_CONTEXT_P, then
65d12d83
TT
1107 no value is expected from the expression.
1108 OUT_SUBEXP is set when attempting to complete a field name; in this
1109 case it is set to the index of the subexpression on the
1110 left-hand-side of the struct op. If not doing such completion, it
1111 is left untouched. */
e85c3284 1112
4d01a485 1113static expression_up
d7561cbb 1114parse_exp_in_context_1 (const char **stringptr, CORE_ADDR pc,
6f937416
PA
1115 const struct block *block,
1116 int comma, int void_context_p, int *out_subexp)
c906108c 1117{
0cce5bd9 1118 const struct language_defn *lang = NULL;
410a0ff2 1119 struct parser_state ps;
65d12d83 1120 int subexp;
c906108c
SS
1121
1122 lexptr = *stringptr;
665132f9 1123 prev_lexptr = NULL;
c906108c
SS
1124
1125 paren_depth = 0;
1a7d0ce4 1126 type_stack.depth = 0;
65d12d83 1127 expout_last_struct = -1;
2f68a895
TT
1128 expout_tag_completion_type = TYPE_CODE_UNDEF;
1129 xfree (expout_completion_name);
1130 expout_completion_name = NULL;
c906108c
SS
1131
1132 comma_terminates = comma;
1133
1134 if (lexptr == 0 || *lexptr == 0)
e2e0b3e5 1135 error_no_arg (_("expression to compute"));
c906108c 1136
69c1e056
TT
1137 std::vector<int> funcalls;
1138 scoped_restore save_funcall_chain = make_scoped_restore (&funcall_chain,
1139 &funcalls);
c906108c 1140
d705c43c 1141 expression_context_block = block;
59f92a09 1142
d705c43c
PA
1143 /* If no context specified, try using the current frame, if any. */
1144 if (!expression_context_block)
1145 expression_context_block = get_selected_block (&expression_context_pc);
1bb9788d 1146 else if (pc == 0)
d705c43c 1147 expression_context_pc = BLOCK_START (expression_context_block);
1bb9788d
TT
1148 else
1149 expression_context_pc = pc;
59f92a09 1150
d705c43c 1151 /* Fall back to using the current source static context, if any. */
59f92a09 1152
d705c43c 1153 if (!expression_context_block)
59f92a09
FF
1154 {
1155 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
1156 if (cursal.symtab)
d705c43c 1157 expression_context_block
439247b6
DE
1158 = BLOCKVECTOR_BLOCK (SYMTAB_BLOCKVECTOR (cursal.symtab),
1159 STATIC_BLOCK);
d705c43c
PA
1160 if (expression_context_block)
1161 expression_context_pc = BLOCK_START (expression_context_block);
84f0252a 1162 }
c906108c 1163
0cce5bd9
JB
1164 if (language_mode == language_mode_auto && block != NULL)
1165 {
1166 /* Find the language associated to the given context block.
1167 Default to the current language if it can not be determined.
1168
1169 Note that using the language corresponding to the current frame
1170 can sometimes give unexpected results. For instance, this
1171 routine is often called several times during the inferior
1172 startup phase to re-parse breakpoint expressions after
1173 a new shared library has been loaded. The language associated
1174 to the current frame at this moment is not relevant for
0df8b418 1175 the breakpoint. Using it would therefore be silly, so it seems
0cce5bd9 1176 better to rely on the current language rather than relying on
0df8b418 1177 the current frame language to parse the expression. That's why
0cce5bd9
JB
1178 we do the following language detection only if the context block
1179 has been specifically provided. */
1180 struct symbol *func = block_linkage_function (block);
1181
1182 if (func != NULL)
1183 lang = language_def (SYMBOL_LANGUAGE (func));
1184 if (lang == NULL || lang->la_language == language_unknown)
1185 lang = current_language;
1186 }
1187 else
1188 lang = current_language;
1189
5b12a61c
JK
1190 /* get_current_arch may reset CURRENT_LANGUAGE via select_frame.
1191 While we need CURRENT_LANGUAGE to be set to LANG (for lookup_symbol
1192 and others called from *.y) ensure CURRENT_LANGUAGE gets restored
1193 to the value matching SELECTED_FRAME as set by get_current_arch. */
410a0ff2
SDJ
1194
1195 initialize_expout (&ps, 10, lang, get_current_arch ());
e3ad2841
TT
1196
1197 scoped_restore_current_language lang_saver;
5b12a61c 1198 set_language (lang->la_language);
c906108c 1199
492d29ea 1200 TRY
65d12d83 1201 {
410a0ff2 1202 if (lang->la_parser (&ps))
0cce5bd9 1203 lang->la_error (NULL);
65d12d83 1204 }
492d29ea 1205 CATCH (except, RETURN_MASK_ALL)
65d12d83 1206 {
155da517 1207 if (! parse_completion)
65d12d83 1208 {
410a0ff2 1209 xfree (ps.expout);
65d12d83
TT
1210 throw_exception (except);
1211 }
1212 }
492d29ea 1213 END_CATCH
c906108c 1214
410a0ff2 1215 reallocate_expout (&ps);
c906108c
SS
1216
1217 /* Convert expression from postfix form as generated by yacc
0df8b418 1218 parser, to a prefix form. */
c906108c 1219
c906108c 1220 if (expressiondebug)
410a0ff2 1221 dump_raw_expression (ps.expout, gdb_stdlog,
24daaebc 1222 "before conversion to prefix form");
c906108c 1223
410a0ff2 1224 subexp = prefixify_expression (ps.expout);
65d12d83
TT
1225 if (out_subexp)
1226 *out_subexp = subexp;
c906108c 1227
410a0ff2 1228 lang->la_post_parser (&ps.expout, void_context_p);
e85c3284 1229
c906108c 1230 if (expressiondebug)
410a0ff2 1231 dump_prefix_expression (ps.expout, gdb_stdlog);
c906108c
SS
1232
1233 *stringptr = lexptr;
4d01a485 1234 return expression_up (ps.expout);
c906108c
SS
1235}
1236
1237/* Parse STRING as an expression, and complain if this fails
1238 to use up all of the contents of STRING. */
1239
4d01a485 1240expression_up
bbc13ae3 1241parse_expression (const char *string)
c906108c 1242{
4d01a485 1243 expression_up exp = parse_exp_1 (&string, 0, 0, 0);
c906108c 1244 if (*string)
8a3fe4f8 1245 error (_("Junk after end of expression."));
c906108c
SS
1246 return exp;
1247}
e85c3284 1248
429e1e81
JB
1249/* Same as parse_expression, but using the given language (LANG)
1250 to parse the expression. */
1251
4d01a485 1252expression_up
429e1e81
JB
1253parse_expression_with_language (const char *string, enum language lang)
1254{
e3ad2841 1255 gdb::optional<scoped_restore_current_language> lang_saver;
429e1e81
JB
1256 if (current_language->la_language != lang)
1257 {
e3ad2841 1258 lang_saver.emplace ();
429e1e81
JB
1259 set_language (lang);
1260 }
1261
e3ad2841 1262 return parse_expression (string);
429e1e81
JB
1263}
1264
65d12d83
TT
1265/* Parse STRING as an expression. If parsing ends in the middle of a
1266 field reference, return the type of the left-hand-side of the
1267 reference; furthermore, if the parsing ends in the field name,
c92817ce
TT
1268 return the field name in *NAME. If the parsing ends in the middle
1269 of a field reference, but the reference is somehow invalid, throw
1270 an exception. In all other cases, return NULL. Returned non-NULL
1271 *NAME must be freed by the caller. */
65d12d83
TT
1272
1273struct type *
6f937416 1274parse_expression_for_completion (const char *string, char **name,
2f68a895 1275 enum type_code *code)
65d12d83 1276{
4d01a485 1277 expression_up exp;
65d12d83
TT
1278 struct value *val;
1279 int subexp;
65d12d83 1280
492d29ea 1281 TRY
65d12d83 1282 {
155da517 1283 parse_completion = 1;
036e657b 1284 exp = parse_exp_in_context (&string, 0, 0, 0, 0, &subexp);
65d12d83 1285 }
492d29ea 1286 CATCH (except, RETURN_MASK_ERROR)
7556d4a4
PA
1287 {
1288 /* Nothing, EXP remains NULL. */
1289 }
492d29ea 1290 END_CATCH
7556d4a4 1291
155da517 1292 parse_completion = 0;
7556d4a4 1293 if (exp == NULL)
65d12d83 1294 return NULL;
2f68a895
TT
1295
1296 if (expout_tag_completion_type != TYPE_CODE_UNDEF)
1297 {
1298 *code = expout_tag_completion_type;
1299 *name = expout_completion_name;
1300 expout_completion_name = NULL;
1301 return NULL;
1302 }
1303
65d12d83 1304 if (expout_last_struct == -1)
4d01a485 1305 return NULL;
65d12d83 1306
4d01a485 1307 *name = extract_field_op (exp.get (), &subexp);
65d12d83 1308 if (!*name)
4d01a485 1309 return NULL;
a0b7aece 1310
c92817ce
TT
1311 /* This might throw an exception. If so, we want to let it
1312 propagate. */
4d01a485 1313 val = evaluate_subexpression_type (exp.get (), subexp);
c92817ce
TT
1314 /* (*NAME) is a part of the EXP memory block freed below. */
1315 *name = xstrdup (*name);
65d12d83
TT
1316
1317 return value_type (val);
1318}
1319
0df8b418 1320/* A post-parser that does nothing. */
e85c3284 1321
e85c3284
PH
1322void
1323null_post_parser (struct expression **exp, int void_context_p)
1324{
1325}
d30f5e1f
DE
1326
1327/* Parse floating point value P of length LEN.
edd079d9
UW
1328 Return false if invalid, true if valid.
1329 The successfully parsed number is stored in DATA in
1330 target format for floating-point type TYPE.
d30f5e1f
DE
1331
1332 NOTE: This accepts the floating point syntax that sscanf accepts. */
1333
edd079d9
UW
1334bool
1335parse_float (const char *p, int len,
1336 const struct type *type, gdb_byte *data)
d30f5e1f 1337{
f69fdf9b 1338 return target_float_from_string (data, type, std::string (p, len));
d30f5e1f 1339}
c906108c
SS
1340\f
1341/* Stuff for maintaining a stack of types. Currently just used by C, but
1342 probably useful for any language which declares its types "backwards". */
1343
fcde5961
TT
1344/* Ensure that there are HOWMUCH open slots on the type stack STACK. */
1345
47663de5 1346static void
fcde5961 1347type_stack_reserve (struct type_stack *stack, int howmuch)
c906108c 1348{
fcde5961 1349 if (stack->depth + howmuch >= stack->size)
c906108c 1350 {
fcde5961
TT
1351 stack->size *= 2;
1352 if (stack->size < howmuch)
1353 stack->size = howmuch;
224c3ddb
SM
1354 stack->elements = XRESIZEVEC (union type_stack_elt, stack->elements,
1355 stack->size);
c906108c 1356 }
47663de5
MS
1357}
1358
fcde5961
TT
1359/* Ensure that there is a single open slot in the global type stack. */
1360
1361static void
1362check_type_stack_depth (void)
1363{
1364 type_stack_reserve (&type_stack, 1);
1365}
1366
95c391b6
TT
1367/* A helper function for insert_type and insert_type_address_space.
1368 This does work of expanding the type stack and inserting the new
1369 element, ELEMENT, into the stack at location SLOT. */
1370
1371static void
1372insert_into_type_stack (int slot, union type_stack_elt element)
1373{
1374 check_type_stack_depth ();
1375
1a7d0ce4
TT
1376 if (slot < type_stack.depth)
1377 memmove (&type_stack.elements[slot + 1], &type_stack.elements[slot],
1378 (type_stack.depth - slot) * sizeof (union type_stack_elt));
1379 type_stack.elements[slot] = element;
1380 ++type_stack.depth;
95c391b6
TT
1381}
1382
1383/* Insert a new type, TP, at the bottom of the type stack. If TP is
53cc15f5
AV
1384 tp_pointer, tp_reference or tp_rvalue_reference, it is inserted at the
1385 bottom. If TP is a qualifier, it is inserted at slot 1 (just above a
1386 previous tp_pointer) if there is anything on the stack, or simply pushed
1387 if the stack is empty. Other values for TP are invalid. */
95c391b6
TT
1388
1389void
1390insert_type (enum type_pieces tp)
1391{
1392 union type_stack_elt element;
1393 int slot;
1394
1395 gdb_assert (tp == tp_pointer || tp == tp_reference
53cc15f5
AV
1396 || tp == tp_rvalue_reference || tp == tp_const
1397 || tp == tp_volatile);
95c391b6
TT
1398
1399 /* If there is anything on the stack (we know it will be a
1400 tp_pointer), insert the qualifier above it. Otherwise, simply
1401 push this on the top of the stack. */
1a7d0ce4 1402 if (type_stack.depth && (tp == tp_const || tp == tp_volatile))
95c391b6
TT
1403 slot = 1;
1404 else
1405 slot = 0;
1406
1407 element.piece = tp;
1408 insert_into_type_stack (slot, element);
1409}
1410
47663de5
MS
1411void
1412push_type (enum type_pieces tp)
1413{
1414 check_type_stack_depth ();
1a7d0ce4 1415 type_stack.elements[type_stack.depth++].piece = tp;
c906108c
SS
1416}
1417
1418void
fba45db2 1419push_type_int (int n)
c906108c 1420{
47663de5 1421 check_type_stack_depth ();
1a7d0ce4 1422 type_stack.elements[type_stack.depth++].int_val = n;
c906108c
SS
1423}
1424
95c391b6
TT
1425/* Insert a tp_space_identifier and the corresponding address space
1426 value into the stack. STRING is the name of an address space, as
1427 recognized by address_space_name_to_int. If the stack is empty,
1428 the new elements are simply pushed. If the stack is not empty,
1429 this function assumes that the first item on the stack is a
1430 tp_pointer, and the new values are inserted above the first
1431 item. */
1432
47663de5 1433void
410a0ff2 1434insert_type_address_space (struct parser_state *pstate, char *string)
47663de5 1435{
95c391b6
TT
1436 union type_stack_elt element;
1437 int slot;
1438
1439 /* If there is anything on the stack (we know it will be a
1440 tp_pointer), insert the address space qualifier above it.
1441 Otherwise, simply push this on the top of the stack. */
1a7d0ce4 1442 if (type_stack.depth)
95c391b6
TT
1443 slot = 1;
1444 else
1445 slot = 0;
1446
1447 element.piece = tp_space_identifier;
1448 insert_into_type_stack (slot, element);
410a0ff2
SDJ
1449 element.int_val = address_space_name_to_int (parse_gdbarch (pstate),
1450 string);
95c391b6 1451 insert_into_type_stack (slot, element);
47663de5
MS
1452}
1453
c5aa993b 1454enum type_pieces
fba45db2 1455pop_type (void)
c906108c 1456{
1a7d0ce4
TT
1457 if (type_stack.depth)
1458 return type_stack.elements[--type_stack.depth].piece;
c906108c
SS
1459 return tp_end;
1460}
1461
1462int
fba45db2 1463pop_type_int (void)
c906108c 1464{
1a7d0ce4
TT
1465 if (type_stack.depth)
1466 return type_stack.elements[--type_stack.depth].int_val;
c906108c
SS
1467 /* "Can't happen". */
1468 return 0;
1469}
1470
71918a86
TT
1471/* Pop a type list element from the global type stack. */
1472
1473static VEC (type_ptr) *
1474pop_typelist (void)
1475{
1476 gdb_assert (type_stack.depth);
1477 return type_stack.elements[--type_stack.depth].typelist_val;
1478}
1479
fcde5961
TT
1480/* Pop a type_stack element from the global type stack. */
1481
1482static struct type_stack *
1483pop_type_stack (void)
1484{
1485 gdb_assert (type_stack.depth);
1486 return type_stack.elements[--type_stack.depth].stack_val;
1487}
1488
1489/* Append the elements of the type stack FROM to the type stack TO.
1490 Always returns TO. */
1491
1492struct type_stack *
1493append_type_stack (struct type_stack *to, struct type_stack *from)
1494{
1495 type_stack_reserve (to, from->depth);
1496
1497 memcpy (&to->elements[to->depth], &from->elements[0],
1498 from->depth * sizeof (union type_stack_elt));
1499 to->depth += from->depth;
1500
1501 return to;
1502}
1503
1504/* Push the type stack STACK as an element on the global type stack. */
1505
1506void
1507push_type_stack (struct type_stack *stack)
1508{
1509 check_type_stack_depth ();
1510 type_stack.elements[type_stack.depth++].stack_val = stack;
1511 push_type (tp_type_stack);
1512}
1513
1514/* Copy the global type stack into a newly allocated type stack and
1515 return it. The global stack is cleared. The returned type stack
1516 must be freed with type_stack_cleanup. */
1517
1518struct type_stack *
1519get_type_stack (void)
1520{
1521 struct type_stack *result = XNEW (struct type_stack);
1522
1523 *result = type_stack;
1524 type_stack.depth = 0;
1525 type_stack.size = 0;
1526 type_stack.elements = NULL;
1527
1528 return result;
1529}
1530
1531/* A cleanup function that destroys a single type stack. */
1532
1533void
1534type_stack_cleanup (void *arg)
1535{
19ba03f4 1536 struct type_stack *stack = (struct type_stack *) arg;
fcde5961
TT
1537
1538 xfree (stack->elements);
1539 xfree (stack);
1540}
1541
71918a86 1542/* Push a function type with arguments onto the global type stack.
a6fb9c08
TT
1543 LIST holds the argument types. If the final item in LIST is NULL,
1544 then the function will be varargs. */
71918a86
TT
1545
1546void
1547push_typelist (VEC (type_ptr) *list)
1548{
1549 check_type_stack_depth ();
1550 type_stack.elements[type_stack.depth++].typelist_val = list;
1551 push_type (tp_function_with_arguments);
1552}
1553
3693fdb3
PA
1554/* Pop the type stack and return a type_instance_flags that
1555 corresponds the const/volatile qualifiers on the stack. This is
1556 called by the C++ parser when parsing methods types, and as such no
1557 other kind of type in the type stack is expected. */
1558
1559type_instance_flags
1560follow_type_instance_flags ()
1561{
1562 type_instance_flags flags = 0;
1563
1564 for (;;)
1565 switch (pop_type ())
1566 {
1567 case tp_end:
1568 return flags;
1569 case tp_const:
1570 flags |= TYPE_INSTANCE_FLAG_CONST;
1571 break;
1572 case tp_volatile:
1573 flags |= TYPE_INSTANCE_FLAG_VOLATILE;
1574 break;
1575 default:
1576 gdb_assert_not_reached ("unrecognized tp_ value in follow_types");
1577 }
1578}
1579
1580
c906108c
SS
1581/* Pop the type stack and return the type which corresponds to FOLLOW_TYPE
1582 as modified by all the stuff on the stack. */
1583struct type *
fba45db2 1584follow_types (struct type *follow_type)
c906108c
SS
1585{
1586 int done = 0;
2e2394a0
MS
1587 int make_const = 0;
1588 int make_volatile = 0;
47663de5 1589 int make_addr_space = 0;
c906108c 1590 int array_size;
c906108c
SS
1591
1592 while (!done)
1593 switch (pop_type ())
1594 {
1595 case tp_end:
1596 done = 1;
2e2394a0
MS
1597 if (make_const)
1598 follow_type = make_cv_type (make_const,
1599 TYPE_VOLATILE (follow_type),
1600 follow_type, 0);
1601 if (make_volatile)
1602 follow_type = make_cv_type (TYPE_CONST (follow_type),
1603 make_volatile,
1604 follow_type, 0);
47663de5
MS
1605 if (make_addr_space)
1606 follow_type = make_type_with_address_space (follow_type,
1607 make_addr_space);
1608 make_const = make_volatile = 0;
1609 make_addr_space = 0;
2e2394a0
MS
1610 break;
1611 case tp_const:
1612 make_const = 1;
1613 break;
1614 case tp_volatile:
1615 make_volatile = 1;
c906108c 1616 break;
47663de5
MS
1617 case tp_space_identifier:
1618 make_addr_space = pop_type_int ();
1619 break;
c906108c
SS
1620 case tp_pointer:
1621 follow_type = lookup_pointer_type (follow_type);
2e2394a0
MS
1622 if (make_const)
1623 follow_type = make_cv_type (make_const,
1624 TYPE_VOLATILE (follow_type),
1625 follow_type, 0);
1626 if (make_volatile)
1627 follow_type = make_cv_type (TYPE_CONST (follow_type),
1628 make_volatile,
1629 follow_type, 0);
47663de5
MS
1630 if (make_addr_space)
1631 follow_type = make_type_with_address_space (follow_type,
1632 make_addr_space);
2e2394a0 1633 make_const = make_volatile = 0;
47663de5 1634 make_addr_space = 0;
c906108c
SS
1635 break;
1636 case tp_reference:
53cc15f5
AV
1637 follow_type = lookup_lvalue_reference_type (follow_type);
1638 goto process_reference;
1639 case tp_rvalue_reference:
1640 follow_type = lookup_rvalue_reference_type (follow_type);
1641 process_reference:
1642 if (make_const)
1643 follow_type = make_cv_type (make_const,
1644 TYPE_VOLATILE (follow_type),
1645 follow_type, 0);
1646 if (make_volatile)
1647 follow_type = make_cv_type (TYPE_CONST (follow_type),
1648 make_volatile,
1649 follow_type, 0);
1650 if (make_addr_space)
1651 follow_type = make_type_with_address_space (follow_type,
1652 make_addr_space);
2e2394a0 1653 make_const = make_volatile = 0;
47663de5 1654 make_addr_space = 0;
c906108c
SS
1655 break;
1656 case tp_array:
1657 array_size = pop_type_int ();
1658 /* FIXME-type-allocation: need a way to free this type when we are
1659 done with it. */
c906108c 1660 follow_type =
e3506a9f
UW
1661 lookup_array_range_type (follow_type,
1662 0, array_size >= 0 ? array_size - 1 : 0);
c906108c 1663 if (array_size < 0)
729efb13
SA
1664 TYPE_HIGH_BOUND_KIND (TYPE_INDEX_TYPE (follow_type))
1665 = PROP_UNDEFINED;
c906108c
SS
1666 break;
1667 case tp_function:
1668 /* FIXME-type-allocation: need a way to free this type when we are
1669 done with it. */
1670 follow_type = lookup_function_type (follow_type);
1671 break;
fcde5961 1672
71918a86
TT
1673 case tp_function_with_arguments:
1674 {
1675 VEC (type_ptr) *args = pop_typelist ();
1676
1677 follow_type
1678 = lookup_function_type_with_arguments (follow_type,
1679 VEC_length (type_ptr, args),
1680 VEC_address (type_ptr,
1681 args));
1682 VEC_free (type_ptr, args);
1683 }
1684 break;
1685
fcde5961
TT
1686 case tp_type_stack:
1687 {
1688 struct type_stack *stack = pop_type_stack ();
1689 /* Sort of ugly, but not really much worse than the
1690 alternatives. */
1691 struct type_stack save = type_stack;
1692
1693 type_stack = *stack;
1694 follow_type = follow_types (follow_type);
1695 gdb_assert (type_stack.depth == 0);
1696
1697 type_stack = save;
1698 }
1699 break;
1700 default:
1701 gdb_assert_not_reached ("unrecognized tp_ value in follow_types");
c906108c
SS
1702 }
1703 return follow_type;
1704}
1705\f
f461f5cf
PM
1706/* This function avoids direct calls to fprintf
1707 in the parser generated debug code. */
1708void
1709parser_fprintf (FILE *x, const char *y, ...)
1710{
1711 va_list args;
ad3bbd48 1712
f461f5cf
PM
1713 va_start (args, y);
1714 if (x == stderr)
1715 vfprintf_unfiltered (gdb_stderr, y, args);
1716 else
1717 {
1718 fprintf_unfiltered (gdb_stderr, " Unknown FILE used.\n");
1719 vfprintf_unfiltered (gdb_stderr, y, args);
1720 }
1721 va_end (args);
1722}
1723
c0201579
JK
1724/* Implementation of the exp_descriptor method operator_check. */
1725
1726int
1727operator_check_standard (struct expression *exp, int pos,
1728 int (*objfile_func) (struct objfile *objfile,
1729 void *data),
1730 void *data)
1731{
1732 const union exp_element *const elts = exp->elts;
1733 struct type *type = NULL;
1734 struct objfile *objfile = NULL;
1735
1736 /* Extended operators should have been already handled by exp_descriptor
1737 iterate method of its specific language. */
1738 gdb_assert (elts[pos].opcode < OP_EXTENDED0);
1739
1740 /* Track the callers of write_exp_elt_type for this table. */
1741
1742 switch (elts[pos].opcode)
1743 {
1744 case BINOP_VAL:
1745 case OP_COMPLEX:
edd079d9 1746 case OP_FLOAT:
c0201579
JK
1747 case OP_LONG:
1748 case OP_SCOPE:
1749 case OP_TYPE:
1750 case UNOP_CAST:
c0201579
JK
1751 case UNOP_MAX:
1752 case UNOP_MEMVAL:
1753 case UNOP_MIN:
1754 type = elts[pos + 1].type;
1755 break;
1756
1757 case TYPE_INSTANCE:
1758 {
3693fdb3 1759 LONGEST arg, nargs = elts[pos + 2].longconst;
c0201579
JK
1760
1761 for (arg = 0; arg < nargs; arg++)
1762 {
3693fdb3 1763 struct type *type = elts[pos + 3 + arg].type;
c0201579
JK
1764 struct objfile *objfile = TYPE_OBJFILE (type);
1765
1766 if (objfile && (*objfile_func) (objfile, data))
1767 return 1;
1768 }
1769 }
1770 break;
1771
c0201579
JK
1772 case OP_VAR_VALUE:
1773 {
1774 const struct block *const block = elts[pos + 1].block;
1775 const struct symbol *const symbol = elts[pos + 2].symbol;
1776
1777 /* Check objfile where the variable itself is placed.
1778 SYMBOL_OBJ_SECTION (symbol) may be NULL. */
08be3fe3 1779 if ((*objfile_func) (symbol_objfile (symbol), data))
c0201579
JK
1780 return 1;
1781
1782 /* Check objfile where is placed the code touching the variable. */
1783 objfile = lookup_objfile_from_block (block);
1784
1785 type = SYMBOL_TYPE (symbol);
1786 }
1787 break;
74ea4be4
PA
1788 case OP_VAR_MSYM_VALUE:
1789 objfile = elts[pos + 1].objfile;
1790 break;
c0201579
JK
1791 }
1792
1793 /* Invoke callbacks for TYPE and OBJFILE if they were set as non-NULL. */
1794
1795 if (type && TYPE_OBJFILE (type)
1796 && (*objfile_func) (TYPE_OBJFILE (type), data))
1797 return 1;
1798 if (objfile && (*objfile_func) (objfile, data))
1799 return 1;
1800
1801 return 0;
1802}
1803
a1c7835a
YQ
1804/* Call OBJFILE_FUNC for any objfile found being referenced by EXP.
1805 OBJFILE_FUNC is never called with NULL OBJFILE. OBJFILE_FUNC get
1806 passed an arbitrary caller supplied DATA pointer. If OBJFILE_FUNC
1807 returns non-zero value then (any other) non-zero value is immediately
1808 returned to the caller. Otherwise zero is returned after iterating
1809 through whole EXP. */
c0201579
JK
1810
1811static int
1812exp_iterate (struct expression *exp,
1813 int (*objfile_func) (struct objfile *objfile, void *data),
1814 void *data)
1815{
1816 int endpos;
c0201579
JK
1817
1818 for (endpos = exp->nelts; endpos > 0; )
1819 {
1820 int pos, args, oplen = 0;
1821
dc21167c 1822 operator_length (exp, endpos, &oplen, &args);
c0201579
JK
1823 gdb_assert (oplen > 0);
1824
1825 pos = endpos - oplen;
1826 if (exp->language_defn->la_exp_desc->operator_check (exp, pos,
1827 objfile_func, data))
1828 return 1;
1829
1830 endpos = pos;
1831 }
1832
1833 return 0;
1834}
1835
1836/* Helper for exp_uses_objfile. */
1837
1838static int
1839exp_uses_objfile_iter (struct objfile *exp_objfile, void *objfile_voidp)
1840{
19ba03f4 1841 struct objfile *objfile = (struct objfile *) objfile_voidp;
c0201579
JK
1842
1843 if (exp_objfile->separate_debug_objfile_backlink)
1844 exp_objfile = exp_objfile->separate_debug_objfile_backlink;
1845
1846 return exp_objfile == objfile;
1847}
1848
1849/* Return 1 if EXP uses OBJFILE (and will become dangling when OBJFILE
1850 is unloaded), otherwise return 0. OBJFILE must not be a separate debug info
1851 file. */
1852
1853int
1854exp_uses_objfile (struct expression *exp, struct objfile *objfile)
1855{
1856 gdb_assert (objfile->separate_debug_objfile_backlink == NULL);
1857
1858 return exp_iterate (exp, exp_uses_objfile_iter, objfile);
1859}
1860
410a0ff2
SDJ
1861/* See definition in parser-defs.h. */
1862
1863void
1864increase_expout_size (struct parser_state *ps, size_t lenelt)
1865{
1866 if ((ps->expout_ptr + lenelt) >= ps->expout_size)
1867 {
325fac50 1868 ps->expout_size = std::max (ps->expout_size * 2,
410a0ff2
SDJ
1869 ps->expout_ptr + lenelt + 10);
1870 ps->expout = (struct expression *)
1871 xrealloc (ps->expout, (sizeof (struct expression)
1872 + EXP_ELEM_TO_BYTES (ps->expout_size)));
1873 }
1874}
1875
ac9a91a7 1876void
fba45db2 1877_initialize_parse (void)
ac9a91a7 1878{
fcde5961 1879 type_stack.size = 0;
1a7d0ce4 1880 type_stack.depth = 0;
fcde5961 1881 type_stack.elements = NULL;
ac9a91a7 1882
ccce17b0
YQ
1883 add_setshow_zuinteger_cmd ("expression", class_maintenance,
1884 &expressiondebug,
1885 _("Set expression debugging."),
1886 _("Show expression debugging."),
1887 _("When non-zero, the internal representation "
1888 "of expressions will be printed."),
1889 NULL,
1890 show_expressiondebug,
1891 &setdebuglist, &showdebuglist);
92981e24 1892 add_setshow_boolean_cmd ("parser", class_maintenance,
3e43a32a
MS
1893 &parser_debug,
1894 _("Set parser debugging."),
1895 _("Show parser debugging."),
1896 _("When non-zero, expression parser "
1897 "tracing will be enabled."),
92981e24
TT
1898 NULL,
1899 show_parserdebug,
1900 &setdebuglist, &showdebuglist);
c906108c 1901}
This page took 1.695647 seconds and 4 git commands to generate.