2004-02-17 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / parse.c
CommitLineData
c906108c 1/* Parse expressions for GDB.
b6ba6518
KB
2 Copyright 1986, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
c906108c
SS
4 Modified from expread.y by the Department of Computer Science at the
5 State University of New York at Buffalo, 1991.
6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b
JM
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
c906108c
SS
23
24/* Parse an expression from text in a string,
25 and return the result as a struct expression pointer.
26 That structure contains arithmetic operations in reverse polish,
27 with constants represented by operations that are followed by special data.
28 See expression.h for the details of the format.
29 What is important here is that it can be built up sequentially
30 during the process of parsing; the lower levels of the tree always
31 come first in the result. */
c5aa993b 32
cce74817
JM
33#include <ctype.h>
34
c906108c
SS
35#include "defs.h"
36#include "gdb_string.h"
c906108c
SS
37#include "symtab.h"
38#include "gdbtypes.h"
39#include "frame.h"
40#include "expression.h"
41#include "value.h"
42#include "command.h"
43#include "language.h"
44#include "parser-defs.h"
45#include "gdbcmd.h"
c5aa993b 46#include "symfile.h" /* for overlay functions */
e2305d34
MS
47#include "inferior.h" /* for NUM_PSEUDO_REGS. NOTE: replace
48 with "gdbarch.h" when appropriate. */
d16aafd8 49#include "doublest.h"
0406ec40 50#include "gdb_assert.h"
fe898f56 51#include "block.h"
e2305d34 52
5f9769d1
PH
53/* Standard set of definitions for printing, dumping, prefixifying,
54 * and evaluating expressions. */
55
56const struct exp_descriptor exp_descriptor_standard =
57 {
58 print_subexp_standard,
59 operator_length_standard,
60 op_name_standard,
61 dump_subexp_body_standard,
62 evaluate_subexp_standard
63 };
2df3850c
JM
64\f
65/* Symbols which architectures can redefine. */
66
67/* Some systems have routines whose names start with `$'. Giving this
68 macro a non-zero value tells GDB's expression parser to check for
69 such routines when parsing tokens that begin with `$'.
70
71 On HP-UX, certain system routines (millicode) have names beginning
72 with `$' or `$$'. For example, `$$dyncall' is a millicode routine
73 that handles inter-space procedure calls on PA-RISC. */
74#ifndef SYMBOLS_CAN_START_WITH_DOLLAR
75#define SYMBOLS_CAN_START_WITH_DOLLAR (0)
76#endif
77
78
c906108c
SS
79\f
80/* Global variables declared in parser-defs.h (and commented there). */
81struct expression *expout;
82int expout_size;
83int expout_ptr;
84struct block *expression_context_block;
84f0252a 85CORE_ADDR expression_context_pc;
c906108c
SS
86struct block *innermost_block;
87int arglist_len;
88union type_stack_elt *type_stack;
89int type_stack_depth, type_stack_size;
90char *lexptr;
665132f9 91char *prev_lexptr;
c906108c
SS
92char *namecopy;
93int paren_depth;
94int comma_terminates;
95\f
c906108c 96static int expressiondebug = 0;
c906108c
SS
97
98extern int hp_som_som_object_present;
99
74b7792f 100static void free_funcalls (void *ignore);
c906108c 101
a14ed312 102static void prefixify_expression (struct expression *);
c906108c 103
570b8f7c
AC
104static void prefixify_subexp (struct expression *, struct expression *, int,
105 int);
c906108c 106
a14ed312 107void _initialize_parse (void);
392a587b 108
c906108c
SS
109/* Data structure for saving values of arglist_len for function calls whose
110 arguments contain other function calls. */
111
112struct funcall
113 {
114 struct funcall *next;
115 int arglist_len;
116 };
117
118static struct funcall *funcall_chain;
119
c906108c
SS
120/* Begin counting arguments for a function call,
121 saving the data about any containing call. */
122
123void
fba45db2 124start_arglist (void)
c906108c 125{
f86f5ca3 126 struct funcall *new;
c906108c
SS
127
128 new = (struct funcall *) xmalloc (sizeof (struct funcall));
129 new->next = funcall_chain;
130 new->arglist_len = arglist_len;
131 arglist_len = 0;
132 funcall_chain = new;
133}
134
135/* Return the number of arguments in a function call just terminated,
136 and restore the data for the containing function call. */
137
138int
fba45db2 139end_arglist (void)
c906108c 140{
f86f5ca3
PH
141 int val = arglist_len;
142 struct funcall *call = funcall_chain;
c906108c
SS
143 funcall_chain = call->next;
144 arglist_len = call->arglist_len;
b8c9b27d 145 xfree (call);
c906108c
SS
146 return val;
147}
148
149/* Free everything in the funcall chain.
150 Used when there is an error inside parsing. */
151
152static void
74b7792f 153free_funcalls (void *ignore)
c906108c 154{
f86f5ca3 155 struct funcall *call, *next;
c906108c
SS
156
157 for (call = funcall_chain; call; call = next)
158 {
159 next = call->next;
b8c9b27d 160 xfree (call);
c906108c
SS
161 }
162}
163\f
164/* This page contains the functions for adding data to the struct expression
165 being constructed. */
166
167/* Add one element to the end of the expression. */
168
169/* To avoid a bug in the Sun 4 compiler, we pass things that can fit into
170 a register through here */
171
172void
fba45db2 173write_exp_elt (union exp_element expelt)
c906108c
SS
174{
175 if (expout_ptr >= expout_size)
176 {
177 expout_size *= 2;
178 expout = (struct expression *)
179 xrealloc ((char *) expout, sizeof (struct expression)
180 + EXP_ELEM_TO_BYTES (expout_size));
181 }
182 expout->elts[expout_ptr++] = expelt;
183}
184
185void
fba45db2 186write_exp_elt_opcode (enum exp_opcode expelt)
c906108c
SS
187{
188 union exp_element tmp;
189
190 tmp.opcode = expelt;
191
192 write_exp_elt (tmp);
193}
194
195void
fba45db2 196write_exp_elt_sym (struct symbol *expelt)
c906108c
SS
197{
198 union exp_element tmp;
199
200 tmp.symbol = expelt;
201
202 write_exp_elt (tmp);
203}
204
205void
fba45db2 206write_exp_elt_block (struct block *b)
c906108c
SS
207{
208 union exp_element tmp;
209 tmp.block = b;
210 write_exp_elt (tmp);
211}
212
213void
fba45db2 214write_exp_elt_longcst (LONGEST expelt)
c906108c
SS
215{
216 union exp_element tmp;
217
218 tmp.longconst = expelt;
219
220 write_exp_elt (tmp);
221}
222
223void
fba45db2 224write_exp_elt_dblcst (DOUBLEST expelt)
c906108c
SS
225{
226 union exp_element tmp;
227
228 tmp.doubleconst = expelt;
229
230 write_exp_elt (tmp);
231}
232
233void
fba45db2 234write_exp_elt_type (struct type *expelt)
c906108c
SS
235{
236 union exp_element tmp;
237
238 tmp.type = expelt;
239
240 write_exp_elt (tmp);
241}
242
243void
fba45db2 244write_exp_elt_intern (struct internalvar *expelt)
c906108c
SS
245{
246 union exp_element tmp;
247
248 tmp.internalvar = expelt;
249
250 write_exp_elt (tmp);
251}
252
253/* Add a string constant to the end of the expression.
254
255 String constants are stored by first writing an expression element
256 that contains the length of the string, then stuffing the string
257 constant itself into however many expression elements are needed
258 to hold it, and then writing another expression element that contains
259 the length of the string. I.E. an expression element at each end of
260 the string records the string length, so you can skip over the
261 expression elements containing the actual string bytes from either
262 end of the string. Note that this also allows gdb to handle
263 strings with embedded null bytes, as is required for some languages.
264
265 Don't be fooled by the fact that the string is null byte terminated,
266 this is strictly for the convenience of debugging gdb itself. Gdb
267 Gdb does not depend up the string being null terminated, since the
268 actual length is recorded in expression elements at each end of the
269 string. The null byte is taken into consideration when computing how
270 many expression elements are required to hold the string constant, of
271 course. */
272
273
274void
fba45db2 275write_exp_string (struct stoken str)
c906108c 276{
f86f5ca3
PH
277 int len = str.length;
278 int lenelt;
279 char *strdata;
c906108c
SS
280
281 /* Compute the number of expression elements required to hold the string
282 (including a null byte terminator), along with one expression element
283 at each end to record the actual string length (not including the
284 null byte terminator). */
285
286 lenelt = 2 + BYTES_TO_EXP_ELEM (len + 1);
287
288 /* Ensure that we have enough available expression elements to store
289 everything. */
290
291 if ((expout_ptr + lenelt) >= expout_size)
292 {
293 expout_size = max (expout_size * 2, expout_ptr + lenelt + 10);
294 expout = (struct expression *)
295 xrealloc ((char *) expout, (sizeof (struct expression)
296 + EXP_ELEM_TO_BYTES (expout_size)));
297 }
298
299 /* Write the leading length expression element (which advances the current
300 expression element index), then write the string constant followed by a
301 terminating null byte, and then write the trailing length expression
302 element. */
303
304 write_exp_elt_longcst ((LONGEST) len);
305 strdata = (char *) &expout->elts[expout_ptr];
306 memcpy (strdata, str.ptr, len);
307 *(strdata + len) = '\0';
308 expout_ptr += lenelt - 2;
309 write_exp_elt_longcst ((LONGEST) len);
310}
311
312/* Add a bitstring constant to the end of the expression.
313
314 Bitstring constants are stored by first writing an expression element
315 that contains the length of the bitstring (in bits), then stuffing the
316 bitstring constant itself into however many expression elements are
317 needed to hold it, and then writing another expression element that
318 contains the length of the bitstring. I.E. an expression element at
319 each end of the bitstring records the bitstring length, so you can skip
320 over the expression elements containing the actual bitstring bytes from
321 either end of the bitstring. */
322
323void
fba45db2 324write_exp_bitstring (struct stoken str)
c906108c 325{
f86f5ca3
PH
326 int bits = str.length; /* length in bits */
327 int len = (bits + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
328 int lenelt;
329 char *strdata;
c906108c
SS
330
331 /* Compute the number of expression elements required to hold the bitstring,
332 along with one expression element at each end to record the actual
333 bitstring length in bits. */
334
335 lenelt = 2 + BYTES_TO_EXP_ELEM (len);
336
337 /* Ensure that we have enough available expression elements to store
338 everything. */
339
340 if ((expout_ptr + lenelt) >= expout_size)
341 {
342 expout_size = max (expout_size * 2, expout_ptr + lenelt + 10);
343 expout = (struct expression *)
344 xrealloc ((char *) expout, (sizeof (struct expression)
345 + EXP_ELEM_TO_BYTES (expout_size)));
346 }
347
348 /* Write the leading length expression element (which advances the current
349 expression element index), then write the bitstring constant, and then
350 write the trailing length expression element. */
351
352 write_exp_elt_longcst ((LONGEST) bits);
353 strdata = (char *) &expout->elts[expout_ptr];
354 memcpy (strdata, str.ptr, len);
355 expout_ptr += lenelt - 2;
356 write_exp_elt_longcst ((LONGEST) bits);
357}
358
359/* Add the appropriate elements for a minimal symbol to the end of
360 the expression. The rationale behind passing in text_symbol_type and
361 data_symbol_type was so that Modula-2 could pass in WORD for
362 data_symbol_type. Perhaps it still is useful to have those types vary
363 based on the language, but they no longer have names like "int", so
364 the initial rationale is gone. */
365
366static struct type *msym_text_symbol_type;
367static struct type *msym_data_symbol_type;
368static struct type *msym_unknown_symbol_type;
369
370void
a858089e
MS
371write_exp_msymbol (struct minimal_symbol *msymbol,
372 struct type *text_symbol_type,
373 struct type *data_symbol_type)
c906108c
SS
374{
375 CORE_ADDR addr;
376
377 write_exp_elt_opcode (OP_LONG);
a858089e
MS
378 /* Let's make the type big enough to hold a 64-bit address. */
379 write_exp_elt_type (builtin_type_CORE_ADDR);
c906108c
SS
380
381 addr = SYMBOL_VALUE_ADDRESS (msymbol);
382 if (overlay_debugging)
383 addr = symbol_overlayed_address (addr, SYMBOL_BFD_SECTION (msymbol));
384 write_exp_elt_longcst ((LONGEST) addr);
c5aa993b 385
c906108c
SS
386 write_exp_elt_opcode (OP_LONG);
387
388 write_exp_elt_opcode (UNOP_MEMVAL);
c5aa993b 389 switch (msymbol->type)
c906108c
SS
390 {
391 case mst_text:
392 case mst_file_text:
393 case mst_solib_trampoline:
394 write_exp_elt_type (msym_text_symbol_type);
395 break;
396
397 case mst_data:
398 case mst_file_data:
399 case mst_bss:
400 case mst_file_bss:
401 write_exp_elt_type (msym_data_symbol_type);
402 break;
403
404 default:
405 write_exp_elt_type (msym_unknown_symbol_type);
406 break;
407 }
408 write_exp_elt_opcode (UNOP_MEMVAL);
409}
410\f
411/* Recognize tokens that start with '$'. These include:
412
c5aa993b
JM
413 $regname A native register name or a "standard
414 register name".
c906108c 415
c5aa993b
JM
416 $variable A convenience variable with a name chosen
417 by the user.
c906108c 418
c5aa993b
JM
419 $digits Value history with index <digits>, starting
420 from the first value which has index 1.
c906108c 421
c5aa993b
JM
422 $$digits Value history with index <digits> relative
423 to the last value. I.E. $$0 is the last
424 value, $$1 is the one previous to that, $$2
425 is the one previous to $$1, etc.
c906108c 426
c5aa993b 427 $ | $0 | $$0 The last value in the value history.
c906108c 428
c5aa993b
JM
429 $$ An abbreviation for the second to the last
430 value in the value history, I.E. $$1
c906108c 431
c5aa993b 432 */
c906108c
SS
433
434void
fba45db2 435write_dollar_variable (struct stoken str)
c906108c
SS
436{
437 /* Handle the tokens $digits; also $ (short for $0) and $$ (short for $$1)
438 and $$digits (equivalent to $<-digits> if you could type that). */
439
c906108c
SS
440 int negate = 0;
441 int i = 1;
442 /* Double dollar means negate the number and add -1 as well.
443 Thus $$ alone means -1. */
444 if (str.length >= 2 && str.ptr[1] == '$')
445 {
446 negate = 1;
447 i = 2;
448 }
449 if (i == str.length)
450 {
451 /* Just dollars (one or two) */
c5aa993b 452 i = -negate;
c906108c
SS
453 goto handle_last;
454 }
455 /* Is the rest of the token digits? */
456 for (; i < str.length; i++)
457 if (!(str.ptr[i] >= '0' && str.ptr[i] <= '9'))
458 break;
459 if (i == str.length)
460 {
461 i = atoi (str.ptr + 1 + negate);
462 if (negate)
c5aa993b 463 i = -i;
c906108c
SS
464 goto handle_last;
465 }
c5aa993b 466
c906108c
SS
467 /* Handle tokens that refer to machine registers:
468 $ followed by a register name. */
eb8bc282
AC
469 i = frame_map_name_to_regnum (deprecated_selected_frame,
470 str.ptr + 1, str.length - 1);
c5aa993b 471 if (i >= 0)
c906108c
SS
472 goto handle_register;
473
2df3850c 474 if (SYMBOLS_CAN_START_WITH_DOLLAR)
c906108c 475 {
2df3850c
JM
476 struct symbol *sym = NULL;
477 struct minimal_symbol *msym = NULL;
478
479 /* On HP-UX, certain system routines (millicode) have names beginning
480 with $ or $$, e.g. $$dyncall, which handles inter-space procedure
481 calls on PA-RISC. Check for those, first. */
482
483 /* This code is not enabled on non HP-UX systems, since worst case
484 symbol table lookup performance is awful, to put it mildly. */
485
486 sym = lookup_symbol (copy_name (str), (struct block *) NULL,
176620f1 487 VAR_DOMAIN, (int *) NULL, (struct symtab **) NULL);
2df3850c
JM
488 if (sym)
489 {
490 write_exp_elt_opcode (OP_VAR_VALUE);
491 write_exp_elt_block (block_found); /* set by lookup_symbol */
492 write_exp_elt_sym (sym);
493 write_exp_elt_opcode (OP_VAR_VALUE);
494 return;
495 }
496 msym = lookup_minimal_symbol (copy_name (str), NULL, NULL);
497 if (msym)
498 {
499 write_exp_msymbol (msym,
500 lookup_function_type (builtin_type_int),
501 builtin_type_int);
502 return;
503 }
c906108c 504 }
c5aa993b 505
c906108c
SS
506 /* Any other names starting in $ are debugger internal variables. */
507
508 write_exp_elt_opcode (OP_INTERNALVAR);
509 write_exp_elt_intern (lookup_internalvar (copy_name (str) + 1));
c5aa993b 510 write_exp_elt_opcode (OP_INTERNALVAR);
c906108c 511 return;
c5aa993b 512handle_last:
c906108c
SS
513 write_exp_elt_opcode (OP_LAST);
514 write_exp_elt_longcst ((LONGEST) i);
515 write_exp_elt_opcode (OP_LAST);
516 return;
c5aa993b 517handle_register:
c906108c
SS
518 write_exp_elt_opcode (OP_REGISTER);
519 write_exp_elt_longcst (i);
c5aa993b 520 write_exp_elt_opcode (OP_REGISTER);
c906108c
SS
521 return;
522}
523
524
525/* Parse a string that is possibly a namespace / nested class
526 specification, i.e., something of the form A::B::C::x. Input
527 (NAME) is the entire string; LEN is the current valid length; the
528 output is a string, TOKEN, which points to the largest recognized
529 prefix which is a series of namespaces or classes. CLASS_PREFIX is
530 another output, which records whether a nested class spec was
531 recognized (= 1) or a fully qualified variable name was found (=
532 0). ARGPTR is side-effected (if non-NULL) to point to beyond the
533 string recognized and consumed by this routine.
534
535 The return value is a pointer to the symbol for the base class or
536 variable if found, or NULL if not found. Callers must check this
537 first -- if NULL, the outputs may not be correct.
538
539 This function is used c-exp.y. This is used specifically to get
540 around HP aCC (and possibly other compilers), which insists on
541 generating names with embedded colons for namespace or nested class
542 members.
543
544 (Argument LEN is currently unused. 1997-08-27)
545
546 Callers must free memory allocated for the output string TOKEN. */
547
c5aa993b
JM
548static const char coloncolon[2] =
549{':', ':'};
c906108c
SS
550
551struct symbol *
fba45db2
KB
552parse_nested_classes_for_hpacc (char *name, int len, char **token,
553 int *class_prefix, char **argptr)
c906108c 554{
c5aa993b
JM
555 /* Comment below comes from decode_line_1 which has very similar
556 code, which is called for "break" command parsing. */
557
558 /* We have what looks like a class or namespace
c906108c
SS
559 scope specification (A::B), possibly with many
560 levels of namespaces or classes (A::B::C::D).
561
562 Some versions of the HP ANSI C++ compiler (as also possibly
563 other compilers) generate class/function/member names with
564 embedded double-colons if they are inside namespaces. To
565 handle this, we loop a few times, considering larger and
566 larger prefixes of the string as though they were single
567 symbols. So, if the initially supplied string is
568 A::B::C::D::foo, we have to look up "A", then "A::B",
569 then "A::B::C", then "A::B::C::D", and finally
570 "A::B::C::D::foo" as single, monolithic symbols, because
571 A, B, C or D may be namespaces.
572
573 Note that namespaces can nest only inside other
574 namespaces, and not inside classes. So we need only
575 consider *prefixes* of the string; there is no need to look up
576 "B::C" separately as a symbol in the previous example. */
577
f86f5ca3 578 char *p;
c5aa993b
JM
579 char *start, *end;
580 char *prefix = NULL;
581 char *tmp;
582 struct symbol *sym_class = NULL;
583 struct symbol *sym_var = NULL;
584 struct type *t;
c906108c
SS
585 int prefix_len = 0;
586 int done = 0;
c5aa993b 587 char *q;
c906108c
SS
588
589 /* Check for HP-compiled executable -- in other cases
590 return NULL, and caller must default to standard GDB
591 behaviour. */
592
593 if (!hp_som_som_object_present)
594 return (struct symbol *) NULL;
595
596 p = name;
597
c5aa993b
JM
598 /* Skip over whitespace and possible global "::" */
599 while (*p && (*p == ' ' || *p == '\t'))
600 p++;
c906108c
SS
601 if (p[0] == ':' && p[1] == ':')
602 p += 2;
c5aa993b
JM
603 while (*p && (*p == ' ' || *p == '\t'))
604 p++;
605
c906108c
SS
606 while (1)
607 {
608 /* Get to the end of the next namespace or class spec. */
609 /* If we're looking at some non-token, fail immediately */
610 start = p;
611 if (!(isalpha (*p) || *p == '$' || *p == '_'))
c5aa993b 612 return (struct symbol *) NULL;
c906108c 613 p++;
c5aa993b
JM
614 while (*p && (isalnum (*p) || *p == '$' || *p == '_'))
615 p++;
616
617 if (*p == '<')
618 {
619 /* If we have the start of a template specification,
620 scan right ahead to its end */
621 q = find_template_name_end (p);
622 if (q)
623 p = q;
624 }
625
c906108c
SS
626 end = p;
627
c5aa993b
JM
628 /* Skip over "::" and whitespace for next time around */
629 while (*p && (*p == ' ' || *p == '\t'))
630 p++;
c906108c 631 if (p[0] == ':' && p[1] == ':')
c5aa993b
JM
632 p += 2;
633 while (*p && (*p == ' ' || *p == '\t'))
634 p++;
c906108c 635
c5aa993b 636 /* Done with tokens? */
c906108c 637 if (!*p || !(isalpha (*p) || *p == '$' || *p == '_'))
c5aa993b 638 done = 1;
c906108c
SS
639
640 tmp = (char *) alloca (prefix_len + end - start + 3);
641 if (prefix)
c5aa993b
JM
642 {
643 memcpy (tmp, prefix, prefix_len);
644 memcpy (tmp + prefix_len, coloncolon, 2);
645 memcpy (tmp + prefix_len + 2, start, end - start);
646 tmp[prefix_len + 2 + end - start] = '\000';
647 }
c906108c 648 else
c5aa993b
JM
649 {
650 memcpy (tmp, start, end - start);
651 tmp[end - start] = '\000';
652 }
653
c906108c
SS
654 prefix = tmp;
655 prefix_len = strlen (prefix);
c5aa993b 656
c906108c
SS
657 /* See if the prefix we have now is something we know about */
658
c5aa993b
JM
659 if (!done)
660 {
661 /* More tokens to process, so this must be a class/namespace */
176620f1 662 sym_class = lookup_symbol (prefix, 0, STRUCT_DOMAIN,
c5aa993b
JM
663 0, (struct symtab **) NULL);
664 }
c906108c 665 else
c5aa993b
JM
666 {
667 /* No more tokens, so try as a variable first */
176620f1 668 sym_var = lookup_symbol (prefix, 0, VAR_DOMAIN,
c5aa993b
JM
669 0, (struct symtab **) NULL);
670 /* If failed, try as class/namespace */
671 if (!sym_var)
176620f1 672 sym_class = lookup_symbol (prefix, 0, STRUCT_DOMAIN,
c5aa993b
JM
673 0, (struct symtab **) NULL);
674 }
c906108c
SS
675
676 if (sym_var ||
c5aa993b
JM
677 (sym_class &&
678 (t = check_typedef (SYMBOL_TYPE (sym_class)),
679 (TYPE_CODE (t) == TYPE_CODE_STRUCT
680 || TYPE_CODE (t) == TYPE_CODE_UNION))))
681 {
682 /* We found a valid token */
683 *token = (char *) xmalloc (prefix_len + 1);
684 memcpy (*token, prefix, prefix_len);
685 (*token)[prefix_len] = '\000';
686 break;
687 }
688
689 /* No variable or class/namespace found, no more tokens */
c906108c 690 if (done)
c5aa993b 691 return (struct symbol *) NULL;
c906108c
SS
692 }
693
694 /* Out of loop, so we must have found a valid token */
695 if (sym_var)
696 *class_prefix = 0;
697 else
698 *class_prefix = 1;
699
700 if (argptr)
701 *argptr = done ? p : end;
702
c5aa993b 703 return sym_var ? sym_var : sym_class; /* found */
c906108c
SS
704}
705
706char *
fba45db2 707find_template_name_end (char *p)
c906108c
SS
708{
709 int depth = 1;
710 int just_seen_right = 0;
711 int just_seen_colon = 0;
712 int just_seen_space = 0;
c5aa993b 713
c906108c
SS
714 if (!p || (*p != '<'))
715 return 0;
716
717 while (*++p)
718 {
719 switch (*p)
c5aa993b
JM
720 {
721 case '\'':
722 case '\"':
723 case '{':
724 case '}':
725 /* In future, may want to allow these?? */
726 return 0;
727 case '<':
728 depth++; /* start nested template */
729 if (just_seen_colon || just_seen_right || just_seen_space)
730 return 0; /* but not after : or :: or > or space */
731 break;
732 case '>':
733 if (just_seen_colon || just_seen_right)
734 return 0; /* end a (nested?) template */
735 just_seen_right = 1; /* but not after : or :: */
736 if (--depth == 0) /* also disallow >>, insist on > > */
737 return ++p; /* if outermost ended, return */
738 break;
739 case ':':
740 if (just_seen_space || (just_seen_colon > 1))
741 return 0; /* nested class spec coming up */
742 just_seen_colon++; /* we allow :: but not :::: */
743 break;
744 case ' ':
745 break;
746 default:
747 if (!((*p >= 'a' && *p <= 'z') || /* allow token chars */
748 (*p >= 'A' && *p <= 'Z') ||
749 (*p >= '0' && *p <= '9') ||
750 (*p == '_') || (*p == ',') || /* commas for template args */
751 (*p == '&') || (*p == '*') || /* pointer and ref types */
752 (*p == '(') || (*p == ')') || /* function types */
753 (*p == '[') || (*p == ']'))) /* array types */
754 return 0;
755 }
c906108c 756 if (*p != ' ')
c5aa993b 757 just_seen_space = 0;
c906108c 758 if (*p != ':')
c5aa993b 759 just_seen_colon = 0;
c906108c 760 if (*p != '>')
c5aa993b 761 just_seen_right = 0;
c906108c
SS
762 }
763 return 0;
764}
c5aa993b 765\f
c906108c
SS
766
767
c906108c
SS
768/* Return a null-terminated temporary copy of the name
769 of a string token. */
770
771char *
fba45db2 772copy_name (struct stoken token)
c906108c
SS
773{
774 memcpy (namecopy, token.ptr, token.length);
775 namecopy[token.length] = 0;
776 return namecopy;
777}
778\f
779/* Reverse an expression from suffix form (in which it is constructed)
780 to prefix form (in which we can conveniently print or execute it). */
781
782static void
f86f5ca3 783prefixify_expression (struct expression *expr)
c906108c 784{
f86f5ca3 785 int len =
c5aa993b 786 sizeof (struct expression) + EXP_ELEM_TO_BYTES (expr->nelts);
f86f5ca3
PH
787 struct expression *temp;
788 int inpos = expr->nelts, outpos = 0;
c906108c
SS
789
790 temp = (struct expression *) alloca (len);
791
792 /* Copy the original expression into temp. */
793 memcpy (temp, expr, len);
794
795 prefixify_subexp (temp, expr, inpos, outpos);
796}
797
24daaebc
PH
798/* Return the number of exp_elements in the postfix subexpression
799 of EXPR whose operator is at index ENDPOS - 1 in EXPR. */
c906108c
SS
800
801int
f86f5ca3 802length_of_subexp (struct expression *expr, int endpos)
24daaebc
PH
803{
804 int oplen, args, i;
805
806 operator_length (expr, endpos, &oplen, &args);
807
808 while (args > 0)
809 {
810 oplen += length_of_subexp (expr, endpos - oplen);
811 args--;
812 }
813
814 return oplen;
815}
816
817/* Sets *OPLENP to the length of the operator whose (last) index is
818 ENDPOS - 1 in EXPR, and sets *ARGSP to the number of arguments that
819 operator takes. */
820
821void
822operator_length (struct expression *expr, int endpos, int *oplenp, int *argsp)
5f9769d1
PH
823{
824 expr->language_defn->la_exp_desc->operator_length (expr, endpos,
825 oplenp, argsp);
826}
827
828/* Default value for operator_length in exp_descriptor vectors. */
829
830void
831operator_length_standard (struct expression *expr, int endpos,
832 int *oplenp, int *argsp)
c906108c 833{
f86f5ca3
PH
834 int oplen = 1;
835 int args = 0;
836 int i;
c906108c
SS
837
838 if (endpos < 1)
5f9769d1 839 error ("?error in operator_length_standard");
c906108c
SS
840
841 i = (int) expr->elts[endpos - 1].opcode;
842
843 switch (i)
844 {
845 /* C++ */
846 case OP_SCOPE:
847 oplen = longest_to_int (expr->elts[endpos - 2].longconst);
848 oplen = 5 + BYTES_TO_EXP_ELEM (oplen + 1);
849 break;
850
851 case OP_LONG:
852 case OP_DOUBLE:
853 case OP_VAR_VALUE:
854 oplen = 4;
855 break;
856
857 case OP_TYPE:
858 case OP_BOOL:
859 case OP_LAST:
860 case OP_REGISTER:
861 case OP_INTERNALVAR:
862 oplen = 3;
863 break;
864
865 case OP_COMPLEX:
c5aa993b 866 oplen = 1;
c906108c 867 args = 2;
c5aa993b 868 break;
c906108c
SS
869
870 case OP_FUNCALL:
871 case OP_F77_UNDETERMINED_ARGLIST:
872 oplen = 3;
873 args = 1 + longest_to_int (expr->elts[endpos - 2].longconst);
874 break;
875
646df18d 876 case OP_OBJC_MSGCALL: /* Objective C message (method) call */
53c551b7
AF
877 oplen = 4;
878 args = 1 + longest_to_int (expr->elts[endpos - 2].longconst);
879 break;
880
c906108c
SS
881 case UNOP_MAX:
882 case UNOP_MIN:
883 oplen = 3;
884 break;
885
c5aa993b
JM
886 case BINOP_VAL:
887 case UNOP_CAST:
888 case UNOP_MEMVAL:
c906108c
SS
889 oplen = 3;
890 args = 1;
891 break;
892
893 case UNOP_ABS:
894 case UNOP_CAP:
895 case UNOP_CHR:
896 case UNOP_FLOAT:
897 case UNOP_HIGH:
898 case UNOP_ODD:
899 case UNOP_ORD:
900 case UNOP_TRUNC:
901 oplen = 1;
902 args = 1;
903 break;
904
905 case OP_LABELED:
906 case STRUCTOP_STRUCT:
907 case STRUCTOP_PTR:
908 args = 1;
909 /* fall through */
910 case OP_M2_STRING:
911 case OP_STRING:
646df18d
AF
912 case OP_OBJC_NSSTRING: /* Objective C Foundation Class NSString constant */
913 case OP_OBJC_SELECTOR: /* Objective C "@selector" pseudo-op */
c906108c
SS
914 case OP_NAME:
915 case OP_EXPRSTRING:
916 oplen = longest_to_int (expr->elts[endpos - 2].longconst);
917 oplen = 4 + BYTES_TO_EXP_ELEM (oplen + 1);
918 break;
919
920 case OP_BITSTRING:
921 oplen = longest_to_int (expr->elts[endpos - 2].longconst);
922 oplen = (oplen + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT;
923 oplen = 4 + BYTES_TO_EXP_ELEM (oplen);
924 break;
925
926 case OP_ARRAY:
927 oplen = 4;
928 args = longest_to_int (expr->elts[endpos - 2].longconst);
929 args -= longest_to_int (expr->elts[endpos - 3].longconst);
930 args += 1;
931 break;
932
933 case TERNOP_COND:
934 case TERNOP_SLICE:
935 case TERNOP_SLICE_COUNT:
936 args = 3;
937 break;
938
939 /* Modula-2 */
c5aa993b 940 case MULTI_SUBSCRIPT:
c906108c 941 oplen = 3;
c5aa993b 942 args = 1 + longest_to_int (expr->elts[endpos - 2].longconst);
c906108c
SS
943 break;
944
945 case BINOP_ASSIGN_MODIFY:
946 oplen = 3;
947 args = 2;
948 break;
949
950 /* C++ */
951 case OP_THIS:
646df18d 952 case OP_OBJC_SELF:
c906108c
SS
953 oplen = 2;
954 break;
955
956 default:
957 args = 1 + (i < (int) BINOP_END);
958 }
959
24daaebc
PH
960 *oplenp = oplen;
961 *argsp = args;
c906108c
SS
962}
963
964/* Copy the subexpression ending just before index INEND in INEXPR
965 into OUTEXPR, starting at index OUTBEG.
966 In the process, convert it from suffix to prefix form. */
967
968static void
f86f5ca3
PH
969prefixify_subexp (struct expression *inexpr,
970 struct expression *outexpr, int inend, int outbeg)
c906108c 971{
24daaebc
PH
972 int oplen;
973 int args;
f86f5ca3 974 int i;
c906108c
SS
975 int *arglens;
976 enum exp_opcode opcode;
977
24daaebc 978 operator_length (inexpr, inend, &oplen, &args);
c906108c
SS
979
980 /* Copy the final operator itself, from the end of the input
981 to the beginning of the output. */
982 inend -= oplen;
983 memcpy (&outexpr->elts[outbeg], &inexpr->elts[inend],
984 EXP_ELEM_TO_BYTES (oplen));
985 outbeg += oplen;
986
987 /* Find the lengths of the arg subexpressions. */
988 arglens = (int *) alloca (args * sizeof (int));
989 for (i = args - 1; i >= 0; i--)
990 {
991 oplen = length_of_subexp (inexpr, inend);
992 arglens[i] = oplen;
993 inend -= oplen;
994 }
995
996 /* Now copy each subexpression, preserving the order of
997 the subexpressions, but prefixifying each one.
998 In this loop, inend starts at the beginning of
999 the expression this level is working on
1000 and marches forward over the arguments.
1001 outbeg does similarly in the output. */
1002 for (i = 0; i < args; i++)
1003 {
1004 oplen = arglens[i];
1005 inend += oplen;
1006 prefixify_subexp (inexpr, outexpr, inend, outbeg);
1007 outbeg += oplen;
1008 }
1009}
1010\f
1011/* This page contains the two entry points to this file. */
1012
1013/* Read an expression from the string *STRINGPTR points to,
1014 parse it, and return a pointer to a struct expression that we malloc.
1015 Use block BLOCK as the lexical context for variable names;
1016 if BLOCK is zero, use the block of the selected stack frame.
1017 Meanwhile, advance *STRINGPTR to point after the expression,
1018 at the first nonwhite character that is not part of the expression
1019 (possibly a null character).
1020
1021 If COMMA is nonzero, stop if a comma is reached. */
1022
1023struct expression *
fba45db2 1024parse_exp_1 (char **stringptr, struct block *block, int comma)
c906108c
SS
1025{
1026 struct cleanup *old_chain;
1027
1028 lexptr = *stringptr;
665132f9 1029 prev_lexptr = NULL;
c906108c
SS
1030
1031 paren_depth = 0;
1032 type_stack_depth = 0;
1033
1034 comma_terminates = comma;
1035
1036 if (lexptr == 0 || *lexptr == 0)
1037 error_no_arg ("expression to compute");
1038
74b7792f 1039 old_chain = make_cleanup (free_funcalls, 0 /*ignore*/);
c906108c
SS
1040 funcall_chain = 0;
1041
84f0252a
JB
1042 if (block)
1043 {
1044 expression_context_block = block;
8da065d5 1045 expression_context_pc = BLOCK_START (block);
84f0252a
JB
1046 }
1047 else
1048 expression_context_block = get_selected_block (&expression_context_pc);
c906108c
SS
1049
1050 namecopy = (char *) alloca (strlen (lexptr) + 1);
1051 expout_size = 10;
1052 expout_ptr = 0;
1053 expout = (struct expression *)
1054 xmalloc (sizeof (struct expression) + EXP_ELEM_TO_BYTES (expout_size));
1055 expout->language_defn = current_language;
c13c43fd 1056 make_cleanup (free_current_contents, &expout);
c906108c
SS
1057
1058 if (current_language->la_parser ())
1059 current_language->la_error (NULL);
1060
1061 discard_cleanups (old_chain);
1062
1063 /* Record the actual number of expression elements, and then
1064 reallocate the expression memory so that we free up any
1065 excess elements. */
1066
1067 expout->nelts = expout_ptr;
1068 expout = (struct expression *)
1069 xrealloc ((char *) expout,
1070 sizeof (struct expression) + EXP_ELEM_TO_BYTES (expout_ptr));;
1071
1072 /* Convert expression from postfix form as generated by yacc
1073 parser, to a prefix form. */
1074
c906108c 1075 if (expressiondebug)
24daaebc
PH
1076 dump_raw_expression (expout, gdb_stdlog,
1077 "before conversion to prefix form");
c906108c
SS
1078
1079 prefixify_expression (expout);
1080
c906108c 1081 if (expressiondebug)
24daaebc 1082 dump_prefix_expression (expout, gdb_stdlog);
c906108c
SS
1083
1084 *stringptr = lexptr;
1085 return expout;
1086}
1087
1088/* Parse STRING as an expression, and complain if this fails
1089 to use up all of the contents of STRING. */
1090
1091struct expression *
fba45db2 1092parse_expression (char *string)
c906108c 1093{
f86f5ca3 1094 struct expression *exp;
c906108c
SS
1095 exp = parse_exp_1 (&string, 0, 0);
1096 if (*string)
1097 error ("Junk after end of expression.");
1098 return exp;
1099}
1100\f
1101/* Stuff for maintaining a stack of types. Currently just used by C, but
1102 probably useful for any language which declares its types "backwards". */
1103
47663de5
MS
1104static void
1105check_type_stack_depth (void)
c906108c
SS
1106{
1107 if (type_stack_depth == type_stack_size)
1108 {
1109 type_stack_size *= 2;
1110 type_stack = (union type_stack_elt *)
1111 xrealloc ((char *) type_stack, type_stack_size * sizeof (*type_stack));
1112 }
47663de5
MS
1113}
1114
1115void
1116push_type (enum type_pieces tp)
1117{
1118 check_type_stack_depth ();
c906108c
SS
1119 type_stack[type_stack_depth++].piece = tp;
1120}
1121
1122void
fba45db2 1123push_type_int (int n)
c906108c 1124{
47663de5 1125 check_type_stack_depth ();
c906108c
SS
1126 type_stack[type_stack_depth++].int_val = n;
1127}
1128
47663de5
MS
1129void
1130push_type_address_space (char *string)
1131{
1132 push_type_int (address_space_name_to_int (string));
1133}
1134
c5aa993b 1135enum type_pieces
fba45db2 1136pop_type (void)
c906108c
SS
1137{
1138 if (type_stack_depth)
1139 return type_stack[--type_stack_depth].piece;
1140 return tp_end;
1141}
1142
1143int
fba45db2 1144pop_type_int (void)
c906108c
SS
1145{
1146 if (type_stack_depth)
1147 return type_stack[--type_stack_depth].int_val;
1148 /* "Can't happen". */
1149 return 0;
1150}
1151
1152/* Pop the type stack and return the type which corresponds to FOLLOW_TYPE
1153 as modified by all the stuff on the stack. */
1154struct type *
fba45db2 1155follow_types (struct type *follow_type)
c906108c
SS
1156{
1157 int done = 0;
2e2394a0
MS
1158 int make_const = 0;
1159 int make_volatile = 0;
47663de5 1160 int make_addr_space = 0;
c906108c
SS
1161 int array_size;
1162 struct type *range_type;
1163
1164 while (!done)
1165 switch (pop_type ())
1166 {
1167 case tp_end:
1168 done = 1;
2e2394a0
MS
1169 if (make_const)
1170 follow_type = make_cv_type (make_const,
1171 TYPE_VOLATILE (follow_type),
1172 follow_type, 0);
1173 if (make_volatile)
1174 follow_type = make_cv_type (TYPE_CONST (follow_type),
1175 make_volatile,
1176 follow_type, 0);
47663de5
MS
1177 if (make_addr_space)
1178 follow_type = make_type_with_address_space (follow_type,
1179 make_addr_space);
1180 make_const = make_volatile = 0;
1181 make_addr_space = 0;
2e2394a0
MS
1182 break;
1183 case tp_const:
1184 make_const = 1;
1185 break;
1186 case tp_volatile:
1187 make_volatile = 1;
c906108c 1188 break;
47663de5
MS
1189 case tp_space_identifier:
1190 make_addr_space = pop_type_int ();
1191 break;
c906108c
SS
1192 case tp_pointer:
1193 follow_type = lookup_pointer_type (follow_type);
2e2394a0
MS
1194 if (make_const)
1195 follow_type = make_cv_type (make_const,
1196 TYPE_VOLATILE (follow_type),
1197 follow_type, 0);
1198 if (make_volatile)
1199 follow_type = make_cv_type (TYPE_CONST (follow_type),
1200 make_volatile,
1201 follow_type, 0);
47663de5
MS
1202 if (make_addr_space)
1203 follow_type = make_type_with_address_space (follow_type,
1204 make_addr_space);
2e2394a0 1205 make_const = make_volatile = 0;
47663de5 1206 make_addr_space = 0;
c906108c
SS
1207 break;
1208 case tp_reference:
1209 follow_type = lookup_reference_type (follow_type);
2e2394a0 1210 if (make_const)
47663de5
MS
1211 follow_type = make_cv_type (make_const,
1212 TYPE_VOLATILE (follow_type),
1213 follow_type, 0);
2e2394a0 1214 if (make_volatile)
47663de5
MS
1215 follow_type = make_cv_type (TYPE_CONST (follow_type),
1216 make_volatile,
1217 follow_type, 0);
1218 if (make_addr_space)
1219 follow_type = make_type_with_address_space (follow_type,
1220 make_addr_space);
2e2394a0 1221 make_const = make_volatile = 0;
47663de5 1222 make_addr_space = 0;
c906108c
SS
1223 break;
1224 case tp_array:
1225 array_size = pop_type_int ();
1226 /* FIXME-type-allocation: need a way to free this type when we are
1227 done with it. */
1228 range_type =
1229 create_range_type ((struct type *) NULL,
1230 builtin_type_int, 0,
1231 array_size >= 0 ? array_size - 1 : 0);
1232 follow_type =
1233 create_array_type ((struct type *) NULL,
1234 follow_type, range_type);
1235 if (array_size < 0)
c5aa993b 1236 TYPE_ARRAY_UPPER_BOUND_TYPE (follow_type)
c906108c
SS
1237 = BOUND_CANNOT_BE_DETERMINED;
1238 break;
1239 case tp_function:
1240 /* FIXME-type-allocation: need a way to free this type when we are
1241 done with it. */
1242 follow_type = lookup_function_type (follow_type);
1243 break;
1244 }
1245 return follow_type;
1246}
1247\f
a14ed312 1248static void build_parse (void);
ac9a91a7 1249static void
fba45db2 1250build_parse (void)
c906108c 1251{
cce74817
JM
1252 int i;
1253
c906108c
SS
1254 msym_text_symbol_type =
1255 init_type (TYPE_CODE_FUNC, 1, 0, "<text variable, no debug info>", NULL);
1256 TYPE_TARGET_TYPE (msym_text_symbol_type) = builtin_type_int;
1257 msym_data_symbol_type =
1258 init_type (TYPE_CODE_INT, TARGET_INT_BIT / HOST_CHAR_BIT, 0,
1259 "<data variable, no debug info>", NULL);
1260 msym_unknown_symbol_type =
1261 init_type (TYPE_CODE_INT, 1, 0,
1262 "<variable (not text or data), no debug info>",
1263 NULL);
ac9a91a7
JM
1264}
1265
f461f5cf
PM
1266/* This function avoids direct calls to fprintf
1267 in the parser generated debug code. */
1268void
1269parser_fprintf (FILE *x, const char *y, ...)
1270{
1271 va_list args;
1272 va_start (args, y);
1273 if (x == stderr)
1274 vfprintf_unfiltered (gdb_stderr, y, args);
1275 else
1276 {
1277 fprintf_unfiltered (gdb_stderr, " Unknown FILE used.\n");
1278 vfprintf_unfiltered (gdb_stderr, y, args);
1279 }
1280 va_end (args);
1281}
1282
ac9a91a7 1283void
fba45db2 1284_initialize_parse (void)
ac9a91a7
JM
1285{
1286 type_stack_size = 80;
1287 type_stack_depth = 0;
1288 type_stack = (union type_stack_elt *)
1289 xmalloc (type_stack_size * sizeof (*type_stack));
1290
1291 build_parse ();
c906108c 1292
0f71a2f6
JM
1293 /* FIXME - For the moment, handle types by swapping them in and out.
1294 Should be using the per-architecture data-pointer and a large
1295 struct. */
046a4708
AC
1296 DEPRECATED_REGISTER_GDBARCH_SWAP (msym_text_symbol_type);
1297 DEPRECATED_REGISTER_GDBARCH_SWAP (msym_data_symbol_type);
1298 DEPRECATED_REGISTER_GDBARCH_SWAP (msym_unknown_symbol_type);
1299 deprecated_register_gdbarch_swap (NULL, 0, build_parse);
0f71a2f6 1300
c906108c 1301 add_show_from_set (
5d161b24 1302 add_set_cmd ("expression", class_maintenance, var_zinteger,
c5aa993b
JM
1303 (char *) &expressiondebug,
1304 "Set expression debugging.\n\
c906108c 1305When non-zero, the internal representation of expressions will be printed.",
5d161b24
DB
1306 &setdebuglist),
1307 &showdebuglist);
c906108c 1308}
This page took 0.558395 seconds and 4 git commands to generate.