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