1 /* Evaluate expressions for GDB.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
24 #include "gdb_string.h"
28 #include "expression.h"
31 #include "language.h" /* For CAST_IS_CONVERSION */
32 #include "f-lang.h" /* for array bound stuff */
35 /* Defined in symtab.c */
36 extern int hp_som_som_object_present;
38 /* This is defined in valops.c */
39 extern int overload_resolution;
41 /* JYG: lookup rtti type of STRUCTOP_PTR when this is set to continue
42 on with successful lookup for member/method of the rtti type. */
43 extern int objectprint;
45 /* Prototypes for local functions. */
47 static value_ptr evaluate_subexp_for_sizeof (struct expression *, int *);
49 static value_ptr evaluate_subexp_for_address (struct expression *,
52 static value_ptr evaluate_subexp (struct type *, struct expression *,
55 static char *get_label (struct expression *, int *);
58 evaluate_struct_tuple (value_ptr, struct expression *, int *,
62 init_array_element (value_ptr, value_ptr, struct expression *,
63 int *, enum noside, LONGEST, LONGEST);
66 evaluate_subexp (struct type *expect_type, register struct expression *exp,
67 register int *pos, enum noside noside)
69 return (*exp->language_defn->evaluate_exp) (expect_type, exp, pos, noside);
72 /* Parse the string EXP as a C expression, evaluate it,
73 and return the result as a number. */
76 parse_and_eval_address (char *exp)
78 struct expression *expr = parse_expression (exp);
79 register CORE_ADDR addr;
80 register struct cleanup *old_chain =
81 make_cleanup (free_current_contents, &expr);
83 addr = value_as_pointer (evaluate_expression (expr));
84 do_cleanups (old_chain);
88 /* Like parse_and_eval_address but takes a pointer to a char * variable
89 and advanced that variable across the characters parsed. */
92 parse_and_eval_address_1 (char **expptr)
94 struct expression *expr = parse_exp_1 (expptr, (struct block *) 0, 0);
95 register CORE_ADDR addr;
96 register struct cleanup *old_chain =
97 make_cleanup (free_current_contents, &expr);
99 addr = value_as_pointer (evaluate_expression (expr));
100 do_cleanups (old_chain);
104 /* Like parse_and_eval_address, but treats the value of the expression
105 as an integer, not an address, returns a LONGEST, not a CORE_ADDR */
107 parse_and_eval_long (char *exp)
109 struct expression *expr = parse_expression (exp);
110 register LONGEST retval;
111 register struct cleanup *old_chain =
112 make_cleanup (free_current_contents, &expr);
114 retval = value_as_long (evaluate_expression (expr));
115 do_cleanups (old_chain);
120 parse_and_eval (char *exp)
122 struct expression *expr = parse_expression (exp);
123 register value_ptr val;
124 register struct cleanup *old_chain
125 = make_cleanup (free_current_contents, &expr);
127 val = evaluate_expression (expr);
128 do_cleanups (old_chain);
132 /* Parse up to a comma (or to a closeparen)
133 in the string EXPP as an expression, evaluate it, and return the value.
134 EXPP is advanced to point to the comma. */
137 parse_to_comma_and_eval (char **expp)
139 struct expression *expr = parse_exp_1 (expp, (struct block *) 0, 1);
140 register value_ptr val;
141 register struct cleanup *old_chain
142 = make_cleanup (free_current_contents, &expr);
144 val = evaluate_expression (expr);
145 do_cleanups (old_chain);
149 /* Evaluate an expression in internal prefix form
150 such as is constructed by parse.y.
152 See expression.h for info on the format of an expression. */
155 evaluate_expression (struct expression *exp)
158 return evaluate_subexp (NULL_TYPE, exp, &pc, EVAL_NORMAL);
161 /* Evaluate an expression, avoiding all memory references
162 and getting a value whose type alone is correct. */
165 evaluate_type (struct expression *exp)
168 return evaluate_subexp (NULL_TYPE, exp, &pc, EVAL_AVOID_SIDE_EFFECTS);
171 /* If the next expression is an OP_LABELED, skips past it,
172 returning the label. Otherwise, does nothing and returns NULL. */
175 get_label (register struct expression *exp, int *pos)
177 if (exp->elts[*pos].opcode == OP_LABELED)
180 char *name = &exp->elts[pc + 2].string;
181 int tem = longest_to_int (exp->elts[pc + 1].longconst);
182 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
189 /* This function evaluates tuples (in Chill) or brace-initializers
190 (in C/C++) for structure types. */
193 evaluate_struct_tuple (value_ptr struct_val, register struct expression *exp,
194 register int *pos, enum noside noside, int nargs)
196 struct type *struct_type = check_typedef (VALUE_TYPE (struct_val));
197 struct type *substruct_type = struct_type;
198 struct type *field_type;
205 value_ptr val = NULL;
210 /* Skip past the labels, and count them. */
211 while (get_label (exp, pos) != NULL)
216 char *label = get_label (exp, &pc);
219 for (fieldno = 0; fieldno < TYPE_NFIELDS (struct_type);
222 char *field_name = TYPE_FIELD_NAME (struct_type, fieldno);
223 if (field_name != NULL && STREQ (field_name, label))
226 subfieldno = fieldno;
227 substruct_type = struct_type;
231 for (fieldno = 0; fieldno < TYPE_NFIELDS (struct_type);
234 char *field_name = TYPE_FIELD_NAME (struct_type, fieldno);
235 field_type = TYPE_FIELD_TYPE (struct_type, fieldno);
236 if ((field_name == 0 || *field_name == '\0')
237 && TYPE_CODE (field_type) == TYPE_CODE_UNION)
240 for (; variantno < TYPE_NFIELDS (field_type);
244 = TYPE_FIELD_TYPE (field_type, variantno);
245 if (TYPE_CODE (substruct_type) == TYPE_CODE_STRUCT)
248 subfieldno < TYPE_NFIELDS (substruct_type);
251 if (STREQ (TYPE_FIELD_NAME (substruct_type,
262 error ("there is no field named %s", label);
268 /* Unlabelled tuple element - go to next field. */
272 if (subfieldno >= TYPE_NFIELDS (substruct_type))
275 substruct_type = struct_type;
281 subfieldno = fieldno;
282 if (fieldno >= TYPE_NFIELDS (struct_type))
283 error ("too many initializers");
284 field_type = TYPE_FIELD_TYPE (struct_type, fieldno);
285 if (TYPE_CODE (field_type) == TYPE_CODE_UNION
286 && TYPE_FIELD_NAME (struct_type, fieldno)[0] == '0')
287 error ("don't know which variant you want to set");
291 /* Here, struct_type is the type of the inner struct,
292 while substruct_type is the type of the inner struct.
293 These are the same for normal structures, but a variant struct
294 contains anonymous union fields that contain substruct fields.
295 The value fieldno is the index of the top-level (normal or
296 anonymous union) field in struct_field, while the value
297 subfieldno is the index of the actual real (named inner) field
298 in substruct_type. */
300 field_type = TYPE_FIELD_TYPE (substruct_type, subfieldno);
302 val = evaluate_subexp (field_type, exp, pos, noside);
304 /* Now actually set the field in struct_val. */
306 /* Assign val to field fieldno. */
307 if (VALUE_TYPE (val) != field_type)
308 val = value_cast (field_type, val);
310 bitsize = TYPE_FIELD_BITSIZE (substruct_type, subfieldno);
311 bitpos = TYPE_FIELD_BITPOS (struct_type, fieldno);
313 bitpos += TYPE_FIELD_BITPOS (substruct_type, subfieldno);
314 addr = VALUE_CONTENTS (struct_val) + bitpos / 8;
316 modify_field (addr, value_as_long (val),
317 bitpos % 8, bitsize);
319 memcpy (addr, VALUE_CONTENTS (val),
320 TYPE_LENGTH (VALUE_TYPE (val)));
322 while (--nlabels > 0);
327 /* Recursive helper function for setting elements of array tuples for Chill.
328 The target is ARRAY (which has bounds LOW_BOUND to HIGH_BOUND);
329 the element value is ELEMENT;
330 EXP, POS and NOSIDE are as usual.
331 Evaluates index expresions and sets the specified element(s) of
333 Returns last index value. */
336 init_array_element (value_ptr array, value_ptr element,
337 register struct expression *exp, register int *pos,
338 enum noside noside, LONGEST low_bound, LONGEST high_bound)
341 int element_size = TYPE_LENGTH (VALUE_TYPE (element));
342 if (exp->elts[*pos].opcode == BINOP_COMMA)
345 init_array_element (array, element, exp, pos, noside,
346 low_bound, high_bound);
347 return init_array_element (array, element,
348 exp, pos, noside, low_bound, high_bound);
350 else if (exp->elts[*pos].opcode == BINOP_RANGE)
354 low = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
355 high = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
356 if (low < low_bound || high > high_bound)
357 error ("tuple range index out of range");
358 for (index = low; index <= high; index++)
360 memcpy (VALUE_CONTENTS_RAW (array)
361 + (index - low_bound) * element_size,
362 VALUE_CONTENTS (element), element_size);
367 index = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
368 if (index < low_bound || index > high_bound)
369 error ("tuple index out of range");
370 memcpy (VALUE_CONTENTS_RAW (array) + (index - low_bound) * element_size,
371 VALUE_CONTENTS (element), element_size);
377 evaluate_subexp_standard (struct type *expect_type,
378 register struct expression *exp, register int *pos,
383 register int pc, pc2 = 0, oldpos;
384 register value_ptr arg1 = NULL, arg2 = NULL, arg3;
388 int upper, lower, retcode;
392 struct type **arg_types;
396 op = exp->elts[pc].opcode;
401 tem = longest_to_int (exp->elts[pc + 2].longconst);
402 (*pos) += 4 + BYTES_TO_EXP_ELEM (tem + 1);
403 arg1 = value_struct_elt_for_reference (exp->elts[pc + 1].type,
405 exp->elts[pc + 1].type,
406 &exp->elts[pc + 3].string,
409 error ("There is no field named %s", &exp->elts[pc + 3].string);
414 return value_from_longest (exp->elts[pc + 1].type,
415 exp->elts[pc + 2].longconst);
419 return value_from_double (exp->elts[pc + 1].type,
420 exp->elts[pc + 2].doubleconst);
424 if (noside == EVAL_SKIP)
427 /* JYG: We used to just return value_zero of the symbol type
428 if we're asked to avoid side effects. Otherwise we return
429 value_of_variable (...). However I'm not sure if
430 value_of_variable () has any side effect.
431 We need a full value object returned here for whatis_exp ()
432 to call evaluate_type () and then pass the full value to
433 value_rtti_target_type () if we are dealing with a pointer
434 or reference to a base class and print object is on. */
436 return value_of_variable (exp->elts[pc + 2].symbol,
437 exp->elts[pc + 1].block);
442 access_value_history (longest_to_int (exp->elts[pc + 1].longconst));
446 int regno = longest_to_int (exp->elts[pc + 1].longconst);
447 value_ptr val = value_of_register (regno);
451 error ("Value of register %s not available.", REGISTER_NAME (regno));
457 return value_from_longest (LA_BOOL_TYPE,
458 exp->elts[pc + 1].longconst);
462 return value_of_internalvar (exp->elts[pc + 1].internalvar);
465 tem = longest_to_int (exp->elts[pc + 1].longconst);
466 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
467 if (noside == EVAL_SKIP)
469 return value_string (&exp->elts[pc + 2].string, tem);
472 tem = longest_to_int (exp->elts[pc + 1].longconst);
474 += 3 + BYTES_TO_EXP_ELEM ((tem + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT);
475 if (noside == EVAL_SKIP)
477 return value_bitstring (&exp->elts[pc + 2].string, tem);
482 tem2 = longest_to_int (exp->elts[pc + 1].longconst);
483 tem3 = longest_to_int (exp->elts[pc + 2].longconst);
484 nargs = tem3 - tem2 + 1;
485 type = expect_type ? check_typedef (expect_type) : NULL_TYPE;
487 if (expect_type != NULL_TYPE && noside != EVAL_SKIP
488 && TYPE_CODE (type) == TYPE_CODE_STRUCT)
490 value_ptr rec = allocate_value (expect_type);
491 memset (VALUE_CONTENTS_RAW (rec), '\0', TYPE_LENGTH (type));
492 return evaluate_struct_tuple (rec, exp, pos, noside, nargs);
495 if (expect_type != NULL_TYPE && noside != EVAL_SKIP
496 && TYPE_CODE (type) == TYPE_CODE_ARRAY)
498 struct type *range_type = TYPE_FIELD_TYPE (type, 0);
499 struct type *element_type = TYPE_TARGET_TYPE (type);
500 value_ptr array = allocate_value (expect_type);
501 int element_size = TYPE_LENGTH (check_typedef (element_type));
502 LONGEST low_bound, high_bound, index;
503 if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
506 high_bound = (TYPE_LENGTH (type) / element_size) - 1;
509 memset (VALUE_CONTENTS_RAW (array), 0, TYPE_LENGTH (expect_type));
510 for (tem = nargs; --nargs >= 0;)
514 if (exp->elts[*pos].opcode == BINOP_RANGE)
517 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
519 element = evaluate_subexp (element_type, exp, pos, noside);
520 if (VALUE_TYPE (element) != element_type)
521 element = value_cast (element_type, element);
524 int continue_pc = *pos;
526 index = init_array_element (array, element, exp, pos, noside,
527 low_bound, high_bound);
532 if (index > high_bound)
533 /* to avoid memory corruption */
534 error ("Too many array elements");
535 memcpy (VALUE_CONTENTS_RAW (array)
536 + (index - low_bound) * element_size,
537 VALUE_CONTENTS (element),
545 if (expect_type != NULL_TYPE && noside != EVAL_SKIP
546 && TYPE_CODE (type) == TYPE_CODE_SET)
548 value_ptr set = allocate_value (expect_type);
549 char *valaddr = VALUE_CONTENTS_RAW (set);
550 struct type *element_type = TYPE_INDEX_TYPE (type);
551 struct type *check_type = element_type;
552 LONGEST low_bound, high_bound;
554 /* get targettype of elementtype */
555 while (TYPE_CODE (check_type) == TYPE_CODE_RANGE ||
556 TYPE_CODE (check_type) == TYPE_CODE_TYPEDEF)
557 check_type = TYPE_TARGET_TYPE (check_type);
559 if (get_discrete_bounds (element_type, &low_bound, &high_bound) < 0)
560 error ("(power)set type with unknown size");
561 memset (valaddr, '\0', TYPE_LENGTH (type));
562 for (tem = 0; tem < nargs; tem++)
564 LONGEST range_low, range_high;
565 struct type *range_low_type, *range_high_type;
567 if (exp->elts[*pos].opcode == BINOP_RANGE)
570 elem_val = evaluate_subexp (element_type, exp, pos, noside);
571 range_low_type = VALUE_TYPE (elem_val);
572 range_low = value_as_long (elem_val);
573 elem_val = evaluate_subexp (element_type, exp, pos, noside);
574 range_high_type = VALUE_TYPE (elem_val);
575 range_high = value_as_long (elem_val);
579 elem_val = evaluate_subexp (element_type, exp, pos, noside);
580 range_low_type = range_high_type = VALUE_TYPE (elem_val);
581 range_low = range_high = value_as_long (elem_val);
583 /* check types of elements to avoid mixture of elements from
584 different types. Also check if type of element is "compatible"
585 with element type of powerset */
586 if (TYPE_CODE (range_low_type) == TYPE_CODE_RANGE)
587 range_low_type = TYPE_TARGET_TYPE (range_low_type);
588 if (TYPE_CODE (range_high_type) == TYPE_CODE_RANGE)
589 range_high_type = TYPE_TARGET_TYPE (range_high_type);
590 if ((TYPE_CODE (range_low_type) != TYPE_CODE (range_high_type)) ||
591 (TYPE_CODE (range_low_type) == TYPE_CODE_ENUM &&
592 (range_low_type != range_high_type)))
593 /* different element modes */
594 error ("POWERSET tuple elements of different mode");
595 if ((TYPE_CODE (check_type) != TYPE_CODE (range_low_type)) ||
596 (TYPE_CODE (check_type) == TYPE_CODE_ENUM &&
597 range_low_type != check_type))
598 error ("incompatible POWERSET tuple elements");
599 if (range_low > range_high)
601 warning ("empty POWERSET tuple range");
604 if (range_low < low_bound || range_high > high_bound)
605 error ("POWERSET tuple element out of range");
606 range_low -= low_bound;
607 range_high -= low_bound;
608 for (; range_low <= range_high; range_low++)
610 int bit_index = (unsigned) range_low % TARGET_CHAR_BIT;
612 bit_index = TARGET_CHAR_BIT - 1 - bit_index;
613 valaddr[(unsigned) range_low / TARGET_CHAR_BIT]
620 argvec = (value_ptr *) alloca (sizeof (value_ptr) * nargs);
621 for (tem = 0; tem < nargs; tem++)
623 /* Ensure that array expressions are coerced into pointer objects. */
624 argvec[tem] = evaluate_subexp_with_coercion (exp, pos, noside);
626 if (noside == EVAL_SKIP)
628 return value_array (tem2, tem3, argvec);
632 value_ptr array = evaluate_subexp (NULL_TYPE, exp, pos, noside);
634 = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
636 = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
637 if (noside == EVAL_SKIP)
639 return value_slice (array, lowbound, upper - lowbound + 1);
642 case TERNOP_SLICE_COUNT:
644 value_ptr array = evaluate_subexp (NULL_TYPE, exp, pos, noside);
646 = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
648 = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
649 return value_slice (array, lowbound, length);
653 /* Skip third and second args to evaluate the first one. */
654 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
655 if (value_logical_not (arg1))
657 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
658 return evaluate_subexp (NULL_TYPE, exp, pos, noside);
662 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
663 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
669 op = exp->elts[*pos].opcode;
670 nargs = longest_to_int (exp->elts[pc + 1].longconst);
671 /* Allocate arg vector, including space for the function to be
672 called in argvec[0] and a terminating NULL */
673 argvec = (value_ptr *) alloca (sizeof (value_ptr) * (nargs + 3));
674 if (op == STRUCTOP_MEMBER || op == STRUCTOP_MPTR)
678 /* 1997-08-01 Currently we do not support function invocation
679 via pointers-to-methods with HP aCC. Pointer does not point
680 to the function, but possibly to some thunk. */
681 if (hp_som_som_object_present)
683 error ("Not implemented: function invocation through pointer to method with HP aCC");
687 /* First, evaluate the structure into arg2 */
690 if (noside == EVAL_SKIP)
693 if (op == STRUCTOP_MEMBER)
695 arg2 = evaluate_subexp_for_address (exp, pos, noside);
699 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
702 /* If the function is a virtual function, then the
703 aggregate value (providing the structure) plays
704 its part by providing the vtable. Otherwise,
705 it is just along for the ride: call the function
708 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
710 fnptr = value_as_long (arg1);
712 if (METHOD_PTR_IS_VIRTUAL (fnptr))
714 int fnoffset = METHOD_PTR_TO_VOFFSET (fnptr);
715 struct type *basetype;
716 struct type *domain_type =
717 TYPE_DOMAIN_TYPE (TYPE_TARGET_TYPE (VALUE_TYPE (arg1)));
719 basetype = TYPE_TARGET_TYPE (VALUE_TYPE (arg2));
720 if (domain_type != basetype)
721 arg2 = value_cast (lookup_pointer_type (domain_type), arg2);
722 basetype = TYPE_VPTR_BASETYPE (domain_type);
723 for (i = TYPE_NFN_FIELDS (basetype) - 1; i >= 0; i--)
725 struct fn_field *f = TYPE_FN_FIELDLIST1 (basetype, i);
726 /* If one is virtual, then all are virtual. */
727 if (TYPE_FN_FIELD_VIRTUAL_P (f, 0))
728 for (j = TYPE_FN_FIELDLIST_LENGTH (basetype, i) - 1; j >= 0; --j)
729 if ((int) TYPE_FN_FIELD_VOFFSET (f, j) == fnoffset)
731 value_ptr temp = value_ind (arg2);
732 arg1 = value_virtual_fn_field (&temp, f, j, domain_type, 0);
733 arg2 = value_addr (temp);
738 error ("virtual function at index %d not found", fnoffset);
742 VALUE_TYPE (arg1) = lookup_pointer_type (TYPE_TARGET_TYPE (VALUE_TYPE (arg1)));
746 /* Now, say which argument to start evaluating from */
749 else if (op == STRUCTOP_STRUCT || op == STRUCTOP_PTR)
751 /* Hair for method invocations */
755 /* First, evaluate the structure into arg2 */
757 tem2 = longest_to_int (exp->elts[pc2 + 1].longconst);
758 *pos += 3 + BYTES_TO_EXP_ELEM (tem2 + 1);
759 if (noside == EVAL_SKIP)
762 if (op == STRUCTOP_STRUCT)
764 /* If v is a variable in a register, and the user types
765 v.method (), this will produce an error, because v has
768 A possible way around this would be to allocate a
769 copy of the variable on the stack, copy in the
770 contents, call the function, and copy out the
771 contents. I.e. convert this from call by reference
772 to call by copy-return (or whatever it's called).
773 However, this does not work because it is not the
774 same: the method being called could stash a copy of
775 the address, and then future uses through that address
776 (after the method returns) would be expected to
777 use the variable itself, not some copy of it. */
778 arg2 = evaluate_subexp_for_address (exp, pos, noside);
782 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
784 /* Now, say which argument to start evaluating from */
789 /* Non-method function call */
791 argvec[0] = evaluate_subexp_with_coercion (exp, pos, noside);
793 type = VALUE_TYPE (argvec[0]);
794 if (type && TYPE_CODE (type) == TYPE_CODE_PTR)
795 type = TYPE_TARGET_TYPE (type);
796 if (type && TYPE_CODE (type) == TYPE_CODE_FUNC)
798 for (; tem <= nargs && tem <= TYPE_NFIELDS (type); tem++)
800 /* pai: FIXME This seems to be coercing arguments before
801 * overload resolution has been done! */
802 argvec[tem] = evaluate_subexp (TYPE_FIELD_TYPE (type, tem - 1),
808 /* Evaluate arguments */
809 for (; tem <= nargs; tem++)
811 /* Ensure that array expressions are coerced into pointer objects. */
812 argvec[tem] = evaluate_subexp_with_coercion (exp, pos, noside);
815 /* signal end of arglist */
818 if (op == STRUCTOP_STRUCT || op == STRUCTOP_PTR)
821 value_ptr temp = arg2;
824 /* Method invocation : stuff "this" as first parameter */
825 /* pai: this used to have lookup_pointer_type for some reason,
826 * but temp is already a pointer to the object */
828 = value_from_pointer (VALUE_TYPE (temp),
829 VALUE_ADDRESS (temp) + VALUE_OFFSET (temp));
830 /* Name of method from expression */
831 strcpy (tstr, &exp->elts[pc2 + 2].string);
833 if (overload_resolution && (exp->language_defn->la_language == language_cplus))
835 /* Language is C++, do some overload resolution before evaluation */
836 value_ptr valp = NULL;
838 /* Prepare list of argument types for overload resolution */
839 arg_types = (struct type **) xmalloc (nargs * (sizeof (struct type *)));
840 for (ix = 1; ix <= nargs; ix++)
841 arg_types[ix - 1] = VALUE_TYPE (argvec[ix]);
843 (void) find_overload_match (arg_types, nargs, tstr,
844 1 /* method */ , 0 /* strict match */ ,
845 arg2 /* the object */ , NULL,
846 &valp, NULL, &static_memfuncp);
849 argvec[1] = arg2; /* the ``this'' pointer */
850 argvec[0] = valp; /* use the method found after overload resolution */
853 /* Non-C++ case -- or no overload resolution */
856 argvec[0] = value_struct_elt (&temp, argvec + 1, tstr,
858 op == STRUCTOP_STRUCT
859 ? "structure" : "structure pointer");
860 argvec[1] = arg2; /* the ``this'' pointer */
865 argvec[1] = argvec[0];
870 else if (op == STRUCTOP_MEMBER || op == STRUCTOP_MPTR)
875 else if (op == OP_VAR_VALUE)
877 /* Non-member function being called */
878 /* fn: This can only be done for C++ functions. A C-style function
879 in a C++ program, for instance, does not have the fields that
882 if (overload_resolution && (exp->language_defn->la_language == language_cplus))
884 /* Language is C++, do some overload resolution before evaluation */
887 /* Prepare list of argument types for overload resolution */
888 arg_types = (struct type **) xmalloc (nargs * (sizeof (struct type *)));
889 for (ix = 1; ix <= nargs; ix++)
890 arg_types[ix - 1] = VALUE_TYPE (argvec[ix]);
892 (void) find_overload_match (arg_types, nargs, NULL /* no need for name */ ,
893 0 /* not method */ , 0 /* strict match */ ,
894 NULL, exp->elts[save_pos1+2].symbol /* the function */ ,
897 /* Now fix the expression being evaluated */
898 exp->elts[save_pos1+2].symbol = symp;
899 argvec[0] = evaluate_subexp_with_coercion (exp, &save_pos1, noside);
903 /* Not C++, or no overload resolution allowed */
904 /* nothing to be done; argvec already correctly set up */
909 /* It is probably a C-style function */
910 /* nothing to be done; argvec already correctly set up */
915 if (noside == EVAL_SKIP)
917 if (noside == EVAL_AVOID_SIDE_EFFECTS)
919 /* If the return type doesn't look like a function type, call an
920 error. This can happen if somebody tries to turn a variable into
921 a function call. This is here because people often want to
922 call, eg, strcmp, which gdb doesn't know is a function. If
923 gdb isn't asked for it's opinion (ie. through "whatis"),
924 it won't offer it. */
927 TYPE_TARGET_TYPE (VALUE_TYPE (argvec[0]));
930 return allocate_value (TYPE_TARGET_TYPE (VALUE_TYPE (argvec[0])));
932 error ("Expression of type other than \"Function returning ...\" used as function");
934 if (argvec[0] == NULL)
935 error ("Cannot evaluate function -- may be inlined");
936 return call_function_by_hand (argvec[0], nargs, argvec + 1);
937 /* pai: FIXME save value from call_function_by_hand, then adjust pc by adjust_fn_pc if +ve */
939 case OP_F77_UNDETERMINED_ARGLIST:
941 /* Remember that in F77, functions, substring ops and
942 array subscript operations cannot be disambiguated
943 at parse time. We have made all array subscript operations,
944 substring operations as well as function calls come here
945 and we now have to discover what the heck this thing actually was.
946 If it is a function, we process just as if we got an OP_FUNCALL. */
948 nargs = longest_to_int (exp->elts[pc + 1].longconst);
951 /* First determine the type code we are dealing with. */
952 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
953 type = check_typedef (VALUE_TYPE (arg1));
954 code = TYPE_CODE (type);
958 case TYPE_CODE_ARRAY:
959 goto multi_f77_subscript;
961 case TYPE_CODE_STRING:
966 /* It's a function call. */
967 /* Allocate arg vector, including space for the function to be
968 called in argvec[0] and a terminating NULL */
969 argvec = (value_ptr *) alloca (sizeof (value_ptr) * (nargs + 2));
972 for (; tem <= nargs; tem++)
973 argvec[tem] = evaluate_subexp_with_coercion (exp, pos, noside);
974 argvec[tem] = 0; /* signal end of arglist */
978 error ("Cannot perform substring on this type");
982 /* We have a substring operation on our hands here,
983 let us get the string we will be dealing with */
985 /* Now evaluate the 'from' and 'to' */
987 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
990 return value_subscript (arg1, arg2);
992 arg3 = evaluate_subexp_with_coercion (exp, pos, noside);
994 if (noside == EVAL_SKIP)
997 tem2 = value_as_long (arg2);
998 tem3 = value_as_long (arg3);
1000 return value_slice (arg1, tem2, tem3 - tem2 + 1);
1003 /* We have a complex number, There should be 2 floating
1004 point numbers that compose it */
1005 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1006 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1008 return value_literal_complex (arg1, arg2, builtin_type_f_complex_s16);
1010 case STRUCTOP_STRUCT:
1011 tem = longest_to_int (exp->elts[pc + 1].longconst);
1012 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
1013 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1014 if (noside == EVAL_SKIP)
1016 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1017 return value_zero (lookup_struct_elt_type (VALUE_TYPE (arg1),
1018 &exp->elts[pc + 2].string,
1023 value_ptr temp = arg1;
1024 return value_struct_elt (&temp, NULL, &exp->elts[pc + 2].string,
1029 tem = longest_to_int (exp->elts[pc + 1].longconst);
1030 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
1031 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1032 if (noside == EVAL_SKIP)
1035 /* JYG: if print object is on we need to replace the base type
1036 with rtti type in order to continue on with successful
1037 lookup of member / method only available in the rtti type. */
1039 struct type *type = VALUE_TYPE (arg1);
1040 struct type *real_type;
1041 int full, top, using_enc;
1043 if (objectprint && TYPE_TARGET_TYPE(type) &&
1044 (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_CLASS))
1046 real_type = value_rtti_target_type (arg1, &full, &top, &using_enc);
1049 if (TYPE_CODE (type) == TYPE_CODE_PTR)
1050 real_type = lookup_pointer_type (real_type);
1052 real_type = lookup_reference_type (real_type);
1054 arg1 = value_cast (real_type, arg1);
1059 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1060 return value_zero (lookup_struct_elt_type (VALUE_TYPE (arg1),
1061 &exp->elts[pc + 2].string,
1066 value_ptr temp = arg1;
1067 return value_struct_elt (&temp, NULL, &exp->elts[pc + 2].string,
1068 NULL, "structure pointer");
1071 case STRUCTOP_MEMBER:
1072 arg1 = evaluate_subexp_for_address (exp, pos, noside);
1073 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1075 /* With HP aCC, pointers to methods do not point to the function code */
1076 if (hp_som_som_object_present &&
1077 (TYPE_CODE (VALUE_TYPE (arg2)) == TYPE_CODE_PTR) &&
1078 (TYPE_CODE (TYPE_TARGET_TYPE (VALUE_TYPE (arg2))) == TYPE_CODE_METHOD))
1079 error ("Pointers to methods not supported with HP aCC"); /* 1997-08-19 */
1081 mem_offset = value_as_long (arg2);
1082 goto handle_pointer_to_member;
1085 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1086 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1088 /* With HP aCC, pointers to methods do not point to the function code */
1089 if (hp_som_som_object_present &&
1090 (TYPE_CODE (VALUE_TYPE (arg2)) == TYPE_CODE_PTR) &&
1091 (TYPE_CODE (TYPE_TARGET_TYPE (VALUE_TYPE (arg2))) == TYPE_CODE_METHOD))
1092 error ("Pointers to methods not supported with HP aCC"); /* 1997-08-19 */
1094 mem_offset = value_as_long (arg2);
1096 handle_pointer_to_member:
1097 /* HP aCC generates offsets that have bit #29 set; turn it off to get
1098 a real offset to the member. */
1099 if (hp_som_som_object_present)
1101 if (!mem_offset) /* no bias -> really null */
1102 error ("Attempted dereference of null pointer-to-member");
1103 mem_offset &= ~0x20000000;
1105 if (noside == EVAL_SKIP)
1107 type = check_typedef (VALUE_TYPE (arg2));
1108 if (TYPE_CODE (type) != TYPE_CODE_PTR)
1109 goto bad_pointer_to_member;
1110 type = check_typedef (TYPE_TARGET_TYPE (type));
1111 if (TYPE_CODE (type) == TYPE_CODE_METHOD)
1112 error ("not implemented: pointer-to-method in pointer-to-member construct");
1113 if (TYPE_CODE (type) != TYPE_CODE_MEMBER)
1114 goto bad_pointer_to_member;
1115 /* Now, convert these values to an address. */
1116 arg1 = value_cast (lookup_pointer_type (TYPE_DOMAIN_TYPE (type)),
1118 arg3 = value_from_pointer (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
1119 value_as_long (arg1) + mem_offset);
1120 return value_ind (arg3);
1121 bad_pointer_to_member:
1122 error ("non-pointer-to-member value used in pointer-to-member construct");
1125 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1126 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1127 if (noside == EVAL_SKIP)
1129 if (binop_user_defined_p (op, arg1, arg2))
1130 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1132 return value_concat (arg1, arg2);
1135 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1136 arg2 = evaluate_subexp (VALUE_TYPE (arg1), exp, pos, noside);
1138 /* Do special stuff for HP aCC pointers to members */
1139 if (hp_som_som_object_present)
1141 /* 1997-08-19 Can't assign HP aCC pointers to methods. No details of
1142 the implementation yet; but the pointer appears to point to a code
1143 sequence (thunk) in memory -- in any case it is *not* the address
1144 of the function as it would be in a naive implementation. */
1145 if ((TYPE_CODE (VALUE_TYPE (arg1)) == TYPE_CODE_PTR) &&
1146 (TYPE_CODE (TYPE_TARGET_TYPE (VALUE_TYPE (arg1))) == TYPE_CODE_METHOD))
1147 error ("Assignment to pointers to methods not implemented with HP aCC");
1149 /* HP aCC pointers to data members require a constant bias */
1150 if ((TYPE_CODE (VALUE_TYPE (arg1)) == TYPE_CODE_PTR) &&
1151 (TYPE_CODE (TYPE_TARGET_TYPE (VALUE_TYPE (arg1))) == TYPE_CODE_MEMBER))
1153 unsigned int *ptr = (unsigned int *) VALUE_CONTENTS (arg2); /* forces evaluation */
1154 *ptr |= 0x20000000; /* set 29th bit */
1158 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
1160 if (binop_user_defined_p (op, arg1, arg2))
1161 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1163 return value_assign (arg1, arg2);
1165 case BINOP_ASSIGN_MODIFY:
1167 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1168 arg2 = evaluate_subexp (VALUE_TYPE (arg1), exp, pos, noside);
1169 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
1171 op = exp->elts[pc + 1].opcode;
1172 if (binop_user_defined_p (op, arg1, arg2))
1173 return value_x_binop (arg1, arg2, BINOP_ASSIGN_MODIFY, op, noside);
1174 else if (op == BINOP_ADD)
1175 arg2 = value_add (arg1, arg2);
1176 else if (op == BINOP_SUB)
1177 arg2 = value_sub (arg1, arg2);
1179 arg2 = value_binop (arg1, arg2, op);
1180 return value_assign (arg1, arg2);
1183 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1184 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1185 if (noside == EVAL_SKIP)
1187 if (binop_user_defined_p (op, arg1, arg2))
1188 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1190 return value_add (arg1, arg2);
1193 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1194 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1195 if (noside == EVAL_SKIP)
1197 if (binop_user_defined_p (op, arg1, arg2))
1198 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1200 return value_sub (arg1, arg2);
1208 case BINOP_BITWISE_AND:
1209 case BINOP_BITWISE_IOR:
1210 case BINOP_BITWISE_XOR:
1211 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1212 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1213 if (noside == EVAL_SKIP)
1215 if (binop_user_defined_p (op, arg1, arg2))
1216 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1217 else if (noside == EVAL_AVOID_SIDE_EFFECTS
1218 && (op == BINOP_DIV || op == BINOP_REM || op == BINOP_MOD))
1219 return value_zero (VALUE_TYPE (arg1), not_lval);
1221 return value_binop (arg1, arg2, op);
1224 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1225 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1226 if (noside == EVAL_SKIP)
1228 error ("':' operator used in invalid context");
1230 case BINOP_SUBSCRIPT:
1231 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1232 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1233 if (noside == EVAL_SKIP)
1235 if (binop_user_defined_p (op, arg1, arg2))
1236 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1239 /* If the user attempts to subscript something that is not an
1240 array or pointer type (like a plain int variable for example),
1241 then report this as an error. */
1244 type = check_typedef (VALUE_TYPE (arg1));
1245 if (TYPE_CODE (type) != TYPE_CODE_ARRAY
1246 && TYPE_CODE (type) != TYPE_CODE_PTR)
1248 if (TYPE_NAME (type))
1249 error ("cannot subscript something of type `%s'",
1252 error ("cannot subscript requested type");
1255 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1256 return value_zero (TYPE_TARGET_TYPE (type), VALUE_LVAL (arg1));
1258 return value_subscript (arg1, arg2);
1262 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1263 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1264 if (noside == EVAL_SKIP)
1266 return value_in (arg1, arg2);
1268 case MULTI_SUBSCRIPT:
1270 nargs = longest_to_int (exp->elts[pc + 1].longconst);
1271 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1274 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1275 /* FIXME: EVAL_SKIP handling may not be correct. */
1276 if (noside == EVAL_SKIP)
1287 /* FIXME: EVAL_AVOID_SIDE_EFFECTS handling may not be correct. */
1288 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1290 /* If the user attempts to subscript something that has no target
1291 type (like a plain int variable for example), then report this
1294 type = TYPE_TARGET_TYPE (check_typedef (VALUE_TYPE (arg1)));
1297 arg1 = value_zero (type, VALUE_LVAL (arg1));
1303 error ("cannot subscript something of type `%s'",
1304 TYPE_NAME (VALUE_TYPE (arg1)));
1308 if (binop_user_defined_p (op, arg1, arg2))
1310 arg1 = value_x_binop (arg1, arg2, op, OP_NULL, noside);
1314 arg1 = value_subscript (arg1, arg2);
1319 multi_f77_subscript:
1321 int subscript_array[MAX_FORTRAN_DIMS + 1]; /* 1-based array of
1322 subscripts, max == 7 */
1323 int array_size_array[MAX_FORTRAN_DIMS + 1];
1324 int ndimensions = 1, i;
1325 struct type *tmp_type;
1326 int offset_item; /* The array offset where the item lives */
1328 if (nargs > MAX_FORTRAN_DIMS)
1329 error ("Too many subscripts for F77 (%d Max)", MAX_FORTRAN_DIMS);
1331 tmp_type = check_typedef (VALUE_TYPE (arg1));
1332 ndimensions = calc_f77_array_dims (type);
1334 if (nargs != ndimensions)
1335 error ("Wrong number of subscripts");
1337 /* Now that we know we have a legal array subscript expression
1338 let us actually find out where this element exists in the array. */
1341 for (i = 1; i <= nargs; i++)
1343 /* Evaluate each subscript, It must be a legal integer in F77 */
1344 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1346 /* Fill in the subscript and array size arrays */
1348 subscript_array[i] = value_as_long (arg2);
1350 retcode = f77_get_dynamic_upperbound (tmp_type, &upper);
1351 if (retcode == BOUND_FETCH_ERROR)
1352 error ("Cannot obtain dynamic upper bound");
1354 retcode = f77_get_dynamic_lowerbound (tmp_type, &lower);
1355 if (retcode == BOUND_FETCH_ERROR)
1356 error ("Cannot obtain dynamic lower bound");
1358 array_size_array[i] = upper - lower + 1;
1360 /* Zero-normalize subscripts so that offsetting will work. */
1362 subscript_array[i] -= lower;
1364 /* If we are at the bottom of a multidimensional
1365 array type then keep a ptr to the last ARRAY
1366 type around for use when calling value_subscript()
1367 below. This is done because we pretend to value_subscript
1368 that we actually have a one-dimensional array
1369 of base element type that we apply a simple
1373 tmp_type = check_typedef (TYPE_TARGET_TYPE (tmp_type));
1376 /* Now let us calculate the offset for this item */
1378 offset_item = subscript_array[ndimensions];
1380 for (i = ndimensions - 1; i >= 1; i--)
1382 array_size_array[i] * offset_item + subscript_array[i];
1384 /* Construct a value node with the value of the offset */
1386 arg2 = value_from_longest (builtin_type_f_integer, offset_item);
1388 /* Let us now play a dirty trick: we will take arg1
1389 which is a value node pointing to the topmost level
1390 of the multidimensional array-set and pretend
1391 that it is actually a array of the final element
1392 type, this will ensure that value_subscript()
1393 returns the correct type value */
1395 VALUE_TYPE (arg1) = tmp_type;
1396 return value_ind (value_add (value_coerce_array (arg1), arg2));
1399 case BINOP_LOGICAL_AND:
1400 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1401 if (noside == EVAL_SKIP)
1403 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1408 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
1411 if (binop_user_defined_p (op, arg1, arg2))
1413 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1414 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1418 tem = value_logical_not (arg1);
1419 arg2 = evaluate_subexp (NULL_TYPE, exp, pos,
1420 (tem ? EVAL_SKIP : noside));
1421 return value_from_longest (LA_BOOL_TYPE,
1422 (LONGEST) (!tem && !value_logical_not (arg2)));
1425 case BINOP_LOGICAL_OR:
1426 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1427 if (noside == EVAL_SKIP)
1429 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1434 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
1437 if (binop_user_defined_p (op, arg1, arg2))
1439 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1440 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1444 tem = value_logical_not (arg1);
1445 arg2 = evaluate_subexp (NULL_TYPE, exp, pos,
1446 (!tem ? EVAL_SKIP : noside));
1447 return value_from_longest (LA_BOOL_TYPE,
1448 (LONGEST) (!tem || !value_logical_not (arg2)));
1452 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1453 arg2 = evaluate_subexp (VALUE_TYPE (arg1), exp, pos, noside);
1454 if (noside == EVAL_SKIP)
1456 if (binop_user_defined_p (op, arg1, arg2))
1458 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1462 tem = value_equal (arg1, arg2);
1463 return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem);
1466 case BINOP_NOTEQUAL:
1467 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1468 arg2 = evaluate_subexp (VALUE_TYPE (arg1), exp, pos, noside);
1469 if (noside == EVAL_SKIP)
1471 if (binop_user_defined_p (op, arg1, arg2))
1473 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1477 tem = value_equal (arg1, arg2);
1478 return value_from_longest (LA_BOOL_TYPE, (LONGEST) ! tem);
1482 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1483 arg2 = evaluate_subexp (VALUE_TYPE (arg1), exp, pos, noside);
1484 if (noside == EVAL_SKIP)
1486 if (binop_user_defined_p (op, arg1, arg2))
1488 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1492 tem = value_less (arg1, arg2);
1493 return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem);
1497 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1498 arg2 = evaluate_subexp (VALUE_TYPE (arg1), exp, pos, noside);
1499 if (noside == EVAL_SKIP)
1501 if (binop_user_defined_p (op, arg1, arg2))
1503 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1507 tem = value_less (arg2, arg1);
1508 return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem);
1512 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1513 arg2 = evaluate_subexp (VALUE_TYPE (arg1), exp, pos, noside);
1514 if (noside == EVAL_SKIP)
1516 if (binop_user_defined_p (op, arg1, arg2))
1518 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1522 tem = value_less (arg2, arg1) || value_equal (arg1, arg2);
1523 return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem);
1527 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1528 arg2 = evaluate_subexp (VALUE_TYPE (arg1), exp, pos, noside);
1529 if (noside == EVAL_SKIP)
1531 if (binop_user_defined_p (op, arg1, arg2))
1533 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1537 tem = value_less (arg1, arg2) || value_equal (arg1, arg2);
1538 return value_from_longest (LA_BOOL_TYPE, (LONGEST) tem);
1542 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1543 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1544 if (noside == EVAL_SKIP)
1546 type = check_typedef (VALUE_TYPE (arg2));
1547 if (TYPE_CODE (type) != TYPE_CODE_INT)
1548 error ("Non-integral right operand for \"@\" operator.");
1549 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1551 return allocate_repeat_value (VALUE_TYPE (arg1),
1552 longest_to_int (value_as_long (arg2)));
1555 return value_repeat (arg1, longest_to_int (value_as_long (arg2)));
1558 evaluate_subexp (NULL_TYPE, exp, pos, noside);
1559 return evaluate_subexp (NULL_TYPE, exp, pos, noside);
1562 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1563 if (noside == EVAL_SKIP)
1565 if (unop_user_defined_p (op, arg1))
1566 return value_x_unop (arg1, op, noside);
1568 return value_neg (arg1);
1570 case UNOP_COMPLEMENT:
1571 /* C++: check for and handle destructor names. */
1572 op = exp->elts[*pos].opcode;
1574 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1575 if (noside == EVAL_SKIP)
1577 if (unop_user_defined_p (UNOP_COMPLEMENT, arg1))
1578 return value_x_unop (arg1, UNOP_COMPLEMENT, noside);
1580 return value_complement (arg1);
1582 case UNOP_LOGICAL_NOT:
1583 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1584 if (noside == EVAL_SKIP)
1586 if (unop_user_defined_p (op, arg1))
1587 return value_x_unop (arg1, op, noside);
1589 return value_from_longest (LA_BOOL_TYPE,
1590 (LONGEST) value_logical_not (arg1));
1593 if (expect_type && TYPE_CODE (expect_type) == TYPE_CODE_PTR)
1594 expect_type = TYPE_TARGET_TYPE (check_typedef (expect_type));
1595 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
1596 if ((TYPE_TARGET_TYPE (VALUE_TYPE (arg1))) &&
1597 ((TYPE_CODE (TYPE_TARGET_TYPE (VALUE_TYPE (arg1))) == TYPE_CODE_METHOD) ||
1598 (TYPE_CODE (TYPE_TARGET_TYPE (VALUE_TYPE (arg1))) == TYPE_CODE_MEMBER)))
1599 error ("Attempt to dereference pointer to member without an object");
1600 if (noside == EVAL_SKIP)
1602 if (unop_user_defined_p (op, arg1))
1603 return value_x_unop (arg1, op, noside);
1604 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
1606 type = check_typedef (VALUE_TYPE (arg1));
1607 if (TYPE_CODE (type) == TYPE_CODE_PTR
1608 || TYPE_CODE (type) == TYPE_CODE_REF
1609 /* In C you can dereference an array to get the 1st elt. */
1610 || TYPE_CODE (type) == TYPE_CODE_ARRAY
1612 return value_zero (TYPE_TARGET_TYPE (type),
1614 else if (TYPE_CODE (type) == TYPE_CODE_INT)
1615 /* GDB allows dereferencing an int. */
1616 return value_zero (builtin_type_int, lval_memory);
1618 error ("Attempt to take contents of a non-pointer value.");
1620 return value_ind (arg1);
1623 /* C++: check for and handle pointer to members. */
1625 op = exp->elts[*pos].opcode;
1627 if (noside == EVAL_SKIP)
1631 int temm = longest_to_int (exp->elts[pc + 3].longconst);
1632 (*pos) += 3 + BYTES_TO_EXP_ELEM (temm + 1);
1635 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
1640 value_ptr retvalp = evaluate_subexp_for_address (exp, pos, noside);
1641 /* If HP aCC object, use bias for pointers to members */
1642 if (hp_som_som_object_present &&
1643 (TYPE_CODE (VALUE_TYPE (retvalp)) == TYPE_CODE_PTR) &&
1644 (TYPE_CODE (TYPE_TARGET_TYPE (VALUE_TYPE (retvalp))) == TYPE_CODE_MEMBER))
1646 unsigned int *ptr = (unsigned int *) VALUE_CONTENTS (retvalp); /* forces evaluation */
1647 *ptr |= 0x20000000; /* set 29th bit */
1653 if (noside == EVAL_SKIP)
1655 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
1658 return evaluate_subexp_for_sizeof (exp, pos);
1662 type = exp->elts[pc + 1].type;
1663 arg1 = evaluate_subexp (type, exp, pos, noside);
1664 if (noside == EVAL_SKIP)
1666 if (type != VALUE_TYPE (arg1))
1667 arg1 = value_cast (type, arg1);
1672 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
1673 if (noside == EVAL_SKIP)
1675 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1676 return value_zero (exp->elts[pc + 1].type, lval_memory);
1678 return value_at_lazy (exp->elts[pc + 1].type,
1679 value_as_pointer (arg1),
1682 case UNOP_PREINCREMENT:
1683 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
1684 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
1686 else if (unop_user_defined_p (op, arg1))
1688 return value_x_unop (arg1, op, noside);
1692 arg2 = value_add (arg1, value_from_longest (builtin_type_char,
1694 return value_assign (arg1, arg2);
1697 case UNOP_PREDECREMENT:
1698 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
1699 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
1701 else if (unop_user_defined_p (op, arg1))
1703 return value_x_unop (arg1, op, noside);
1707 arg2 = value_sub (arg1, value_from_longest (builtin_type_char,
1709 return value_assign (arg1, arg2);
1712 case UNOP_POSTINCREMENT:
1713 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
1714 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
1716 else if (unop_user_defined_p (op, arg1))
1718 return value_x_unop (arg1, op, noside);
1722 arg2 = value_add (arg1, value_from_longest (builtin_type_char,
1724 value_assign (arg1, arg2);
1728 case UNOP_POSTDECREMENT:
1729 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
1730 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
1732 else if (unop_user_defined_p (op, arg1))
1734 return value_x_unop (arg1, op, noside);
1738 arg2 = value_sub (arg1, value_from_longest (builtin_type_char,
1740 value_assign (arg1, arg2);
1746 return value_of_this (1);
1749 error ("Attempt to use a type name as an expression");
1752 /* Removing this case and compiling with gcc -Wall reveals that
1753 a lot of cases are hitting this case. Some of these should
1754 probably be removed from expression.h; others are legitimate
1755 expressions which are (apparently) not fully implemented.
1757 If there are any cases landing here which mean a user error,
1758 then they should be separate cases, with more descriptive
1762 GDB does not (yet) know how to evaluate that kind of expression");
1766 return value_from_longest (builtin_type_long, (LONGEST) 1);
1769 /* Evaluate a subexpression of EXP, at index *POS,
1770 and return the address of that subexpression.
1771 Advance *POS over the subexpression.
1772 If the subexpression isn't an lvalue, get an error.
1773 NOSIDE may be EVAL_AVOID_SIDE_EFFECTS;
1774 then only the type of the result need be correct. */
1777 evaluate_subexp_for_address (register struct expression *exp, register int *pos,
1785 op = exp->elts[pc].opcode;
1791 return evaluate_subexp (NULL_TYPE, exp, pos, noside);
1795 return value_cast (lookup_pointer_type (exp->elts[pc + 1].type),
1796 evaluate_subexp (NULL_TYPE, exp, pos, noside));
1799 var = exp->elts[pc + 2].symbol;
1801 /* C++: The "address" of a reference should yield the address
1802 * of the object pointed to. Let value_addr() deal with it. */
1803 if (TYPE_CODE (SYMBOL_TYPE (var)) == TYPE_CODE_REF)
1807 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1810 lookup_pointer_type (SYMBOL_TYPE (var));
1811 enum address_class sym_class = SYMBOL_CLASS (var);
1813 if (sym_class == LOC_CONST
1814 || sym_class == LOC_CONST_BYTES
1815 || sym_class == LOC_REGISTER
1816 || sym_class == LOC_REGPARM)
1817 error ("Attempt to take address of register or constant.");
1820 value_zero (type, not_lval);
1826 block_innermost_frame (exp->elts[pc + 1].block));
1830 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1832 value_ptr x = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1833 if (VALUE_LVAL (x) == lval_memory)
1834 return value_zero (lookup_pointer_type (VALUE_TYPE (x)),
1837 error ("Attempt to take address of non-lval");
1839 return value_addr (evaluate_subexp (NULL_TYPE, exp, pos, noside));
1843 /* Evaluate like `evaluate_subexp' except coercing arrays to pointers.
1844 When used in contexts where arrays will be coerced anyway, this is
1845 equivalent to `evaluate_subexp' but much faster because it avoids
1846 actually fetching array contents (perhaps obsolete now that we have
1849 Note that we currently only do the coercion for C expressions, where
1850 arrays are zero based and the coercion is correct. For other languages,
1851 with nonzero based arrays, coercion loses. Use CAST_IS_CONVERSION
1852 to decide if coercion is appropriate.
1857 evaluate_subexp_with_coercion (register struct expression *exp,
1858 register int *pos, enum noside noside)
1860 register enum exp_opcode op;
1862 register value_ptr val;
1866 op = exp->elts[pc].opcode;
1871 var = exp->elts[pc + 2].symbol;
1872 if (TYPE_CODE (check_typedef (SYMBOL_TYPE (var))) == TYPE_CODE_ARRAY
1873 && CAST_IS_CONVERSION)
1878 (var, block_innermost_frame (exp->elts[pc + 1].block));
1879 return value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (check_typedef (SYMBOL_TYPE (var)))),
1885 return evaluate_subexp (NULL_TYPE, exp, pos, noside);
1889 /* Evaluate a subexpression of EXP, at index *POS,
1890 and return a value for the size of that subexpression.
1891 Advance *POS over the subexpression. */
1894 evaluate_subexp_for_sizeof (register struct expression *exp, register int *pos)
1902 op = exp->elts[pc].opcode;
1906 /* This case is handled specially
1907 so that we avoid creating a value for the result type.
1908 If the result type is very big, it's desirable not to
1909 create a value unnecessarily. */
1912 val = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
1913 type = check_typedef (VALUE_TYPE (val));
1914 if (TYPE_CODE (type) != TYPE_CODE_PTR
1915 && TYPE_CODE (type) != TYPE_CODE_REF
1916 && TYPE_CODE (type) != TYPE_CODE_ARRAY)
1917 error ("Attempt to take contents of a non-pointer value.");
1918 type = check_typedef (TYPE_TARGET_TYPE (type));
1919 return value_from_longest (builtin_type_int, (LONGEST)
1920 TYPE_LENGTH (type));
1924 type = check_typedef (exp->elts[pc + 1].type);
1925 return value_from_longest (builtin_type_int,
1926 (LONGEST) TYPE_LENGTH (type));
1930 type = check_typedef (SYMBOL_TYPE (exp->elts[pc + 2].symbol));
1932 value_from_longest (builtin_type_int, (LONGEST) TYPE_LENGTH (type));
1935 val = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
1936 return value_from_longest (builtin_type_int,
1937 (LONGEST) TYPE_LENGTH (VALUE_TYPE (val)));
1941 /* Parse a type expression in the string [P..P+LENGTH). */
1944 parse_and_eval_type (char *p, int length)
1946 char *tmp = (char *) alloca (length + 4);
1947 struct expression *expr;
1949 memcpy (tmp + 1, p, length);
1950 tmp[length + 1] = ')';
1951 tmp[length + 2] = '0';
1952 tmp[length + 3] = '\0';
1953 expr = parse_expression (tmp);
1954 if (expr->elts[0].opcode != UNOP_CAST)
1955 error ("Internal error in eval_type.");
1956 return expr->elts[1].type;
1960 calc_f77_array_dims (struct type *array_type)
1963 struct type *tmp_type;
1965 if ((TYPE_CODE (array_type) != TYPE_CODE_ARRAY))
1966 error ("Can't get dimensions for a non-array type");
1968 tmp_type = array_type;
1970 while ((tmp_type = TYPE_TARGET_TYPE (tmp_type)))
1972 if (TYPE_CODE (tmp_type) == TYPE_CODE_ARRAY)