1 /* Parse expressions for GDB.
3 Copyright 1986, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
4 1997, 1998, 1999, 2000, 2001, 2004 Free Software Foundation, Inc.
6 Modified from expread.y by the Department of Computer Science at the
7 State University of New York at Buffalo, 1991.
9 This file is part of GDB.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA. */
26 /* Parse an expression from text in a string,
27 and return the result as a struct expression pointer.
28 That structure contains arithmetic operations in reverse polish,
29 with constants represented by operations that are followed by special data.
30 See expression.h for the details of the format.
31 What is important here is that it can be built up sequentially
32 during the process of parsing; the lower levels of the tree always
33 come first in the result. */
38 #include "gdb_string.h"
42 #include "expression.h"
46 #include "parser-defs.h"
48 #include "symfile.h" /* for overlay functions */
49 #include "inferior.h" /* for NUM_PSEUDO_REGS. NOTE: replace
50 with "gdbarch.h" when appropriate. */
52 #include "gdb_assert.h"
55 /* Standard set of definitions for printing, dumping, prefixifying,
56 * and evaluating expressions. */
58 const struct exp_descriptor exp_descriptor_standard
=
60 print_subexp_standard
,
61 operator_length_standard
,
63 dump_subexp_body_standard
,
64 evaluate_subexp_standard
67 /* Symbols which architectures can redefine. */
69 /* Some systems have routines whose names start with `$'. Giving this
70 macro a non-zero value tells GDB's expression parser to check for
71 such routines when parsing tokens that begin with `$'.
73 On HP-UX, certain system routines (millicode) have names beginning
74 with `$' or `$$'. For example, `$$dyncall' is a millicode routine
75 that handles inter-space procedure calls on PA-RISC. */
76 #ifndef SYMBOLS_CAN_START_WITH_DOLLAR
77 #define SYMBOLS_CAN_START_WITH_DOLLAR (0)
82 /* Global variables declared in parser-defs.h (and commented there). */
83 struct expression
*expout
;
86 struct block
*expression_context_block
;
87 CORE_ADDR expression_context_pc
;
88 struct block
*innermost_block
;
90 union type_stack_elt
*type_stack
;
91 int type_stack_depth
, type_stack_size
;
98 static int expressiondebug
= 0;
100 static void free_funcalls (void *ignore
);
102 static void prefixify_expression (struct expression
*);
104 static void prefixify_subexp (struct expression
*, struct expression
*, int,
107 static struct expression
*parse_exp_in_context (char **, struct block
*, int,
110 void _initialize_parse (void);
112 /* Data structure for saving values of arglist_len for function calls whose
113 arguments contain other function calls. */
117 struct funcall
*next
;
121 static struct funcall
*funcall_chain
;
123 /* Begin counting arguments for a function call,
124 saving the data about any containing call. */
131 new = (struct funcall
*) xmalloc (sizeof (struct funcall
));
132 new->next
= funcall_chain
;
133 new->arglist_len
= arglist_len
;
138 /* Return the number of arguments in a function call just terminated,
139 and restore the data for the containing function call. */
144 int val
= arglist_len
;
145 struct funcall
*call
= funcall_chain
;
146 funcall_chain
= call
->next
;
147 arglist_len
= call
->arglist_len
;
152 /* Free everything in the funcall chain.
153 Used when there is an error inside parsing. */
156 free_funcalls (void *ignore
)
158 struct funcall
*call
, *next
;
160 for (call
= funcall_chain
; call
; call
= next
)
167 /* This page contains the functions for adding data to the struct expression
168 being constructed. */
170 /* Add one element to the end of the expression. */
172 /* To avoid a bug in the Sun 4 compiler, we pass things that can fit into
173 a register through here */
176 write_exp_elt (union exp_element expelt
)
178 if (expout_ptr
>= expout_size
)
181 expout
= (struct expression
*)
182 xrealloc ((char *) expout
, sizeof (struct expression
)
183 + EXP_ELEM_TO_BYTES (expout_size
));
185 expout
->elts
[expout_ptr
++] = expelt
;
189 write_exp_elt_opcode (enum exp_opcode expelt
)
191 union exp_element tmp
;
199 write_exp_elt_sym (struct symbol
*expelt
)
201 union exp_element tmp
;
209 write_exp_elt_block (struct block
*b
)
211 union exp_element tmp
;
217 write_exp_elt_longcst (LONGEST expelt
)
219 union exp_element tmp
;
221 tmp
.longconst
= expelt
;
227 write_exp_elt_dblcst (DOUBLEST expelt
)
229 union exp_element tmp
;
231 tmp
.doubleconst
= expelt
;
237 write_exp_elt_type (struct type
*expelt
)
239 union exp_element tmp
;
247 write_exp_elt_intern (struct internalvar
*expelt
)
249 union exp_element tmp
;
251 tmp
.internalvar
= expelt
;
256 /* Add a string constant to the end of the expression.
258 String constants are stored by first writing an expression element
259 that contains the length of the string, then stuffing the string
260 constant itself into however many expression elements are needed
261 to hold it, and then writing another expression element that contains
262 the length of the string. I.E. an expression element at each end of
263 the string records the string length, so you can skip over the
264 expression elements containing the actual string bytes from either
265 end of the string. Note that this also allows gdb to handle
266 strings with embedded null bytes, as is required for some languages.
268 Don't be fooled by the fact that the string is null byte terminated,
269 this is strictly for the convenience of debugging gdb itself. Gdb
270 Gdb does not depend up the string being null terminated, since the
271 actual length is recorded in expression elements at each end of the
272 string. The null byte is taken into consideration when computing how
273 many expression elements are required to hold the string constant, of
278 write_exp_string (struct stoken str
)
280 int len
= str
.length
;
284 /* Compute the number of expression elements required to hold the string
285 (including a null byte terminator), along with one expression element
286 at each end to record the actual string length (not including the
287 null byte terminator). */
289 lenelt
= 2 + BYTES_TO_EXP_ELEM (len
+ 1);
291 /* Ensure that we have enough available expression elements to store
294 if ((expout_ptr
+ lenelt
) >= expout_size
)
296 expout_size
= max (expout_size
* 2, expout_ptr
+ lenelt
+ 10);
297 expout
= (struct expression
*)
298 xrealloc ((char *) expout
, (sizeof (struct expression
)
299 + EXP_ELEM_TO_BYTES (expout_size
)));
302 /* Write the leading length expression element (which advances the current
303 expression element index), then write the string constant followed by a
304 terminating null byte, and then write the trailing length expression
307 write_exp_elt_longcst ((LONGEST
) len
);
308 strdata
= (char *) &expout
->elts
[expout_ptr
];
309 memcpy (strdata
, str
.ptr
, len
);
310 *(strdata
+ len
) = '\0';
311 expout_ptr
+= lenelt
- 2;
312 write_exp_elt_longcst ((LONGEST
) len
);
315 /* Add a bitstring constant to the end of the expression.
317 Bitstring constants are stored by first writing an expression element
318 that contains the length of the bitstring (in bits), then stuffing the
319 bitstring constant itself into however many expression elements are
320 needed to hold it, and then writing another expression element that
321 contains the length of the bitstring. I.E. an expression element at
322 each end of the bitstring records the bitstring length, so you can skip
323 over the expression elements containing the actual bitstring bytes from
324 either end of the bitstring. */
327 write_exp_bitstring (struct stoken str
)
329 int bits
= str
.length
; /* length in bits */
330 int len
= (bits
+ HOST_CHAR_BIT
- 1) / HOST_CHAR_BIT
;
334 /* Compute the number of expression elements required to hold the bitstring,
335 along with one expression element at each end to record the actual
336 bitstring length in bits. */
338 lenelt
= 2 + BYTES_TO_EXP_ELEM (len
);
340 /* Ensure that we have enough available expression elements to store
343 if ((expout_ptr
+ lenelt
) >= expout_size
)
345 expout_size
= max (expout_size
* 2, expout_ptr
+ lenelt
+ 10);
346 expout
= (struct expression
*)
347 xrealloc ((char *) expout
, (sizeof (struct expression
)
348 + EXP_ELEM_TO_BYTES (expout_size
)));
351 /* Write the leading length expression element (which advances the current
352 expression element index), then write the bitstring constant, and then
353 write the trailing length expression element. */
355 write_exp_elt_longcst ((LONGEST
) bits
);
356 strdata
= (char *) &expout
->elts
[expout_ptr
];
357 memcpy (strdata
, str
.ptr
, len
);
358 expout_ptr
+= lenelt
- 2;
359 write_exp_elt_longcst ((LONGEST
) bits
);
362 /* Add the appropriate elements for a minimal symbol to the end of
363 the expression. The rationale behind passing in text_symbol_type and
364 data_symbol_type was so that Modula-2 could pass in WORD for
365 data_symbol_type. Perhaps it still is useful to have those types vary
366 based on the language, but they no longer have names like "int", so
367 the initial rationale is gone. */
369 static struct type
*msym_text_symbol_type
;
370 static struct type
*msym_data_symbol_type
;
371 static struct type
*msym_unknown_symbol_type
;
374 write_exp_msymbol (struct minimal_symbol
*msymbol
,
375 struct type
*text_symbol_type
,
376 struct type
*data_symbol_type
)
380 write_exp_elt_opcode (OP_LONG
);
381 /* Let's make the type big enough to hold a 64-bit address. */
382 write_exp_elt_type (builtin_type_CORE_ADDR
);
384 addr
= SYMBOL_VALUE_ADDRESS (msymbol
);
385 if (overlay_debugging
)
386 addr
= symbol_overlayed_address (addr
, SYMBOL_BFD_SECTION (msymbol
));
387 write_exp_elt_longcst ((LONGEST
) addr
);
389 write_exp_elt_opcode (OP_LONG
);
391 write_exp_elt_opcode (UNOP_MEMVAL
);
392 switch (msymbol
->type
)
396 case mst_solib_trampoline
:
397 write_exp_elt_type (msym_text_symbol_type
);
404 write_exp_elt_type (msym_data_symbol_type
);
408 write_exp_elt_type (msym_unknown_symbol_type
);
411 write_exp_elt_opcode (UNOP_MEMVAL
);
414 /* Recognize tokens that start with '$'. These include:
416 $regname A native register name or a "standard
419 $variable A convenience variable with a name chosen
422 $digits Value history with index <digits>, starting
423 from the first value which has index 1.
425 $$digits Value history with index <digits> relative
426 to the last value. I.E. $$0 is the last
427 value, $$1 is the one previous to that, $$2
428 is the one previous to $$1, etc.
430 $ | $0 | $$0 The last value in the value history.
432 $$ An abbreviation for the second to the last
433 value in the value history, I.E. $$1
438 write_dollar_variable (struct stoken str
)
440 /* Handle the tokens $digits; also $ (short for $0) and $$ (short for $$1)
441 and $$digits (equivalent to $<-digits> if you could type that). */
445 /* Double dollar means negate the number and add -1 as well.
446 Thus $$ alone means -1. */
447 if (str
.length
>= 2 && str
.ptr
[1] == '$')
454 /* Just dollars (one or two) */
458 /* Is the rest of the token digits? */
459 for (; i
< str
.length
; i
++)
460 if (!(str
.ptr
[i
] >= '0' && str
.ptr
[i
] <= '9'))
464 i
= atoi (str
.ptr
+ 1 + negate
);
470 /* Handle tokens that refer to machine registers:
471 $ followed by a register name. */
472 i
= frame_map_name_to_regnum (deprecated_selected_frame
,
473 str
.ptr
+ 1, str
.length
- 1);
475 goto handle_register
;
477 if (SYMBOLS_CAN_START_WITH_DOLLAR
)
479 struct symbol
*sym
= NULL
;
480 struct minimal_symbol
*msym
= NULL
;
482 /* On HP-UX, certain system routines (millicode) have names beginning
483 with $ or $$, e.g. $$dyncall, which handles inter-space procedure
484 calls on PA-RISC. Check for those, first. */
486 /* This code is not enabled on non HP-UX systems, since worst case
487 symbol table lookup performance is awful, to put it mildly. */
489 sym
= lookup_symbol (copy_name (str
), (struct block
*) NULL
,
490 VAR_DOMAIN
, (int *) NULL
, (struct symtab
**) NULL
);
493 write_exp_elt_opcode (OP_VAR_VALUE
);
494 write_exp_elt_block (block_found
); /* set by lookup_symbol */
495 write_exp_elt_sym (sym
);
496 write_exp_elt_opcode (OP_VAR_VALUE
);
499 msym
= lookup_minimal_symbol (copy_name (str
), NULL
, NULL
);
502 write_exp_msymbol (msym
,
503 lookup_function_type (builtin_type_int
),
509 /* Any other names starting in $ are debugger internal variables. */
511 write_exp_elt_opcode (OP_INTERNALVAR
);
512 write_exp_elt_intern (lookup_internalvar (copy_name (str
) + 1));
513 write_exp_elt_opcode (OP_INTERNALVAR
);
516 write_exp_elt_opcode (OP_LAST
);
517 write_exp_elt_longcst ((LONGEST
) i
);
518 write_exp_elt_opcode (OP_LAST
);
521 write_exp_elt_opcode (OP_REGISTER
);
522 write_exp_elt_longcst (i
);
523 write_exp_elt_opcode (OP_REGISTER
);
528 /* Parse a string that is possibly a namespace / nested class
529 specification, i.e., something of the form A::B::C::x. Input
530 (NAME) is the entire string; LEN is the current valid length; the
531 output is a string, TOKEN, which points to the largest recognized
532 prefix which is a series of namespaces or classes. CLASS_PREFIX is
533 another output, which records whether a nested class spec was
534 recognized (= 1) or a fully qualified variable name was found (=
535 0). ARGPTR is side-effected (if non-NULL) to point to beyond the
536 string recognized and consumed by this routine.
538 The return value is a pointer to the symbol for the base class or
539 variable if found, or NULL if not found. Callers must check this
540 first -- if NULL, the outputs may not be correct.
542 This function is used c-exp.y. This is used specifically to get
543 around HP aCC (and possibly other compilers), which insists on
544 generating names with embedded colons for namespace or nested class
547 (Argument LEN is currently unused. 1997-08-27)
549 Callers must free memory allocated for the output string TOKEN. */
551 static const char coloncolon
[2] =
555 parse_nested_classes_for_hpacc (char *name
, int len
, char **token
,
556 int *class_prefix
, char **argptr
)
558 /* Comment below comes from decode_line_1 which has very similar
559 code, which is called for "break" command parsing. */
561 /* We have what looks like a class or namespace
562 scope specification (A::B), possibly with many
563 levels of namespaces or classes (A::B::C::D).
565 Some versions of the HP ANSI C++ compiler (as also possibly
566 other compilers) generate class/function/member names with
567 embedded double-colons if they are inside namespaces. To
568 handle this, we loop a few times, considering larger and
569 larger prefixes of the string as though they were single
570 symbols. So, if the initially supplied string is
571 A::B::C::D::foo, we have to look up "A", then "A::B",
572 then "A::B::C", then "A::B::C::D", and finally
573 "A::B::C::D::foo" as single, monolithic symbols, because
574 A, B, C or D may be namespaces.
576 Note that namespaces can nest only inside other
577 namespaces, and not inside classes. So we need only
578 consider *prefixes* of the string; there is no need to look up
579 "B::C" separately as a symbol in the previous example. */
585 struct symbol
*sym_class
= NULL
;
586 struct symbol
*sym_var
= NULL
;
592 /* Check for HP-compiled executable -- in other cases
593 return NULL, and caller must default to standard GDB
596 if (!deprecated_hp_som_som_object_present
)
597 return (struct symbol
*) NULL
;
601 /* Skip over whitespace and possible global "::" */
602 while (*p
&& (*p
== ' ' || *p
== '\t'))
604 if (p
[0] == ':' && p
[1] == ':')
606 while (*p
&& (*p
== ' ' || *p
== '\t'))
611 /* Get to the end of the next namespace or class spec. */
612 /* If we're looking at some non-token, fail immediately */
614 if (!(isalpha (*p
) || *p
== '$' || *p
== '_'))
615 return (struct symbol
*) NULL
;
617 while (*p
&& (isalnum (*p
) || *p
== '$' || *p
== '_'))
622 /* If we have the start of a template specification,
623 scan right ahead to its end */
624 q
= find_template_name_end (p
);
631 /* Skip over "::" and whitespace for next time around */
632 while (*p
&& (*p
== ' ' || *p
== '\t'))
634 if (p
[0] == ':' && p
[1] == ':')
636 while (*p
&& (*p
== ' ' || *p
== '\t'))
639 /* Done with tokens? */
640 if (!*p
|| !(isalpha (*p
) || *p
== '$' || *p
== '_'))
643 tmp
= (char *) alloca (prefix_len
+ end
- start
+ 3);
646 memcpy (tmp
, prefix
, prefix_len
);
647 memcpy (tmp
+ prefix_len
, coloncolon
, 2);
648 memcpy (tmp
+ prefix_len
+ 2, start
, end
- start
);
649 tmp
[prefix_len
+ 2 + end
- start
] = '\000';
653 memcpy (tmp
, start
, end
- start
);
654 tmp
[end
- start
] = '\000';
658 prefix_len
= strlen (prefix
);
660 /* See if the prefix we have now is something we know about */
664 /* More tokens to process, so this must be a class/namespace */
665 sym_class
= lookup_symbol (prefix
, 0, STRUCT_DOMAIN
,
666 0, (struct symtab
**) NULL
);
670 /* No more tokens, so try as a variable first */
671 sym_var
= lookup_symbol (prefix
, 0, VAR_DOMAIN
,
672 0, (struct symtab
**) NULL
);
673 /* If failed, try as class/namespace */
675 sym_class
= lookup_symbol (prefix
, 0, STRUCT_DOMAIN
,
676 0, (struct symtab
**) NULL
);
681 (t
= check_typedef (SYMBOL_TYPE (sym_class
)),
682 (TYPE_CODE (t
) == TYPE_CODE_STRUCT
683 || TYPE_CODE (t
) == TYPE_CODE_UNION
))))
685 /* We found a valid token */
686 *token
= (char *) xmalloc (prefix_len
+ 1);
687 memcpy (*token
, prefix
, prefix_len
);
688 (*token
)[prefix_len
] = '\000';
692 /* No variable or class/namespace found, no more tokens */
694 return (struct symbol
*) NULL
;
697 /* Out of loop, so we must have found a valid token */
704 *argptr
= done
? p
: end
;
706 return sym_var
? sym_var
: sym_class
; /* found */
710 find_template_name_end (char *p
)
713 int just_seen_right
= 0;
714 int just_seen_colon
= 0;
715 int just_seen_space
= 0;
717 if (!p
|| (*p
!= '<'))
728 /* In future, may want to allow these?? */
731 depth
++; /* start nested template */
732 if (just_seen_colon
|| just_seen_right
|| just_seen_space
)
733 return 0; /* but not after : or :: or > or space */
736 if (just_seen_colon
|| just_seen_right
)
737 return 0; /* end a (nested?) template */
738 just_seen_right
= 1; /* but not after : or :: */
739 if (--depth
== 0) /* also disallow >>, insist on > > */
740 return ++p
; /* if outermost ended, return */
743 if (just_seen_space
|| (just_seen_colon
> 1))
744 return 0; /* nested class spec coming up */
745 just_seen_colon
++; /* we allow :: but not :::: */
750 if (!((*p
>= 'a' && *p
<= 'z') || /* allow token chars */
751 (*p
>= 'A' && *p
<= 'Z') ||
752 (*p
>= '0' && *p
<= '9') ||
753 (*p
== '_') || (*p
== ',') || /* commas for template args */
754 (*p
== '&') || (*p
== '*') || /* pointer and ref types */
755 (*p
== '(') || (*p
== ')') || /* function types */
756 (*p
== '[') || (*p
== ']'))) /* array types */
771 /* Return a null-terminated temporary copy of the name
772 of a string token. */
775 copy_name (struct stoken token
)
777 memcpy (namecopy
, token
.ptr
, token
.length
);
778 namecopy
[token
.length
] = 0;
782 /* Reverse an expression from suffix form (in which it is constructed)
783 to prefix form (in which we can conveniently print or execute it). */
786 prefixify_expression (struct expression
*expr
)
789 sizeof (struct expression
) + EXP_ELEM_TO_BYTES (expr
->nelts
);
790 struct expression
*temp
;
791 int inpos
= expr
->nelts
, outpos
= 0;
793 temp
= (struct expression
*) alloca (len
);
795 /* Copy the original expression into temp. */
796 memcpy (temp
, expr
, len
);
798 prefixify_subexp (temp
, expr
, inpos
, outpos
);
801 /* Return the number of exp_elements in the postfix subexpression
802 of EXPR whose operator is at index ENDPOS - 1 in EXPR. */
805 length_of_subexp (struct expression
*expr
, int endpos
)
809 operator_length (expr
, endpos
, &oplen
, &args
);
813 oplen
+= length_of_subexp (expr
, endpos
- oplen
);
820 /* Sets *OPLENP to the length of the operator whose (last) index is
821 ENDPOS - 1 in EXPR, and sets *ARGSP to the number of arguments that
825 operator_length (struct expression
*expr
, int endpos
, int *oplenp
, int *argsp
)
827 expr
->language_defn
->la_exp_desc
->operator_length (expr
, endpos
,
831 /* Default value for operator_length in exp_descriptor vectors. */
834 operator_length_standard (struct expression
*expr
, int endpos
,
835 int *oplenp
, int *argsp
)
842 error ("?error in operator_length_standard");
844 i
= (int) expr
->elts
[endpos
- 1].opcode
;
850 oplen
= longest_to_int (expr
->elts
[endpos
- 2].longconst
);
851 oplen
= 5 + BYTES_TO_EXP_ELEM (oplen
+ 1);
874 case OP_F77_UNDETERMINED_ARGLIST
:
876 args
= 1 + longest_to_int (expr
->elts
[endpos
- 2].longconst
);
879 case OP_OBJC_MSGCALL
: /* Objective C message (method) call */
881 args
= 1 + longest_to_int (expr
->elts
[endpos
- 2].longconst
);
909 case STRUCTOP_STRUCT
:
915 case OP_OBJC_NSSTRING
: /* Objective C Foundation Class NSString constant */
916 case OP_OBJC_SELECTOR
: /* Objective C "@selector" pseudo-op */
919 oplen
= longest_to_int (expr
->elts
[endpos
- 2].longconst
);
920 oplen
= 4 + BYTES_TO_EXP_ELEM (oplen
+ 1);
924 oplen
= longest_to_int (expr
->elts
[endpos
- 2].longconst
);
925 oplen
= (oplen
+ HOST_CHAR_BIT
- 1) / HOST_CHAR_BIT
;
926 oplen
= 4 + BYTES_TO_EXP_ELEM (oplen
);
931 args
= longest_to_int (expr
->elts
[endpos
- 2].longconst
);
932 args
-= longest_to_int (expr
->elts
[endpos
- 3].longconst
);
938 case TERNOP_SLICE_COUNT
:
943 case MULTI_SUBSCRIPT
:
945 args
= 1 + longest_to_int (expr
->elts
[endpos
- 2].longconst
);
948 case BINOP_ASSIGN_MODIFY
:
960 args
= 1 + (i
< (int) BINOP_END
);
967 /* Copy the subexpression ending just before index INEND in INEXPR
968 into OUTEXPR, starting at index OUTBEG.
969 In the process, convert it from suffix to prefix form. */
972 prefixify_subexp (struct expression
*inexpr
,
973 struct expression
*outexpr
, int inend
, int outbeg
)
979 enum exp_opcode opcode
;
981 operator_length (inexpr
, inend
, &oplen
, &args
);
983 /* Copy the final operator itself, from the end of the input
984 to the beginning of the output. */
986 memcpy (&outexpr
->elts
[outbeg
], &inexpr
->elts
[inend
],
987 EXP_ELEM_TO_BYTES (oplen
));
990 /* Find the lengths of the arg subexpressions. */
991 arglens
= (int *) alloca (args
* sizeof (int));
992 for (i
= args
- 1; i
>= 0; i
--)
994 oplen
= length_of_subexp (inexpr
, inend
);
999 /* Now copy each subexpression, preserving the order of
1000 the subexpressions, but prefixifying each one.
1001 In this loop, inend starts at the beginning of
1002 the expression this level is working on
1003 and marches forward over the arguments.
1004 outbeg does similarly in the output. */
1005 for (i
= 0; i
< args
; i
++)
1009 prefixify_subexp (inexpr
, outexpr
, inend
, outbeg
);
1014 /* This page contains the two entry points to this file. */
1016 /* Read an expression from the string *STRINGPTR points to,
1017 parse it, and return a pointer to a struct expression that we malloc.
1018 Use block BLOCK as the lexical context for variable names;
1019 if BLOCK is zero, use the block of the selected stack frame.
1020 Meanwhile, advance *STRINGPTR to point after the expression,
1021 at the first nonwhite character that is not part of the expression
1022 (possibly a null character).
1024 If COMMA is nonzero, stop if a comma is reached. */
1027 parse_exp_1 (char **stringptr
, struct block
*block
, int comma
)
1029 return parse_exp_in_context (stringptr
, block
, comma
, 0);
1032 /* As for parse_exp_1, except that if VOID_CONTEXT_P, then
1033 no value is expected from the expression. */
1035 static struct expression
*
1036 parse_exp_in_context (char **stringptr
, struct block
*block
, int comma
,
1039 struct cleanup
*old_chain
;
1041 lexptr
= *stringptr
;
1045 type_stack_depth
= 0;
1047 comma_terminates
= comma
;
1049 if (lexptr
== 0 || *lexptr
== 0)
1050 error_no_arg ("expression to compute");
1052 old_chain
= make_cleanup (free_funcalls
, 0 /*ignore*/);
1057 expression_context_block
= block
;
1058 expression_context_pc
= BLOCK_START (block
);
1061 expression_context_block
= get_selected_block (&expression_context_pc
);
1063 namecopy
= (char *) alloca (strlen (lexptr
) + 1);
1066 expout
= (struct expression
*)
1067 xmalloc (sizeof (struct expression
) + EXP_ELEM_TO_BYTES (expout_size
));
1068 expout
->language_defn
= current_language
;
1069 make_cleanup (free_current_contents
, &expout
);
1071 if (current_language
->la_parser ())
1072 current_language
->la_error (NULL
);
1074 discard_cleanups (old_chain
);
1076 /* Record the actual number of expression elements, and then
1077 reallocate the expression memory so that we free up any
1080 expout
->nelts
= expout_ptr
;
1081 expout
= (struct expression
*)
1082 xrealloc ((char *) expout
,
1083 sizeof (struct expression
) + EXP_ELEM_TO_BYTES (expout_ptr
));;
1085 /* Convert expression from postfix form as generated by yacc
1086 parser, to a prefix form. */
1088 if (expressiondebug
)
1089 dump_raw_expression (expout
, gdb_stdlog
,
1090 "before conversion to prefix form");
1092 prefixify_expression (expout
);
1094 current_language
->la_post_parser (&expout
, void_context_p
);
1096 if (expressiondebug
)
1097 dump_prefix_expression (expout
, gdb_stdlog
);
1099 *stringptr
= lexptr
;
1103 /* Parse STRING as an expression, and complain if this fails
1104 to use up all of the contents of STRING. */
1107 parse_expression (char *string
)
1109 struct expression
*exp
;
1110 exp
= parse_exp_1 (&string
, 0, 0);
1112 error ("Junk after end of expression.");
1117 /* As for parse_expression, except that if VOID_CONTEXT_P, then
1118 no value is expected from the expression. */
1121 parse_expression_in_context (char *string
, int void_context_p
)
1123 struct expression
*exp
;
1124 exp
= parse_exp_in_context (&string
, 0, 0, void_context_p
);
1125 if (*string
!= '\000')
1126 error ("Junk after end of expression.");
1130 /* A post-parser that does nothing */
1133 null_post_parser (struct expression
**exp
, int void_context_p
)
1137 /* Stuff for maintaining a stack of types. Currently just used by C, but
1138 probably useful for any language which declares its types "backwards". */
1141 check_type_stack_depth (void)
1143 if (type_stack_depth
== type_stack_size
)
1145 type_stack_size
*= 2;
1146 type_stack
= (union type_stack_elt
*)
1147 xrealloc ((char *) type_stack
, type_stack_size
* sizeof (*type_stack
));
1152 push_type (enum type_pieces tp
)
1154 check_type_stack_depth ();
1155 type_stack
[type_stack_depth
++].piece
= tp
;
1159 push_type_int (int n
)
1161 check_type_stack_depth ();
1162 type_stack
[type_stack_depth
++].int_val
= n
;
1166 push_type_address_space (char *string
)
1168 push_type_int (address_space_name_to_int (string
));
1174 if (type_stack_depth
)
1175 return type_stack
[--type_stack_depth
].piece
;
1182 if (type_stack_depth
)
1183 return type_stack
[--type_stack_depth
].int_val
;
1184 /* "Can't happen". */
1188 /* Pop the type stack and return the type which corresponds to FOLLOW_TYPE
1189 as modified by all the stuff on the stack. */
1191 follow_types (struct type
*follow_type
)
1195 int make_volatile
= 0;
1196 int make_addr_space
= 0;
1198 struct type
*range_type
;
1201 switch (pop_type ())
1206 follow_type
= make_cv_type (make_const
,
1207 TYPE_VOLATILE (follow_type
),
1210 follow_type
= make_cv_type (TYPE_CONST (follow_type
),
1213 if (make_addr_space
)
1214 follow_type
= make_type_with_address_space (follow_type
,
1216 make_const
= make_volatile
= 0;
1217 make_addr_space
= 0;
1225 case tp_space_identifier
:
1226 make_addr_space
= pop_type_int ();
1229 follow_type
= lookup_pointer_type (follow_type
);
1231 follow_type
= make_cv_type (make_const
,
1232 TYPE_VOLATILE (follow_type
),
1235 follow_type
= make_cv_type (TYPE_CONST (follow_type
),
1238 if (make_addr_space
)
1239 follow_type
= make_type_with_address_space (follow_type
,
1241 make_const
= make_volatile
= 0;
1242 make_addr_space
= 0;
1245 follow_type
= lookup_reference_type (follow_type
);
1247 follow_type
= make_cv_type (make_const
,
1248 TYPE_VOLATILE (follow_type
),
1251 follow_type
= make_cv_type (TYPE_CONST (follow_type
),
1254 if (make_addr_space
)
1255 follow_type
= make_type_with_address_space (follow_type
,
1257 make_const
= make_volatile
= 0;
1258 make_addr_space
= 0;
1261 array_size
= pop_type_int ();
1262 /* FIXME-type-allocation: need a way to free this type when we are
1265 create_range_type ((struct type
*) NULL
,
1266 builtin_type_int
, 0,
1267 array_size
>= 0 ? array_size
- 1 : 0);
1269 create_array_type ((struct type
*) NULL
,
1270 follow_type
, range_type
);
1272 TYPE_ARRAY_UPPER_BOUND_TYPE (follow_type
)
1273 = BOUND_CANNOT_BE_DETERMINED
;
1276 /* FIXME-type-allocation: need a way to free this type when we are
1278 follow_type
= lookup_function_type (follow_type
);
1284 static void build_parse (void);
1290 msym_text_symbol_type
=
1291 init_type (TYPE_CODE_FUNC
, 1, 0, "<text variable, no debug info>", NULL
);
1292 TYPE_TARGET_TYPE (msym_text_symbol_type
) = builtin_type_int
;
1293 msym_data_symbol_type
=
1294 init_type (TYPE_CODE_INT
, TARGET_INT_BIT
/ HOST_CHAR_BIT
, 0,
1295 "<data variable, no debug info>", NULL
);
1296 msym_unknown_symbol_type
=
1297 init_type (TYPE_CODE_INT
, 1, 0,
1298 "<variable (not text or data), no debug info>",
1302 /* This function avoids direct calls to fprintf
1303 in the parser generated debug code. */
1305 parser_fprintf (FILE *x
, const char *y
, ...)
1310 vfprintf_unfiltered (gdb_stderr
, y
, args
);
1313 fprintf_unfiltered (gdb_stderr
, " Unknown FILE used.\n");
1314 vfprintf_unfiltered (gdb_stderr
, y
, args
);
1320 _initialize_parse (void)
1322 type_stack_size
= 80;
1323 type_stack_depth
= 0;
1324 type_stack
= (union type_stack_elt
*)
1325 xmalloc (type_stack_size
* sizeof (*type_stack
));
1329 /* FIXME - For the moment, handle types by swapping them in and out.
1330 Should be using the per-architecture data-pointer and a large
1332 DEPRECATED_REGISTER_GDBARCH_SWAP (msym_text_symbol_type
);
1333 DEPRECATED_REGISTER_GDBARCH_SWAP (msym_data_symbol_type
);
1334 DEPRECATED_REGISTER_GDBARCH_SWAP (msym_unknown_symbol_type
);
1335 deprecated_register_gdbarch_swap (NULL
, 0, build_parse
);
1338 add_set_cmd ("expression", class_maintenance
, var_zinteger
,
1339 (char *) &expressiondebug
,
1340 "Set expression debugging.\n\
1341 When non-zero, the internal representation of expressions will be printed.",