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