1 /* Evaluate expressions for GDB.
3 Copyright (C) 1986-2003, 2005-2012 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "gdb_string.h"
25 #include "expression.h"
28 #include "language.h" /* For CAST_IS_CONVERSION. */
29 #include "f-lang.h" /* For array bound stuff. */
32 #include "objc-lang.h"
34 #include "parser-defs.h"
35 #include "cp-support.h"
37 #include "exceptions.h"
39 #include "user-regs.h"
41 #include "gdb_obstack.h"
43 #include "python/python.h"
45 #include "gdb_assert.h"
49 /* This is defined in valops.c */
50 extern int overload_resolution
;
52 /* Prototypes for local functions. */
54 static struct value
*evaluate_subexp_for_sizeof (struct expression
*, int *);
56 static struct value
*evaluate_subexp_for_address (struct expression
*,
59 static char *get_label (struct expression
*, int *);
61 static struct value
*evaluate_struct_tuple (struct value
*,
62 struct expression
*, int *,
65 static LONGEST
init_array_element (struct value
*, struct value
*,
66 struct expression
*, int *, enum noside
,
70 evaluate_subexp (struct type
*expect_type
, struct expression
*exp
,
71 int *pos
, enum noside noside
)
73 return (*exp
->language_defn
->la_exp_desc
->evaluate_exp
)
74 (expect_type
, exp
, pos
, noside
);
77 /* Parse the string EXP as a C expression, evaluate it,
78 and return the result as a number. */
81 parse_and_eval_address (char *exp
)
83 struct expression
*expr
= parse_expression (exp
);
85 struct cleanup
*old_chain
=
86 make_cleanup (free_current_contents
, &expr
);
88 addr
= value_as_address (evaluate_expression (expr
));
89 do_cleanups (old_chain
);
93 /* Like parse_and_eval_address, but treats the value of the expression
94 as an integer, not an address, returns a LONGEST, not a CORE_ADDR. */
96 parse_and_eval_long (char *exp
)
98 struct expression
*expr
= parse_expression (exp
);
100 struct cleanup
*old_chain
=
101 make_cleanup (free_current_contents
, &expr
);
103 retval
= value_as_long (evaluate_expression (expr
));
104 do_cleanups (old_chain
);
109 parse_and_eval (char *exp
)
111 struct expression
*expr
= parse_expression (exp
);
113 struct cleanup
*old_chain
=
114 make_cleanup (free_current_contents
, &expr
);
116 val
= evaluate_expression (expr
);
117 do_cleanups (old_chain
);
121 /* Parse up to a comma (or to a closeparen)
122 in the string EXPP as an expression, evaluate it, and return the value.
123 EXPP is advanced to point to the comma. */
126 parse_to_comma_and_eval (char **expp
)
128 struct expression
*expr
= parse_exp_1 (expp
, (struct block
*) 0, 1);
130 struct cleanup
*old_chain
=
131 make_cleanup (free_current_contents
, &expr
);
133 val
= evaluate_expression (expr
);
134 do_cleanups (old_chain
);
138 /* Evaluate an expression in internal prefix form
139 such as is constructed by parse.y.
141 See expression.h for info on the format of an expression. */
144 evaluate_expression (struct expression
*exp
)
148 return evaluate_subexp (NULL_TYPE
, exp
, &pc
, EVAL_NORMAL
);
151 /* Evaluate an expression, avoiding all memory references
152 and getting a value whose type alone is correct. */
155 evaluate_type (struct expression
*exp
)
159 return evaluate_subexp (NULL_TYPE
, exp
, &pc
, EVAL_AVOID_SIDE_EFFECTS
);
162 /* Evaluate a subexpression, avoiding all memory references and
163 getting a value whose type alone is correct. */
166 evaluate_subexpression_type (struct expression
*exp
, int subexp
)
168 return evaluate_subexp (NULL_TYPE
, exp
, &subexp
, EVAL_AVOID_SIDE_EFFECTS
);
171 /* Find the current value of a watchpoint on EXP. Return the value in
172 *VALP and *RESULTP and the chain of intermediate and final values
173 in *VAL_CHAIN. RESULTP and VAL_CHAIN may be NULL if the caller does
176 If a memory error occurs while evaluating the expression, *RESULTP will
177 be set to NULL. *RESULTP may be a lazy value, if the result could
178 not be read from memory. It is used to determine whether a value
179 is user-specified (we should watch the whole value) or intermediate
180 (we should watch only the bit used to locate the final value).
182 If the final value, or any intermediate value, could not be read
183 from memory, *VALP will be set to NULL. *VAL_CHAIN will still be
184 set to any referenced values. *VALP will never be a lazy value.
185 This is the value which we store in struct breakpoint.
187 If VAL_CHAIN is non-NULL, *VAL_CHAIN will be released from the
188 value chain. The caller must free the values individually. If
189 VAL_CHAIN is NULL, all generated values will be left on the value
193 fetch_subexp_value (struct expression
*exp
, int *pc
, struct value
**valp
,
194 struct value
**resultp
, struct value
**val_chain
)
196 struct value
*mark
, *new_mark
, *result
;
197 volatile struct gdb_exception ex
;
205 /* Evaluate the expression. */
206 mark
= value_mark ();
209 TRY_CATCH (ex
, RETURN_MASK_ALL
)
211 result
= evaluate_subexp (NULL_TYPE
, exp
, pc
, EVAL_NORMAL
);
215 /* Ignore memory errors, we want watchpoints pointing at
216 inaccessible memory to still be created; otherwise, throw the
217 error to some higher catcher. */
223 throw_exception (ex
);
228 new_mark
= value_mark ();
229 if (mark
== new_mark
)
234 /* Make sure it's not lazy, so that after the target stops again we
235 have a non-lazy previous value to compare with. */
238 if (!value_lazy (result
))
242 volatile struct gdb_exception except
;
244 TRY_CATCH (except
, RETURN_MASK_ERROR
)
246 value_fetch_lazy (result
);
254 /* Return the chain of intermediate values. We use this to
255 decide which addresses to watch. */
256 *val_chain
= new_mark
;
257 value_release_to_mark (mark
);
261 /* Extract a field operation from an expression. If the subexpression
262 of EXP starting at *SUBEXP is not a structure dereference
263 operation, return NULL. Otherwise, return the name of the
264 dereferenced field, and advance *SUBEXP to point to the
265 subexpression of the left-hand-side of the dereference. This is
266 used when completing field names. */
269 extract_field_op (struct expression
*exp
, int *subexp
)
274 if (exp
->elts
[*subexp
].opcode
!= STRUCTOP_STRUCT
275 && exp
->elts
[*subexp
].opcode
!= STRUCTOP_PTR
)
277 tem
= longest_to_int (exp
->elts
[*subexp
+ 1].longconst
);
278 result
= &exp
->elts
[*subexp
+ 2].string
;
279 (*subexp
) += 1 + 3 + BYTES_TO_EXP_ELEM (tem
+ 1);
283 /* If the next expression is an OP_LABELED, skips past it,
284 returning the label. Otherwise, does nothing and returns NULL. */
287 get_label (struct expression
*exp
, int *pos
)
289 if (exp
->elts
[*pos
].opcode
== OP_LABELED
)
292 char *name
= &exp
->elts
[pc
+ 2].string
;
293 int tem
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
295 (*pos
) += 3 + BYTES_TO_EXP_ELEM (tem
+ 1);
302 /* This function evaluates tuples (in (the deleted) Chill) or
303 brace-initializers (in C/C++) for structure types. */
305 static struct value
*
306 evaluate_struct_tuple (struct value
*struct_val
,
307 struct expression
*exp
,
308 int *pos
, enum noside noside
, int nargs
)
310 struct type
*struct_type
= check_typedef (value_type (struct_val
));
311 struct type
*substruct_type
= struct_type
;
312 struct type
*field_type
;
320 struct value
*val
= NULL
;
325 /* Skip past the labels, and count them. */
326 while (get_label (exp
, pos
) != NULL
)
331 char *label
= get_label (exp
, &pc
);
335 for (fieldno
= 0; fieldno
< TYPE_NFIELDS (struct_type
);
338 const char *field_name
=
339 TYPE_FIELD_NAME (struct_type
, fieldno
);
341 if (field_name
!= NULL
&& strcmp (field_name
, label
) == 0)
344 subfieldno
= fieldno
;
345 substruct_type
= struct_type
;
349 for (fieldno
= 0; fieldno
< TYPE_NFIELDS (struct_type
);
352 const char *field_name
=
353 TYPE_FIELD_NAME (struct_type
, fieldno
);
355 field_type
= TYPE_FIELD_TYPE (struct_type
, fieldno
);
356 if ((field_name
== 0 || *field_name
== '\0')
357 && TYPE_CODE (field_type
) == TYPE_CODE_UNION
)
360 for (; variantno
< TYPE_NFIELDS (field_type
);
364 = TYPE_FIELD_TYPE (field_type
, variantno
);
365 if (TYPE_CODE (substruct_type
) == TYPE_CODE_STRUCT
)
368 subfieldno
< TYPE_NFIELDS (substruct_type
);
371 if (strcmp(TYPE_FIELD_NAME (substruct_type
,
382 error (_("there is no field named %s"), label
);
388 /* Unlabelled tuple element - go to next field. */
392 if (subfieldno
>= TYPE_NFIELDS (substruct_type
))
395 substruct_type
= struct_type
;
401 /* Skip static fields. */
402 while (fieldno
< TYPE_NFIELDS (struct_type
)
403 && field_is_static (&TYPE_FIELD (struct_type
,
406 subfieldno
= fieldno
;
407 if (fieldno
>= TYPE_NFIELDS (struct_type
))
408 error (_("too many initializers"));
409 field_type
= TYPE_FIELD_TYPE (struct_type
, fieldno
);
410 if (TYPE_CODE (field_type
) == TYPE_CODE_UNION
411 && TYPE_FIELD_NAME (struct_type
, fieldno
)[0] == '0')
412 error (_("don't know which variant you want to set"));
416 /* Here, struct_type is the type of the inner struct,
417 while substruct_type is the type of the inner struct.
418 These are the same for normal structures, but a variant struct
419 contains anonymous union fields that contain substruct fields.
420 The value fieldno is the index of the top-level (normal or
421 anonymous union) field in struct_field, while the value
422 subfieldno is the index of the actual real (named inner) field
423 in substruct_type. */
425 field_type
= TYPE_FIELD_TYPE (substruct_type
, subfieldno
);
427 val
= evaluate_subexp (field_type
, exp
, pos
, noside
);
429 /* Now actually set the field in struct_val. */
431 /* Assign val to field fieldno. */
432 if (value_type (val
) != field_type
)
433 val
= value_cast (field_type
, val
);
435 bitsize
= TYPE_FIELD_BITSIZE (substruct_type
, subfieldno
);
436 bitpos
= TYPE_FIELD_BITPOS (struct_type
, fieldno
);
438 bitpos
+= TYPE_FIELD_BITPOS (substruct_type
, subfieldno
);
439 addr
= value_contents_writeable (struct_val
) + bitpos
/ 8;
441 modify_field (struct_type
, addr
,
442 value_as_long (val
), bitpos
% 8, bitsize
);
444 memcpy (addr
, value_contents (val
),
445 TYPE_LENGTH (value_type (val
)));
447 while (--nlabels
> 0);
452 /* Recursive helper function for setting elements of array tuples for
453 (the deleted) Chill. The target is ARRAY (which has bounds
454 LOW_BOUND to HIGH_BOUND); the element value is ELEMENT; EXP, POS
455 and NOSIDE are as usual. Evaluates index expresions and sets the
456 specified element(s) of ARRAY to ELEMENT. Returns last index
460 init_array_element (struct value
*array
, struct value
*element
,
461 struct expression
*exp
, int *pos
,
462 enum noside noside
, LONGEST low_bound
, LONGEST high_bound
)
465 int element_size
= TYPE_LENGTH (value_type (element
));
467 if (exp
->elts
[*pos
].opcode
== BINOP_COMMA
)
470 init_array_element (array
, element
, exp
, pos
, noside
,
471 low_bound
, high_bound
);
472 return init_array_element (array
, element
,
473 exp
, pos
, noside
, low_bound
, high_bound
);
475 else if (exp
->elts
[*pos
].opcode
== BINOP_RANGE
)
480 low
= value_as_long (evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
));
481 high
= value_as_long (evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
));
482 if (low
< low_bound
|| high
> high_bound
)
483 error (_("tuple range index out of range"));
484 for (index
= low
; index
<= high
; index
++)
486 memcpy (value_contents_raw (array
)
487 + (index
- low_bound
) * element_size
,
488 value_contents (element
), element_size
);
493 index
= value_as_long (evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
));
494 if (index
< low_bound
|| index
> high_bound
)
495 error (_("tuple index out of range"));
496 memcpy (value_contents_raw (array
) + (index
- low_bound
) * element_size
,
497 value_contents (element
), element_size
);
502 static struct value
*
503 value_f90_subarray (struct value
*array
,
504 struct expression
*exp
, int *pos
, enum noside noside
)
507 LONGEST low_bound
, high_bound
;
508 struct type
*range
= check_typedef (TYPE_INDEX_TYPE (value_type (array
)));
509 enum f90_range_type range_type
= longest_to_int (exp
->elts
[pc
].longconst
);
513 if (range_type
== LOW_BOUND_DEFAULT
|| range_type
== BOTH_BOUND_DEFAULT
)
514 low_bound
= TYPE_LOW_BOUND (range
);
516 low_bound
= value_as_long (evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
));
518 if (range_type
== HIGH_BOUND_DEFAULT
|| range_type
== BOTH_BOUND_DEFAULT
)
519 high_bound
= TYPE_HIGH_BOUND (range
);
521 high_bound
= value_as_long (evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
));
523 return value_slice (array
, low_bound
, high_bound
- low_bound
+ 1);
527 /* Promote value ARG1 as appropriate before performing a unary operation
529 If the result is not appropriate for any particular language then it
530 needs to patch this function. */
533 unop_promote (const struct language_defn
*language
, struct gdbarch
*gdbarch
,
538 *arg1
= coerce_ref (*arg1
);
539 type1
= check_typedef (value_type (*arg1
));
541 if (is_integral_type (type1
))
543 switch (language
->la_language
)
546 /* Perform integral promotion for ANSI C/C++.
547 If not appropropriate for any particular language
548 it needs to modify this function. */
550 struct type
*builtin_int
= builtin_type (gdbarch
)->builtin_int
;
552 if (TYPE_LENGTH (type1
) < TYPE_LENGTH (builtin_int
))
553 *arg1
= value_cast (builtin_int
, *arg1
);
560 /* Promote values ARG1 and ARG2 as appropriate before performing a binary
561 operation on those two operands.
562 If the result is not appropriate for any particular language then it
563 needs to patch this function. */
566 binop_promote (const struct language_defn
*language
, struct gdbarch
*gdbarch
,
567 struct value
**arg1
, struct value
**arg2
)
569 struct type
*promoted_type
= NULL
;
573 *arg1
= coerce_ref (*arg1
);
574 *arg2
= coerce_ref (*arg2
);
576 type1
= check_typedef (value_type (*arg1
));
577 type2
= check_typedef (value_type (*arg2
));
579 if ((TYPE_CODE (type1
) != TYPE_CODE_FLT
580 && TYPE_CODE (type1
) != TYPE_CODE_DECFLOAT
581 && !is_integral_type (type1
))
582 || (TYPE_CODE (type2
) != TYPE_CODE_FLT
583 && TYPE_CODE (type2
) != TYPE_CODE_DECFLOAT
584 && !is_integral_type (type2
)))
587 if (TYPE_CODE (type1
) == TYPE_CODE_DECFLOAT
588 || TYPE_CODE (type2
) == TYPE_CODE_DECFLOAT
)
590 /* No promotion required. */
592 else if (TYPE_CODE (type1
) == TYPE_CODE_FLT
593 || TYPE_CODE (type2
) == TYPE_CODE_FLT
)
595 switch (language
->la_language
)
601 case language_opencl
:
602 /* No promotion required. */
606 /* For other languages the result type is unchanged from gdb
607 version 6.7 for backward compatibility.
608 If either arg was long double, make sure that value is also long
609 double. Otherwise use double. */
610 if (TYPE_LENGTH (type1
) * 8 > gdbarch_double_bit (gdbarch
)
611 || TYPE_LENGTH (type2
) * 8 > gdbarch_double_bit (gdbarch
))
612 promoted_type
= builtin_type (gdbarch
)->builtin_long_double
;
614 promoted_type
= builtin_type (gdbarch
)->builtin_double
;
618 else if (TYPE_CODE (type1
) == TYPE_CODE_BOOL
619 && TYPE_CODE (type2
) == TYPE_CODE_BOOL
)
621 /* No promotion required. */
624 /* Integral operations here. */
625 /* FIXME: Also mixed integral/booleans, with result an integer. */
627 const struct builtin_type
*builtin
= builtin_type (gdbarch
);
628 unsigned int promoted_len1
= TYPE_LENGTH (type1
);
629 unsigned int promoted_len2
= TYPE_LENGTH (type2
);
630 int is_unsigned1
= TYPE_UNSIGNED (type1
);
631 int is_unsigned2
= TYPE_UNSIGNED (type2
);
632 unsigned int result_len
;
633 int unsigned_operation
;
635 /* Determine type length and signedness after promotion for
637 if (promoted_len1
< TYPE_LENGTH (builtin
->builtin_int
))
640 promoted_len1
= TYPE_LENGTH (builtin
->builtin_int
);
642 if (promoted_len2
< TYPE_LENGTH (builtin
->builtin_int
))
645 promoted_len2
= TYPE_LENGTH (builtin
->builtin_int
);
648 if (promoted_len1
> promoted_len2
)
650 unsigned_operation
= is_unsigned1
;
651 result_len
= promoted_len1
;
653 else if (promoted_len2
> promoted_len1
)
655 unsigned_operation
= is_unsigned2
;
656 result_len
= promoted_len2
;
660 unsigned_operation
= is_unsigned1
|| is_unsigned2
;
661 result_len
= promoted_len1
;
664 switch (language
->la_language
)
670 if (result_len
<= TYPE_LENGTH (builtin
->builtin_int
))
672 promoted_type
= (unsigned_operation
673 ? builtin
->builtin_unsigned_int
674 : builtin
->builtin_int
);
676 else if (result_len
<= TYPE_LENGTH (builtin
->builtin_long
))
678 promoted_type
= (unsigned_operation
679 ? builtin
->builtin_unsigned_long
680 : builtin
->builtin_long
);
684 promoted_type
= (unsigned_operation
685 ? builtin
->builtin_unsigned_long_long
686 : builtin
->builtin_long_long
);
689 case language_opencl
:
690 if (result_len
<= TYPE_LENGTH (lookup_signed_typename
691 (language
, gdbarch
, "int")))
695 ? lookup_unsigned_typename (language
, gdbarch
, "int")
696 : lookup_signed_typename (language
, gdbarch
, "int"));
698 else if (result_len
<= TYPE_LENGTH (lookup_signed_typename
699 (language
, gdbarch
, "long")))
703 ? lookup_unsigned_typename (language
, gdbarch
, "long")
704 : lookup_signed_typename (language
, gdbarch
,"long"));
708 /* For other languages the result type is unchanged from gdb
709 version 6.7 for backward compatibility.
710 If either arg was long long, make sure that value is also long
711 long. Otherwise use long. */
712 if (unsigned_operation
)
714 if (result_len
> gdbarch_long_bit (gdbarch
) / HOST_CHAR_BIT
)
715 promoted_type
= builtin
->builtin_unsigned_long_long
;
717 promoted_type
= builtin
->builtin_unsigned_long
;
721 if (result_len
> gdbarch_long_bit (gdbarch
) / HOST_CHAR_BIT
)
722 promoted_type
= builtin
->builtin_long_long
;
724 promoted_type
= builtin
->builtin_long
;
732 /* Promote both operands to common type. */
733 *arg1
= value_cast (promoted_type
, *arg1
);
734 *arg2
= value_cast (promoted_type
, *arg2
);
739 ptrmath_type_p (const struct language_defn
*lang
, struct type
*type
)
741 type
= check_typedef (type
);
742 if (TYPE_CODE (type
) == TYPE_CODE_REF
)
743 type
= TYPE_TARGET_TYPE (type
);
745 switch (TYPE_CODE (type
))
751 case TYPE_CODE_ARRAY
:
752 return TYPE_VECTOR (type
) ? 0 : lang
->c_style_arrays
;
759 /* Constructs a fake method with the given parameter types.
760 This function is used by the parser to construct an "expected"
761 type for method overload resolution. */
764 make_params (int num_types
, struct type
**param_types
)
766 struct type
*type
= XZALLOC (struct type
);
767 TYPE_MAIN_TYPE (type
) = XZALLOC (struct main_type
);
768 TYPE_LENGTH (type
) = 1;
769 TYPE_CODE (type
) = TYPE_CODE_METHOD
;
770 TYPE_VPTR_FIELDNO (type
) = -1;
771 TYPE_CHAIN (type
) = type
;
772 TYPE_NFIELDS (type
) = num_types
;
773 TYPE_FIELDS (type
) = (struct field
*)
774 TYPE_ZALLOC (type
, sizeof (struct field
) * num_types
);
776 while (num_types
-- > 0)
777 TYPE_FIELD_TYPE (type
, num_types
) = param_types
[num_types
];
783 evaluate_subexp_standard (struct type
*expect_type
,
784 struct expression
*exp
, int *pos
,
789 int pc
, pc2
= 0, oldpos
;
790 struct value
*arg1
= NULL
;
791 struct value
*arg2
= NULL
;
795 struct value
**argvec
;
800 struct type
**arg_types
;
802 struct symbol
*function
= NULL
;
803 char *function_name
= NULL
;
806 op
= exp
->elts
[pc
].opcode
;
811 tem
= longest_to_int (exp
->elts
[pc
+ 2].longconst
);
812 (*pos
) += 4 + BYTES_TO_EXP_ELEM (tem
+ 1);
813 if (noside
== EVAL_SKIP
)
815 arg1
= value_aggregate_elt (exp
->elts
[pc
+ 1].type
,
816 &exp
->elts
[pc
+ 3].string
,
817 expect_type
, 0, noside
);
819 error (_("There is no field named %s"), &exp
->elts
[pc
+ 3].string
);
824 return value_from_longest (exp
->elts
[pc
+ 1].type
,
825 exp
->elts
[pc
+ 2].longconst
);
829 return value_from_double (exp
->elts
[pc
+ 1].type
,
830 exp
->elts
[pc
+ 2].doubleconst
);
834 return value_from_decfloat (exp
->elts
[pc
+ 1].type
,
835 exp
->elts
[pc
+ 2].decfloatconst
);
840 if (noside
== EVAL_SKIP
)
843 /* JYG: We used to just return value_zero of the symbol type
844 if we're asked to avoid side effects. Otherwise we return
845 value_of_variable (...). However I'm not sure if
846 value_of_variable () has any side effect.
847 We need a full value object returned here for whatis_exp ()
848 to call evaluate_type () and then pass the full value to
849 value_rtti_target_type () if we are dealing with a pointer
850 or reference to a base class and print object is on. */
853 volatile struct gdb_exception except
;
854 struct value
*ret
= NULL
;
856 TRY_CATCH (except
, RETURN_MASK_ERROR
)
858 ret
= value_of_variable (exp
->elts
[pc
+ 2].symbol
,
859 exp
->elts
[pc
+ 1].block
);
862 if (except
.reason
< 0)
864 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
865 ret
= value_zero (SYMBOL_TYPE (exp
->elts
[pc
+ 2].symbol
),
868 throw_exception (except
);
874 case OP_VAR_ENTRY_VALUE
:
876 if (noside
== EVAL_SKIP
)
880 struct symbol
*sym
= exp
->elts
[pc
+ 1].symbol
;
881 struct frame_info
*frame
;
883 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
884 return value_zero (SYMBOL_TYPE (sym
), not_lval
);
886 if (SYMBOL_CLASS (sym
) != LOC_COMPUTED
887 || SYMBOL_COMPUTED_OPS (sym
)->read_variable_at_entry
== NULL
)
888 error (_("Symbol \"%s\" does not have any specific entry value"),
889 SYMBOL_PRINT_NAME (sym
));
891 frame
= get_selected_frame (NULL
);
892 return SYMBOL_COMPUTED_OPS (sym
)->read_variable_at_entry (sym
, frame
);
898 access_value_history (longest_to_int (exp
->elts
[pc
+ 1].longconst
));
902 const char *name
= &exp
->elts
[pc
+ 2].string
;
906 (*pos
) += 3 + BYTES_TO_EXP_ELEM (exp
->elts
[pc
+ 1].longconst
+ 1);
907 regno
= user_reg_map_name_to_regnum (exp
->gdbarch
,
908 name
, strlen (name
));
910 error (_("Register $%s not available."), name
);
912 /* In EVAL_AVOID_SIDE_EFFECTS mode, we only need to return
913 a value with the appropriate register type. Unfortunately,
914 we don't have easy access to the type of user registers.
915 So for these registers, we fetch the register value regardless
916 of the evaluation mode. */
917 if (noside
== EVAL_AVOID_SIDE_EFFECTS
918 && regno
< gdbarch_num_regs (exp
->gdbarch
)
919 + gdbarch_num_pseudo_regs (exp
->gdbarch
))
920 val
= value_zero (register_type (exp
->gdbarch
, regno
), not_lval
);
922 val
= value_of_register (regno
, get_selected_frame (NULL
));
924 error (_("Value of register %s not available."), name
);
930 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
931 return value_from_longest (type
, exp
->elts
[pc
+ 1].longconst
);
935 return value_of_internalvar (exp
->gdbarch
,
936 exp
->elts
[pc
+ 1].internalvar
);
939 tem
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
940 (*pos
) += 3 + BYTES_TO_EXP_ELEM (tem
+ 1);
941 if (noside
== EVAL_SKIP
)
943 type
= language_string_char_type (exp
->language_defn
, exp
->gdbarch
);
944 return value_string (&exp
->elts
[pc
+ 2].string
, tem
, type
);
946 case OP_OBJC_NSSTRING
: /* Objective C Foundation Class
947 NSString constant. */
948 tem
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
949 (*pos
) += 3 + BYTES_TO_EXP_ELEM (tem
+ 1);
950 if (noside
== EVAL_SKIP
)
954 return value_nsstring (exp
->gdbarch
, &exp
->elts
[pc
+ 2].string
, tem
+ 1);
957 tem
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
959 += 3 + BYTES_TO_EXP_ELEM ((tem
+ HOST_CHAR_BIT
- 1) / HOST_CHAR_BIT
);
960 if (noside
== EVAL_SKIP
)
962 return value_bitstring (&exp
->elts
[pc
+ 2].string
, tem
,
963 builtin_type (exp
->gdbarch
)->builtin_int
);
968 tem2
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
969 tem3
= longest_to_int (exp
->elts
[pc
+ 2].longconst
);
970 nargs
= tem3
- tem2
+ 1;
971 type
= expect_type
? check_typedef (expect_type
) : NULL_TYPE
;
973 if (expect_type
!= NULL_TYPE
&& noside
!= EVAL_SKIP
974 && TYPE_CODE (type
) == TYPE_CODE_STRUCT
)
976 struct value
*rec
= allocate_value (expect_type
);
978 memset (value_contents_raw (rec
), '\0', TYPE_LENGTH (type
));
979 return evaluate_struct_tuple (rec
, exp
, pos
, noside
, nargs
);
982 if (expect_type
!= NULL_TYPE
&& noside
!= EVAL_SKIP
983 && TYPE_CODE (type
) == TYPE_CODE_ARRAY
)
985 struct type
*range_type
= TYPE_INDEX_TYPE (type
);
986 struct type
*element_type
= TYPE_TARGET_TYPE (type
);
987 struct value
*array
= allocate_value (expect_type
);
988 int element_size
= TYPE_LENGTH (check_typedef (element_type
));
989 LONGEST low_bound
, high_bound
, index
;
991 if (get_discrete_bounds (range_type
, &low_bound
, &high_bound
) < 0)
994 high_bound
= (TYPE_LENGTH (type
) / element_size
) - 1;
997 memset (value_contents_raw (array
), 0, TYPE_LENGTH (expect_type
));
998 for (tem
= nargs
; --nargs
>= 0;)
1000 struct value
*element
;
1003 if (exp
->elts
[*pos
].opcode
== BINOP_RANGE
)
1005 index_pc
= ++(*pos
);
1006 evaluate_subexp (NULL_TYPE
, exp
, pos
, EVAL_SKIP
);
1008 element
= evaluate_subexp (element_type
, exp
, pos
, noside
);
1009 if (value_type (element
) != element_type
)
1010 element
= value_cast (element_type
, element
);
1013 int continue_pc
= *pos
;
1016 index
= init_array_element (array
, element
, exp
, pos
, noside
,
1017 low_bound
, high_bound
);
1022 if (index
> high_bound
)
1023 /* To avoid memory corruption. */
1024 error (_("Too many array elements"));
1025 memcpy (value_contents_raw (array
)
1026 + (index
- low_bound
) * element_size
,
1027 value_contents (element
),
1035 if (expect_type
!= NULL_TYPE
&& noside
!= EVAL_SKIP
1036 && TYPE_CODE (type
) == TYPE_CODE_SET
)
1038 struct value
*set
= allocate_value (expect_type
);
1039 gdb_byte
*valaddr
= value_contents_raw (set
);
1040 struct type
*element_type
= TYPE_INDEX_TYPE (type
);
1041 struct type
*check_type
= element_type
;
1042 LONGEST low_bound
, high_bound
;
1044 /* Get targettype of elementtype. */
1045 while (TYPE_CODE (check_type
) == TYPE_CODE_RANGE
1046 || TYPE_CODE (check_type
) == TYPE_CODE_TYPEDEF
)
1047 check_type
= TYPE_TARGET_TYPE (check_type
);
1049 if (get_discrete_bounds (element_type
, &low_bound
, &high_bound
) < 0)
1050 error (_("(power)set type with unknown size"));
1051 memset (valaddr
, '\0', TYPE_LENGTH (type
));
1052 for (tem
= 0; tem
< nargs
; tem
++)
1054 LONGEST range_low
, range_high
;
1055 struct type
*range_low_type
, *range_high_type
;
1056 struct value
*elem_val
;
1058 if (exp
->elts
[*pos
].opcode
== BINOP_RANGE
)
1061 elem_val
= evaluate_subexp (element_type
, exp
, pos
, noside
);
1062 range_low_type
= value_type (elem_val
);
1063 range_low
= value_as_long (elem_val
);
1064 elem_val
= evaluate_subexp (element_type
, exp
, pos
, noside
);
1065 range_high_type
= value_type (elem_val
);
1066 range_high
= value_as_long (elem_val
);
1070 elem_val
= evaluate_subexp (element_type
, exp
, pos
, noside
);
1071 range_low_type
= range_high_type
= value_type (elem_val
);
1072 range_low
= range_high
= value_as_long (elem_val
);
1074 /* Check types of elements to avoid mixture of elements from
1075 different types. Also check if type of element is "compatible"
1076 with element type of powerset. */
1077 if (TYPE_CODE (range_low_type
) == TYPE_CODE_RANGE
)
1078 range_low_type
= TYPE_TARGET_TYPE (range_low_type
);
1079 if (TYPE_CODE (range_high_type
) == TYPE_CODE_RANGE
)
1080 range_high_type
= TYPE_TARGET_TYPE (range_high_type
);
1081 if ((TYPE_CODE (range_low_type
) != TYPE_CODE (range_high_type
))
1082 || (TYPE_CODE (range_low_type
) == TYPE_CODE_ENUM
1083 && (range_low_type
!= range_high_type
)))
1084 /* different element modes. */
1085 error (_("POWERSET tuple elements of different mode"));
1086 if ((TYPE_CODE (check_type
) != TYPE_CODE (range_low_type
))
1087 || (TYPE_CODE (check_type
) == TYPE_CODE_ENUM
1088 && range_low_type
!= check_type
))
1089 error (_("incompatible POWERSET tuple elements"));
1090 if (range_low
> range_high
)
1092 warning (_("empty POWERSET tuple range"));
1095 if (range_low
< low_bound
|| range_high
> high_bound
)
1096 error (_("POWERSET tuple element out of range"));
1097 range_low
-= low_bound
;
1098 range_high
-= low_bound
;
1099 for (; range_low
<= range_high
; range_low
++)
1101 int bit_index
= (unsigned) range_low
% TARGET_CHAR_BIT
;
1103 if (gdbarch_bits_big_endian (exp
->gdbarch
))
1104 bit_index
= TARGET_CHAR_BIT
- 1 - bit_index
;
1105 valaddr
[(unsigned) range_low
/ TARGET_CHAR_BIT
]
1112 argvec
= (struct value
**) alloca (sizeof (struct value
*) * nargs
);
1113 for (tem
= 0; tem
< nargs
; tem
++)
1115 /* Ensure that array expressions are coerced into pointer
1117 argvec
[tem
] = evaluate_subexp_with_coercion (exp
, pos
, noside
);
1119 if (noside
== EVAL_SKIP
)
1121 return value_array (tem2
, tem3
, argvec
);
1125 struct value
*array
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1127 = value_as_long (evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
));
1129 = value_as_long (evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
));
1131 if (noside
== EVAL_SKIP
)
1133 return value_slice (array
, lowbound
, upper
- lowbound
+ 1);
1136 case TERNOP_SLICE_COUNT
:
1138 struct value
*array
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1140 = value_as_long (evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
));
1142 = value_as_long (evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
));
1144 return value_slice (array
, lowbound
, length
);
1148 /* Skip third and second args to evaluate the first one. */
1149 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1150 if (value_logical_not (arg1
))
1152 evaluate_subexp (NULL_TYPE
, exp
, pos
, EVAL_SKIP
);
1153 return evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1157 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1158 evaluate_subexp (NULL_TYPE
, exp
, pos
, EVAL_SKIP
);
1162 case OP_OBJC_SELECTOR
:
1163 { /* Objective C @selector operator. */
1164 char *sel
= &exp
->elts
[pc
+ 2].string
;
1165 int len
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
1166 struct type
*selector_type
;
1168 (*pos
) += 3 + BYTES_TO_EXP_ELEM (len
+ 1);
1169 if (noside
== EVAL_SKIP
)
1173 sel
[len
] = 0; /* Make sure it's terminated. */
1175 selector_type
= builtin_type (exp
->gdbarch
)->builtin_data_ptr
;
1176 return value_from_longest (selector_type
,
1177 lookup_child_selector (exp
->gdbarch
, sel
));
1180 case OP_OBJC_MSGCALL
:
1181 { /* Objective C message (method) call. */
1183 CORE_ADDR responds_selector
= 0;
1184 CORE_ADDR method_selector
= 0;
1186 CORE_ADDR selector
= 0;
1188 int struct_return
= 0;
1189 int sub_no_side
= 0;
1191 struct value
*msg_send
= NULL
;
1192 struct value
*msg_send_stret
= NULL
;
1193 int gnu_runtime
= 0;
1195 struct value
*target
= NULL
;
1196 struct value
*method
= NULL
;
1197 struct value
*called_method
= NULL
;
1199 struct type
*selector_type
= NULL
;
1200 struct type
*long_type
;
1202 struct value
*ret
= NULL
;
1205 selector
= exp
->elts
[pc
+ 1].longconst
;
1206 nargs
= exp
->elts
[pc
+ 2].longconst
;
1207 argvec
= (struct value
**) alloca (sizeof (struct value
*)
1212 long_type
= builtin_type (exp
->gdbarch
)->builtin_long
;
1213 selector_type
= builtin_type (exp
->gdbarch
)->builtin_data_ptr
;
1215 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
1216 sub_no_side
= EVAL_NORMAL
;
1218 sub_no_side
= noside
;
1220 target
= evaluate_subexp (selector_type
, exp
, pos
, sub_no_side
);
1222 if (value_as_long (target
) == 0)
1223 return value_from_longest (long_type
, 0);
1225 if (lookup_minimal_symbol ("objc_msg_lookup", 0, 0))
1228 /* Find the method dispatch (Apple runtime) or method lookup
1229 (GNU runtime) function for Objective-C. These will be used
1230 to lookup the symbol information for the method. If we
1231 can't find any symbol information, then we'll use these to
1232 call the method, otherwise we can call the method
1233 directly. The msg_send_stret function is used in the special
1234 case of a method that returns a structure (Apple runtime
1238 struct type
*type
= selector_type
;
1240 type
= lookup_function_type (type
);
1241 type
= lookup_pointer_type (type
);
1242 type
= lookup_function_type (type
);
1243 type
= lookup_pointer_type (type
);
1245 msg_send
= find_function_in_inferior ("objc_msg_lookup", NULL
);
1247 = find_function_in_inferior ("objc_msg_lookup", NULL
);
1249 msg_send
= value_from_pointer (type
, value_as_address (msg_send
));
1250 msg_send_stret
= value_from_pointer (type
,
1251 value_as_address (msg_send_stret
));
1255 msg_send
= find_function_in_inferior ("objc_msgSend", NULL
);
1256 /* Special dispatcher for methods returning structs. */
1258 = find_function_in_inferior ("objc_msgSend_stret", NULL
);
1261 /* Verify the target object responds to this method. The
1262 standard top-level 'Object' class uses a different name for
1263 the verification method than the non-standard, but more
1264 often used, 'NSObject' class. Make sure we check for both. */
1267 = lookup_child_selector (exp
->gdbarch
, "respondsToSelector:");
1268 if (responds_selector
== 0)
1270 = lookup_child_selector (exp
->gdbarch
, "respondsTo:");
1272 if (responds_selector
== 0)
1273 error (_("no 'respondsTo:' or 'respondsToSelector:' method"));
1276 = lookup_child_selector (exp
->gdbarch
, "methodForSelector:");
1277 if (method_selector
== 0)
1279 = lookup_child_selector (exp
->gdbarch
, "methodFor:");
1281 if (method_selector
== 0)
1282 error (_("no 'methodFor:' or 'methodForSelector:' method"));
1284 /* Call the verification method, to make sure that the target
1285 class implements the desired method. */
1287 argvec
[0] = msg_send
;
1289 argvec
[2] = value_from_longest (long_type
, responds_selector
);
1290 argvec
[3] = value_from_longest (long_type
, selector
);
1293 ret
= call_function_by_hand (argvec
[0], 3, argvec
+ 1);
1296 /* Function objc_msg_lookup returns a pointer. */
1298 ret
= call_function_by_hand (argvec
[0], 3, argvec
+ 1);
1300 if (value_as_long (ret
) == 0)
1301 error (_("Target does not respond to this message selector."));
1303 /* Call "methodForSelector:" method, to get the address of a
1304 function method that implements this selector for this
1305 class. If we can find a symbol at that address, then we
1306 know the return type, parameter types etc. (that's a good
1309 argvec
[0] = msg_send
;
1311 argvec
[2] = value_from_longest (long_type
, method_selector
);
1312 argvec
[3] = value_from_longest (long_type
, selector
);
1315 ret
= call_function_by_hand (argvec
[0], 3, argvec
+ 1);
1319 ret
= call_function_by_hand (argvec
[0], 3, argvec
+ 1);
1322 /* ret should now be the selector. */
1324 addr
= value_as_long (ret
);
1327 struct symbol
*sym
= NULL
;
1329 /* The address might point to a function descriptor;
1330 resolve it to the actual code address instead. */
1331 addr
= gdbarch_convert_from_func_ptr_addr (exp
->gdbarch
, addr
,
1334 /* Is it a high_level symbol? */
1335 sym
= find_pc_function (addr
);
1337 method
= value_of_variable (sym
, 0);
1340 /* If we found a method with symbol information, check to see
1341 if it returns a struct. Otherwise assume it doesn't. */
1346 struct type
*val_type
;
1348 funaddr
= find_function_addr (method
, &val_type
);
1350 block_for_pc (funaddr
);
1352 CHECK_TYPEDEF (val_type
);
1354 if ((val_type
== NULL
)
1355 || (TYPE_CODE(val_type
) == TYPE_CODE_ERROR
))
1357 if (expect_type
!= NULL
)
1358 val_type
= expect_type
;
1361 struct_return
= using_struct_return (exp
->gdbarch
, method
,
1364 else if (expect_type
!= NULL
)
1366 struct_return
= using_struct_return (exp
->gdbarch
, NULL
,
1367 check_typedef (expect_type
));
1370 /* Found a function symbol. Now we will substitute its
1371 value in place of the message dispatcher (obj_msgSend),
1372 so that we call the method directly instead of thru
1373 the dispatcher. The main reason for doing this is that
1374 we can now evaluate the return value and parameter values
1375 according to their known data types, in case we need to
1376 do things like promotion, dereferencing, special handling
1377 of structs and doubles, etc.
1379 We want to use the type signature of 'method', but still
1380 jump to objc_msgSend() or objc_msgSend_stret() to better
1381 mimic the behavior of the runtime. */
1385 if (TYPE_CODE (value_type (method
)) != TYPE_CODE_FUNC
)
1386 error (_("method address has symbol information "
1387 "with non-function type; skipping"));
1389 /* Create a function pointer of the appropriate type, and
1390 replace its value with the value of msg_send or
1391 msg_send_stret. We must use a pointer here, as
1392 msg_send and msg_send_stret are of pointer type, and
1393 the representation may be different on systems that use
1394 function descriptors. */
1397 = value_from_pointer (lookup_pointer_type (value_type (method
)),
1398 value_as_address (msg_send_stret
));
1401 = value_from_pointer (lookup_pointer_type (value_type (method
)),
1402 value_as_address (msg_send
));
1407 called_method
= msg_send_stret
;
1409 called_method
= msg_send
;
1412 if (noside
== EVAL_SKIP
)
1415 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
1417 /* If the return type doesn't look like a function type,
1418 call an error. This can happen if somebody tries to
1419 turn a variable into a function call. This is here
1420 because people often want to call, eg, strcmp, which
1421 gdb doesn't know is a function. If gdb isn't asked for
1422 it's opinion (ie. through "whatis"), it won't offer
1425 struct type
*type
= value_type (called_method
);
1427 if (type
&& TYPE_CODE (type
) == TYPE_CODE_PTR
)
1428 type
= TYPE_TARGET_TYPE (type
);
1429 type
= TYPE_TARGET_TYPE (type
);
1433 if ((TYPE_CODE (type
) == TYPE_CODE_ERROR
) && expect_type
)
1434 return allocate_value (expect_type
);
1436 return allocate_value (type
);
1439 error (_("Expression of type other than "
1440 "\"method returning ...\" used as a method"));
1443 /* Now depending on whether we found a symbol for the method,
1444 we will either call the runtime dispatcher or the method
1447 argvec
[0] = called_method
;
1449 argvec
[2] = value_from_longest (long_type
, selector
);
1450 /* User-supplied arguments. */
1451 for (tem
= 0; tem
< nargs
; tem
++)
1452 argvec
[tem
+ 3] = evaluate_subexp_with_coercion (exp
, pos
, noside
);
1453 argvec
[tem
+ 3] = 0;
1455 if (gnu_runtime
&& (method
!= NULL
))
1457 /* Function objc_msg_lookup returns a pointer. */
1458 deprecated_set_value_type (argvec
[0],
1459 lookup_pointer_type (lookup_function_type (value_type (argvec
[0]))));
1461 = call_function_by_hand (argvec
[0], nargs
+ 2, argvec
+ 1);
1464 ret
= call_function_by_hand (argvec
[0], nargs
+ 2, argvec
+ 1);
1471 op
= exp
->elts
[*pos
].opcode
;
1472 nargs
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
1473 /* Allocate arg vector, including space for the function to be
1474 called in argvec[0] and a terminating NULL. */
1475 argvec
= (struct value
**)
1476 alloca (sizeof (struct value
*) * (nargs
+ 3));
1477 if (op
== STRUCTOP_MEMBER
|| op
== STRUCTOP_MPTR
)
1480 /* First, evaluate the structure into arg2. */
1483 if (noside
== EVAL_SKIP
)
1486 if (op
== STRUCTOP_MEMBER
)
1488 arg2
= evaluate_subexp_for_address (exp
, pos
, noside
);
1492 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1495 /* If the function is a virtual function, then the
1496 aggregate value (providing the structure) plays
1497 its part by providing the vtable. Otherwise,
1498 it is just along for the ride: call the function
1501 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1503 if (TYPE_CODE (check_typedef (value_type (arg1
)))
1504 != TYPE_CODE_METHODPTR
)
1505 error (_("Non-pointer-to-member value used in pointer-to-member "
1508 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
1510 struct type
*method_type
= check_typedef (value_type (arg1
));
1512 arg1
= value_zero (method_type
, not_lval
);
1515 arg1
= cplus_method_ptr_to_value (&arg2
, arg1
);
1517 /* Now, say which argument to start evaluating from. */
1520 else if (op
== STRUCTOP_STRUCT
|| op
== STRUCTOP_PTR
)
1522 /* Hair for method invocations. */
1526 /* First, evaluate the structure into arg2. */
1528 tem2
= longest_to_int (exp
->elts
[pc2
+ 1].longconst
);
1529 *pos
+= 3 + BYTES_TO_EXP_ELEM (tem2
+ 1);
1530 if (noside
== EVAL_SKIP
)
1533 if (op
== STRUCTOP_STRUCT
)
1535 /* If v is a variable in a register, and the user types
1536 v.method (), this will produce an error, because v has
1539 A possible way around this would be to allocate a
1540 copy of the variable on the stack, copy in the
1541 contents, call the function, and copy out the
1542 contents. I.e. convert this from call by reference
1543 to call by copy-return (or whatever it's called).
1544 However, this does not work because it is not the
1545 same: the method being called could stash a copy of
1546 the address, and then future uses through that address
1547 (after the method returns) would be expected to
1548 use the variable itself, not some copy of it. */
1549 arg2
= evaluate_subexp_for_address (exp
, pos
, noside
);
1553 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1555 /* Check to see if the operator '->' has been
1556 overloaded. If the operator has been overloaded
1557 replace arg2 with the value returned by the custom
1558 operator and continue evaluation. */
1559 while (unop_user_defined_p (op
, arg2
))
1561 volatile struct gdb_exception except
;
1562 struct value
*value
= NULL
;
1563 TRY_CATCH (except
, RETURN_MASK_ERROR
)
1565 value
= value_x_unop (arg2
, op
, noside
);
1568 if (except
.reason
< 0)
1570 if (except
.error
== NOT_FOUND_ERROR
)
1573 throw_exception (except
);
1578 /* Now, say which argument to start evaluating from. */
1581 else if (op
== OP_SCOPE
1582 && overload_resolution
1583 && (exp
->language_defn
->la_language
== language_cplus
))
1585 /* Unpack it locally so we can properly handle overload
1591 local_tem
= longest_to_int (exp
->elts
[pc2
+ 2].longconst
);
1592 (*pos
) += 4 + BYTES_TO_EXP_ELEM (local_tem
+ 1);
1593 type
= exp
->elts
[pc2
+ 1].type
;
1594 name
= &exp
->elts
[pc2
+ 3].string
;
1597 function_name
= NULL
;
1598 if (TYPE_CODE (type
) == TYPE_CODE_NAMESPACE
)
1600 function
= cp_lookup_symbol_namespace (TYPE_TAG_NAME (type
),
1602 get_selected_block (0),
1604 if (function
== NULL
)
1605 error (_("No symbol \"%s\" in namespace \"%s\"."),
1606 name
, TYPE_TAG_NAME (type
));
1612 gdb_assert (TYPE_CODE (type
) == TYPE_CODE_STRUCT
1613 || TYPE_CODE (type
) == TYPE_CODE_UNION
);
1614 function_name
= name
;
1616 arg2
= value_zero (type
, lval_memory
);
1621 else if (op
== OP_ADL_FUNC
)
1623 /* Save the function position and move pos so that the arguments
1624 can be evaluated. */
1630 func_name_len
= longest_to_int (exp
->elts
[save_pos1
+ 3].longconst
);
1631 (*pos
) += 6 + BYTES_TO_EXP_ELEM (func_name_len
+ 1);
1635 /* Non-method function call. */
1639 /* If this is a C++ function wait until overload resolution. */
1640 if (op
== OP_VAR_VALUE
1641 && overload_resolution
1642 && (exp
->language_defn
->la_language
== language_cplus
))
1644 (*pos
) += 4; /* Skip the evaluation of the symbol. */
1649 argvec
[0] = evaluate_subexp_with_coercion (exp
, pos
, noside
);
1650 type
= value_type (argvec
[0]);
1651 if (type
&& TYPE_CODE (type
) == TYPE_CODE_PTR
)
1652 type
= TYPE_TARGET_TYPE (type
);
1653 if (type
&& TYPE_CODE (type
) == TYPE_CODE_FUNC
)
1655 for (; tem
<= nargs
&& tem
<= TYPE_NFIELDS (type
); tem
++)
1657 argvec
[tem
] = evaluate_subexp (TYPE_FIELD_TYPE (type
,
1665 /* Evaluate arguments. */
1666 for (; tem
<= nargs
; tem
++)
1668 /* Ensure that array expressions are coerced into pointer
1670 argvec
[tem
] = evaluate_subexp_with_coercion (exp
, pos
, noside
);
1673 /* Signal end of arglist. */
1675 if (op
== OP_ADL_FUNC
)
1677 struct symbol
*symp
;
1680 int string_pc
= save_pos1
+ 3;
1682 /* Extract the function name. */
1683 name_len
= longest_to_int (exp
->elts
[string_pc
].longconst
);
1684 func_name
= (char *) alloca (name_len
+ 1);
1685 strcpy (func_name
, &exp
->elts
[string_pc
+ 1].string
);
1687 find_overload_match (&argvec
[1], nargs
, func_name
,
1688 NON_METHOD
, /* not method */
1689 0, /* strict match */
1690 NULL
, NULL
, /* pass NULL symbol since
1691 symbol is unknown */
1692 NULL
, &symp
, NULL
, 0);
1694 /* Now fix the expression being evaluated. */
1695 exp
->elts
[save_pos1
+ 2].symbol
= symp
;
1696 argvec
[0] = evaluate_subexp_with_coercion (exp
, &save_pos1
, noside
);
1699 if (op
== STRUCTOP_STRUCT
|| op
== STRUCTOP_PTR
1700 || (op
== OP_SCOPE
&& function_name
!= NULL
))
1702 int static_memfuncp
;
1705 /* Method invocation : stuff "this" as first parameter. */
1710 /* Name of method from expression. */
1711 tstr
= &exp
->elts
[pc2
+ 2].string
;
1714 tstr
= function_name
;
1716 if (overload_resolution
&& (exp
->language_defn
->la_language
1719 /* Language is C++, do some overload resolution before
1721 struct value
*valp
= NULL
;
1723 (void) find_overload_match (&argvec
[1], nargs
, tstr
,
1724 METHOD
, /* method */
1725 0, /* strict match */
1726 &arg2
, /* the object */
1728 &static_memfuncp
, 0);
1730 if (op
== OP_SCOPE
&& !static_memfuncp
)
1732 /* For the time being, we don't handle this. */
1733 error (_("Call to overloaded function %s requires "
1737 argvec
[1] = arg2
; /* the ``this'' pointer */
1738 argvec
[0] = valp
; /* Use the method found after overload
1742 /* Non-C++ case -- or no overload resolution. */
1744 struct value
*temp
= arg2
;
1746 argvec
[0] = value_struct_elt (&temp
, argvec
+ 1, tstr
,
1748 op
== STRUCTOP_STRUCT
1749 ? "structure" : "structure pointer");
1750 /* value_struct_elt updates temp with the correct value
1751 of the ``this'' pointer if necessary, so modify argvec[1] to
1752 reflect any ``this'' changes. */
1754 = value_from_longest (lookup_pointer_type(value_type (temp
)),
1755 value_address (temp
)
1756 + value_embedded_offset (temp
));
1757 argvec
[1] = arg2
; /* the ``this'' pointer */
1760 if (static_memfuncp
)
1762 argvec
[1] = argvec
[0];
1767 else if (op
== STRUCTOP_MEMBER
|| op
== STRUCTOP_MPTR
)
1772 else if (op
== OP_VAR_VALUE
|| (op
== OP_SCOPE
&& function
!= NULL
))
1774 /* Non-member function being called. */
1775 /* fn: This can only be done for C++ functions. A C-style function
1776 in a C++ program, for instance, does not have the fields that
1777 are expected here. */
1779 if (overload_resolution
&& (exp
->language_defn
->la_language
1782 /* Language is C++, do some overload resolution before
1784 struct symbol
*symp
;
1787 /* If a scope has been specified disable ADL. */
1791 if (op
== OP_VAR_VALUE
)
1792 function
= exp
->elts
[save_pos1
+2].symbol
;
1794 (void) find_overload_match (&argvec
[1], nargs
,
1795 NULL
, /* no need for name */
1796 NON_METHOD
, /* not method */
1797 0, /* strict match */
1798 NULL
, function
, /* the function */
1799 NULL
, &symp
, NULL
, no_adl
);
1801 if (op
== OP_VAR_VALUE
)
1803 /* Now fix the expression being evaluated. */
1804 exp
->elts
[save_pos1
+2].symbol
= symp
;
1805 argvec
[0] = evaluate_subexp_with_coercion (exp
, &save_pos1
,
1809 argvec
[0] = value_of_variable (symp
, get_selected_block (0));
1813 /* Not C++, or no overload resolution allowed. */
1814 /* Nothing to be done; argvec already correctly set up. */
1819 /* It is probably a C-style function. */
1820 /* Nothing to be done; argvec already correctly set up. */
1825 if (noside
== EVAL_SKIP
)
1827 if (argvec
[0] == NULL
)
1828 error (_("Cannot evaluate function -- may be inlined"));
1829 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
1831 /* If the return type doesn't look like a function type, call an
1832 error. This can happen if somebody tries to turn a variable into
1833 a function call. This is here because people often want to
1834 call, eg, strcmp, which gdb doesn't know is a function. If
1835 gdb isn't asked for it's opinion (ie. through "whatis"),
1836 it won't offer it. */
1838 struct type
*ftype
= value_type (argvec
[0]);
1840 if (TYPE_CODE (ftype
) == TYPE_CODE_INTERNAL_FUNCTION
)
1842 /* We don't know anything about what the internal
1843 function might return, but we have to return
1845 return value_zero (builtin_type (exp
->gdbarch
)->builtin_int
,
1848 else if (TYPE_GNU_IFUNC (ftype
))
1849 return allocate_value (TYPE_TARGET_TYPE (TYPE_TARGET_TYPE (ftype
)));
1850 else if (TYPE_TARGET_TYPE (ftype
))
1851 return allocate_value (TYPE_TARGET_TYPE (ftype
));
1853 error (_("Expression of type other than "
1854 "\"Function returning ...\" used as function"));
1856 if (TYPE_CODE (value_type (argvec
[0])) == TYPE_CODE_INTERNAL_FUNCTION
)
1857 return call_internal_function (exp
->gdbarch
, exp
->language_defn
,
1858 argvec
[0], nargs
, argvec
+ 1);
1860 return call_function_by_hand (argvec
[0], nargs
, argvec
+ 1);
1861 /* pai: FIXME save value from call_function_by_hand, then adjust
1862 pc by adjust_fn_pc if +ve. */
1864 case OP_F77_UNDETERMINED_ARGLIST
:
1866 /* Remember that in F77, functions, substring ops and
1867 array subscript operations cannot be disambiguated
1868 at parse time. We have made all array subscript operations,
1869 substring operations as well as function calls come here
1870 and we now have to discover what the heck this thing actually was.
1871 If it is a function, we process just as if we got an OP_FUNCALL. */
1873 nargs
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
1876 /* First determine the type code we are dealing with. */
1877 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1878 type
= check_typedef (value_type (arg1
));
1879 code
= TYPE_CODE (type
);
1881 if (code
== TYPE_CODE_PTR
)
1883 /* Fortran always passes variable to subroutines as pointer.
1884 So we need to look into its target type to see if it is
1885 array, string or function. If it is, we need to switch
1886 to the target value the original one points to. */
1887 struct type
*target_type
= check_typedef (TYPE_TARGET_TYPE (type
));
1889 if (TYPE_CODE (target_type
) == TYPE_CODE_ARRAY
1890 || TYPE_CODE (target_type
) == TYPE_CODE_STRING
1891 || TYPE_CODE (target_type
) == TYPE_CODE_FUNC
)
1893 arg1
= value_ind (arg1
);
1894 type
= check_typedef (value_type (arg1
));
1895 code
= TYPE_CODE (type
);
1901 case TYPE_CODE_ARRAY
:
1902 if (exp
->elts
[*pos
].opcode
== OP_F90_RANGE
)
1903 return value_f90_subarray (arg1
, exp
, pos
, noside
);
1905 goto multi_f77_subscript
;
1907 case TYPE_CODE_STRING
:
1908 if (exp
->elts
[*pos
].opcode
== OP_F90_RANGE
)
1909 return value_f90_subarray (arg1
, exp
, pos
, noside
);
1912 arg2
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
1913 return value_subscript (arg1
, value_as_long (arg2
));
1917 case TYPE_CODE_FUNC
:
1918 /* It's a function call. */
1919 /* Allocate arg vector, including space for the function to be
1920 called in argvec[0] and a terminating NULL. */
1921 argvec
= (struct value
**)
1922 alloca (sizeof (struct value
*) * (nargs
+ 2));
1925 for (; tem
<= nargs
; tem
++)
1926 argvec
[tem
] = evaluate_subexp_with_coercion (exp
, pos
, noside
);
1927 argvec
[tem
] = 0; /* signal end of arglist */
1931 error (_("Cannot perform substring on this type"));
1935 /* We have a complex number, There should be 2 floating
1936 point numbers that compose it. */
1938 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1939 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1941 return value_literal_complex (arg1
, arg2
, exp
->elts
[pc
+ 1].type
);
1943 case STRUCTOP_STRUCT
:
1944 tem
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
1945 (*pos
) += 3 + BYTES_TO_EXP_ELEM (tem
+ 1);
1946 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1947 if (noside
== EVAL_SKIP
)
1949 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
1950 return value_zero (lookup_struct_elt_type (value_type (arg1
),
1951 &exp
->elts
[pc
+ 2].string
,
1956 struct value
*temp
= arg1
;
1958 return value_struct_elt (&temp
, NULL
, &exp
->elts
[pc
+ 2].string
,
1963 tem
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
1964 (*pos
) += 3 + BYTES_TO_EXP_ELEM (tem
+ 1);
1965 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
1966 if (noside
== EVAL_SKIP
)
1969 /* Check to see if operator '->' has been overloaded. If so replace
1970 arg1 with the value returned by evaluating operator->(). */
1971 while (unop_user_defined_p (op
, arg1
))
1973 volatile struct gdb_exception except
;
1974 struct value
*value
= NULL
;
1975 TRY_CATCH (except
, RETURN_MASK_ERROR
)
1977 value
= value_x_unop (arg1
, op
, noside
);
1980 if (except
.reason
< 0)
1982 if (except
.error
== NOT_FOUND_ERROR
)
1985 throw_exception (except
);
1990 /* JYG: if print object is on we need to replace the base type
1991 with rtti type in order to continue on with successful
1992 lookup of member / method only available in the rtti type. */
1994 struct type
*type
= value_type (arg1
);
1995 struct type
*real_type
;
1996 int full
, top
, using_enc
;
1997 struct value_print_options opts
;
1999 get_user_print_options (&opts
);
2000 if (opts
.objectprint
&& TYPE_TARGET_TYPE(type
)
2001 && (TYPE_CODE (TYPE_TARGET_TYPE (type
)) == TYPE_CODE_CLASS
))
2003 real_type
= value_rtti_indirect_type (arg1
, &full
, &top
,
2006 arg1
= value_cast (real_type
, arg1
);
2010 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
2011 return value_zero (lookup_struct_elt_type (value_type (arg1
),
2012 &exp
->elts
[pc
+ 2].string
,
2017 struct value
*temp
= arg1
;
2019 return value_struct_elt (&temp
, NULL
, &exp
->elts
[pc
+ 2].string
,
2020 NULL
, "structure pointer");
2023 case STRUCTOP_MEMBER
:
2025 if (op
== STRUCTOP_MEMBER
)
2026 arg1
= evaluate_subexp_for_address (exp
, pos
, noside
);
2028 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2030 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2032 if (noside
== EVAL_SKIP
)
2035 type
= check_typedef (value_type (arg2
));
2036 switch (TYPE_CODE (type
))
2038 case TYPE_CODE_METHODPTR
:
2039 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
2040 return value_zero (TYPE_TARGET_TYPE (type
), not_lval
);
2043 arg2
= cplus_method_ptr_to_value (&arg1
, arg2
);
2044 gdb_assert (TYPE_CODE (value_type (arg2
)) == TYPE_CODE_PTR
);
2045 return value_ind (arg2
);
2048 case TYPE_CODE_MEMBERPTR
:
2049 /* Now, convert these values to an address. */
2050 arg1
= value_cast_pointers (lookup_pointer_type (TYPE_DOMAIN_TYPE (type
)),
2053 mem_offset
= value_as_long (arg2
);
2055 arg3
= value_from_pointer (lookup_pointer_type (TYPE_TARGET_TYPE (type
)),
2056 value_as_long (arg1
) + mem_offset
);
2057 return value_ind (arg3
);
2060 error (_("non-pointer-to-member value used "
2061 "in pointer-to-member construct"));
2065 nargs
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
2066 arg_types
= (struct type
**) alloca (nargs
* sizeof (struct type
*));
2067 for (ix
= 0; ix
< nargs
; ++ix
)
2068 arg_types
[ix
] = exp
->elts
[pc
+ 1 + ix
+ 1].type
;
2070 expect_type
= make_params (nargs
, arg_types
);
2071 *(pos
) += 3 + nargs
;
2072 arg1
= evaluate_subexp_standard (expect_type
, exp
, pos
, noside
);
2073 xfree (TYPE_FIELDS (expect_type
));
2074 xfree (TYPE_MAIN_TYPE (expect_type
));
2075 xfree (expect_type
);
2079 arg1
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
2080 arg2
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
2081 if (noside
== EVAL_SKIP
)
2083 if (binop_user_defined_p (op
, arg1
, arg2
))
2084 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2086 return value_concat (arg1
, arg2
);
2089 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2090 arg2
= evaluate_subexp (value_type (arg1
), exp
, pos
, noside
);
2092 if (noside
== EVAL_SKIP
|| noside
== EVAL_AVOID_SIDE_EFFECTS
)
2094 if (binop_user_defined_p (op
, arg1
, arg2
))
2095 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2097 return value_assign (arg1
, arg2
);
2099 case BINOP_ASSIGN_MODIFY
:
2101 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2102 arg2
= evaluate_subexp (value_type (arg1
), exp
, pos
, noside
);
2103 if (noside
== EVAL_SKIP
|| noside
== EVAL_AVOID_SIDE_EFFECTS
)
2105 op
= exp
->elts
[pc
+ 1].opcode
;
2106 if (binop_user_defined_p (op
, arg1
, arg2
))
2107 return value_x_binop (arg1
, arg2
, BINOP_ASSIGN_MODIFY
, op
, noside
);
2108 else if (op
== BINOP_ADD
&& ptrmath_type_p (exp
->language_defn
,
2110 && is_integral_type (value_type (arg2
)))
2111 arg2
= value_ptradd (arg1
, value_as_long (arg2
));
2112 else if (op
== BINOP_SUB
&& ptrmath_type_p (exp
->language_defn
,
2114 && is_integral_type (value_type (arg2
)))
2115 arg2
= value_ptradd (arg1
, - value_as_long (arg2
));
2118 struct value
*tmp
= arg1
;
2120 /* For shift and integer exponentiation operations,
2121 only promote the first argument. */
2122 if ((op
== BINOP_LSH
|| op
== BINOP_RSH
|| op
== BINOP_EXP
)
2123 && is_integral_type (value_type (arg2
)))
2124 unop_promote (exp
->language_defn
, exp
->gdbarch
, &tmp
);
2126 binop_promote (exp
->language_defn
, exp
->gdbarch
, &tmp
, &arg2
);
2128 arg2
= value_binop (tmp
, arg2
, op
);
2130 return value_assign (arg1
, arg2
);
2133 arg1
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
2134 arg2
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
2135 if (noside
== EVAL_SKIP
)
2137 if (binop_user_defined_p (op
, arg1
, arg2
))
2138 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2139 else if (ptrmath_type_p (exp
->language_defn
, value_type (arg1
))
2140 && is_integral_type (value_type (arg2
)))
2141 return value_ptradd (arg1
, value_as_long (arg2
));
2142 else if (ptrmath_type_p (exp
->language_defn
, value_type (arg2
))
2143 && is_integral_type (value_type (arg1
)))
2144 return value_ptradd (arg2
, value_as_long (arg1
));
2147 binop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
, &arg2
);
2148 return value_binop (arg1
, arg2
, BINOP_ADD
);
2152 arg1
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
2153 arg2
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
2154 if (noside
== EVAL_SKIP
)
2156 if (binop_user_defined_p (op
, arg1
, arg2
))
2157 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2158 else if (ptrmath_type_p (exp
->language_defn
, value_type (arg1
))
2159 && ptrmath_type_p (exp
->language_defn
, value_type (arg2
)))
2161 /* FIXME -- should be ptrdiff_t */
2162 type
= builtin_type (exp
->gdbarch
)->builtin_long
;
2163 return value_from_longest (type
, value_ptrdiff (arg1
, arg2
));
2165 else if (ptrmath_type_p (exp
->language_defn
, value_type (arg1
))
2166 && is_integral_type (value_type (arg2
)))
2167 return value_ptradd (arg1
, - value_as_long (arg2
));
2170 binop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
, &arg2
);
2171 return value_binop (arg1
, arg2
, BINOP_SUB
);
2182 case BINOP_BITWISE_AND
:
2183 case BINOP_BITWISE_IOR
:
2184 case BINOP_BITWISE_XOR
:
2185 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2186 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2187 if (noside
== EVAL_SKIP
)
2189 if (binop_user_defined_p (op
, arg1
, arg2
))
2190 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2193 /* If EVAL_AVOID_SIDE_EFFECTS and we're dividing by zero,
2194 fudge arg2 to avoid division-by-zero, the caller is
2195 (theoretically) only looking for the type of the result. */
2196 if (noside
== EVAL_AVOID_SIDE_EFFECTS
2197 /* ??? Do we really want to test for BINOP_MOD here?
2198 The implementation of value_binop gives it a well-defined
2201 || op
== BINOP_INTDIV
2204 && value_logical_not (arg2
))
2206 struct value
*v_one
, *retval
;
2208 v_one
= value_one (value_type (arg2
));
2209 binop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
, &v_one
);
2210 retval
= value_binop (arg1
, v_one
, op
);
2215 /* For shift and integer exponentiation operations,
2216 only promote the first argument. */
2217 if ((op
== BINOP_LSH
|| op
== BINOP_RSH
|| op
== BINOP_EXP
)
2218 && is_integral_type (value_type (arg2
)))
2219 unop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
);
2221 binop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
, &arg2
);
2223 return value_binop (arg1
, arg2
, op
);
2228 evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2229 evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2230 if (noside
== EVAL_SKIP
)
2232 error (_("':' operator used in invalid context"));
2234 case BINOP_SUBSCRIPT
:
2235 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2236 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2237 if (noside
== EVAL_SKIP
)
2239 if (binop_user_defined_p (op
, arg1
, arg2
))
2240 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2243 /* If the user attempts to subscript something that is not an
2244 array or pointer type (like a plain int variable for example),
2245 then report this as an error. */
2247 arg1
= coerce_ref (arg1
);
2248 type
= check_typedef (value_type (arg1
));
2249 if (TYPE_CODE (type
) != TYPE_CODE_ARRAY
2250 && TYPE_CODE (type
) != TYPE_CODE_PTR
)
2252 if (TYPE_NAME (type
))
2253 error (_("cannot subscript something of type `%s'"),
2256 error (_("cannot subscript requested type"));
2259 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
2260 return value_zero (TYPE_TARGET_TYPE (type
), VALUE_LVAL (arg1
));
2262 return value_subscript (arg1
, value_as_long (arg2
));
2266 arg1
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
2267 arg2
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
2268 if (noside
== EVAL_SKIP
)
2270 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
2271 return value_from_longest (type
, (LONGEST
) value_in (arg1
, arg2
));
2273 case MULTI_SUBSCRIPT
:
2275 nargs
= longest_to_int (exp
->elts
[pc
+ 1].longconst
);
2276 arg1
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
2279 arg2
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
2280 /* FIXME: EVAL_SKIP handling may not be correct. */
2281 if (noside
== EVAL_SKIP
)
2292 /* FIXME: EVAL_AVOID_SIDE_EFFECTS handling may not be correct. */
2293 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
2295 /* If the user attempts to subscript something that has no target
2296 type (like a plain int variable for example), then report this
2299 type
= TYPE_TARGET_TYPE (check_typedef (value_type (arg1
)));
2302 arg1
= value_zero (type
, VALUE_LVAL (arg1
));
2308 error (_("cannot subscript something of type `%s'"),
2309 TYPE_NAME (value_type (arg1
)));
2313 if (binop_user_defined_p (op
, arg1
, arg2
))
2315 arg1
= value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2319 arg1
= coerce_ref (arg1
);
2320 type
= check_typedef (value_type (arg1
));
2322 switch (TYPE_CODE (type
))
2325 case TYPE_CODE_ARRAY
:
2326 case TYPE_CODE_STRING
:
2327 arg1
= value_subscript (arg1
, value_as_long (arg2
));
2330 case TYPE_CODE_BITSTRING
:
2331 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
2332 arg1
= value_bitstring_subscript (type
, arg1
,
2333 value_as_long (arg2
));
2337 if (TYPE_NAME (type
))
2338 error (_("cannot subscript something of type `%s'"),
2341 error (_("cannot subscript requested type"));
2347 multi_f77_subscript
:
2349 LONGEST subscript_array
[MAX_FORTRAN_DIMS
];
2350 int ndimensions
= 1, i
;
2351 struct value
*array
= arg1
;
2353 if (nargs
> MAX_FORTRAN_DIMS
)
2354 error (_("Too many subscripts for F77 (%d Max)"), MAX_FORTRAN_DIMS
);
2356 ndimensions
= calc_f77_array_dims (type
);
2358 if (nargs
!= ndimensions
)
2359 error (_("Wrong number of subscripts"));
2361 gdb_assert (nargs
> 0);
2363 /* Now that we know we have a legal array subscript expression
2364 let us actually find out where this element exists in the array. */
2366 /* Take array indices left to right. */
2367 for (i
= 0; i
< nargs
; i
++)
2369 /* Evaluate each subscript; it must be a legal integer in F77. */
2370 arg2
= evaluate_subexp_with_coercion (exp
, pos
, noside
);
2372 /* Fill in the subscript array. */
2374 subscript_array
[i
] = value_as_long (arg2
);
2377 /* Internal type of array is arranged right to left. */
2378 for (i
= nargs
; i
> 0; i
--)
2380 struct type
*array_type
= check_typedef (value_type (array
));
2381 LONGEST index
= subscript_array
[i
- 1];
2383 lower
= f77_get_lowerbound (array_type
);
2384 array
= value_subscripted_rvalue (array
, index
, lower
);
2390 case BINOP_LOGICAL_AND
:
2391 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2392 if (noside
== EVAL_SKIP
)
2394 evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2399 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, EVAL_AVOID_SIDE_EFFECTS
);
2402 if (binop_user_defined_p (op
, arg1
, arg2
))
2404 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2405 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2409 tem
= value_logical_not (arg1
);
2410 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
,
2411 (tem
? EVAL_SKIP
: noside
));
2412 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
2413 return value_from_longest (type
,
2414 (LONGEST
) (!tem
&& !value_logical_not (arg2
)));
2417 case BINOP_LOGICAL_OR
:
2418 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2419 if (noside
== EVAL_SKIP
)
2421 evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2426 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, EVAL_AVOID_SIDE_EFFECTS
);
2429 if (binop_user_defined_p (op
, arg1
, arg2
))
2431 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2432 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2436 tem
= value_logical_not (arg1
);
2437 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
,
2438 (!tem
? EVAL_SKIP
: noside
));
2439 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
2440 return value_from_longest (type
,
2441 (LONGEST
) (!tem
|| !value_logical_not (arg2
)));
2445 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2446 arg2
= evaluate_subexp (value_type (arg1
), exp
, pos
, noside
);
2447 if (noside
== EVAL_SKIP
)
2449 if (binop_user_defined_p (op
, arg1
, arg2
))
2451 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2455 binop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
, &arg2
);
2456 tem
= value_equal (arg1
, arg2
);
2457 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
2458 return value_from_longest (type
, (LONGEST
) tem
);
2461 case BINOP_NOTEQUAL
:
2462 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2463 arg2
= evaluate_subexp (value_type (arg1
), exp
, pos
, noside
);
2464 if (noside
== EVAL_SKIP
)
2466 if (binop_user_defined_p (op
, arg1
, arg2
))
2468 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2472 binop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
, &arg2
);
2473 tem
= value_equal (arg1
, arg2
);
2474 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
2475 return value_from_longest (type
, (LONGEST
) ! tem
);
2479 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2480 arg2
= evaluate_subexp (value_type (arg1
), exp
, pos
, noside
);
2481 if (noside
== EVAL_SKIP
)
2483 if (binop_user_defined_p (op
, arg1
, arg2
))
2485 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2489 binop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
, &arg2
);
2490 tem
= value_less (arg1
, arg2
);
2491 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
2492 return value_from_longest (type
, (LONGEST
) tem
);
2496 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2497 arg2
= evaluate_subexp (value_type (arg1
), exp
, pos
, noside
);
2498 if (noside
== EVAL_SKIP
)
2500 if (binop_user_defined_p (op
, arg1
, arg2
))
2502 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2506 binop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
, &arg2
);
2507 tem
= value_less (arg2
, arg1
);
2508 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
2509 return value_from_longest (type
, (LONGEST
) tem
);
2513 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2514 arg2
= evaluate_subexp (value_type (arg1
), exp
, pos
, noside
);
2515 if (noside
== EVAL_SKIP
)
2517 if (binop_user_defined_p (op
, arg1
, arg2
))
2519 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2523 binop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
, &arg2
);
2524 tem
= value_less (arg2
, arg1
) || value_equal (arg1
, arg2
);
2525 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
2526 return value_from_longest (type
, (LONGEST
) tem
);
2530 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2531 arg2
= evaluate_subexp (value_type (arg1
), exp
, pos
, noside
);
2532 if (noside
== EVAL_SKIP
)
2534 if (binop_user_defined_p (op
, arg1
, arg2
))
2536 return value_x_binop (arg1
, arg2
, op
, OP_NULL
, noside
);
2540 binop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
, &arg2
);
2541 tem
= value_less (arg1
, arg2
) || value_equal (arg1
, arg2
);
2542 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
2543 return value_from_longest (type
, (LONGEST
) tem
);
2547 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2548 arg2
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2549 if (noside
== EVAL_SKIP
)
2551 type
= check_typedef (value_type (arg2
));
2552 if (TYPE_CODE (type
) != TYPE_CODE_INT
)
2553 error (_("Non-integral right operand for \"@\" operator."));
2554 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
2556 return allocate_repeat_value (value_type (arg1
),
2557 longest_to_int (value_as_long (arg2
)));
2560 return value_repeat (arg1
, longest_to_int (value_as_long (arg2
)));
2563 evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2564 return evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2567 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2568 if (noside
== EVAL_SKIP
)
2570 if (unop_user_defined_p (op
, arg1
))
2571 return value_x_unop (arg1
, op
, noside
);
2574 unop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
);
2575 return value_pos (arg1
);
2579 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2580 if (noside
== EVAL_SKIP
)
2582 if (unop_user_defined_p (op
, arg1
))
2583 return value_x_unop (arg1
, op
, noside
);
2586 unop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
);
2587 return value_neg (arg1
);
2590 case UNOP_COMPLEMENT
:
2591 /* C++: check for and handle destructor names. */
2592 op
= exp
->elts
[*pos
].opcode
;
2594 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2595 if (noside
== EVAL_SKIP
)
2597 if (unop_user_defined_p (UNOP_COMPLEMENT
, arg1
))
2598 return value_x_unop (arg1
, UNOP_COMPLEMENT
, noside
);
2601 unop_promote (exp
->language_defn
, exp
->gdbarch
, &arg1
);
2602 return value_complement (arg1
);
2605 case UNOP_LOGICAL_NOT
:
2606 arg1
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2607 if (noside
== EVAL_SKIP
)
2609 if (unop_user_defined_p (op
, arg1
))
2610 return value_x_unop (arg1
, op
, noside
);
2613 type
= language_bool_type (exp
->language_defn
, exp
->gdbarch
);
2614 return value_from_longest (type
, (LONGEST
) value_logical_not (arg1
));
2618 if (expect_type
&& TYPE_CODE (expect_type
) == TYPE_CODE_PTR
)
2619 expect_type
= TYPE_TARGET_TYPE (check_typedef (expect_type
));
2620 arg1
= evaluate_subexp (expect_type
, exp
, pos
, noside
);
2621 type
= check_typedef (value_type (arg1
));
2622 if (TYPE_CODE (type
) == TYPE_CODE_METHODPTR
2623 || TYPE_CODE (type
) == TYPE_CODE_MEMBERPTR
)
2624 error (_("Attempt to dereference pointer "
2625 "to member without an object"));
2626 if (noside
== EVAL_SKIP
)
2628 if (unop_user_defined_p (op
, arg1
))
2629 return value_x_unop (arg1
, op
, noside
);
2630 else if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
2632 type
= check_typedef (value_type (arg1
));
2633 if (TYPE_CODE (type
) == TYPE_CODE_PTR
2634 || TYPE_CODE (type
) == TYPE_CODE_REF
2635 /* In C you can dereference an array to get the 1st elt. */
2636 || TYPE_CODE (type
) == TYPE_CODE_ARRAY
2638 return value_zero (TYPE_TARGET_TYPE (type
),
2640 else if (TYPE_CODE (type
) == TYPE_CODE_INT
)
2641 /* GDB allows dereferencing an int. */
2642 return value_zero (builtin_type (exp
->gdbarch
)->builtin_int
,
2645 error (_("Attempt to take contents of a non-pointer value."));
2648 /* Allow * on an integer so we can cast it to whatever we want.
2649 This returns an int, which seems like the most C-like thing to
2650 do. "long long" variables are rare enough that
2651 BUILTIN_TYPE_LONGEST would seem to be a mistake. */
2652 if (TYPE_CODE (type
) == TYPE_CODE_INT
)
2653 return value_at_lazy (builtin_type (exp
->gdbarch
)->builtin_int
,
2654 (CORE_ADDR
) value_as_address (arg1
));
2655 return value_ind (arg1
);
2658 /* C++: check for and handle pointer to members. */
2660 op
= exp
->elts
[*pos
].opcode
;
2662 if (noside
== EVAL_SKIP
)
2664 evaluate_subexp (NULL_TYPE
, exp
, pos
, EVAL_SKIP
);
2669 struct value
*retvalp
= evaluate_subexp_for_address (exp
, pos
,
2676 if (noside
== EVAL_SKIP
)
2678 evaluate_subexp (NULL_TYPE
, exp
, pos
, EVAL_SKIP
);
2681 return evaluate_subexp_for_sizeof (exp
, pos
);
2685 type
= exp
->elts
[pc
+ 1].type
;
2686 arg1
= evaluate_subexp (type
, exp
, pos
, noside
);
2687 if (noside
== EVAL_SKIP
)
2689 if (type
!= value_type (arg1
))
2690 arg1
= value_cast (type
, arg1
);
2693 case UNOP_DYNAMIC_CAST
:
2695 type
= exp
->elts
[pc
+ 1].type
;
2696 arg1
= evaluate_subexp (type
, exp
, pos
, noside
);
2697 if (noside
== EVAL_SKIP
)
2699 return value_dynamic_cast (type
, arg1
);
2701 case UNOP_REINTERPRET_CAST
:
2703 type
= exp
->elts
[pc
+ 1].type
;
2704 arg1
= evaluate_subexp (type
, exp
, pos
, noside
);
2705 if (noside
== EVAL_SKIP
)
2707 return value_reinterpret_cast (type
, arg1
);
2711 arg1
= evaluate_subexp (expect_type
, exp
, pos
, noside
);
2712 if (noside
== EVAL_SKIP
)
2714 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
2715 return value_zero (exp
->elts
[pc
+ 1].type
, lval_memory
);
2717 return value_at_lazy (exp
->elts
[pc
+ 1].type
,
2718 value_as_address (arg1
));
2720 case UNOP_MEMVAL_TLS
:
2722 arg1
= evaluate_subexp (expect_type
, exp
, pos
, noside
);
2723 if (noside
== EVAL_SKIP
)
2725 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
2726 return value_zero (exp
->elts
[pc
+ 2].type
, lval_memory
);
2731 tls_addr
= target_translate_tls_address (exp
->elts
[pc
+ 1].objfile
,
2732 value_as_address (arg1
));
2733 return value_at_lazy (exp
->elts
[pc
+ 2].type
, tls_addr
);
2736 case UNOP_PREINCREMENT
:
2737 arg1
= evaluate_subexp (expect_type
, exp
, pos
, noside
);
2738 if (noside
== EVAL_SKIP
|| noside
== EVAL_AVOID_SIDE_EFFECTS
)
2740 else if (unop_user_defined_p (op
, arg1
))
2742 return value_x_unop (arg1
, op
, noside
);
2746 if (ptrmath_type_p (exp
->language_defn
, value_type (arg1
)))
2747 arg2
= value_ptradd (arg1
, 1);
2750 struct value
*tmp
= arg1
;
2752 arg2
= value_one (value_type (arg1
));
2753 binop_promote (exp
->language_defn
, exp
->gdbarch
, &tmp
, &arg2
);
2754 arg2
= value_binop (tmp
, arg2
, BINOP_ADD
);
2757 return value_assign (arg1
, arg2
);
2760 case UNOP_PREDECREMENT
:
2761 arg1
= evaluate_subexp (expect_type
, exp
, pos
, noside
);
2762 if (noside
== EVAL_SKIP
|| noside
== EVAL_AVOID_SIDE_EFFECTS
)
2764 else if (unop_user_defined_p (op
, arg1
))
2766 return value_x_unop (arg1
, op
, noside
);
2770 if (ptrmath_type_p (exp
->language_defn
, value_type (arg1
)))
2771 arg2
= value_ptradd (arg1
, -1);
2774 struct value
*tmp
= arg1
;
2776 arg2
= value_one (value_type (arg1
));
2777 binop_promote (exp
->language_defn
, exp
->gdbarch
, &tmp
, &arg2
);
2778 arg2
= value_binop (tmp
, arg2
, BINOP_SUB
);
2781 return value_assign (arg1
, arg2
);
2784 case UNOP_POSTINCREMENT
:
2785 arg1
= evaluate_subexp (expect_type
, exp
, pos
, noside
);
2786 if (noside
== EVAL_SKIP
|| noside
== EVAL_AVOID_SIDE_EFFECTS
)
2788 else if (unop_user_defined_p (op
, arg1
))
2790 return value_x_unop (arg1
, op
, noside
);
2794 arg3
= value_non_lval (arg1
);
2796 if (ptrmath_type_p (exp
->language_defn
, value_type (arg1
)))
2797 arg2
= value_ptradd (arg1
, 1);
2800 struct value
*tmp
= arg1
;
2802 arg2
= value_one (value_type (arg1
));
2803 binop_promote (exp
->language_defn
, exp
->gdbarch
, &tmp
, &arg2
);
2804 arg2
= value_binop (tmp
, arg2
, BINOP_ADD
);
2807 value_assign (arg1
, arg2
);
2811 case UNOP_POSTDECREMENT
:
2812 arg1
= evaluate_subexp (expect_type
, exp
, pos
, noside
);
2813 if (noside
== EVAL_SKIP
|| noside
== EVAL_AVOID_SIDE_EFFECTS
)
2815 else if (unop_user_defined_p (op
, arg1
))
2817 return value_x_unop (arg1
, op
, noside
);
2821 arg3
= value_non_lval (arg1
);
2823 if (ptrmath_type_p (exp
->language_defn
, value_type (arg1
)))
2824 arg2
= value_ptradd (arg1
, -1);
2827 struct value
*tmp
= arg1
;
2829 arg2
= value_one (value_type (arg1
));
2830 binop_promote (exp
->language_defn
, exp
->gdbarch
, &tmp
, &arg2
);
2831 arg2
= value_binop (tmp
, arg2
, BINOP_SUB
);
2834 value_assign (arg1
, arg2
);
2840 return value_of_this (exp
->language_defn
);
2843 /* The value is not supposed to be used. This is here to make it
2844 easier to accommodate expressions that contain types. */
2846 if (noside
== EVAL_SKIP
)
2848 else if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
2850 struct type
*type
= exp
->elts
[pc
+ 1].type
;
2852 /* If this is a typedef, then find its immediate target. We
2853 use check_typedef to resolve stubs, but we ignore its
2854 result because we do not want to dig past all
2856 check_typedef (type
);
2857 if (TYPE_CODE (type
) == TYPE_CODE_TYPEDEF
)
2858 type
= TYPE_TARGET_TYPE (type
);
2859 return allocate_value (type
);
2862 error (_("Attempt to use a type name as an expression"));
2865 /* Removing this case and compiling with gcc -Wall reveals that
2866 a lot of cases are hitting this case. Some of these should
2867 probably be removed from expression.h; others are legitimate
2868 expressions which are (apparently) not fully implemented.
2870 If there are any cases landing here which mean a user error,
2871 then they should be separate cases, with more descriptive
2874 error (_("GDB does not (yet) know how to "
2875 "evaluate that kind of expression"));
2879 return value_from_longest (builtin_type (exp
->gdbarch
)->builtin_int
, 1);
2882 /* Evaluate a subexpression of EXP, at index *POS,
2883 and return the address of that subexpression.
2884 Advance *POS over the subexpression.
2885 If the subexpression isn't an lvalue, get an error.
2886 NOSIDE may be EVAL_AVOID_SIDE_EFFECTS;
2887 then only the type of the result need be correct. */
2889 static struct value
*
2890 evaluate_subexp_for_address (struct expression
*exp
, int *pos
,
2900 op
= exp
->elts
[pc
].opcode
;
2906 x
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2908 /* We can't optimize out "&*" if there's a user-defined operator*. */
2909 if (unop_user_defined_p (op
, x
))
2911 x
= value_x_unop (x
, op
, noside
);
2912 goto default_case_after_eval
;
2915 return coerce_array (x
);
2919 return value_cast (lookup_pointer_type (exp
->elts
[pc
+ 1].type
),
2920 evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
));
2923 var
= exp
->elts
[pc
+ 2].symbol
;
2925 /* C++: The "address" of a reference should yield the address
2926 * of the object pointed to. Let value_addr() deal with it. */
2927 if (TYPE_CODE (SYMBOL_TYPE (var
)) == TYPE_CODE_REF
)
2931 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
2934 lookup_pointer_type (SYMBOL_TYPE (var
));
2935 enum address_class sym_class
= SYMBOL_CLASS (var
);
2937 if (sym_class
== LOC_CONST
2938 || sym_class
== LOC_CONST_BYTES
2939 || sym_class
== LOC_REGISTER
)
2940 error (_("Attempt to take address of register or constant."));
2943 value_zero (type
, not_lval
);
2946 return address_of_variable (var
, exp
->elts
[pc
+ 1].block
);
2949 tem
= longest_to_int (exp
->elts
[pc
+ 2].longconst
);
2950 (*pos
) += 5 + BYTES_TO_EXP_ELEM (tem
+ 1);
2951 x
= value_aggregate_elt (exp
->elts
[pc
+ 1].type
,
2952 &exp
->elts
[pc
+ 3].string
,
2955 error (_("There is no field named %s"), &exp
->elts
[pc
+ 3].string
);
2960 x
= evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
2961 default_case_after_eval
:
2962 if (noside
== EVAL_AVOID_SIDE_EFFECTS
)
2964 struct type
*type
= check_typedef (value_type (x
));
2966 if (VALUE_LVAL (x
) == lval_memory
|| value_must_coerce_to_target (x
))
2967 return value_zero (lookup_pointer_type (value_type (x
)),
2969 else if (TYPE_CODE (type
) == TYPE_CODE_REF
)
2970 return value_zero (lookup_pointer_type (TYPE_TARGET_TYPE (type
)),
2973 error (_("Attempt to take address of "
2974 "value not located in memory."));
2976 return value_addr (x
);
2980 /* Evaluate like `evaluate_subexp' except coercing arrays to pointers.
2981 When used in contexts where arrays will be coerced anyway, this is
2982 equivalent to `evaluate_subexp' but much faster because it avoids
2983 actually fetching array contents (perhaps obsolete now that we have
2986 Note that we currently only do the coercion for C expressions, where
2987 arrays are zero based and the coercion is correct. For other languages,
2988 with nonzero based arrays, coercion loses. Use CAST_IS_CONVERSION
2989 to decide if coercion is appropriate. */
2992 evaluate_subexp_with_coercion (struct expression
*exp
,
2993 int *pos
, enum noside noside
)
3002 op
= exp
->elts
[pc
].opcode
;
3007 var
= exp
->elts
[pc
+ 2].symbol
;
3008 type
= check_typedef (SYMBOL_TYPE (var
));
3009 if (TYPE_CODE (type
) == TYPE_CODE_ARRAY
3010 && !TYPE_VECTOR (type
)
3011 && CAST_IS_CONVERSION (exp
->language_defn
))
3014 val
= address_of_variable (var
, exp
->elts
[pc
+ 1].block
);
3015 return value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (type
)),
3021 return evaluate_subexp (NULL_TYPE
, exp
, pos
, noside
);
3025 /* Evaluate a subexpression of EXP, at index *POS,
3026 and return a value for the size of that subexpression.
3027 Advance *POS over the subexpression. */
3029 static struct value
*
3030 evaluate_subexp_for_sizeof (struct expression
*exp
, int *pos
)
3032 /* FIXME: This should be size_t. */
3033 struct type
*size_type
= builtin_type (exp
->gdbarch
)->builtin_int
;
3040 op
= exp
->elts
[pc
].opcode
;
3044 /* This case is handled specially
3045 so that we avoid creating a value for the result type.
3046 If the result type is very big, it's desirable not to
3047 create a value unnecessarily. */
3050 val
= evaluate_subexp (NULL_TYPE
, exp
, pos
, EVAL_AVOID_SIDE_EFFECTS
);
3051 type
= check_typedef (value_type (val
));
3052 if (TYPE_CODE (type
) != TYPE_CODE_PTR
3053 && TYPE_CODE (type
) != TYPE_CODE_REF
3054 && TYPE_CODE (type
) != TYPE_CODE_ARRAY
)
3055 error (_("Attempt to take contents of a non-pointer value."));
3056 type
= check_typedef (TYPE_TARGET_TYPE (type
));
3057 return value_from_longest (size_type
, (LONGEST
) TYPE_LENGTH (type
));
3061 type
= check_typedef (exp
->elts
[pc
+ 1].type
);
3062 return value_from_longest (size_type
, (LONGEST
) TYPE_LENGTH (type
));
3066 type
= check_typedef (SYMBOL_TYPE (exp
->elts
[pc
+ 2].symbol
));
3068 value_from_longest (size_type
, (LONGEST
) TYPE_LENGTH (type
));
3071 val
= evaluate_subexp (NULL_TYPE
, exp
, pos
, EVAL_AVOID_SIDE_EFFECTS
);
3072 return value_from_longest (size_type
,
3073 (LONGEST
) TYPE_LENGTH (value_type (val
)));
3077 /* Parse a type expression in the string [P..P+LENGTH). */
3080 parse_and_eval_type (char *p
, int length
)
3082 char *tmp
= (char *) alloca (length
+ 4);
3083 struct expression
*expr
;
3086 memcpy (tmp
+ 1, p
, length
);
3087 tmp
[length
+ 1] = ')';
3088 tmp
[length
+ 2] = '0';
3089 tmp
[length
+ 3] = '\0';
3090 expr
= parse_expression (tmp
);
3091 if (expr
->elts
[0].opcode
!= UNOP_CAST
)
3092 error (_("Internal error in eval_type."));
3093 return expr
->elts
[1].type
;
3097 calc_f77_array_dims (struct type
*array_type
)
3100 struct type
*tmp_type
;
3102 if ((TYPE_CODE (array_type
) != TYPE_CODE_ARRAY
))
3103 error (_("Can't get dimensions for a non-array type"));
3105 tmp_type
= array_type
;
3107 while ((tmp_type
= TYPE_TARGET_TYPE (tmp_type
)))
3109 if (TYPE_CODE (tmp_type
) == TYPE_CODE_ARRAY
)