]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/eval.c
* ada-valprint.c (ada_val_print_1): When implicitly dereferencing
[thirdparty/binutils-gdb.git] / gdb / eval.c
CommitLineData
c906108c 1/* Evaluate expressions for GDB.
1bac305b 2
6aba47ca 3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
9b254dd1 4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2008
0d5de010 5 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
23#include "gdb_string.h"
24#include "symtab.h"
25#include "gdbtypes.h"
26#include "value.h"
27#include "expression.h"
28#include "target.h"
29#include "frame.h"
c5aa993b
JM
30#include "language.h" /* For CAST_IS_CONVERSION */
31#include "f-lang.h" /* for array bound stuff */
015a42b4 32#include "cp-abi.h"
04714b91 33#include "infcall.h"
a9fa03de
AF
34#include "objc-lang.h"
35#include "block.h"
5f9769d1 36#include "parser-defs.h"
d3cbe7ef 37#include "cp-support.h"
5e572bb4
DJ
38#include "ui-out.h"
39#include "exceptions.h"
123dc839 40#include "regcache.h"
029a67e4 41#include "user-regs.h"
c906108c 42
0d5de010
DJ
43#include "gdb_assert.h"
44
c5aa993b 45/* This is defined in valops.c */
c906108c
SS
46extern int overload_resolution;
47
070ad9f0
DB
48/* JYG: lookup rtti type of STRUCTOP_PTR when this is set to continue
49 on with successful lookup for member/method of the rtti type. */
50extern int objectprint;
c906108c
SS
51
52/* Prototypes for local functions. */
53
61051030 54static struct value *evaluate_subexp_for_sizeof (struct expression *, int *);
c906108c 55
61051030
AC
56static struct value *evaluate_subexp_for_address (struct expression *,
57 int *, enum noside);
c906108c 58
61051030
AC
59static struct value *evaluate_subexp (struct type *, struct expression *,
60 int *, enum noside);
c906108c 61
a14ed312 62static char *get_label (struct expression *, int *);
c906108c 63
61051030
AC
64static struct value *evaluate_struct_tuple (struct value *,
65 struct expression *, int *,
66 enum noside, int);
c906108c 67
61051030
AC
68static LONGEST init_array_element (struct value *, struct value *,
69 struct expression *, int *, enum noside,
70 LONGEST, LONGEST);
c906108c 71
61051030 72static struct value *
aa1ee363
AC
73evaluate_subexp (struct type *expect_type, struct expression *exp,
74 int *pos, enum noside noside)
c906108c 75{
5f9769d1
PH
76 return (*exp->language_defn->la_exp_desc->evaluate_exp)
77 (expect_type, exp, pos, noside);
c906108c
SS
78}
79\f
80/* Parse the string EXP as a C expression, evaluate it,
81 and return the result as a number. */
82
83CORE_ADDR
fba45db2 84parse_and_eval_address (char *exp)
c906108c
SS
85{
86 struct expression *expr = parse_expression (exp);
52f0bd74
AC
87 CORE_ADDR addr;
88 struct cleanup *old_chain =
62995fc4 89 make_cleanup (free_current_contents, &expr);
c906108c 90
1aa20aa8 91 addr = value_as_address (evaluate_expression (expr));
c906108c
SS
92 do_cleanups (old_chain);
93 return addr;
94}
95
96/* Like parse_and_eval_address but takes a pointer to a char * variable
97 and advanced that variable across the characters parsed. */
98
99CORE_ADDR
fba45db2 100parse_and_eval_address_1 (char **expptr)
c906108c 101{
c5aa993b 102 struct expression *expr = parse_exp_1 (expptr, (struct block *) 0, 0);
52f0bd74
AC
103 CORE_ADDR addr;
104 struct cleanup *old_chain =
62995fc4 105 make_cleanup (free_current_contents, &expr);
c906108c 106
1aa20aa8 107 addr = value_as_address (evaluate_expression (expr));
c906108c
SS
108 do_cleanups (old_chain);
109 return addr;
110}
111
bb518678
DT
112/* Like parse_and_eval_address, but treats the value of the expression
113 as an integer, not an address, returns a LONGEST, not a CORE_ADDR */
114LONGEST
115parse_and_eval_long (char *exp)
116{
117 struct expression *expr = parse_expression (exp);
52f0bd74
AC
118 LONGEST retval;
119 struct cleanup *old_chain =
bb518678
DT
120 make_cleanup (free_current_contents, &expr);
121
122 retval = value_as_long (evaluate_expression (expr));
123 do_cleanups (old_chain);
124 return (retval);
125}
126
61051030 127struct value *
fba45db2 128parse_and_eval (char *exp)
c906108c
SS
129{
130 struct expression *expr = parse_expression (exp);
61051030 131 struct value *val;
52f0bd74 132 struct cleanup *old_chain =
62995fc4 133 make_cleanup (free_current_contents, &expr);
c906108c
SS
134
135 val = evaluate_expression (expr);
136 do_cleanups (old_chain);
137 return val;
138}
139
140/* Parse up to a comma (or to a closeparen)
141 in the string EXPP as an expression, evaluate it, and return the value.
142 EXPP is advanced to point to the comma. */
143
61051030 144struct value *
fba45db2 145parse_to_comma_and_eval (char **expp)
c906108c
SS
146{
147 struct expression *expr = parse_exp_1 (expp, (struct block *) 0, 1);
61051030 148 struct value *val;
52f0bd74 149 struct cleanup *old_chain =
62995fc4 150 make_cleanup (free_current_contents, &expr);
c906108c
SS
151
152 val = evaluate_expression (expr);
153 do_cleanups (old_chain);
154 return val;
155}
156\f
157/* Evaluate an expression in internal prefix form
158 such as is constructed by parse.y.
159
160 See expression.h for info on the format of an expression. */
161
61051030 162struct value *
fba45db2 163evaluate_expression (struct expression *exp)
c906108c
SS
164{
165 int pc = 0;
166 return evaluate_subexp (NULL_TYPE, exp, &pc, EVAL_NORMAL);
167}
168
169/* Evaluate an expression, avoiding all memory references
170 and getting a value whose type alone is correct. */
171
61051030 172struct value *
fba45db2 173evaluate_type (struct expression *exp)
c906108c
SS
174{
175 int pc = 0;
176 return evaluate_subexp (NULL_TYPE, exp, &pc, EVAL_AVOID_SIDE_EFFECTS);
177}
178
65d12d83
TT
179/* Evaluate a subexpression, avoiding all memory references and
180 getting a value whose type alone is correct. */
181
182struct value *
183evaluate_subexpression_type (struct expression *exp, int subexp)
184{
185 return evaluate_subexp (NULL_TYPE, exp, &subexp, EVAL_AVOID_SIDE_EFFECTS);
186}
187
188/* Extract a field operation from an expression. If the subexpression
189 of EXP starting at *SUBEXP is not a structure dereference
190 operation, return NULL. Otherwise, return the name of the
191 dereferenced field, and advance *SUBEXP to point to the
192 subexpression of the left-hand-side of the dereference. This is
193 used when completing field names. */
194
195char *
196extract_field_op (struct expression *exp, int *subexp)
197{
198 int tem;
199 char *result;
200 if (exp->elts[*subexp].opcode != STRUCTOP_STRUCT
201 && exp->elts[*subexp].opcode != STRUCTOP_PTR)
202 return NULL;
203 tem = longest_to_int (exp->elts[*subexp + 1].longconst);
204 result = &exp->elts[*subexp + 2].string;
205 (*subexp) += 1 + 3 + BYTES_TO_EXP_ELEM (tem + 1);
206 return result;
207}
208
c906108c
SS
209/* If the next expression is an OP_LABELED, skips past it,
210 returning the label. Otherwise, does nothing and returns NULL. */
211
c5aa993b 212static char *
aa1ee363 213get_label (struct expression *exp, int *pos)
c906108c
SS
214{
215 if (exp->elts[*pos].opcode == OP_LABELED)
216 {
217 int pc = (*pos)++;
218 char *name = &exp->elts[pc + 2].string;
219 int tem = longest_to_int (exp->elts[pc + 1].longconst);
220 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
221 return name;
222 }
223 else
224 return NULL;
225}
226
1b831c93 227/* This function evaluates tuples (in (the deleted) Chill) or
db034ac5 228 brace-initializers (in C/C++) for structure types. */
c906108c 229
61051030
AC
230static struct value *
231evaluate_struct_tuple (struct value *struct_val,
aa1ee363
AC
232 struct expression *exp,
233 int *pos, enum noside noside, int nargs)
c906108c 234{
df407dfe 235 struct type *struct_type = check_typedef (value_type (struct_val));
c906108c
SS
236 struct type *substruct_type = struct_type;
237 struct type *field_type;
238 int fieldno = -1;
239 int variantno = -1;
240 int subfieldno = -1;
c5aa993b 241 while (--nargs >= 0)
c906108c
SS
242 {
243 int pc = *pos;
61051030 244 struct value *val = NULL;
c906108c
SS
245 int nlabels = 0;
246 int bitpos, bitsize;
0fd88904 247 bfd_byte *addr;
c5aa993b 248
c906108c
SS
249 /* Skip past the labels, and count them. */
250 while (get_label (exp, pos) != NULL)
251 nlabels++;
252
253 do
254 {
255 char *label = get_label (exp, &pc);
256 if (label)
257 {
258 for (fieldno = 0; fieldno < TYPE_NFIELDS (struct_type);
259 fieldno++)
260 {
261 char *field_name = TYPE_FIELD_NAME (struct_type, fieldno);
edf8c5a3 262 if (field_name != NULL && strcmp (field_name, label) == 0)
c906108c
SS
263 {
264 variantno = -1;
265 subfieldno = fieldno;
266 substruct_type = struct_type;
267 goto found;
268 }
269 }
270 for (fieldno = 0; fieldno < TYPE_NFIELDS (struct_type);
271 fieldno++)
272 {
273 char *field_name = TYPE_FIELD_NAME (struct_type, fieldno);
274 field_type = TYPE_FIELD_TYPE (struct_type, fieldno);
275 if ((field_name == 0 || *field_name == '\0')
276 && TYPE_CODE (field_type) == TYPE_CODE_UNION)
277 {
278 variantno = 0;
279 for (; variantno < TYPE_NFIELDS (field_type);
280 variantno++)
281 {
282 substruct_type
283 = TYPE_FIELD_TYPE (field_type, variantno);
284 if (TYPE_CODE (substruct_type) == TYPE_CODE_STRUCT)
c5aa993b 285 {
c906108c 286 for (subfieldno = 0;
c5aa993b 287 subfieldno < TYPE_NFIELDS (substruct_type);
c906108c
SS
288 subfieldno++)
289 {
edf8c5a3 290 if (strcmp(TYPE_FIELD_NAME (substruct_type,
c906108c 291 subfieldno),
edf8c5a3 292 label) == 0)
c906108c
SS
293 {
294 goto found;
295 }
296 }
297 }
298 }
299 }
300 }
8a3fe4f8 301 error (_("there is no field named %s"), label);
c906108c
SS
302 found:
303 ;
304 }
305 else
306 {
307 /* Unlabelled tuple element - go to next field. */
308 if (variantno >= 0)
309 {
310 subfieldno++;
311 if (subfieldno >= TYPE_NFIELDS (substruct_type))
312 {
313 variantno = -1;
314 substruct_type = struct_type;
315 }
316 }
317 if (variantno < 0)
318 {
319 fieldno++;
16963cb6
DJ
320 /* Skip static fields. */
321 while (fieldno < TYPE_NFIELDS (struct_type)
322 && TYPE_FIELD_STATIC_KIND (struct_type, fieldno))
323 fieldno++;
c906108c
SS
324 subfieldno = fieldno;
325 if (fieldno >= TYPE_NFIELDS (struct_type))
8a3fe4f8 326 error (_("too many initializers"));
c906108c
SS
327 field_type = TYPE_FIELD_TYPE (struct_type, fieldno);
328 if (TYPE_CODE (field_type) == TYPE_CODE_UNION
329 && TYPE_FIELD_NAME (struct_type, fieldno)[0] == '0')
8a3fe4f8 330 error (_("don't know which variant you want to set"));
c906108c
SS
331 }
332 }
333
334 /* Here, struct_type is the type of the inner struct,
335 while substruct_type is the type of the inner struct.
336 These are the same for normal structures, but a variant struct
337 contains anonymous union fields that contain substruct fields.
338 The value fieldno is the index of the top-level (normal or
339 anonymous union) field in struct_field, while the value
340 subfieldno is the index of the actual real (named inner) field
341 in substruct_type. */
342
343 field_type = TYPE_FIELD_TYPE (substruct_type, subfieldno);
344 if (val == 0)
345 val = evaluate_subexp (field_type, exp, pos, noside);
346
347 /* Now actually set the field in struct_val. */
348
349 /* Assign val to field fieldno. */
df407dfe 350 if (value_type (val) != field_type)
c906108c
SS
351 val = value_cast (field_type, val);
352
353 bitsize = TYPE_FIELD_BITSIZE (substruct_type, subfieldno);
354 bitpos = TYPE_FIELD_BITPOS (struct_type, fieldno);
355 if (variantno >= 0)
356 bitpos += TYPE_FIELD_BITPOS (substruct_type, subfieldno);
0fd88904 357 addr = value_contents_writeable (struct_val) + bitpos / 8;
c906108c
SS
358 if (bitsize)
359 modify_field (addr, value_as_long (val),
360 bitpos % 8, bitsize);
361 else
0fd88904 362 memcpy (addr, value_contents (val),
df407dfe 363 TYPE_LENGTH (value_type (val)));
c5aa993b
JM
364 }
365 while (--nlabels > 0);
c906108c
SS
366 }
367 return struct_val;
368}
369
db034ac5 370/* Recursive helper function for setting elements of array tuples for
1b831c93
AC
371 (the deleted) Chill. The target is ARRAY (which has bounds
372 LOW_BOUND to HIGH_BOUND); the element value is ELEMENT; EXP, POS
373 and NOSIDE are as usual. Evaluates index expresions and sets the
374 specified element(s) of ARRAY to ELEMENT. Returns last index
375 value. */
c906108c
SS
376
377static LONGEST
61051030 378init_array_element (struct value *array, struct value *element,
aa1ee363 379 struct expression *exp, int *pos,
fba45db2 380 enum noside noside, LONGEST low_bound, LONGEST high_bound)
c906108c
SS
381{
382 LONGEST index;
df407dfe 383 int element_size = TYPE_LENGTH (value_type (element));
c906108c
SS
384 if (exp->elts[*pos].opcode == BINOP_COMMA)
385 {
386 (*pos)++;
387 init_array_element (array, element, exp, pos, noside,
388 low_bound, high_bound);
389 return init_array_element (array, element,
390 exp, pos, noside, low_bound, high_bound);
391 }
392 else if (exp->elts[*pos].opcode == BINOP_RANGE)
393 {
394 LONGEST low, high;
395 (*pos)++;
396 low = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
397 high = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
398 if (low < low_bound || high > high_bound)
8a3fe4f8 399 error (_("tuple range index out of range"));
c5aa993b 400 for (index = low; index <= high; index++)
c906108c 401 {
990a07ab 402 memcpy (value_contents_raw (array)
c906108c 403 + (index - low_bound) * element_size,
0fd88904 404 value_contents (element), element_size);
c906108c
SS
405 }
406 }
407 else
408 {
409 index = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
410 if (index < low_bound || index > high_bound)
8a3fe4f8 411 error (_("tuple index out of range"));
990a07ab 412 memcpy (value_contents_raw (array) + (index - low_bound) * element_size,
0fd88904 413 value_contents (element), element_size);
c906108c
SS
414 }
415 return index;
416}
417
0b4e1325
WZ
418struct value *
419value_f90_subarray (struct value *array,
420 struct expression *exp, int *pos, enum noside noside)
421{
422 int pc = (*pos) + 1;
423 LONGEST low_bound, high_bound;
424 struct type *range = check_typedef (TYPE_INDEX_TYPE (value_type (array)));
425 enum f90_range_type range_type = longest_to_int (exp->elts[pc].longconst);
426
427 *pos += 3;
428
429 if (range_type == LOW_BOUND_DEFAULT || range_type == BOTH_BOUND_DEFAULT)
430 low_bound = TYPE_LOW_BOUND (range);
431 else
432 low_bound = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
433
434 if (range_type == HIGH_BOUND_DEFAULT || range_type == BOTH_BOUND_DEFAULT)
435 high_bound = TYPE_HIGH_BOUND (range);
436 else
437 high_bound = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
438
439 return value_slice (array, low_bound, high_bound - low_bound + 1);
440}
441
4066e646
UW
442
443/* Promote value ARG1 as appropriate before performing a unary operation
444 on this argument.
445 If the result is not appropriate for any particular language then it
446 needs to patch this function. */
447
448void
449unop_promote (const struct language_defn *language, struct gdbarch *gdbarch,
450 struct value **arg1)
451{
452 struct type *type1;
453
454 *arg1 = coerce_ref (*arg1);
455 type1 = check_typedef (value_type (*arg1));
456
457 if (is_integral_type (type1))
458 {
459 switch (language->la_language)
460 {
461 default:
462 /* Perform integral promotion for ANSI C/C++.
463 If not appropropriate for any particular language
464 it needs to modify this function. */
465 {
466 struct type *builtin_int = builtin_type (gdbarch)->builtin_int;
467 if (TYPE_LENGTH (type1) < TYPE_LENGTH (builtin_int))
468 *arg1 = value_cast (builtin_int, *arg1);
469 }
470 break;
471 }
472 }
473}
474
475/* Promote values ARG1 and ARG2 as appropriate before performing a binary
476 operation on those two operands.
477 If the result is not appropriate for any particular language then it
478 needs to patch this function. */
479
480void
481binop_promote (const struct language_defn *language, struct gdbarch *gdbarch,
482 struct value **arg1, struct value **arg2)
483{
484 struct type *promoted_type = NULL;
485 struct type *type1;
486 struct type *type2;
487
488 *arg1 = coerce_ref (*arg1);
489 *arg2 = coerce_ref (*arg2);
490
491 type1 = check_typedef (value_type (*arg1));
492 type2 = check_typedef (value_type (*arg2));
493
494 if ((TYPE_CODE (type1) != TYPE_CODE_FLT
495 && TYPE_CODE (type1) != TYPE_CODE_DECFLOAT
496 && !is_integral_type (type1))
497 || (TYPE_CODE (type2) != TYPE_CODE_FLT
498 && TYPE_CODE (type2) != TYPE_CODE_DECFLOAT
499 && !is_integral_type (type2)))
500 return;
501
502 if (TYPE_CODE (type1) == TYPE_CODE_DECFLOAT
503 || TYPE_CODE (type2) == TYPE_CODE_DECFLOAT)
504 {
505 /* No promotion required. */
506 }
507 else if (TYPE_CODE (type1) == TYPE_CODE_FLT
508 || TYPE_CODE (type2) == TYPE_CODE_FLT)
509 {
510 switch (language->la_language)
511 {
512 case language_c:
513 case language_cplus:
514 case language_asm:
515 case language_objc:
516 /* No promotion required. */
517 break;
518
519 default:
520 /* For other languages the result type is unchanged from gdb
521 version 6.7 for backward compatibility.
522 If either arg was long double, make sure that value is also long
523 double. Otherwise use double. */
524 if (TYPE_LENGTH (type1) * 8 > gdbarch_double_bit (gdbarch)
525 || TYPE_LENGTH (type2) * 8 > gdbarch_double_bit (gdbarch))
526 promoted_type = builtin_type (gdbarch)->builtin_long_double;
527 else
528 promoted_type = builtin_type (gdbarch)->builtin_double;
529 break;
530 }
531 }
532 else if (TYPE_CODE (type1) == TYPE_CODE_BOOL
533 && TYPE_CODE (type2) == TYPE_CODE_BOOL)
534 {
535 /* No promotion required. */
536 }
537 else
538 /* Integral operations here. */
539 /* FIXME: Also mixed integral/booleans, with result an integer. */
540 {
541 const struct builtin_type *builtin = builtin_type (gdbarch);
542 unsigned int promoted_len1 = TYPE_LENGTH (type1);
543 unsigned int promoted_len2 = TYPE_LENGTH (type2);
544 int is_unsigned1 = TYPE_UNSIGNED (type1);
545 int is_unsigned2 = TYPE_UNSIGNED (type2);
546 unsigned int result_len;
547 int unsigned_operation;
548
549 /* Determine type length and signedness after promotion for
550 both operands. */
551 if (promoted_len1 < TYPE_LENGTH (builtin->builtin_int))
552 {
553 is_unsigned1 = 0;
554 promoted_len1 = TYPE_LENGTH (builtin->builtin_int);
555 }
556 if (promoted_len2 < TYPE_LENGTH (builtin->builtin_int))
557 {
558 is_unsigned2 = 0;
559 promoted_len2 = TYPE_LENGTH (builtin->builtin_int);
560 }
561
562 if (promoted_len1 > promoted_len2)
563 {
564 unsigned_operation = is_unsigned1;
565 result_len = promoted_len1;
566 }
567 else if (promoted_len2 > promoted_len1)
568 {
569 unsigned_operation = is_unsigned2;
570 result_len = promoted_len2;
571 }
572 else
573 {
574 unsigned_operation = is_unsigned1 || is_unsigned2;
575 result_len = promoted_len1;
576 }
577
578 switch (language->la_language)
579 {
580 case language_c:
581 case language_cplus:
582 case language_asm:
583 case language_objc:
584 if (result_len <= TYPE_LENGTH (builtin->builtin_int))
585 {
586 promoted_type = (unsigned_operation
587 ? builtin->builtin_unsigned_int
588 : builtin->builtin_int);
589 }
590 else if (result_len <= TYPE_LENGTH (builtin->builtin_long))
591 {
592 promoted_type = (unsigned_operation
593 ? builtin->builtin_unsigned_long
594 : builtin->builtin_long);
595 }
596 else
597 {
598 promoted_type = (unsigned_operation
599 ? builtin->builtin_unsigned_long_long
600 : builtin->builtin_long_long);
601 }
602 break;
603
604 default:
605 /* For other languages the result type is unchanged from gdb
606 version 6.7 for backward compatibility.
607 If either arg was long long, make sure that value is also long
608 long. Otherwise use long. */
609 if (unsigned_operation)
610 {
611 if (result_len > gdbarch_long_bit (gdbarch) / HOST_CHAR_BIT)
612 promoted_type = builtin->builtin_unsigned_long_long;
613 else
614 promoted_type = builtin->builtin_unsigned_long;
615 }
616 else
617 {
618 if (result_len > gdbarch_long_bit (gdbarch) / HOST_CHAR_BIT)
619 promoted_type = builtin->builtin_long_long;
620 else
621 promoted_type = builtin->builtin_long;
622 }
623 break;
624 }
625 }
626
627 if (promoted_type)
628 {
629 /* Promote both operands to common type. */
630 *arg1 = value_cast (promoted_type, *arg1);
631 *arg2 = value_cast (promoted_type, *arg2);
632 }
633}
634
89eef114
UW
635static int
636ptrmath_type_p (struct type *type)
637{
638 type = check_typedef (type);
639 if (TYPE_CODE (type) == TYPE_CODE_REF)
640 type = TYPE_TARGET_TYPE (type);
641
642 switch (TYPE_CODE (type))
643 {
644 case TYPE_CODE_PTR:
645 case TYPE_CODE_FUNC:
646 return 1;
647
648 case TYPE_CODE_ARRAY:
649 return current_language->c_style_arrays;
650
651 default:
652 return 0;
653 }
654}
655
61051030 656struct value *
fba45db2 657evaluate_subexp_standard (struct type *expect_type,
aa1ee363 658 struct expression *exp, int *pos,
fba45db2 659 enum noside noside)
c906108c
SS
660{
661 enum exp_opcode op;
662 int tem, tem2, tem3;
52f0bd74 663 int pc, pc2 = 0, oldpos;
61051030
AC
664 struct value *arg1 = NULL;
665 struct value *arg2 = NULL;
666 struct value *arg3;
c906108c
SS
667 struct type *type;
668 int nargs;
61051030 669 struct value **argvec;
c5aa993b 670 int upper, lower, retcode;
c906108c
SS
671 int code;
672 int ix;
673 long mem_offset;
c5aa993b 674 struct type **arg_types;
c906108c
SS
675 int save_pos1;
676
c906108c
SS
677 pc = (*pos)++;
678 op = exp->elts[pc].opcode;
679
680 switch (op)
681 {
682 case OP_SCOPE:
683 tem = longest_to_int (exp->elts[pc + 2].longconst);
684 (*pos) += 4 + BYTES_TO_EXP_ELEM (tem + 1);
0d5de010
DJ
685 if (noside == EVAL_SKIP)
686 goto nosideret;
79c2c32d
DC
687 arg1 = value_aggregate_elt (exp->elts[pc + 1].type,
688 &exp->elts[pc + 3].string,
0d5de010 689 0, noside);
c906108c 690 if (arg1 == NULL)
8a3fe4f8 691 error (_("There is no field named %s"), &exp->elts[pc + 3].string);
c906108c
SS
692 return arg1;
693
694 case OP_LONG:
695 (*pos) += 3;
696 return value_from_longest (exp->elts[pc + 1].type,
697 exp->elts[pc + 2].longconst);
698
699 case OP_DOUBLE:
700 (*pos) += 3;
701 return value_from_double (exp->elts[pc + 1].type,
702 exp->elts[pc + 2].doubleconst);
703
27bc4d80
TJB
704 case OP_DECFLOAT:
705 (*pos) += 3;
4ef30785
TJB
706 return value_from_decfloat (exp->elts[pc + 1].type,
707 exp->elts[pc + 2].decfloatconst);
27bc4d80 708
c906108c
SS
709 case OP_VAR_VALUE:
710 (*pos) += 3;
711 if (noside == EVAL_SKIP)
712 goto nosideret;
c906108c 713
070ad9f0
DB
714 /* JYG: We used to just return value_zero of the symbol type
715 if we're asked to avoid side effects. Otherwise we return
716 value_of_variable (...). However I'm not sure if
717 value_of_variable () has any side effect.
718 We need a full value object returned here for whatis_exp ()
719 to call evaluate_type () and then pass the full value to
720 value_rtti_target_type () if we are dealing with a pointer
721 or reference to a base class and print object is on. */
c906108c 722
5e572bb4
DJ
723 {
724 volatile struct gdb_exception except;
725 struct value *ret = NULL;
726
727 TRY_CATCH (except, RETURN_MASK_ERROR)
728 {
729 ret = value_of_variable (exp->elts[pc + 2].symbol,
730 exp->elts[pc + 1].block);
731 }
732
733 if (except.reason < 0)
734 {
735 if (noside == EVAL_AVOID_SIDE_EFFECTS)
736 ret = value_zero (SYMBOL_TYPE (exp->elts[pc + 2].symbol), not_lval);
737 else
738 throw_exception (except);
739 }
740
741 return ret;
742 }
c906108c
SS
743
744 case OP_LAST:
745 (*pos) += 2;
746 return
747 access_value_history (longest_to_int (exp->elts[pc + 1].longconst));
748
749 case OP_REGISTER:
750 {
67f3407f
DJ
751 const char *name = &exp->elts[pc + 2].string;
752 int regno;
123dc839 753 struct value *val;
67f3407f
DJ
754
755 (*pos) += 3 + BYTES_TO_EXP_ELEM (exp->elts[pc + 1].longconst + 1);
029a67e4
UW
756 regno = user_reg_map_name_to_regnum (current_gdbarch,
757 name, strlen (name));
67f3407f
DJ
758 if (regno == -1)
759 error (_("Register $%s not available."), name);
80f064a2
JB
760
761 /* In EVAL_AVOID_SIDE_EFFECTS mode, we only need to return
762 a value with the appropriate register type. Unfortunately,
763 we don't have easy access to the type of user registers.
764 So for these registers, we fetch the register value regardless
765 of the evaluation mode. */
766 if (noside == EVAL_AVOID_SIDE_EFFECTS
767 && regno < gdbarch_num_regs (current_gdbarch)
768 + gdbarch_num_pseudo_regs (current_gdbarch))
123dc839
DJ
769 val = value_zero (register_type (current_gdbarch, regno), not_lval);
770 else
771 val = value_of_register (regno, get_selected_frame (NULL));
c906108c 772 if (val == NULL)
67f3407f 773 error (_("Value of register %s not available."), name);
c906108c
SS
774 else
775 return val;
776 }
777 case OP_BOOL:
778 (*pos) += 2;
fbb06eb1
UW
779 type = language_bool_type (exp->language_defn, exp->gdbarch);
780 return value_from_longest (type, exp->elts[pc + 1].longconst);
c906108c
SS
781
782 case OP_INTERNALVAR:
783 (*pos) += 2;
784 return value_of_internalvar (exp->elts[pc + 1].internalvar);
785
786 case OP_STRING:
787 tem = longest_to_int (exp->elts[pc + 1].longconst);
788 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
789 if (noside == EVAL_SKIP)
790 goto nosideret;
791 return value_string (&exp->elts[pc + 2].string, tem);
792
a9fa03de
AF
793 case OP_OBJC_NSSTRING: /* Objective C Foundation Class NSString constant. */
794 tem = longest_to_int (exp->elts[pc + 1].longconst);
795 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
796 if (noside == EVAL_SKIP)
797 {
798 goto nosideret;
799 }
800 return (struct value *) value_nsstring (&exp->elts[pc + 2].string, tem + 1);
801
c906108c
SS
802 case OP_BITSTRING:
803 tem = longest_to_int (exp->elts[pc + 1].longconst);
804 (*pos)
805 += 3 + BYTES_TO_EXP_ELEM ((tem + HOST_CHAR_BIT - 1) / HOST_CHAR_BIT);
806 if (noside == EVAL_SKIP)
807 goto nosideret;
808 return value_bitstring (&exp->elts[pc + 2].string, tem);
809 break;
810
811 case OP_ARRAY:
812 (*pos) += 3;
813 tem2 = longest_to_int (exp->elts[pc + 1].longconst);
814 tem3 = longest_to_int (exp->elts[pc + 2].longconst);
815 nargs = tem3 - tem2 + 1;
816 type = expect_type ? check_typedef (expect_type) : NULL_TYPE;
817
818 if (expect_type != NULL_TYPE && noside != EVAL_SKIP
819 && TYPE_CODE (type) == TYPE_CODE_STRUCT)
820 {
61051030 821 struct value *rec = allocate_value (expect_type);
990a07ab 822 memset (value_contents_raw (rec), '\0', TYPE_LENGTH (type));
c906108c
SS
823 return evaluate_struct_tuple (rec, exp, pos, noside, nargs);
824 }
825
826 if (expect_type != NULL_TYPE && noside != EVAL_SKIP
827 && TYPE_CODE (type) == TYPE_CODE_ARRAY)
828 {
829 struct type *range_type = TYPE_FIELD_TYPE (type, 0);
830 struct type *element_type = TYPE_TARGET_TYPE (type);
61051030 831 struct value *array = allocate_value (expect_type);
c906108c
SS
832 int element_size = TYPE_LENGTH (check_typedef (element_type));
833 LONGEST low_bound, high_bound, index;
834 if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
835 {
836 low_bound = 0;
837 high_bound = (TYPE_LENGTH (type) / element_size) - 1;
838 }
839 index = low_bound;
990a07ab 840 memset (value_contents_raw (array), 0, TYPE_LENGTH (expect_type));
c5aa993b 841 for (tem = nargs; --nargs >= 0;)
c906108c 842 {
61051030 843 struct value *element;
c906108c
SS
844 int index_pc = 0;
845 if (exp->elts[*pos].opcode == BINOP_RANGE)
846 {
847 index_pc = ++(*pos);
848 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
849 }
850 element = evaluate_subexp (element_type, exp, pos, noside);
df407dfe 851 if (value_type (element) != element_type)
c906108c
SS
852 element = value_cast (element_type, element);
853 if (index_pc)
854 {
855 int continue_pc = *pos;
856 *pos = index_pc;
857 index = init_array_element (array, element, exp, pos, noside,
858 low_bound, high_bound);
859 *pos = continue_pc;
860 }
861 else
862 {
863 if (index > high_bound)
864 /* to avoid memory corruption */
8a3fe4f8 865 error (_("Too many array elements"));
990a07ab 866 memcpy (value_contents_raw (array)
c906108c 867 + (index - low_bound) * element_size,
0fd88904 868 value_contents (element),
c906108c
SS
869 element_size);
870 }
871 index++;
872 }
873 return array;
874 }
875
876 if (expect_type != NULL_TYPE && noside != EVAL_SKIP
877 && TYPE_CODE (type) == TYPE_CODE_SET)
878 {
61051030 879 struct value *set = allocate_value (expect_type);
47b667de 880 gdb_byte *valaddr = value_contents_raw (set);
c906108c
SS
881 struct type *element_type = TYPE_INDEX_TYPE (type);
882 struct type *check_type = element_type;
883 LONGEST low_bound, high_bound;
884
885 /* get targettype of elementtype */
886 while (TYPE_CODE (check_type) == TYPE_CODE_RANGE ||
887 TYPE_CODE (check_type) == TYPE_CODE_TYPEDEF)
888 check_type = TYPE_TARGET_TYPE (check_type);
889
890 if (get_discrete_bounds (element_type, &low_bound, &high_bound) < 0)
8a3fe4f8 891 error (_("(power)set type with unknown size"));
c906108c
SS
892 memset (valaddr, '\0', TYPE_LENGTH (type));
893 for (tem = 0; tem < nargs; tem++)
894 {
895 LONGEST range_low, range_high;
896 struct type *range_low_type, *range_high_type;
61051030 897 struct value *elem_val;
c906108c
SS
898 if (exp->elts[*pos].opcode == BINOP_RANGE)
899 {
900 (*pos)++;
901 elem_val = evaluate_subexp (element_type, exp, pos, noside);
df407dfe 902 range_low_type = value_type (elem_val);
c906108c
SS
903 range_low = value_as_long (elem_val);
904 elem_val = evaluate_subexp (element_type, exp, pos, noside);
df407dfe 905 range_high_type = value_type (elem_val);
c906108c
SS
906 range_high = value_as_long (elem_val);
907 }
908 else
909 {
910 elem_val = evaluate_subexp (element_type, exp, pos, noside);
df407dfe 911 range_low_type = range_high_type = value_type (elem_val);
c906108c
SS
912 range_low = range_high = value_as_long (elem_val);
913 }
914 /* check types of elements to avoid mixture of elements from
c5aa993b
JM
915 different types. Also check if type of element is "compatible"
916 with element type of powerset */
c906108c
SS
917 if (TYPE_CODE (range_low_type) == TYPE_CODE_RANGE)
918 range_low_type = TYPE_TARGET_TYPE (range_low_type);
919 if (TYPE_CODE (range_high_type) == TYPE_CODE_RANGE)
920 range_high_type = TYPE_TARGET_TYPE (range_high_type);
921 if ((TYPE_CODE (range_low_type) != TYPE_CODE (range_high_type)) ||
922 (TYPE_CODE (range_low_type) == TYPE_CODE_ENUM &&
923 (range_low_type != range_high_type)))
924 /* different element modes */
8a3fe4f8 925 error (_("POWERSET tuple elements of different mode"));
c906108c
SS
926 if ((TYPE_CODE (check_type) != TYPE_CODE (range_low_type)) ||
927 (TYPE_CODE (check_type) == TYPE_CODE_ENUM &&
928 range_low_type != check_type))
8a3fe4f8 929 error (_("incompatible POWERSET tuple elements"));
c906108c
SS
930 if (range_low > range_high)
931 {
8a3fe4f8 932 warning (_("empty POWERSET tuple range"));
c906108c
SS
933 continue;
934 }
935 if (range_low < low_bound || range_high > high_bound)
8a3fe4f8 936 error (_("POWERSET tuple element out of range"));
c906108c
SS
937 range_low -= low_bound;
938 range_high -= low_bound;
c5aa993b 939 for (; range_low <= range_high; range_low++)
c906108c
SS
940 {
941 int bit_index = (unsigned) range_low % TARGET_CHAR_BIT;
32c9a795 942 if (gdbarch_bits_big_endian (current_gdbarch))
c906108c 943 bit_index = TARGET_CHAR_BIT - 1 - bit_index;
c5aa993b 944 valaddr[(unsigned) range_low / TARGET_CHAR_BIT]
c906108c
SS
945 |= 1 << bit_index;
946 }
947 }
948 return set;
949 }
950
f976f6d4 951 argvec = (struct value **) alloca (sizeof (struct value *) * nargs);
c906108c
SS
952 for (tem = 0; tem < nargs; tem++)
953 {
954 /* Ensure that array expressions are coerced into pointer objects. */
955 argvec[tem] = evaluate_subexp_with_coercion (exp, pos, noside);
956 }
957 if (noside == EVAL_SKIP)
958 goto nosideret;
959 return value_array (tem2, tem3, argvec);
960
961 case TERNOP_SLICE:
962 {
61051030 963 struct value *array = evaluate_subexp (NULL_TYPE, exp, pos, noside);
c906108c 964 int lowbound
c5aa993b 965 = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
c906108c 966 int upper
c5aa993b 967 = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
c906108c
SS
968 if (noside == EVAL_SKIP)
969 goto nosideret;
970 return value_slice (array, lowbound, upper - lowbound + 1);
971 }
972
973 case TERNOP_SLICE_COUNT:
974 {
61051030 975 struct value *array = evaluate_subexp (NULL_TYPE, exp, pos, noside);
c906108c 976 int lowbound
c5aa993b 977 = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
c906108c 978 int length
c5aa993b 979 = value_as_long (evaluate_subexp (NULL_TYPE, exp, pos, noside));
c906108c
SS
980 return value_slice (array, lowbound, length);
981 }
982
983 case TERNOP_COND:
984 /* Skip third and second args to evaluate the first one. */
985 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
986 if (value_logical_not (arg1))
987 {
988 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
989 return evaluate_subexp (NULL_TYPE, exp, pos, noside);
990 }
991 else
992 {
993 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
994 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
995 return arg2;
996 }
997
a9fa03de
AF
998 case OP_OBJC_SELECTOR:
999 { /* Objective C @selector operator. */
1000 char *sel = &exp->elts[pc + 2].string;
1001 int len = longest_to_int (exp->elts[pc + 1].longconst);
1002
1003 (*pos) += 3 + BYTES_TO_EXP_ELEM (len + 1);
1004 if (noside == EVAL_SKIP)
1005 goto nosideret;
1006
1007 if (sel[len] != 0)
1008 sel[len] = 0; /* Make sure it's terminated. */
1009 return value_from_longest (lookup_pointer_type (builtin_type_void),
1010 lookup_child_selector (sel));
1011 }
1012
1013 case OP_OBJC_MSGCALL:
1014 { /* Objective C message (method) call. */
1015
c253954e
JB
1016 static CORE_ADDR responds_selector = 0;
1017 static CORE_ADDR method_selector = 0;
a9fa03de 1018
c253954e 1019 CORE_ADDR selector = 0;
a9fa03de 1020
a9fa03de
AF
1021 int struct_return = 0;
1022 int sub_no_side = 0;
1023
1024 static struct value *msg_send = NULL;
1025 static struct value *msg_send_stret = NULL;
1026 static int gnu_runtime = 0;
1027
1028 struct value *target = NULL;
1029 struct value *method = NULL;
1030 struct value *called_method = NULL;
1031
1032 struct type *selector_type = NULL;
1033
1034 struct value *ret = NULL;
1035 CORE_ADDR addr = 0;
1036
1037 selector = exp->elts[pc + 1].longconst;
1038 nargs = exp->elts[pc + 2].longconst;
1039 argvec = (struct value **) alloca (sizeof (struct value *)
1040 * (nargs + 5));
1041
1042 (*pos) += 3;
1043
1044 selector_type = lookup_pointer_type (builtin_type_void);
1045 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1046 sub_no_side = EVAL_NORMAL;
1047 else
1048 sub_no_side = noside;
1049
1050 target = evaluate_subexp (selector_type, exp, pos, sub_no_side);
1051
1052 if (value_as_long (target) == 0)
1053 return value_from_longest (builtin_type_long, 0);
1054
1055 if (lookup_minimal_symbol ("objc_msg_lookup", 0, 0))
1056 gnu_runtime = 1;
1057
1058 /* Find the method dispatch (Apple runtime) or method lookup
1059 (GNU runtime) function for Objective-C. These will be used
1060 to lookup the symbol information for the method. If we
1061 can't find any symbol information, then we'll use these to
1062 call the method, otherwise we can call the method
1063 directly. The msg_send_stret function is used in the special
1064 case of a method that returns a structure (Apple runtime
1065 only). */
1066 if (gnu_runtime)
1067 {
c253954e
JB
1068 struct type *type;
1069 type = lookup_pointer_type (builtin_type_void);
1070 type = lookup_function_type (type);
1071 type = lookup_pointer_type (type);
1072 type = lookup_function_type (type);
1073 type = lookup_pointer_type (type);
1074
a9fa03de
AF
1075 msg_send = find_function_in_inferior ("objc_msg_lookup");
1076 msg_send_stret = find_function_in_inferior ("objc_msg_lookup");
c253954e
JB
1077
1078 msg_send = value_from_pointer (type, value_as_address (msg_send));
1079 msg_send_stret = value_from_pointer (type,
1080 value_as_address (msg_send_stret));
a9fa03de
AF
1081 }
1082 else
1083 {
1084 msg_send = find_function_in_inferior ("objc_msgSend");
1085 /* Special dispatcher for methods returning structs */
1086 msg_send_stret = find_function_in_inferior ("objc_msgSend_stret");
1087 }
1088
1089 /* Verify the target object responds to this method. The
1090 standard top-level 'Object' class uses a different name for
1091 the verification method than the non-standard, but more
1092 often used, 'NSObject' class. Make sure we check for both. */
1093
1094 responds_selector = lookup_child_selector ("respondsToSelector:");
1095 if (responds_selector == 0)
1096 responds_selector = lookup_child_selector ("respondsTo:");
1097
1098 if (responds_selector == 0)
8a3fe4f8 1099 error (_("no 'respondsTo:' or 'respondsToSelector:' method"));
a9fa03de
AF
1100
1101 method_selector = lookup_child_selector ("methodForSelector:");
1102 if (method_selector == 0)
1103 method_selector = lookup_child_selector ("methodFor:");
1104
1105 if (method_selector == 0)
8a3fe4f8 1106 error (_("no 'methodFor:' or 'methodForSelector:' method"));
a9fa03de
AF
1107
1108 /* Call the verification method, to make sure that the target
1109 class implements the desired method. */
1110
1111 argvec[0] = msg_send;
1112 argvec[1] = target;
1113 argvec[2] = value_from_longest (builtin_type_long, responds_selector);
1114 argvec[3] = value_from_longest (builtin_type_long, selector);
1115 argvec[4] = 0;
1116
1117 ret = call_function_by_hand (argvec[0], 3, argvec + 1);
1118 if (gnu_runtime)
1119 {
1120 /* Function objc_msg_lookup returns a pointer. */
1121 argvec[0] = ret;
1122 ret = call_function_by_hand (argvec[0], 3, argvec + 1);
1123 }
1124 if (value_as_long (ret) == 0)
8a3fe4f8 1125 error (_("Target does not respond to this message selector."));
a9fa03de
AF
1126
1127 /* Call "methodForSelector:" method, to get the address of a
1128 function method that implements this selector for this
1129 class. If we can find a symbol at that address, then we
1130 know the return type, parameter types etc. (that's a good
1131 thing). */
1132
1133 argvec[0] = msg_send;
1134 argvec[1] = target;
1135 argvec[2] = value_from_longest (builtin_type_long, method_selector);
1136 argvec[3] = value_from_longest (builtin_type_long, selector);
1137 argvec[4] = 0;
1138
1139 ret = call_function_by_hand (argvec[0], 3, argvec + 1);
1140 if (gnu_runtime)
1141 {
1142 argvec[0] = ret;
1143 ret = call_function_by_hand (argvec[0], 3, argvec + 1);
1144 }
1145
1146 /* ret should now be the selector. */
1147
1148 addr = value_as_long (ret);
1149 if (addr)
1150 {
1151 struct symbol *sym = NULL;
1152 /* Is it a high_level symbol? */
1153
1154 sym = find_pc_function (addr);
1155 if (sym != NULL)
1156 method = value_of_variable (sym, 0);
1157 }
1158
1159 /* If we found a method with symbol information, check to see
1160 if it returns a struct. Otherwise assume it doesn't. */
1161
1162 if (method)
1163 {
1164 struct block *b;
1165 CORE_ADDR funaddr;
c055b101 1166 struct type *val_type;
a9fa03de 1167
c055b101 1168 funaddr = find_function_addr (method, &val_type);
a9fa03de
AF
1169
1170 b = block_for_pc (funaddr);
1171
c055b101 1172 CHECK_TYPEDEF (val_type);
a9fa03de 1173
c055b101
CV
1174 if ((val_type == NULL)
1175 || (TYPE_CODE(val_type) == TYPE_CODE_ERROR))
a9fa03de
AF
1176 {
1177 if (expect_type != NULL)
c055b101 1178 val_type = expect_type;
a9fa03de
AF
1179 }
1180
c055b101 1181 struct_return = using_struct_return (value_type (method), val_type);
a9fa03de
AF
1182 }
1183 else if (expect_type != NULL)
1184 {
c055b101
CV
1185 struct_return = using_struct_return (NULL,
1186 check_typedef (expect_type));
a9fa03de
AF
1187 }
1188
1189 /* Found a function symbol. Now we will substitute its
1190 value in place of the message dispatcher (obj_msgSend),
1191 so that we call the method directly instead of thru
1192 the dispatcher. The main reason for doing this is that
1193 we can now evaluate the return value and parameter values
1194 according to their known data types, in case we need to
1195 do things like promotion, dereferencing, special handling
1196 of structs and doubles, etc.
1197
1198 We want to use the type signature of 'method', but still
1199 jump to objc_msgSend() or objc_msgSend_stret() to better
1200 mimic the behavior of the runtime. */
1201
1202 if (method)
1203 {
df407dfe 1204 if (TYPE_CODE (value_type (method)) != TYPE_CODE_FUNC)
8a3fe4f8 1205 error (_("method address has symbol information with non-function type; skipping"));
a9fa03de
AF
1206 if (struct_return)
1207 VALUE_ADDRESS (method) = value_as_address (msg_send_stret);
1208 else
1209 VALUE_ADDRESS (method) = value_as_address (msg_send);
1210 called_method = method;
1211 }
1212 else
1213 {
1214 if (struct_return)
1215 called_method = msg_send_stret;
1216 else
1217 called_method = msg_send;
1218 }
1219
1220 if (noside == EVAL_SKIP)
1221 goto nosideret;
1222
1223 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1224 {
1225 /* If the return type doesn't look like a function type,
1226 call an error. This can happen if somebody tries to
1227 turn a variable into a function call. This is here
1228 because people often want to call, eg, strcmp, which
1229 gdb doesn't know is a function. If gdb isn't asked for
1230 it's opinion (ie. through "whatis"), it won't offer
1231 it. */
1232
df407dfe 1233 struct type *type = value_type (called_method);
a9fa03de
AF
1234 if (type && TYPE_CODE (type) == TYPE_CODE_PTR)
1235 type = TYPE_TARGET_TYPE (type);
1236 type = TYPE_TARGET_TYPE (type);
1237
1238 if (type)
1239 {
1240 if ((TYPE_CODE (type) == TYPE_CODE_ERROR) && expect_type)
1241 return allocate_value (expect_type);
1242 else
1243 return allocate_value (type);
1244 }
1245 else
8a3fe4f8 1246 error (_("Expression of type other than \"method returning ...\" used as a method"));
a9fa03de
AF
1247 }
1248
1249 /* Now depending on whether we found a symbol for the method,
1250 we will either call the runtime dispatcher or the method
1251 directly. */
1252
1253 argvec[0] = called_method;
1254 argvec[1] = target;
1255 argvec[2] = value_from_longest (builtin_type_long, selector);
1256 /* User-supplied arguments. */
1257 for (tem = 0; tem < nargs; tem++)
1258 argvec[tem + 3] = evaluate_subexp_with_coercion (exp, pos, noside);
1259 argvec[tem + 3] = 0;
1260
1261 if (gnu_runtime && (method != NULL))
1262 {
a9fa03de 1263 /* Function objc_msg_lookup returns a pointer. */
04624583
AC
1264 deprecated_set_value_type (argvec[0],
1265 lookup_function_type (lookup_pointer_type (value_type (argvec[0]))));
c253954e 1266 argvec[0] = call_function_by_hand (argvec[0], nargs + 2, argvec + 1);
a9fa03de 1267 }
a9fa03de 1268
c253954e 1269 ret = call_function_by_hand (argvec[0], nargs + 2, argvec + 1);
a9fa03de
AF
1270 return ret;
1271 }
1272 break;
1273
c906108c
SS
1274 case OP_FUNCALL:
1275 (*pos) += 2;
1276 op = exp->elts[*pos].opcode;
1277 nargs = longest_to_int (exp->elts[pc + 1].longconst);
1278 /* Allocate arg vector, including space for the function to be
c5aa993b 1279 called in argvec[0] and a terminating NULL */
f976f6d4 1280 argvec = (struct value **) alloca (sizeof (struct value *) * (nargs + 3));
c906108c
SS
1281 if (op == STRUCTOP_MEMBER || op == STRUCTOP_MPTR)
1282 {
c906108c
SS
1283 nargs++;
1284 /* First, evaluate the structure into arg2 */
1285 pc2 = (*pos)++;
1286
1287 if (noside == EVAL_SKIP)
1288 goto nosideret;
1289
1290 if (op == STRUCTOP_MEMBER)
1291 {
1292 arg2 = evaluate_subexp_for_address (exp, pos, noside);
1293 }
1294 else
1295 {
1296 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1297 }
1298
1299 /* If the function is a virtual function, then the
1300 aggregate value (providing the structure) plays
1301 its part by providing the vtable. Otherwise,
1302 it is just along for the ride: call the function
1303 directly. */
1304
1305 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1306
0d5de010
DJ
1307 if (TYPE_CODE (check_typedef (value_type (arg1)))
1308 != TYPE_CODE_METHODPTR)
1309 error (_("Non-pointer-to-member value used in pointer-to-member "
1310 "construct"));
c906108c 1311
0d5de010 1312 if (noside == EVAL_AVOID_SIDE_EFFECTS)
c906108c 1313 {
0d5de010
DJ
1314 struct type *method_type = check_typedef (value_type (arg1));
1315 arg1 = value_zero (method_type, not_lval);
c906108c
SS
1316 }
1317 else
0d5de010 1318 arg1 = cplus_method_ptr_to_value (&arg2, arg1);
c906108c
SS
1319
1320 /* Now, say which argument to start evaluating from */
1321 tem = 2;
1322 }
1323 else if (op == STRUCTOP_STRUCT || op == STRUCTOP_PTR)
1324 {
1325 /* Hair for method invocations */
1326 int tem2;
1327
1328 nargs++;
1329 /* First, evaluate the structure into arg2 */
1330 pc2 = (*pos)++;
1331 tem2 = longest_to_int (exp->elts[pc2 + 1].longconst);
1332 *pos += 3 + BYTES_TO_EXP_ELEM (tem2 + 1);
1333 if (noside == EVAL_SKIP)
1334 goto nosideret;
1335
1336 if (op == STRUCTOP_STRUCT)
1337 {
1338 /* If v is a variable in a register, and the user types
c5aa993b
JM
1339 v.method (), this will produce an error, because v has
1340 no address.
1341
1342 A possible way around this would be to allocate a
1343 copy of the variable on the stack, copy in the
1344 contents, call the function, and copy out the
1345 contents. I.e. convert this from call by reference
1346 to call by copy-return (or whatever it's called).
1347 However, this does not work because it is not the
1348 same: the method being called could stash a copy of
1349 the address, and then future uses through that address
1350 (after the method returns) would be expected to
1351 use the variable itself, not some copy of it. */
c906108c
SS
1352 arg2 = evaluate_subexp_for_address (exp, pos, noside);
1353 }
1354 else
1355 {
1356 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1357 }
1358 /* Now, say which argument to start evaluating from */
1359 tem = 2;
1360 }
1361 else
1362 {
1363 /* Non-method function call */
1364 save_pos1 = *pos;
1365 argvec[0] = evaluate_subexp_with_coercion (exp, pos, noside);
1366 tem = 1;
df407dfe 1367 type = value_type (argvec[0]);
c906108c
SS
1368 if (type && TYPE_CODE (type) == TYPE_CODE_PTR)
1369 type = TYPE_TARGET_TYPE (type);
1370 if (type && TYPE_CODE (type) == TYPE_CODE_FUNC)
1371 {
1372 for (; tem <= nargs && tem <= TYPE_NFIELDS (type); tem++)
1373 {
c5aa993b
JM
1374 /* pai: FIXME This seems to be coercing arguments before
1375 * overload resolution has been done! */
1376 argvec[tem] = evaluate_subexp (TYPE_FIELD_TYPE (type, tem - 1),
c906108c
SS
1377 exp, pos, noside);
1378 }
1379 }
1380 }
1381
1382 /* Evaluate arguments */
1383 for (; tem <= nargs; tem++)
1384 {
1385 /* Ensure that array expressions are coerced into pointer objects. */
1386 argvec[tem] = evaluate_subexp_with_coercion (exp, pos, noside);
1387 }
1388
1389 /* signal end of arglist */
1390 argvec[tem] = 0;
1391
1392 if (op == STRUCTOP_STRUCT || op == STRUCTOP_PTR)
1393 {
1394 int static_memfuncp;
c906108c 1395 char tstr[256];
c5aa993b
JM
1396
1397 /* Method invocation : stuff "this" as first parameter */
9b013045 1398 argvec[1] = arg2;
c5aa993b
JM
1399 /* Name of method from expression */
1400 strcpy (tstr, &exp->elts[pc2 + 2].string);
1401
1402 if (overload_resolution && (exp->language_defn->la_language == language_cplus))
1403 {
1404 /* Language is C++, do some overload resolution before evaluation */
61051030 1405 struct value *valp = NULL;
c5aa993b
JM
1406
1407 /* Prepare list of argument types for overload resolution */
c2636352 1408 arg_types = (struct type **) alloca (nargs * (sizeof (struct type *)));
c5aa993b 1409 for (ix = 1; ix <= nargs; ix++)
df407dfe 1410 arg_types[ix - 1] = value_type (argvec[ix]);
c5aa993b
JM
1411
1412 (void) find_overload_match (arg_types, nargs, tstr,
1413 1 /* method */ , 0 /* strict match */ ,
7f8c9282 1414 &arg2 /* the object */ , NULL,
c5aa993b
JM
1415 &valp, NULL, &static_memfuncp);
1416
1417
1418 argvec[1] = arg2; /* the ``this'' pointer */
1419 argvec[0] = valp; /* use the method found after overload resolution */
1420 }
1421 else
1422 /* Non-C++ case -- or no overload resolution */
1423 {
9b013045 1424 struct value *temp = arg2;
c5aa993b
JM
1425 argvec[0] = value_struct_elt (&temp, argvec + 1, tstr,
1426 &static_memfuncp,
1427 op == STRUCTOP_STRUCT
1428 ? "structure" : "structure pointer");
9b013045
PS
1429 /* value_struct_elt updates temp with the correct value
1430 of the ``this'' pointer if necessary, so modify argvec[1] to
1431 reflect any ``this'' changes. */
df407dfe
AC
1432 arg2 = value_from_longest (lookup_pointer_type(value_type (temp)),
1433 VALUE_ADDRESS (temp) + value_offset (temp)
13c3b5f5 1434 + value_embedded_offset (temp));
c5aa993b
JM
1435 argvec[1] = arg2; /* the ``this'' pointer */
1436 }
c906108c
SS
1437
1438 if (static_memfuncp)
1439 {
1440 argvec[1] = argvec[0];
1441 nargs--;
1442 argvec++;
1443 }
1444 }
1445 else if (op == STRUCTOP_MEMBER || op == STRUCTOP_MPTR)
1446 {
1447 argvec[1] = arg2;
1448 argvec[0] = arg1;
1449 }
917317f4 1450 else if (op == OP_VAR_VALUE)
c5aa993b 1451 {
c906108c 1452 /* Non-member function being called */
917317f4
JM
1453 /* fn: This can only be done for C++ functions. A C-style function
1454 in a C++ program, for instance, does not have the fields that
1455 are expected here */
c906108c 1456
c5aa993b
JM
1457 if (overload_resolution && (exp->language_defn->la_language == language_cplus))
1458 {
1459 /* Language is C++, do some overload resolution before evaluation */
1460 struct symbol *symp;
1461
1462 /* Prepare list of argument types for overload resolution */
c2636352 1463 arg_types = (struct type **) alloca (nargs * (sizeof (struct type *)));
c5aa993b 1464 for (ix = 1; ix <= nargs; ix++)
df407dfe 1465 arg_types[ix - 1] = value_type (argvec[ix]);
c5aa993b
JM
1466
1467 (void) find_overload_match (arg_types, nargs, NULL /* no need for name */ ,
1468 0 /* not method */ , 0 /* strict match */ ,
917317f4 1469 NULL, exp->elts[save_pos1+2].symbol /* the function */ ,
c5aa993b
JM
1470 NULL, &symp, NULL);
1471
1472 /* Now fix the expression being evaluated */
917317f4 1473 exp->elts[save_pos1+2].symbol = symp;
c5aa993b
JM
1474 argvec[0] = evaluate_subexp_with_coercion (exp, &save_pos1, noside);
1475 }
1476 else
1477 {
1478 /* Not C++, or no overload resolution allowed */
1479 /* nothing to be done; argvec already correctly set up */
1480 }
1481 }
917317f4
JM
1482 else
1483 {
1484 /* It is probably a C-style function */
1485 /* nothing to be done; argvec already correctly set up */
1486 }
c906108c
SS
1487
1488 do_call_it:
1489
1490 if (noside == EVAL_SKIP)
1491 goto nosideret;
0478d61c 1492 if (argvec[0] == NULL)
8a3fe4f8 1493 error (_("Cannot evaluate function -- may be inlined"));
c906108c
SS
1494 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1495 {
1496 /* If the return type doesn't look like a function type, call an
1497 error. This can happen if somebody tries to turn a variable into
1498 a function call. This is here because people often want to
1499 call, eg, strcmp, which gdb doesn't know is a function. If
1500 gdb isn't asked for it's opinion (ie. through "whatis"),
1501 it won't offer it. */
1502
1503 struct type *ftype =
df407dfe 1504 TYPE_TARGET_TYPE (value_type (argvec[0]));
c906108c
SS
1505
1506 if (ftype)
df407dfe 1507 return allocate_value (TYPE_TARGET_TYPE (value_type (argvec[0])));
c906108c 1508 else
8a3fe4f8 1509 error (_("Expression of type other than \"Function returning ...\" used as function"));
c906108c 1510 }
c906108c
SS
1511 return call_function_by_hand (argvec[0], nargs, argvec + 1);
1512 /* pai: FIXME save value from call_function_by_hand, then adjust pc by adjust_fn_pc if +ve */
1513
c5aa993b 1514 case OP_F77_UNDETERMINED_ARGLIST:
c906108c
SS
1515
1516 /* Remember that in F77, functions, substring ops and
1517 array subscript operations cannot be disambiguated
1518 at parse time. We have made all array subscript operations,
1519 substring operations as well as function calls come here
1520 and we now have to discover what the heck this thing actually was.
c5aa993b 1521 If it is a function, we process just as if we got an OP_FUNCALL. */
c906108c 1522
c5aa993b 1523 nargs = longest_to_int (exp->elts[pc + 1].longconst);
c906108c
SS
1524 (*pos) += 2;
1525
c5aa993b 1526 /* First determine the type code we are dealing with. */
c906108c 1527 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
df407dfe 1528 type = check_typedef (value_type (arg1));
c906108c
SS
1529 code = TYPE_CODE (type);
1530
df0ca547
WZ
1531 if (code == TYPE_CODE_PTR)
1532 {
1533 /* Fortran always passes variable to subroutines as pointer.
1534 So we need to look into its target type to see if it is
1535 array, string or function. If it is, we need to switch
1536 to the target value the original one points to. */
1537 struct type *target_type = check_typedef (TYPE_TARGET_TYPE (type));
1538
1539 if (TYPE_CODE (target_type) == TYPE_CODE_ARRAY
1540 || TYPE_CODE (target_type) == TYPE_CODE_STRING
1541 || TYPE_CODE (target_type) == TYPE_CODE_FUNC)
1542 {
1543 arg1 = value_ind (arg1);
1544 type = check_typedef (value_type (arg1));
1545 code = TYPE_CODE (type);
1546 }
1547 }
1548
c5aa993b 1549 switch (code)
c906108c
SS
1550 {
1551 case TYPE_CODE_ARRAY:
0b4e1325
WZ
1552 if (exp->elts[*pos].opcode == OP_F90_RANGE)
1553 return value_f90_subarray (arg1, exp, pos, noside);
1554 else
1555 goto multi_f77_subscript;
c906108c
SS
1556
1557 case TYPE_CODE_STRING:
0b4e1325
WZ
1558 if (exp->elts[*pos].opcode == OP_F90_RANGE)
1559 return value_f90_subarray (arg1, exp, pos, noside);
1560 else
1561 {
1562 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1563 return value_subscript (arg1, arg2);
1564 }
c906108c
SS
1565
1566 case TYPE_CODE_PTR:
1567 case TYPE_CODE_FUNC:
1568 /* It's a function call. */
1569 /* Allocate arg vector, including space for the function to be
1570 called in argvec[0] and a terminating NULL */
f976f6d4 1571 argvec = (struct value **) alloca (sizeof (struct value *) * (nargs + 2));
c906108c
SS
1572 argvec[0] = arg1;
1573 tem = 1;
1574 for (; tem <= nargs; tem++)
1575 argvec[tem] = evaluate_subexp_with_coercion (exp, pos, noside);
c5aa993b 1576 argvec[tem] = 0; /* signal end of arglist */
c906108c
SS
1577 goto do_call_it;
1578
1579 default:
8a3fe4f8 1580 error (_("Cannot perform substring on this type"));
c906108c
SS
1581 }
1582
c906108c
SS
1583 case OP_COMPLEX:
1584 /* We have a complex number, There should be 2 floating
c5aa993b 1585 point numbers that compose it */
c806c55a 1586 (*pos) += 2;
c906108c 1587 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
c5aa993b 1588 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
c906108c 1589
c806c55a 1590 return value_literal_complex (arg1, arg2, exp->elts[pc + 1].type);
c906108c
SS
1591
1592 case STRUCTOP_STRUCT:
1593 tem = longest_to_int (exp->elts[pc + 1].longconst);
1594 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
1595 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1596 if (noside == EVAL_SKIP)
1597 goto nosideret;
1598 if (noside == EVAL_AVOID_SIDE_EFFECTS)
df407dfe 1599 return value_zero (lookup_struct_elt_type (value_type (arg1),
c906108c
SS
1600 &exp->elts[pc + 2].string,
1601 0),
1602 lval_memory);
1603 else
1604 {
61051030 1605 struct value *temp = arg1;
c906108c
SS
1606 return value_struct_elt (&temp, NULL, &exp->elts[pc + 2].string,
1607 NULL, "structure");
1608 }
1609
1610 case STRUCTOP_PTR:
1611 tem = longest_to_int (exp->elts[pc + 1].longconst);
1612 (*pos) += 3 + BYTES_TO_EXP_ELEM (tem + 1);
1613 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1614 if (noside == EVAL_SKIP)
1615 goto nosideret;
070ad9f0
DB
1616
1617 /* JYG: if print object is on we need to replace the base type
1618 with rtti type in order to continue on with successful
1619 lookup of member / method only available in the rtti type. */
1620 {
df407dfe 1621 struct type *type = value_type (arg1);
070ad9f0
DB
1622 struct type *real_type;
1623 int full, top, using_enc;
1624
1625 if (objectprint && TYPE_TARGET_TYPE(type) &&
1626 (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_CLASS))
1627 {
1628 real_type = value_rtti_target_type (arg1, &full, &top, &using_enc);
1629 if (real_type)
1630 {
1631 if (TYPE_CODE (type) == TYPE_CODE_PTR)
1632 real_type = lookup_pointer_type (real_type);
1633 else
1634 real_type = lookup_reference_type (real_type);
1635
1636 arg1 = value_cast (real_type, arg1);
1637 }
1638 }
1639 }
1640
c906108c 1641 if (noside == EVAL_AVOID_SIDE_EFFECTS)
df407dfe 1642 return value_zero (lookup_struct_elt_type (value_type (arg1),
c906108c
SS
1643 &exp->elts[pc + 2].string,
1644 0),
1645 lval_memory);
1646 else
1647 {
61051030 1648 struct value *temp = arg1;
c906108c
SS
1649 return value_struct_elt (&temp, NULL, &exp->elts[pc + 2].string,
1650 NULL, "structure pointer");
1651 }
1652
1653 case STRUCTOP_MEMBER:
0d5de010
DJ
1654 case STRUCTOP_MPTR:
1655 if (op == STRUCTOP_MEMBER)
1656 arg1 = evaluate_subexp_for_address (exp, pos, noside);
1657 else
1658 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1659
c906108c
SS
1660 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1661
0d5de010
DJ
1662 if (noside == EVAL_SKIP)
1663 goto nosideret;
c5aa993b 1664
0d5de010
DJ
1665 type = check_typedef (value_type (arg2));
1666 switch (TYPE_CODE (type))
1667 {
1668 case TYPE_CODE_METHODPTR:
0d5de010
DJ
1669 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1670 return value_zero (TYPE_TARGET_TYPE (type), not_lval);
1671 else
1672 {
1673 arg2 = cplus_method_ptr_to_value (&arg1, arg2);
1674 gdb_assert (TYPE_CODE (value_type (arg2)) == TYPE_CODE_PTR);
1675 return value_ind (arg2);
1676 }
c906108c 1677
0d5de010
DJ
1678 case TYPE_CODE_MEMBERPTR:
1679 /* Now, convert these values to an address. */
1680 arg1 = value_cast (lookup_pointer_type (TYPE_DOMAIN_TYPE (type)),
1681 arg1);
c906108c 1682
0d5de010 1683 mem_offset = value_as_long (arg2);
c906108c 1684
0d5de010
DJ
1685 arg3 = value_from_pointer (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
1686 value_as_long (arg1) + mem_offset);
1687 return value_ind (arg3);
1688
1689 default:
1690 error (_("non-pointer-to-member value used in pointer-to-member construct"));
c5aa993b 1691 }
c906108c
SS
1692
1693 case BINOP_CONCAT:
1694 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1695 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1696 if (noside == EVAL_SKIP)
1697 goto nosideret;
1698 if (binop_user_defined_p (op, arg1, arg2))
1699 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1700 else
1701 return value_concat (arg1, arg2);
1702
1703 case BINOP_ASSIGN:
1704 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
df407dfe 1705 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
c906108c 1706
c906108c
SS
1707 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
1708 return arg1;
1709 if (binop_user_defined_p (op, arg1, arg2))
1710 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1711 else
1712 return value_assign (arg1, arg2);
1713
1714 case BINOP_ASSIGN_MODIFY:
1715 (*pos) += 2;
1716 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
df407dfe 1717 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
c906108c
SS
1718 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
1719 return arg1;
1720 op = exp->elts[pc + 1].opcode;
1721 if (binop_user_defined_p (op, arg1, arg2))
1722 return value_x_binop (arg1, arg2, BINOP_ASSIGN_MODIFY, op, noside);
89eef114
UW
1723 else if (op == BINOP_ADD && ptrmath_type_p (value_type (arg1)))
1724 arg2 = value_ptradd (arg1, arg2);
1725 else if (op == BINOP_SUB && ptrmath_type_p (value_type (arg1)))
1726 arg2 = value_ptrsub (arg1, arg2);
c906108c 1727 else
f44316fa
UW
1728 {
1729 struct value *tmp = arg1;
1730
1731 /* For shift and integer exponentiation operations,
1732 only promote the first argument. */
1733 if ((op == BINOP_LSH || op == BINOP_RSH || op == BINOP_EXP)
1734 && is_integral_type (value_type (arg2)))
1735 unop_promote (exp->language_defn, exp->gdbarch, &tmp);
1736 else
1737 binop_promote (exp->language_defn, exp->gdbarch, &tmp, &arg2);
1738
1739 arg2 = value_binop (tmp, arg2, op);
1740 }
c906108c
SS
1741 return value_assign (arg1, arg2);
1742
1743 case BINOP_ADD:
1744 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1745 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1746 if (noside == EVAL_SKIP)
1747 goto nosideret;
1748 if (binop_user_defined_p (op, arg1, arg2))
1749 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
89eef114
UW
1750 else if (ptrmath_type_p (value_type (arg1)))
1751 return value_ptradd (arg1, arg2);
1752 else if (ptrmath_type_p (value_type (arg2)))
1753 return value_ptradd (arg2, arg1);
c906108c 1754 else
f44316fa
UW
1755 {
1756 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
1757 return value_binop (arg1, arg2, BINOP_ADD);
1758 }
c906108c
SS
1759
1760 case BINOP_SUB:
1761 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1762 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1763 if (noside == EVAL_SKIP)
1764 goto nosideret;
1765 if (binop_user_defined_p (op, arg1, arg2))
1766 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
89eef114
UW
1767 else if (ptrmath_type_p (value_type (arg1)))
1768 {
1769 if (ptrmath_type_p (value_type (arg2)))
1770 {
1771 /* FIXME -- should be ptrdiff_t */
1772 type = builtin_type (exp->gdbarch)->builtin_long;
1773 return value_from_longest (type, value_ptrdiff (arg1, arg2));
1774 }
1775 else
1776 return value_ptrsub (arg1, arg2);
1777 }
c906108c 1778 else
f44316fa
UW
1779 {
1780 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
1781 return value_binop (arg1, arg2, BINOP_SUB);
1782 }
c906108c 1783
bd49c137 1784 case BINOP_EXP:
c906108c
SS
1785 case BINOP_MUL:
1786 case BINOP_DIV:
9b3442ee 1787 case BINOP_INTDIV:
c906108c
SS
1788 case BINOP_REM:
1789 case BINOP_MOD:
1790 case BINOP_LSH:
1791 case BINOP_RSH:
1792 case BINOP_BITWISE_AND:
1793 case BINOP_BITWISE_IOR:
1794 case BINOP_BITWISE_XOR:
1795 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1796 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1797 if (noside == EVAL_SKIP)
1798 goto nosideret;
1799 if (binop_user_defined_p (op, arg1, arg2))
1800 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
c906108c 1801 else
301f0ecf
DE
1802 {
1803 /* If EVAL_AVOID_SIDE_EFFECTS and we're dividing by zero,
1804 fudge arg2 to avoid division-by-zero, the caller is
1805 (theoretically) only looking for the type of the result. */
1806 if (noside == EVAL_AVOID_SIDE_EFFECTS
1807 /* ??? Do we really want to test for BINOP_MOD here?
1808 The implementation of value_binop gives it a well-defined
1809 value. */
1810 && (op == BINOP_DIV
1811 || op == BINOP_INTDIV
1812 || op == BINOP_REM
1813 || op == BINOP_MOD)
1814 && value_logical_not (arg2))
1815 {
1816 struct value *v_one, *retval;
1817
1818 v_one = value_one (value_type (arg2), not_lval);
f44316fa 1819 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &v_one);
301f0ecf
DE
1820 retval = value_binop (arg1, v_one, op);
1821 return retval;
1822 }
1823 else
f44316fa
UW
1824 {
1825 /* For shift and integer exponentiation operations,
1826 only promote the first argument. */
1827 if ((op == BINOP_LSH || op == BINOP_RSH || op == BINOP_EXP)
1828 && is_integral_type (value_type (arg2)))
1829 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
1830 else
1831 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
1832
1833 return value_binop (arg1, arg2, op);
1834 }
301f0ecf 1835 }
c906108c
SS
1836
1837 case BINOP_RANGE:
1838 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1839 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
1840 if (noside == EVAL_SKIP)
1841 goto nosideret;
8a3fe4f8 1842 error (_("':' operator used in invalid context"));
c906108c
SS
1843
1844 case BINOP_SUBSCRIPT:
1845 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1846 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1847 if (noside == EVAL_SKIP)
1848 goto nosideret;
1849 if (binop_user_defined_p (op, arg1, arg2))
1850 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
1851 else
c5aa993b 1852 {
c906108c
SS
1853 /* If the user attempts to subscript something that is not an
1854 array or pointer type (like a plain int variable for example),
1855 then report this as an error. */
1856
994b9211 1857 arg1 = coerce_ref (arg1);
df407dfe 1858 type = check_typedef (value_type (arg1));
c906108c
SS
1859 if (TYPE_CODE (type) != TYPE_CODE_ARRAY
1860 && TYPE_CODE (type) != TYPE_CODE_PTR)
1861 {
1862 if (TYPE_NAME (type))
8a3fe4f8 1863 error (_("cannot subscript something of type `%s'"),
c906108c
SS
1864 TYPE_NAME (type));
1865 else
8a3fe4f8 1866 error (_("cannot subscript requested type"));
c906108c
SS
1867 }
1868
1869 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1870 return value_zero (TYPE_TARGET_TYPE (type), VALUE_LVAL (arg1));
1871 else
1872 return value_subscript (arg1, arg2);
c5aa993b 1873 }
c906108c
SS
1874
1875 case BINOP_IN:
1876 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1877 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1878 if (noside == EVAL_SKIP)
1879 goto nosideret;
fbb06eb1
UW
1880 type = language_bool_type (exp->language_defn, exp->gdbarch);
1881 return value_from_longest (type, (LONGEST) value_in (arg1, arg2));
c5aa993b 1882
c906108c
SS
1883 case MULTI_SUBSCRIPT:
1884 (*pos) += 2;
1885 nargs = longest_to_int (exp->elts[pc + 1].longconst);
1886 arg1 = evaluate_subexp_with_coercion (exp, pos, noside);
1887 while (nargs-- > 0)
1888 {
1889 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1890 /* FIXME: EVAL_SKIP handling may not be correct. */
1891 if (noside == EVAL_SKIP)
1892 {
1893 if (nargs > 0)
1894 {
1895 continue;
1896 }
1897 else
1898 {
1899 goto nosideret;
1900 }
1901 }
1902 /* FIXME: EVAL_AVOID_SIDE_EFFECTS handling may not be correct. */
1903 if (noside == EVAL_AVOID_SIDE_EFFECTS)
1904 {
1905 /* If the user attempts to subscript something that has no target
c5aa993b
JM
1906 type (like a plain int variable for example), then report this
1907 as an error. */
1908
df407dfe 1909 type = TYPE_TARGET_TYPE (check_typedef (value_type (arg1)));
c906108c
SS
1910 if (type != NULL)
1911 {
1912 arg1 = value_zero (type, VALUE_LVAL (arg1));
1913 noside = EVAL_SKIP;
1914 continue;
1915 }
1916 else
1917 {
8a3fe4f8 1918 error (_("cannot subscript something of type `%s'"),
df407dfe 1919 TYPE_NAME (value_type (arg1)));
c906108c
SS
1920 }
1921 }
c5aa993b 1922
c906108c
SS
1923 if (binop_user_defined_p (op, arg1, arg2))
1924 {
1925 arg1 = value_x_binop (arg1, arg2, op, OP_NULL, noside);
1926 }
1927 else
1928 {
afc05acb
UW
1929 arg1 = coerce_ref (arg1);
1930 type = check_typedef (value_type (arg1));
1931
1932 switch (TYPE_CODE (type))
1933 {
1934 case TYPE_CODE_PTR:
1935 case TYPE_CODE_ARRAY:
1936 case TYPE_CODE_STRING:
1937 arg1 = value_subscript (arg1, arg2);
1938 break;
1939
1940 case TYPE_CODE_BITSTRING:
fbb06eb1
UW
1941 type = language_bool_type (exp->language_defn, exp->gdbarch);
1942 arg1 = value_bitstring_subscript (type, arg1, arg2);
afc05acb
UW
1943 break;
1944
1945 default:
1946 if (TYPE_NAME (type))
1947 error (_("cannot subscript something of type `%s'"),
1948 TYPE_NAME (type));
1949 else
1950 error (_("cannot subscript requested type"));
1951 }
c906108c
SS
1952 }
1953 }
1954 return (arg1);
1955
1956 multi_f77_subscript:
c5aa993b 1957 {
7ca2d3a3
DL
1958 int subscript_array[MAX_FORTRAN_DIMS];
1959 int array_size_array[MAX_FORTRAN_DIMS];
c5aa993b
JM
1960 int ndimensions = 1, i;
1961 struct type *tmp_type;
1962 int offset_item; /* The array offset where the item lives */
c906108c
SS
1963
1964 if (nargs > MAX_FORTRAN_DIMS)
8a3fe4f8 1965 error (_("Too many subscripts for F77 (%d Max)"), MAX_FORTRAN_DIMS);
c906108c 1966
df407dfe 1967 tmp_type = check_typedef (value_type (arg1));
c906108c
SS
1968 ndimensions = calc_f77_array_dims (type);
1969
1970 if (nargs != ndimensions)
8a3fe4f8 1971 error (_("Wrong number of subscripts"));
c906108c
SS
1972
1973 /* Now that we know we have a legal array subscript expression
c5aa993b 1974 let us actually find out where this element exists in the array. */
c906108c 1975
c5aa993b 1976 offset_item = 0;
7ca2d3a3
DL
1977 /* Take array indices left to right */
1978 for (i = 0; i < nargs; i++)
c906108c 1979 {
c5aa993b 1980 /* Evaluate each subscript, It must be a legal integer in F77 */
c906108c
SS
1981 arg2 = evaluate_subexp_with_coercion (exp, pos, noside);
1982
c5aa993b 1983 /* Fill in the subscript and array size arrays */
c906108c
SS
1984
1985 subscript_array[i] = value_as_long (arg2);
7ca2d3a3 1986 }
c5aa993b 1987
7ca2d3a3
DL
1988 /* Internal type of array is arranged right to left */
1989 for (i = 0; i < nargs; i++)
1990 {
c906108c
SS
1991 retcode = f77_get_dynamic_upperbound (tmp_type, &upper);
1992 if (retcode == BOUND_FETCH_ERROR)
8a3fe4f8 1993 error (_("Cannot obtain dynamic upper bound"));
c906108c 1994
c5aa993b 1995 retcode = f77_get_dynamic_lowerbound (tmp_type, &lower);
c906108c 1996 if (retcode == BOUND_FETCH_ERROR)
8a3fe4f8 1997 error (_("Cannot obtain dynamic lower bound"));
c906108c 1998
7ca2d3a3 1999 array_size_array[nargs - i - 1] = upper - lower + 1;
c5aa993b
JM
2000
2001 /* Zero-normalize subscripts so that offsetting will work. */
2002
7ca2d3a3 2003 subscript_array[nargs - i - 1] -= lower;
c906108c
SS
2004
2005 /* If we are at the bottom of a multidimensional
2006 array type then keep a ptr to the last ARRAY
2007 type around for use when calling value_subscript()
2008 below. This is done because we pretend to value_subscript
2009 that we actually have a one-dimensional array
2010 of base element type that we apply a simple
c5aa993b 2011 offset to. */
c906108c 2012
7ca2d3a3 2013 if (i < nargs - 1)
c5aa993b 2014 tmp_type = check_typedef (TYPE_TARGET_TYPE (tmp_type));
c906108c
SS
2015 }
2016
2017 /* Now let us calculate the offset for this item */
2018
7ca2d3a3 2019 offset_item = subscript_array[ndimensions - 1];
c5aa993b 2020
7ca2d3a3 2021 for (i = ndimensions - 1; i > 0; --i)
c5aa993b 2022 offset_item =
7ca2d3a3 2023 array_size_array[i - 1] * offset_item + subscript_array[i - 1];
c906108c 2024
962d6d93
DL
2025 /* Construct a value node with the value of the offset */
2026
2027 arg2 = value_from_longest (builtin_type_f_integer, offset_item);
2028
c906108c
SS
2029 /* Let us now play a dirty trick: we will take arg1
2030 which is a value node pointing to the topmost level
2031 of the multidimensional array-set and pretend
2032 that it is actually a array of the final element
2033 type, this will ensure that value_subscript()
2034 returns the correct type value */
2035
04624583 2036 deprecated_set_value_type (arg1, tmp_type);
9eec4d1e 2037 return value_subscripted_rvalue (arg1, arg2, 0);
c906108c
SS
2038 }
2039
2040 case BINOP_LOGICAL_AND:
2041 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2042 if (noside == EVAL_SKIP)
2043 {
2044 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2045 goto nosideret;
2046 }
c5aa993b 2047
c906108c
SS
2048 oldpos = *pos;
2049 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
2050 *pos = oldpos;
c5aa993b
JM
2051
2052 if (binop_user_defined_p (op, arg1, arg2))
c906108c
SS
2053 {
2054 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2055 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
2056 }
2057 else
2058 {
2059 tem = value_logical_not (arg1);
2060 arg2 = evaluate_subexp (NULL_TYPE, exp, pos,
2061 (tem ? EVAL_SKIP : noside));
fbb06eb1
UW
2062 type = language_bool_type (exp->language_defn, exp->gdbarch);
2063 return value_from_longest (type,
c5aa993b 2064 (LONGEST) (!tem && !value_logical_not (arg2)));
c906108c
SS
2065 }
2066
2067 case BINOP_LOGICAL_OR:
2068 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2069 if (noside == EVAL_SKIP)
2070 {
2071 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2072 goto nosideret;
2073 }
c5aa993b 2074
c906108c
SS
2075 oldpos = *pos;
2076 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
2077 *pos = oldpos;
c5aa993b
JM
2078
2079 if (binop_user_defined_p (op, arg1, arg2))
c906108c
SS
2080 {
2081 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2082 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
2083 }
2084 else
2085 {
2086 tem = value_logical_not (arg1);
2087 arg2 = evaluate_subexp (NULL_TYPE, exp, pos,
2088 (!tem ? EVAL_SKIP : noside));
fbb06eb1
UW
2089 type = language_bool_type (exp->language_defn, exp->gdbarch);
2090 return value_from_longest (type,
c5aa993b 2091 (LONGEST) (!tem || !value_logical_not (arg2)));
c906108c
SS
2092 }
2093
2094 case BINOP_EQUAL:
2095 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
df407dfe 2096 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
c906108c
SS
2097 if (noside == EVAL_SKIP)
2098 goto nosideret;
2099 if (binop_user_defined_p (op, arg1, arg2))
2100 {
2101 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
2102 }
2103 else
2104 {
f44316fa 2105 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
c906108c 2106 tem = value_equal (arg1, arg2);
fbb06eb1
UW
2107 type = language_bool_type (exp->language_defn, exp->gdbarch);
2108 return value_from_longest (type, (LONGEST) tem);
c906108c
SS
2109 }
2110
2111 case BINOP_NOTEQUAL:
2112 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
df407dfe 2113 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
c906108c
SS
2114 if (noside == EVAL_SKIP)
2115 goto nosideret;
2116 if (binop_user_defined_p (op, arg1, arg2))
2117 {
2118 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
2119 }
2120 else
2121 {
f44316fa 2122 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
c906108c 2123 tem = value_equal (arg1, arg2);
fbb06eb1
UW
2124 type = language_bool_type (exp->language_defn, exp->gdbarch);
2125 return value_from_longest (type, (LONGEST) ! tem);
c906108c
SS
2126 }
2127
2128 case BINOP_LESS:
2129 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
df407dfe 2130 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
c906108c
SS
2131 if (noside == EVAL_SKIP)
2132 goto nosideret;
2133 if (binop_user_defined_p (op, arg1, arg2))
2134 {
2135 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
2136 }
2137 else
2138 {
f44316fa 2139 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
c906108c 2140 tem = value_less (arg1, arg2);
fbb06eb1
UW
2141 type = language_bool_type (exp->language_defn, exp->gdbarch);
2142 return value_from_longest (type, (LONGEST) tem);
c906108c
SS
2143 }
2144
2145 case BINOP_GTR:
2146 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
df407dfe 2147 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
c906108c
SS
2148 if (noside == EVAL_SKIP)
2149 goto nosideret;
2150 if (binop_user_defined_p (op, arg1, arg2))
2151 {
2152 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
2153 }
2154 else
2155 {
f44316fa 2156 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
c906108c 2157 tem = value_less (arg2, arg1);
fbb06eb1
UW
2158 type = language_bool_type (exp->language_defn, exp->gdbarch);
2159 return value_from_longest (type, (LONGEST) tem);
c906108c
SS
2160 }
2161
2162 case BINOP_GEQ:
2163 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
df407dfe 2164 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
c906108c
SS
2165 if (noside == EVAL_SKIP)
2166 goto nosideret;
2167 if (binop_user_defined_p (op, arg1, arg2))
2168 {
2169 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
2170 }
2171 else
2172 {
f44316fa 2173 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
c906108c 2174 tem = value_less (arg2, arg1) || value_equal (arg1, arg2);
fbb06eb1
UW
2175 type = language_bool_type (exp->language_defn, exp->gdbarch);
2176 return value_from_longest (type, (LONGEST) tem);
c906108c
SS
2177 }
2178
2179 case BINOP_LEQ:
2180 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
df407dfe 2181 arg2 = evaluate_subexp (value_type (arg1), exp, pos, noside);
c906108c
SS
2182 if (noside == EVAL_SKIP)
2183 goto nosideret;
2184 if (binop_user_defined_p (op, arg1, arg2))
2185 {
2186 return value_x_binop (arg1, arg2, op, OP_NULL, noside);
2187 }
c5aa993b 2188 else
c906108c 2189 {
f44316fa 2190 binop_promote (exp->language_defn, exp->gdbarch, &arg1, &arg2);
c906108c 2191 tem = value_less (arg1, arg2) || value_equal (arg1, arg2);
fbb06eb1
UW
2192 type = language_bool_type (exp->language_defn, exp->gdbarch);
2193 return value_from_longest (type, (LONGEST) tem);
c906108c
SS
2194 }
2195
2196 case BINOP_REPEAT:
2197 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2198 arg2 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2199 if (noside == EVAL_SKIP)
2200 goto nosideret;
df407dfe 2201 type = check_typedef (value_type (arg2));
c906108c 2202 if (TYPE_CODE (type) != TYPE_CODE_INT)
8a3fe4f8 2203 error (_("Non-integral right operand for \"@\" operator."));
c906108c
SS
2204 if (noside == EVAL_AVOID_SIDE_EFFECTS)
2205 {
df407dfe 2206 return allocate_repeat_value (value_type (arg1),
c5aa993b 2207 longest_to_int (value_as_long (arg2)));
c906108c
SS
2208 }
2209 else
2210 return value_repeat (arg1, longest_to_int (value_as_long (arg2)));
2211
2212 case BINOP_COMMA:
2213 evaluate_subexp (NULL_TYPE, exp, pos, noside);
2214 return evaluate_subexp (NULL_TYPE, exp, pos, noside);
2215
36e9969c
NS
2216 case UNOP_PLUS:
2217 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2218 if (noside == EVAL_SKIP)
2219 goto nosideret;
2220 if (unop_user_defined_p (op, arg1))
2221 return value_x_unop (arg1, op, noside);
2222 else
f44316fa
UW
2223 {
2224 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
2225 return value_pos (arg1);
2226 }
36e9969c 2227
c906108c
SS
2228 case UNOP_NEG:
2229 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2230 if (noside == EVAL_SKIP)
2231 goto nosideret;
2232 if (unop_user_defined_p (op, arg1))
2233 return value_x_unop (arg1, op, noside);
2234 else
f44316fa
UW
2235 {
2236 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
2237 return value_neg (arg1);
2238 }
c906108c
SS
2239
2240 case UNOP_COMPLEMENT:
2241 /* C++: check for and handle destructor names. */
2242 op = exp->elts[*pos].opcode;
2243
2244 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2245 if (noside == EVAL_SKIP)
2246 goto nosideret;
2247 if (unop_user_defined_p (UNOP_COMPLEMENT, arg1))
2248 return value_x_unop (arg1, UNOP_COMPLEMENT, noside);
2249 else
f44316fa
UW
2250 {
2251 unop_promote (exp->language_defn, exp->gdbarch, &arg1);
2252 return value_complement (arg1);
2253 }
c906108c
SS
2254
2255 case UNOP_LOGICAL_NOT:
2256 arg1 = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2257 if (noside == EVAL_SKIP)
2258 goto nosideret;
2259 if (unop_user_defined_p (op, arg1))
2260 return value_x_unop (arg1, op, noside);
2261 else
fbb06eb1
UW
2262 {
2263 type = language_bool_type (exp->language_defn, exp->gdbarch);
2264 return value_from_longest (type, (LONGEST) value_logical_not (arg1));
2265 }
c906108c
SS
2266
2267 case UNOP_IND:
2268 if (expect_type && TYPE_CODE (expect_type) == TYPE_CODE_PTR)
c5aa993b 2269 expect_type = TYPE_TARGET_TYPE (check_typedef (expect_type));
c906108c 2270 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
0d5de010
DJ
2271 type = check_typedef (value_type (arg1));
2272 if (TYPE_CODE (type) == TYPE_CODE_METHODPTR
2273 || TYPE_CODE (type) == TYPE_CODE_MEMBERPTR)
8a3fe4f8 2274 error (_("Attempt to dereference pointer to member without an object"));
c906108c
SS
2275 if (noside == EVAL_SKIP)
2276 goto nosideret;
2277 if (unop_user_defined_p (op, arg1))
2278 return value_x_unop (arg1, op, noside);
2279 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
2280 {
df407dfe 2281 type = check_typedef (value_type (arg1));
c906108c
SS
2282 if (TYPE_CODE (type) == TYPE_CODE_PTR
2283 || TYPE_CODE (type) == TYPE_CODE_REF
c5aa993b 2284 /* In C you can dereference an array to get the 1st elt. */
c906108c 2285 || TYPE_CODE (type) == TYPE_CODE_ARRAY
c5aa993b 2286 )
c906108c
SS
2287 return value_zero (TYPE_TARGET_TYPE (type),
2288 lval_memory);
2289 else if (TYPE_CODE (type) == TYPE_CODE_INT)
2290 /* GDB allows dereferencing an int. */
2291 return value_zero (builtin_type_int, lval_memory);
2292 else
8a3fe4f8 2293 error (_("Attempt to take contents of a non-pointer value."));
c906108c
SS
2294 }
2295 return value_ind (arg1);
2296
2297 case UNOP_ADDR:
2298 /* C++: check for and handle pointer to members. */
c5aa993b 2299
c906108c
SS
2300 op = exp->elts[*pos].opcode;
2301
2302 if (noside == EVAL_SKIP)
2303 {
0d5de010 2304 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
c906108c
SS
2305 goto nosideret;
2306 }
c5aa993b
JM
2307 else
2308 {
61051030 2309 struct value *retvalp = evaluate_subexp_for_address (exp, pos, noside);
c5aa993b
JM
2310 return retvalp;
2311 }
2312
c906108c
SS
2313 case UNOP_SIZEOF:
2314 if (noside == EVAL_SKIP)
2315 {
2316 evaluate_subexp (NULL_TYPE, exp, pos, EVAL_SKIP);
2317 goto nosideret;
2318 }
2319 return evaluate_subexp_for_sizeof (exp, pos);
2320
2321 case UNOP_CAST:
2322 (*pos) += 2;
2323 type = exp->elts[pc + 1].type;
2324 arg1 = evaluate_subexp (type, exp, pos, noside);
2325 if (noside == EVAL_SKIP)
2326 goto nosideret;
df407dfe 2327 if (type != value_type (arg1))
c906108c
SS
2328 arg1 = value_cast (type, arg1);
2329 return arg1;
2330
2331 case UNOP_MEMVAL:
2332 (*pos) += 2;
2333 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
2334 if (noside == EVAL_SKIP)
2335 goto nosideret;
2336 if (noside == EVAL_AVOID_SIDE_EFFECTS)
2337 return value_zero (exp->elts[pc + 1].type, lval_memory);
2338 else
2339 return value_at_lazy (exp->elts[pc + 1].type,
00a4c844 2340 value_as_address (arg1));
c906108c 2341
9e35dae4
DJ
2342 case UNOP_MEMVAL_TLS:
2343 (*pos) += 3;
2344 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
2345 if (noside == EVAL_SKIP)
2346 goto nosideret;
2347 if (noside == EVAL_AVOID_SIDE_EFFECTS)
2348 return value_zero (exp->elts[pc + 2].type, lval_memory);
2349 else
2350 {
2351 CORE_ADDR tls_addr;
2352 tls_addr = target_translate_tls_address (exp->elts[pc + 1].objfile,
2353 value_as_address (arg1));
2354 return value_at_lazy (exp->elts[pc + 2].type, tls_addr);
2355 }
2356
c906108c
SS
2357 case UNOP_PREINCREMENT:
2358 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
2359 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
2360 return arg1;
2361 else if (unop_user_defined_p (op, arg1))
2362 {
2363 return value_x_unop (arg1, op, noside);
2364 }
2365 else
2366 {
89eef114
UW
2367 arg2 = value_from_longest (builtin_type_uint8, (LONGEST) 1);
2368 if (ptrmath_type_p (value_type (arg1)))
2369 arg2 = value_ptradd (arg1, arg2);
2370 else
f44316fa
UW
2371 {
2372 struct value *tmp = arg1;
2373 binop_promote (exp->language_defn, exp->gdbarch, &tmp, &arg2);
2374 arg2 = value_binop (tmp, arg2, BINOP_ADD);
2375 }
89eef114 2376
c906108c
SS
2377 return value_assign (arg1, arg2);
2378 }
2379
2380 case UNOP_PREDECREMENT:
2381 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
2382 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
2383 return arg1;
2384 else if (unop_user_defined_p (op, arg1))
2385 {
2386 return value_x_unop (arg1, op, noside);
2387 }
2388 else
2389 {
89eef114
UW
2390 arg2 = value_from_longest (builtin_type_uint8, (LONGEST) 1);
2391 if (ptrmath_type_p (value_type (arg1)))
2392 arg2 = value_ptrsub (arg1, arg2);
2393 else
f44316fa
UW
2394 {
2395 struct value *tmp = arg1;
2396 binop_promote (exp->language_defn, exp->gdbarch, &tmp, &arg2);
2397 arg2 = value_binop (tmp, arg2, BINOP_SUB);
2398 }
89eef114 2399
c906108c
SS
2400 return value_assign (arg1, arg2);
2401 }
2402
2403 case UNOP_POSTINCREMENT:
2404 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
2405 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
2406 return arg1;
2407 else if (unop_user_defined_p (op, arg1))
2408 {
2409 return value_x_unop (arg1, op, noside);
2410 }
2411 else
2412 {
89eef114
UW
2413 arg2 = value_from_longest (builtin_type_uint8, (LONGEST) 1);
2414 if (ptrmath_type_p (value_type (arg1)))
2415 arg2 = value_ptradd (arg1, arg2);
2416 else
f44316fa
UW
2417 {
2418 struct value *tmp = arg1;
2419 binop_promote (exp->language_defn, exp->gdbarch, &tmp, &arg2);
2420 arg2 = value_binop (tmp, arg2, BINOP_ADD);
2421 }
89eef114 2422
c906108c
SS
2423 value_assign (arg1, arg2);
2424 return arg1;
2425 }
2426
2427 case UNOP_POSTDECREMENT:
2428 arg1 = evaluate_subexp (expect_type, exp, pos, noside);
2429 if (noside == EVAL_SKIP || noside == EVAL_AVOID_SIDE_EFFECTS)
2430 return arg1;
2431 else if (unop_user_defined_p (op, arg1))
2432 {
2433 return value_x_unop (arg1, op, noside);
2434 }
2435 else
2436 {
89eef114
UW
2437 arg2 = value_from_longest (builtin_type_uint8, (LONGEST) 1);
2438 if (ptrmath_type_p (value_type (arg1)))
2439 arg2 = value_ptrsub (arg1, arg2);
2440 else
f44316fa
UW
2441 {
2442 struct value *tmp = arg1;
2443 binop_promote (exp->language_defn, exp->gdbarch, &tmp, &arg2);
2444 arg2 = value_binop (tmp, arg2, BINOP_SUB);
2445 }
89eef114 2446
c906108c
SS
2447 value_assign (arg1, arg2);
2448 return arg1;
2449 }
c5aa993b 2450
c906108c
SS
2451 case OP_THIS:
2452 (*pos) += 1;
2453 return value_of_this (1);
2454
a9fa03de
AF
2455 case OP_OBJC_SELF:
2456 (*pos) += 1;
2457 return value_of_local ("self", 1);
2458
c906108c 2459 case OP_TYPE:
d843c49c
FF
2460 /* The value is not supposed to be used. This is here to make it
2461 easier to accommodate expressions that contain types. */
2462 (*pos) += 2;
2463 if (noside == EVAL_SKIP)
2464 goto nosideret;
2465 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
2466 return allocate_value (exp->elts[pc + 1].type);
2467 else
2468 error (_("Attempt to use a type name as an expression"));
c906108c
SS
2469
2470 default:
2471 /* Removing this case and compiling with gcc -Wall reveals that
c5aa993b 2472 a lot of cases are hitting this case. Some of these should
2df3850c
JM
2473 probably be removed from expression.h; others are legitimate
2474 expressions which are (apparently) not fully implemented.
c906108c 2475
c5aa993b
JM
2476 If there are any cases landing here which mean a user error,
2477 then they should be separate cases, with more descriptive
2478 error messages. */
c906108c 2479
8a3fe4f8
AC
2480 error (_("\
2481GDB does not (yet) know how to evaluate that kind of expression"));
c906108c
SS
2482 }
2483
c5aa993b 2484nosideret:
cb18ec49 2485 return value_from_longest (builtin_type_int8, (LONGEST) 1);
c906108c
SS
2486}
2487\f
2488/* Evaluate a subexpression of EXP, at index *POS,
2489 and return the address of that subexpression.
2490 Advance *POS over the subexpression.
2491 If the subexpression isn't an lvalue, get an error.
2492 NOSIDE may be EVAL_AVOID_SIDE_EFFECTS;
2493 then only the type of the result need be correct. */
2494
61051030 2495static struct value *
aa1ee363 2496evaluate_subexp_for_address (struct expression *exp, int *pos,
fba45db2 2497 enum noside noside)
c906108c
SS
2498{
2499 enum exp_opcode op;
52f0bd74 2500 int pc;
c906108c 2501 struct symbol *var;
ab5c9f60 2502 struct value *x;
0d5de010 2503 int tem;
c906108c
SS
2504
2505 pc = (*pos);
2506 op = exp->elts[pc].opcode;
2507
2508 switch (op)
2509 {
2510 case UNOP_IND:
2511 (*pos)++;
ab5c9f60
DJ
2512 x = evaluate_subexp (NULL_TYPE, exp, pos, noside);
2513
2514 /* We can't optimize out "&*" if there's a user-defined operator*. */
2515 if (unop_user_defined_p (op, x))
2516 {
2517 x = value_x_unop (x, op, noside);
0d5de010 2518 goto default_case_after_eval;
ab5c9f60
DJ
2519 }
2520
2521 return x;
c906108c
SS
2522
2523 case UNOP_MEMVAL:
2524 (*pos) += 3;
2525 return value_cast (lookup_pointer_type (exp->elts[pc + 1].type),
2526 evaluate_subexp (NULL_TYPE, exp, pos, noside));
2527
2528 case OP_VAR_VALUE:
2529 var = exp->elts[pc + 2].symbol;
2530
2531 /* C++: The "address" of a reference should yield the address
2532 * of the object pointed to. Let value_addr() deal with it. */
2533 if (TYPE_CODE (SYMBOL_TYPE (var)) == TYPE_CODE_REF)
c5aa993b 2534 goto default_case;
c906108c
SS
2535
2536 (*pos) += 4;
2537 if (noside == EVAL_AVOID_SIDE_EFFECTS)
2538 {
2539 struct type *type =
c5aa993b 2540 lookup_pointer_type (SYMBOL_TYPE (var));
c906108c
SS
2541 enum address_class sym_class = SYMBOL_CLASS (var);
2542
2543 if (sym_class == LOC_CONST
2544 || sym_class == LOC_CONST_BYTES
2a2d4dc3 2545 || sym_class == LOC_REGISTER)
8a3fe4f8 2546 error (_("Attempt to take address of register or constant."));
c906108c 2547
c5aa993b
JM
2548 return
2549 value_zero (type, not_lval);
c906108c 2550 }
ceef53c1 2551 else if (symbol_read_needs_frame (var))
c906108c
SS
2552 return
2553 locate_var_value
c5aa993b
JM
2554 (var,
2555 block_innermost_frame (exp->elts[pc + 1].block));
ceef53c1
JB
2556 else
2557 return locate_var_value (var, NULL);
c906108c 2558
0d5de010
DJ
2559 case OP_SCOPE:
2560 tem = longest_to_int (exp->elts[pc + 2].longconst);
2561 (*pos) += 5 + BYTES_TO_EXP_ELEM (tem + 1);
2562 x = value_aggregate_elt (exp->elts[pc + 1].type,
2563 &exp->elts[pc + 3].string,
2564 1, noside);
2565 if (x == NULL)
2566 error (_("There is no field named %s"), &exp->elts[pc + 3].string);
2567 return x;
2568
c906108c
SS
2569 default:
2570 default_case:
ab5c9f60 2571 x = evaluate_subexp (NULL_TYPE, exp, pos, noside);
0d5de010 2572 default_case_after_eval:
c906108c
SS
2573 if (noside == EVAL_AVOID_SIDE_EFFECTS)
2574 {
0d5de010
DJ
2575 struct type *type = check_typedef (value_type (x));
2576
63092375 2577 if (VALUE_LVAL (x) == lval_memory || value_must_coerce_to_target (x))
df407dfe 2578 return value_zero (lookup_pointer_type (value_type (x)),
c906108c 2579 not_lval);
0d5de010
DJ
2580 else if (TYPE_CODE (type) == TYPE_CODE_REF)
2581 return value_zero (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
2582 not_lval);
c906108c 2583 else
63092375 2584 error (_("Attempt to take address of value not located in memory."));
c906108c 2585 }
ab5c9f60 2586 return value_addr (x);
c906108c
SS
2587 }
2588}
2589
2590/* Evaluate like `evaluate_subexp' except coercing arrays to pointers.
2591 When used in contexts where arrays will be coerced anyway, this is
2592 equivalent to `evaluate_subexp' but much faster because it avoids
2593 actually fetching array contents (perhaps obsolete now that we have
d69fe07e 2594 value_lazy()).
c906108c
SS
2595
2596 Note that we currently only do the coercion for C expressions, where
2597 arrays are zero based and the coercion is correct. For other languages,
2598 with nonzero based arrays, coercion loses. Use CAST_IS_CONVERSION
2599 to decide if coercion is appropriate.
2600
c5aa993b 2601 */
c906108c 2602
61051030 2603struct value *
aa1ee363
AC
2604evaluate_subexp_with_coercion (struct expression *exp,
2605 int *pos, enum noside noside)
c906108c 2606{
52f0bd74
AC
2607 enum exp_opcode op;
2608 int pc;
61051030 2609 struct value *val;
c906108c
SS
2610 struct symbol *var;
2611
2612 pc = (*pos);
2613 op = exp->elts[pc].opcode;
2614
2615 switch (op)
2616 {
2617 case OP_VAR_VALUE:
2618 var = exp->elts[pc + 2].symbol;
2619 if (TYPE_CODE (check_typedef (SYMBOL_TYPE (var))) == TYPE_CODE_ARRAY
2620 && CAST_IS_CONVERSION)
2621 {
2622 (*pos) += 4;
2623 val =
2624 locate_var_value
c5aa993b 2625 (var, block_innermost_frame (exp->elts[pc + 1].block));
751a959b 2626 return value_cast (lookup_pointer_type (TYPE_TARGET_TYPE (check_typedef (SYMBOL_TYPE (var)))),
c906108c
SS
2627 val);
2628 }
2629 /* FALLTHROUGH */
2630
2631 default:
2632 return evaluate_subexp (NULL_TYPE, exp, pos, noside);
2633 }
2634}
2635
2636/* Evaluate a subexpression of EXP, at index *POS,
2637 and return a value for the size of that subexpression.
2638 Advance *POS over the subexpression. */
2639
61051030 2640static struct value *
aa1ee363 2641evaluate_subexp_for_sizeof (struct expression *exp, int *pos)
c906108c 2642{
98b90dd8
UW
2643 /* FIXME: This should be size_t. */
2644 struct type *size_type = builtin_type (exp->gdbarch)->builtin_int;
c906108c 2645 enum exp_opcode op;
52f0bd74 2646 int pc;
c906108c 2647 struct type *type;
61051030 2648 struct value *val;
c906108c
SS
2649
2650 pc = (*pos);
2651 op = exp->elts[pc].opcode;
2652
2653 switch (op)
2654 {
2655 /* This case is handled specially
c5aa993b
JM
2656 so that we avoid creating a value for the result type.
2657 If the result type is very big, it's desirable not to
2658 create a value unnecessarily. */
c906108c
SS
2659 case UNOP_IND:
2660 (*pos)++;
2661 val = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
df407dfe 2662 type = check_typedef (value_type (val));
c906108c
SS
2663 if (TYPE_CODE (type) != TYPE_CODE_PTR
2664 && TYPE_CODE (type) != TYPE_CODE_REF
2665 && TYPE_CODE (type) != TYPE_CODE_ARRAY)
8a3fe4f8 2666 error (_("Attempt to take contents of a non-pointer value."));
c906108c 2667 type = check_typedef (TYPE_TARGET_TYPE (type));
98b90dd8 2668 return value_from_longest (size_type, (LONGEST) TYPE_LENGTH (type));
c906108c
SS
2669
2670 case UNOP_MEMVAL:
2671 (*pos) += 3;
2672 type = check_typedef (exp->elts[pc + 1].type);
98b90dd8 2673 return value_from_longest (size_type, (LONGEST) TYPE_LENGTH (type));
c906108c
SS
2674
2675 case OP_VAR_VALUE:
2676 (*pos) += 4;
2677 type = check_typedef (SYMBOL_TYPE (exp->elts[pc + 2].symbol));
2678 return
98b90dd8 2679 value_from_longest (size_type, (LONGEST) TYPE_LENGTH (type));
c906108c
SS
2680
2681 default:
2682 val = evaluate_subexp (NULL_TYPE, exp, pos, EVAL_AVOID_SIDE_EFFECTS);
98b90dd8 2683 return value_from_longest (size_type,
df407dfe 2684 (LONGEST) TYPE_LENGTH (value_type (val)));
c906108c
SS
2685 }
2686}
2687
2688/* Parse a type expression in the string [P..P+LENGTH). */
2689
2690struct type *
fba45db2 2691parse_and_eval_type (char *p, int length)
c906108c 2692{
c5aa993b
JM
2693 char *tmp = (char *) alloca (length + 4);
2694 struct expression *expr;
2695 tmp[0] = '(';
2696 memcpy (tmp + 1, p, length);
2697 tmp[length + 1] = ')';
2698 tmp[length + 2] = '0';
2699 tmp[length + 3] = '\0';
2700 expr = parse_expression (tmp);
2701 if (expr->elts[0].opcode != UNOP_CAST)
8a3fe4f8 2702 error (_("Internal error in eval_type."));
c5aa993b 2703 return expr->elts[1].type;
c906108c
SS
2704}
2705
2706int
fba45db2 2707calc_f77_array_dims (struct type *array_type)
c906108c
SS
2708{
2709 int ndimen = 1;
2710 struct type *tmp_type;
2711
c5aa993b 2712 if ((TYPE_CODE (array_type) != TYPE_CODE_ARRAY))
8a3fe4f8 2713 error (_("Can't get dimensions for a non-array type"));
c5aa993b
JM
2714
2715 tmp_type = array_type;
c906108c
SS
2716
2717 while ((tmp_type = TYPE_TARGET_TYPE (tmp_type)))
2718 {
2719 if (TYPE_CODE (tmp_type) == TYPE_CODE_ARRAY)
2720 ++ndimen;
2721 }
c5aa993b 2722 return ndimen;
c906108c 2723}