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