*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / valops.c
CommitLineData
c906108c 1/* Perform non-arithmetic operations on values, for GDB.
990a07ab 2
9b254dd1
DJ
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
4c38e0a4 5 2008, 2009, 2010 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 "symtab.h"
24#include "gdbtypes.h"
25#include "value.h"
26#include "frame.h"
27#include "inferior.h"
28#include "gdbcore.h"
29#include "target.h"
30#include "demangle.h"
31#include "language.h"
32#include "gdbcmd.h"
4e052eda 33#include "regcache.h"
015a42b4 34#include "cp-abi.h"
fe898f56 35#include "block.h"
04714b91 36#include "infcall.h"
de4f826b 37#include "dictionary.h"
b6429628 38#include "cp-support.h"
4ef30785 39#include "dfp.h"
029a67e4 40#include "user-regs.h"
c906108c
SS
41
42#include <errno.h>
43#include "gdb_string.h"
4a1970e4 44#include "gdb_assert.h"
79c2c32d 45#include "cp-support.h"
f4c5303c 46#include "observer.h"
3e3b026f
UW
47#include "objfiles.h"
48#include "symtab.h"
c906108c 49
070ad9f0 50extern int overload_debug;
c906108c
SS
51/* Local functions. */
52
ad2f7632
DJ
53static int typecmp (int staticp, int varargs, int nargs,
54 struct field t1[], struct value *t2[]);
c906108c 55
ac3eeb49
MS
56static struct value *search_struct_field (char *, struct value *,
57 int, struct type *, int);
c906108c 58
f23631e4
AC
59static struct value *search_struct_method (char *, struct value **,
60 struct value **,
a14ed312 61 int, int *, struct type *);
c906108c 62
ac3eeb49
MS
63static int find_oload_champ_namespace (struct type **, int,
64 const char *, const char *,
65 struct symbol ***,
66 struct badness_vector **);
8d577d32
DC
67
68static
ac3eeb49
MS
69int find_oload_champ_namespace_loop (struct type **, int,
70 const char *, const char *,
71 int, struct symbol ***,
72 struct badness_vector **, int *);
73
74static int find_oload_champ (struct type **, int, int, int,
75 struct fn_field *, struct symbol **,
76 struct badness_vector **);
77
78static int oload_method_static (int, struct fn_field *, int);
8d577d32
DC
79
80enum oload_classification { STANDARD, NON_STANDARD, INCOMPATIBLE };
81
82static enum
ac3eeb49
MS
83oload_classification classify_oload_match (struct badness_vector *,
84 int, int);
8d577d32 85
ac3eeb49
MS
86static struct value *value_struct_elt_for_reference (struct type *,
87 int, struct type *,
88 char *,
89 struct type *,
90 int, enum noside);
79c2c32d 91
ac3eeb49
MS
92static struct value *value_namespace_elt (const struct type *,
93 char *, int , enum noside);
79c2c32d 94
ac3eeb49
MS
95static struct value *value_maybe_namespace_elt (const struct type *,
96 char *, int,
97 enum noside);
63d06c5c 98
a14ed312 99static CORE_ADDR allocate_space_in_inferior (int);
c906108c 100
f23631e4 101static struct value *cast_into_complex (struct type *, struct value *);
c906108c 102
ac3eeb49
MS
103static struct fn_field *find_method_list (struct value **, char *,
104 int, struct type *, int *,
105 struct type **, int *);
7a292a7a 106
a14ed312 107void _initialize_valops (void);
c906108c 108
c906108c 109#if 0
ac3eeb49
MS
110/* Flag for whether we want to abandon failed expression evals by
111 default. */
112
c906108c
SS
113static int auto_abandon = 0;
114#endif
115
116int overload_resolution = 0;
920d2a44
AC
117static void
118show_overload_resolution (struct ui_file *file, int from_tty,
ac3eeb49
MS
119 struct cmd_list_element *c,
120 const char *value)
920d2a44
AC
121{
122 fprintf_filtered (file, _("\
123Overload resolution in evaluating C++ functions is %s.\n"),
124 value);
125}
242bfc55 126
3e3b026f
UW
127/* Find the address of function name NAME in the inferior. If OBJF_P
128 is non-NULL, *OBJF_P will be set to the OBJFILE where the function
129 is defined. */
c906108c 130
f23631e4 131struct value *
3e3b026f 132find_function_in_inferior (const char *name, struct objfile **objf_p)
c906108c 133{
52f0bd74 134 struct symbol *sym;
2570f2b7 135 sym = lookup_symbol (name, 0, VAR_DOMAIN, 0);
c906108c
SS
136 if (sym != NULL)
137 {
138 if (SYMBOL_CLASS (sym) != LOC_BLOCK)
139 {
8a3fe4f8 140 error (_("\"%s\" exists in this program but is not a function."),
c906108c
SS
141 name);
142 }
3e3b026f
UW
143
144 if (objf_p)
145 *objf_p = SYMBOL_SYMTAB (sym)->objfile;
146
c906108c
SS
147 return value_of_variable (sym, NULL);
148 }
149 else
150 {
ac3eeb49
MS
151 struct minimal_symbol *msymbol =
152 lookup_minimal_symbol (name, NULL, NULL);
c906108c
SS
153 if (msymbol != NULL)
154 {
3e3b026f
UW
155 struct objfile *objfile = msymbol_objfile (msymbol);
156 struct gdbarch *gdbarch = get_objfile_arch (objfile);
157
c906108c 158 struct type *type;
4478b372 159 CORE_ADDR maddr;
3e3b026f 160 type = lookup_pointer_type (builtin_type (gdbarch)->builtin_char);
c906108c
SS
161 type = lookup_function_type (type);
162 type = lookup_pointer_type (type);
4478b372 163 maddr = SYMBOL_VALUE_ADDRESS (msymbol);
3e3b026f
UW
164
165 if (objf_p)
166 *objf_p = objfile;
167
4478b372 168 return value_from_pointer (type, maddr);
c906108c
SS
169 }
170 else
171 {
c5aa993b 172 if (!target_has_execution)
8a3fe4f8 173 error (_("evaluation of this expression requires the target program to be active"));
c5aa993b 174 else
8a3fe4f8 175 error (_("evaluation of this expression requires the program to have a function \"%s\"."), name);
c906108c
SS
176 }
177 }
178}
179
ac3eeb49
MS
180/* Allocate NBYTES of space in the inferior using the inferior's
181 malloc and return a value that is a pointer to the allocated
182 space. */
c906108c 183
f23631e4 184struct value *
fba45db2 185value_allocate_space_in_inferior (int len)
c906108c 186{
3e3b026f
UW
187 struct objfile *objf;
188 struct value *val = find_function_in_inferior ("malloc", &objf);
189 struct gdbarch *gdbarch = get_objfile_arch (objf);
f23631e4 190 struct value *blocklen;
c906108c 191
3e3b026f 192 blocklen = value_from_longest (builtin_type (gdbarch)->builtin_int, len);
c906108c
SS
193 val = call_function_by_hand (val, 1, &blocklen);
194 if (value_logical_not (val))
195 {
196 if (!target_has_execution)
8a3fe4f8 197 error (_("No memory available to program now: you need to start the target first"));
c5aa993b 198 else
8a3fe4f8 199 error (_("No memory available to program: call to malloc failed"));
c906108c
SS
200 }
201 return val;
202}
203
204static CORE_ADDR
fba45db2 205allocate_space_in_inferior (int len)
c906108c
SS
206{
207 return value_as_long (value_allocate_space_in_inferior (len));
208}
209
6af87b03
AR
210/* Cast struct value VAL to type TYPE and return as a value.
211 Both type and val must be of TYPE_CODE_STRUCT or TYPE_CODE_UNION
694182d2
DJ
212 for this to work. Typedef to one of the codes is permitted.
213 Returns NULL if the cast is neither an upcast nor a downcast. */
6af87b03
AR
214
215static struct value *
216value_cast_structs (struct type *type, struct value *v2)
217{
218 struct type *t1;
219 struct type *t2;
220 struct value *v;
221
222 gdb_assert (type != NULL && v2 != NULL);
223
224 t1 = check_typedef (type);
225 t2 = check_typedef (value_type (v2));
226
227 /* Check preconditions. */
228 gdb_assert ((TYPE_CODE (t1) == TYPE_CODE_STRUCT
229 || TYPE_CODE (t1) == TYPE_CODE_UNION)
230 && !!"Precondition is that type is of STRUCT or UNION kind.");
231 gdb_assert ((TYPE_CODE (t2) == TYPE_CODE_STRUCT
232 || TYPE_CODE (t2) == TYPE_CODE_UNION)
233 && !!"Precondition is that value is of STRUCT or UNION kind");
234
191ca0a1
CM
235 if (TYPE_NAME (t1) != NULL
236 && TYPE_NAME (t2) != NULL
237 && !strcmp (TYPE_NAME (t1), TYPE_NAME (t2)))
238 return NULL;
239
6af87b03
AR
240 /* Upcasting: look in the type of the source to see if it contains the
241 type of the target as a superclass. If so, we'll need to
242 offset the pointer rather than just change its type. */
243 if (TYPE_NAME (t1) != NULL)
244 {
245 v = search_struct_field (type_name_no_tag (t1),
246 v2, 0, t2, 1);
247 if (v)
248 return v;
249 }
250
251 /* Downcasting: look in the type of the target to see if it contains the
252 type of the source as a superclass. If so, we'll need to
9c3c02fd 253 offset the pointer rather than just change its type. */
6af87b03
AR
254 if (TYPE_NAME (t2) != NULL)
255 {
9c3c02fd
TT
256 /* Try downcasting using the run-time type of the value. */
257 int full, top, using_enc;
258 struct type *real_type;
259
260 real_type = value_rtti_type (v2, &full, &top, &using_enc);
261 if (real_type)
262 {
263 v = value_full_object (v2, real_type, full, top, using_enc);
264 v = value_at_lazy (real_type, value_address (v));
265
266 /* We might be trying to cast to the outermost enclosing
267 type, in which case search_struct_field won't work. */
268 if (TYPE_NAME (real_type) != NULL
269 && !strcmp (TYPE_NAME (real_type), TYPE_NAME (t1)))
270 return v;
271
272 v = search_struct_field (type_name_no_tag (t2), v, 0, real_type, 1);
273 if (v)
274 return v;
275 }
276
277 /* Try downcasting using information from the destination type
278 T2. This wouldn't work properly for classes with virtual
279 bases, but those were handled above. */
6af87b03
AR
280 v = search_struct_field (type_name_no_tag (t2),
281 value_zero (t1, not_lval), 0, t1, 1);
282 if (v)
283 {
284 /* Downcasting is possible (t1 is superclass of v2). */
42ae5230
TT
285 CORE_ADDR addr2 = value_address (v2);
286 addr2 -= value_address (v) + value_embedded_offset (v);
6af87b03
AR
287 return value_at (type, addr2);
288 }
289 }
694182d2
DJ
290
291 return NULL;
6af87b03
AR
292}
293
fb933624
DJ
294/* Cast one pointer or reference type to another. Both TYPE and
295 the type of ARG2 should be pointer types, or else both should be
296 reference types. Returns the new pointer or reference. */
297
298struct value *
299value_cast_pointers (struct type *type, struct value *arg2)
300{
6af87b03 301 struct type *type1 = check_typedef (type);
fb933624
DJ
302 struct type *type2 = check_typedef (value_type (arg2));
303 struct type *t1 = check_typedef (TYPE_TARGET_TYPE (type));
304 struct type *t2 = check_typedef (TYPE_TARGET_TYPE (type2));
305
306 if (TYPE_CODE (t1) == TYPE_CODE_STRUCT
307 && TYPE_CODE (t2) == TYPE_CODE_STRUCT
308 && !value_logical_not (arg2))
309 {
6af87b03 310 struct value *v2;
fb933624 311
6af87b03
AR
312 if (TYPE_CODE (type2) == TYPE_CODE_REF)
313 v2 = coerce_ref (arg2);
314 else
315 v2 = value_ind (arg2);
680b56ce 316 gdb_assert (TYPE_CODE (check_typedef (value_type (v2))) == TYPE_CODE_STRUCT
6af87b03
AR
317 && !!"Why did coercion fail?");
318 v2 = value_cast_structs (t1, v2);
319 /* At this point we have what we can have, un-dereference if needed. */
320 if (v2)
fb933624 321 {
6af87b03
AR
322 struct value *v = value_addr (v2);
323 deprecated_set_value_type (v, type);
324 return v;
fb933624 325 }
6af87b03 326 }
fb933624
DJ
327
328 /* No superclass found, just change the pointer type. */
0d5de010 329 arg2 = value_copy (arg2);
fb933624
DJ
330 deprecated_set_value_type (arg2, type);
331 arg2 = value_change_enclosing_type (arg2, type);
332 set_value_pointed_to_offset (arg2, 0); /* pai: chk_val */
333 return arg2;
334}
335
c906108c
SS
336/* Cast value ARG2 to type TYPE and return as a value.
337 More general than a C cast: accepts any two types of the same length,
338 and if ARG2 is an lvalue it can be cast into anything at all. */
339/* In C++, casts may change pointer or object representations. */
340
f23631e4
AC
341struct value *
342value_cast (struct type *type, struct value *arg2)
c906108c 343{
52f0bd74
AC
344 enum type_code code1;
345 enum type_code code2;
346 int scalar;
c906108c
SS
347 struct type *type2;
348
349 int convert_to_boolean = 0;
c5aa993b 350
df407dfe 351 if (value_type (arg2) == type)
c906108c
SS
352 return arg2;
353
6af87b03
AR
354 code1 = TYPE_CODE (check_typedef (type));
355
356 /* Check if we are casting struct reference to struct reference. */
357 if (code1 == TYPE_CODE_REF)
358 {
359 /* We dereference type; then we recurse and finally
360 we generate value of the given reference. Nothing wrong with
361 that. */
362 struct type *t1 = check_typedef (type);
363 struct type *dereftype = check_typedef (TYPE_TARGET_TYPE (t1));
364 struct value *val = value_cast (dereftype, arg2);
365 return value_ref (val);
366 }
367
368 code2 = TYPE_CODE (check_typedef (value_type (arg2)));
369
370 if (code2 == TYPE_CODE_REF)
371 /* We deref the value and then do the cast. */
372 return value_cast (type, coerce_ref (arg2));
373
c906108c
SS
374 CHECK_TYPEDEF (type);
375 code1 = TYPE_CODE (type);
994b9211 376 arg2 = coerce_ref (arg2);
df407dfe 377 type2 = check_typedef (value_type (arg2));
c906108c 378
fb933624
DJ
379 /* You can't cast to a reference type. See value_cast_pointers
380 instead. */
381 gdb_assert (code1 != TYPE_CODE_REF);
382
ac3eeb49
MS
383 /* A cast to an undetermined-length array_type, such as
384 (TYPE [])OBJECT, is treated like a cast to (TYPE [N])OBJECT,
385 where N is sizeof(OBJECT)/sizeof(TYPE). */
c906108c
SS
386 if (code1 == TYPE_CODE_ARRAY)
387 {
388 struct type *element_type = TYPE_TARGET_TYPE (type);
389 unsigned element_length = TYPE_LENGTH (check_typedef (element_type));
d78df370 390 if (element_length > 0 && TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED (type))
c906108c
SS
391 {
392 struct type *range_type = TYPE_INDEX_TYPE (type);
393 int val_length = TYPE_LENGTH (type2);
394 LONGEST low_bound, high_bound, new_length;
395 if (get_discrete_bounds (range_type, &low_bound, &high_bound) < 0)
396 low_bound = 0, high_bound = 0;
397 new_length = val_length / element_length;
398 if (val_length % element_length != 0)
8a3fe4f8 399 warning (_("array element type size does not divide object size in cast"));
ac3eeb49
MS
400 /* FIXME-type-allocation: need a way to free this type when
401 we are done with it. */
c906108c
SS
402 range_type = create_range_type ((struct type *) NULL,
403 TYPE_TARGET_TYPE (range_type),
404 low_bound,
405 new_length + low_bound - 1);
ac3eeb49
MS
406 deprecated_set_value_type (arg2,
407 create_array_type ((struct type *) NULL,
408 element_type,
409 range_type));
c906108c
SS
410 return arg2;
411 }
412 }
413
414 if (current_language->c_style_arrays
415 && TYPE_CODE (type2) == TYPE_CODE_ARRAY)
416 arg2 = value_coerce_array (arg2);
417
418 if (TYPE_CODE (type2) == TYPE_CODE_FUNC)
419 arg2 = value_coerce_function (arg2);
420
df407dfe 421 type2 = check_typedef (value_type (arg2));
c906108c
SS
422 code2 = TYPE_CODE (type2);
423
424 if (code1 == TYPE_CODE_COMPLEX)
425 return cast_into_complex (type, arg2);
426 if (code1 == TYPE_CODE_BOOL)
427 {
428 code1 = TYPE_CODE_INT;
429 convert_to_boolean = 1;
430 }
431 if (code1 == TYPE_CODE_CHAR)
432 code1 = TYPE_CODE_INT;
433 if (code2 == TYPE_CODE_BOOL || code2 == TYPE_CODE_CHAR)
434 code2 = TYPE_CODE_INT;
435
436 scalar = (code2 == TYPE_CODE_INT || code2 == TYPE_CODE_FLT
4ef30785
TJB
437 || code2 == TYPE_CODE_DECFLOAT || code2 == TYPE_CODE_ENUM
438 || code2 == TYPE_CODE_RANGE);
c906108c 439
6af87b03
AR
440 if ((code1 == TYPE_CODE_STRUCT || code1 == TYPE_CODE_UNION)
441 && (code2 == TYPE_CODE_STRUCT || code2 == TYPE_CODE_UNION)
c906108c 442 && TYPE_NAME (type) != 0)
694182d2
DJ
443 {
444 struct value *v = value_cast_structs (type, arg2);
445 if (v)
446 return v;
447 }
448
c906108c
SS
449 if (code1 == TYPE_CODE_FLT && scalar)
450 return value_from_double (type, value_as_double (arg2));
4ef30785
TJB
451 else if (code1 == TYPE_CODE_DECFLOAT && scalar)
452 {
e17a4113 453 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
4ef30785
TJB
454 int dec_len = TYPE_LENGTH (type);
455 gdb_byte dec[16];
456
457 if (code2 == TYPE_CODE_FLT)
e17a4113 458 decimal_from_floating (arg2, dec, dec_len, byte_order);
4ef30785
TJB
459 else if (code2 == TYPE_CODE_DECFLOAT)
460 decimal_convert (value_contents (arg2), TYPE_LENGTH (type2),
e17a4113 461 byte_order, dec, dec_len, byte_order);
4ef30785
TJB
462 else
463 /* The only option left is an integral type. */
e17a4113 464 decimal_from_integral (arg2, dec, dec_len, byte_order);
4ef30785
TJB
465
466 return value_from_decfloat (type, dec);
467 }
c906108c
SS
468 else if ((code1 == TYPE_CODE_INT || code1 == TYPE_CODE_ENUM
469 || code1 == TYPE_CODE_RANGE)
0d5de010
DJ
470 && (scalar || code2 == TYPE_CODE_PTR
471 || code2 == TYPE_CODE_MEMBERPTR))
c906108c
SS
472 {
473 LONGEST longest;
c5aa993b 474
2bf1f4a1 475 /* When we cast pointers to integers, we mustn't use
76e71323 476 gdbarch_pointer_to_address to find the address the pointer
2bf1f4a1
JB
477 represents, as value_as_long would. GDB should evaluate
478 expressions just as the compiler would --- and the compiler
479 sees a cast as a simple reinterpretation of the pointer's
480 bits. */
481 if (code2 == TYPE_CODE_PTR)
e17a4113
UW
482 longest = extract_unsigned_integer
483 (value_contents (arg2), TYPE_LENGTH (type2),
484 gdbarch_byte_order (get_type_arch (type2)));
2bf1f4a1
JB
485 else
486 longest = value_as_long (arg2);
802db21b 487 return value_from_longest (type, convert_to_boolean ?
716c501e 488 (LONGEST) (longest ? 1 : 0) : longest);
c906108c 489 }
ac3eeb49
MS
490 else if (code1 == TYPE_CODE_PTR && (code2 == TYPE_CODE_INT
491 || code2 == TYPE_CODE_ENUM
492 || code2 == TYPE_CODE_RANGE))
634acd5f 493 {
4603e466
DT
494 /* TYPE_LENGTH (type) is the length of a pointer, but we really
495 want the length of an address! -- we are really dealing with
496 addresses (i.e., gdb representations) not pointers (i.e.,
497 target representations) here.
498
499 This allows things like "print *(int *)0x01000234" to work
500 without printing a misleading message -- which would
501 otherwise occur when dealing with a target having two byte
502 pointers and four byte addresses. */
503
50810684 504 int addr_bit = gdbarch_addr_bit (get_type_arch (type2));
4603e466 505
634acd5f 506 LONGEST longest = value_as_long (arg2);
4603e466 507 if (addr_bit < sizeof (LONGEST) * HOST_CHAR_BIT)
634acd5f 508 {
4603e466
DT
509 if (longest >= ((LONGEST) 1 << addr_bit)
510 || longest <= -((LONGEST) 1 << addr_bit))
8a3fe4f8 511 warning (_("value truncated"));
634acd5f
AC
512 }
513 return value_from_longest (type, longest);
514 }
0d5de010
DJ
515 else if (code1 == TYPE_CODE_METHODPTR && code2 == TYPE_CODE_INT
516 && value_as_long (arg2) == 0)
517 {
518 struct value *result = allocate_value (type);
ad4820ab 519 cplus_make_method_ptr (type, value_contents_writeable (result), 0, 0);
0d5de010
DJ
520 return result;
521 }
522 else if (code1 == TYPE_CODE_MEMBERPTR && code2 == TYPE_CODE_INT
523 && value_as_long (arg2) == 0)
524 {
525 /* The Itanium C++ ABI represents NULL pointers to members as
526 minus one, instead of biasing the normal case. */
527 return value_from_longest (type, -1);
528 }
c906108c
SS
529 else if (TYPE_LENGTH (type) == TYPE_LENGTH (type2))
530 {
531 if (code1 == TYPE_CODE_PTR && code2 == TYPE_CODE_PTR)
fb933624
DJ
532 return value_cast_pointers (type, arg2);
533
0d5de010 534 arg2 = value_copy (arg2);
04624583 535 deprecated_set_value_type (arg2, type);
2b127877 536 arg2 = value_change_enclosing_type (arg2, type);
b44d461b 537 set_value_pointed_to_offset (arg2, 0); /* pai: chk_val */
c906108c
SS
538 return arg2;
539 }
c906108c 540 else if (VALUE_LVAL (arg2) == lval_memory)
42ae5230 541 return value_at_lazy (type, value_address (arg2));
c906108c
SS
542 else if (code1 == TYPE_CODE_VOID)
543 {
48319d1f 544 return value_zero (type, not_lval);
c906108c
SS
545 }
546 else
547 {
8a3fe4f8 548 error (_("Invalid cast."));
c906108c
SS
549 return 0;
550 }
551}
552
4e8f195d
TT
553/* The C++ reinterpret_cast operator. */
554
555struct value *
556value_reinterpret_cast (struct type *type, struct value *arg)
557{
558 struct value *result;
559 struct type *real_type = check_typedef (type);
560 struct type *arg_type, *dest_type;
561 int is_ref = 0;
562 enum type_code dest_code, arg_code;
563
564 /* Do reference, function, and array conversion. */
565 arg = coerce_array (arg);
566
567 /* Attempt to preserve the type the user asked for. */
568 dest_type = type;
569
570 /* If we are casting to a reference type, transform
571 reinterpret_cast<T&>(V) to *reinterpret_cast<T*>(&V). */
572 if (TYPE_CODE (real_type) == TYPE_CODE_REF)
573 {
574 is_ref = 1;
575 arg = value_addr (arg);
576 dest_type = lookup_pointer_type (TYPE_TARGET_TYPE (dest_type));
577 real_type = lookup_pointer_type (real_type);
578 }
579
580 arg_type = value_type (arg);
581
582 dest_code = TYPE_CODE (real_type);
583 arg_code = TYPE_CODE (arg_type);
584
585 /* We can convert pointer types, or any pointer type to int, or int
586 type to pointer. */
587 if ((dest_code == TYPE_CODE_PTR && arg_code == TYPE_CODE_INT)
588 || (dest_code == TYPE_CODE_INT && arg_code == TYPE_CODE_PTR)
589 || (dest_code == TYPE_CODE_METHODPTR && arg_code == TYPE_CODE_INT)
590 || (dest_code == TYPE_CODE_INT && arg_code == TYPE_CODE_METHODPTR)
591 || (dest_code == TYPE_CODE_MEMBERPTR && arg_code == TYPE_CODE_INT)
592 || (dest_code == TYPE_CODE_INT && arg_code == TYPE_CODE_MEMBERPTR)
593 || (dest_code == arg_code
594 && (dest_code == TYPE_CODE_PTR
595 || dest_code == TYPE_CODE_METHODPTR
596 || dest_code == TYPE_CODE_MEMBERPTR)))
597 result = value_cast (dest_type, arg);
598 else
599 error (_("Invalid reinterpret_cast"));
600
601 if (is_ref)
602 result = value_cast (type, value_ref (value_ind (result)));
603
604 return result;
605}
606
607/* A helper for value_dynamic_cast. This implements the first of two
608 runtime checks: we iterate over all the base classes of the value's
609 class which are equal to the desired class; if only one of these
610 holds the value, then it is the answer. */
611
612static int
613dynamic_cast_check_1 (struct type *desired_type,
614 const bfd_byte *contents,
615 CORE_ADDR address,
616 struct type *search_type,
617 CORE_ADDR arg_addr,
618 struct type *arg_type,
619 struct value **result)
620{
621 int i, result_count = 0;
622
623 for (i = 0; i < TYPE_N_BASECLASSES (search_type) && result_count < 2; ++i)
624 {
625 int offset = baseclass_offset (search_type, i, contents, address);
626 if (offset == -1)
627 error (_("virtual baseclass botch"));
628 if (class_types_same_p (desired_type, TYPE_BASECLASS (search_type, i)))
629 {
630 if (address + offset >= arg_addr
631 && address + offset < arg_addr + TYPE_LENGTH (arg_type))
632 {
633 ++result_count;
634 if (!*result)
635 *result = value_at_lazy (TYPE_BASECLASS (search_type, i),
636 address + offset);
637 }
638 }
639 else
640 result_count += dynamic_cast_check_1 (desired_type,
641 contents + offset,
642 address + offset,
643 TYPE_BASECLASS (search_type, i),
644 arg_addr,
645 arg_type,
646 result);
647 }
648
649 return result_count;
650}
651
652/* A helper for value_dynamic_cast. This implements the second of two
653 runtime checks: we look for a unique public sibling class of the
654 argument's declared class. */
655
656static int
657dynamic_cast_check_2 (struct type *desired_type,
658 const bfd_byte *contents,
659 CORE_ADDR address,
660 struct type *search_type,
661 struct value **result)
662{
663 int i, result_count = 0;
664
665 for (i = 0; i < TYPE_N_BASECLASSES (search_type) && result_count < 2; ++i)
666 {
667 int offset;
668
669 if (! BASETYPE_VIA_PUBLIC (search_type, i))
670 continue;
671
672 offset = baseclass_offset (search_type, i, contents, address);
673 if (offset == -1)
674 error (_("virtual baseclass botch"));
675 if (class_types_same_p (desired_type, TYPE_BASECLASS (search_type, i)))
676 {
677 ++result_count;
678 if (*result == NULL)
679 *result = value_at_lazy (TYPE_BASECLASS (search_type, i),
680 address + offset);
681 }
682 else
683 result_count += dynamic_cast_check_2 (desired_type,
684 contents + offset,
685 address + offset,
686 TYPE_BASECLASS (search_type, i),
687 result);
688 }
689
690 return result_count;
691}
692
693/* The C++ dynamic_cast operator. */
694
695struct value *
696value_dynamic_cast (struct type *type, struct value *arg)
697{
698 int unambiguous = 0, full, top, using_enc;
699 struct type *resolved_type = check_typedef (type);
700 struct type *arg_type = check_typedef (value_type (arg));
701 struct type *class_type, *rtti_type;
702 struct value *result, *tem, *original_arg = arg;
703 CORE_ADDR addr;
704 int is_ref = TYPE_CODE (resolved_type) == TYPE_CODE_REF;
705
706 if (TYPE_CODE (resolved_type) != TYPE_CODE_PTR
707 && TYPE_CODE (resolved_type) != TYPE_CODE_REF)
708 error (_("Argument to dynamic_cast must be a pointer or reference type"));
709 if (TYPE_CODE (TYPE_TARGET_TYPE (resolved_type)) != TYPE_CODE_VOID
710 && TYPE_CODE (TYPE_TARGET_TYPE (resolved_type)) != TYPE_CODE_CLASS)
711 error (_("Argument to dynamic_cast must be pointer to class or `void *'"));
712
713 class_type = check_typedef (TYPE_TARGET_TYPE (resolved_type));
714 if (TYPE_CODE (resolved_type) == TYPE_CODE_PTR)
715 {
716 if (TYPE_CODE (arg_type) != TYPE_CODE_PTR
717 && ! (TYPE_CODE (arg_type) == TYPE_CODE_INT
718 && value_as_long (arg) == 0))
719 error (_("Argument to dynamic_cast does not have pointer type"));
720 if (TYPE_CODE (arg_type) == TYPE_CODE_PTR)
721 {
722 arg_type = check_typedef (TYPE_TARGET_TYPE (arg_type));
723 if (TYPE_CODE (arg_type) != TYPE_CODE_CLASS)
724 error (_("Argument to dynamic_cast does not have pointer to class type"));
725 }
726
727 /* Handle NULL pointers. */
728 if (value_as_long (arg) == 0)
729 return value_zero (type, not_lval);
730
731 arg = value_ind (arg);
732 }
733 else
734 {
735 if (TYPE_CODE (arg_type) != TYPE_CODE_CLASS)
736 error (_("Argument to dynamic_cast does not have class type"));
737 }
738
739 /* If the classes are the same, just return the argument. */
740 if (class_types_same_p (class_type, arg_type))
741 return value_cast (type, arg);
742
743 /* If the target type is a unique base class of the argument's
744 declared type, just cast it. */
745 if (is_ancestor (class_type, arg_type))
746 {
747 if (is_unique_ancestor (class_type, arg))
748 return value_cast (type, original_arg);
749 error (_("Ambiguous dynamic_cast"));
750 }
751
752 rtti_type = value_rtti_type (arg, &full, &top, &using_enc);
753 if (! rtti_type)
754 error (_("Couldn't determine value's most derived type for dynamic_cast"));
755
756 /* Compute the most derived object's address. */
757 addr = value_address (arg);
758 if (full)
759 {
760 /* Done. */
761 }
762 else if (using_enc)
763 addr += top;
764 else
765 addr += top + value_embedded_offset (arg);
766
767 /* dynamic_cast<void *> means to return a pointer to the
768 most-derived object. */
769 if (TYPE_CODE (resolved_type) == TYPE_CODE_PTR
770 && TYPE_CODE (TYPE_TARGET_TYPE (resolved_type)) == TYPE_CODE_VOID)
771 return value_at_lazy (type, addr);
772
773 tem = value_at (type, addr);
774
775 /* The first dynamic check specified in 5.2.7. */
776 if (is_public_ancestor (arg_type, TYPE_TARGET_TYPE (resolved_type)))
777 {
778 if (class_types_same_p (rtti_type, TYPE_TARGET_TYPE (resolved_type)))
779 return tem;
780 result = NULL;
781 if (dynamic_cast_check_1 (TYPE_TARGET_TYPE (resolved_type),
782 value_contents (tem), value_address (tem),
783 rtti_type, addr,
784 arg_type,
785 &result) == 1)
786 return value_cast (type,
787 is_ref ? value_ref (result) : value_addr (result));
788 }
789
790 /* The second dynamic check specified in 5.2.7. */
791 result = NULL;
792 if (is_public_ancestor (arg_type, rtti_type)
793 && dynamic_cast_check_2 (TYPE_TARGET_TYPE (resolved_type),
794 value_contents (tem), value_address (tem),
795 rtti_type, &result) == 1)
796 return value_cast (type,
797 is_ref ? value_ref (result) : value_addr (result));
798
799 if (TYPE_CODE (resolved_type) == TYPE_CODE_PTR)
800 return value_zero (type, not_lval);
801
802 error (_("dynamic_cast failed"));
803}
804
c906108c
SS
805/* Create a value of type TYPE that is zero, and return it. */
806
f23631e4 807struct value *
fba45db2 808value_zero (struct type *type, enum lval_type lv)
c906108c 809{
f23631e4 810 struct value *val = allocate_value (type);
c906108c
SS
811 VALUE_LVAL (val) = lv;
812
813 return val;
814}
815
301f0ecf
DE
816/* Create a value of numeric type TYPE that is one, and return it. */
817
818struct value *
819value_one (struct type *type, enum lval_type lv)
820{
821 struct type *type1 = check_typedef (type);
4e608b4f 822 struct value *val;
301f0ecf
DE
823
824 if (TYPE_CODE (type1) == TYPE_CODE_DECFLOAT)
825 {
e17a4113 826 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
301f0ecf 827 gdb_byte v[16];
e17a4113 828 decimal_from_string (v, TYPE_LENGTH (type), byte_order, "1");
301f0ecf
DE
829 val = value_from_decfloat (type, v);
830 }
831 else if (TYPE_CODE (type1) == TYPE_CODE_FLT)
832 {
833 val = value_from_double (type, (DOUBLEST) 1);
834 }
835 else if (is_integral_type (type1))
836 {
837 val = value_from_longest (type, (LONGEST) 1);
838 }
839 else
840 {
841 error (_("Not a numeric type."));
842 }
843
844 VALUE_LVAL (val) = lv;
845 return val;
846}
847
4e5d721f
DE
848/* Helper function for value_at, value_at_lazy, and value_at_lazy_stack. */
849
850static struct value *
851get_value_at (struct type *type, CORE_ADDR addr, int lazy)
852{
853 struct value *val;
854
855 if (TYPE_CODE (check_typedef (type)) == TYPE_CODE_VOID)
856 error (_("Attempt to dereference a generic pointer."));
857
858 if (lazy)
859 {
860 val = allocate_value_lazy (type);
861 }
862 else
863 {
864 val = allocate_value (type);
865 read_memory (addr, value_contents_all_raw (val), TYPE_LENGTH (type));
866 }
867
868 VALUE_LVAL (val) = lval_memory;
869 set_value_address (val, addr);
870
871 return val;
872}
873
070ad9f0 874/* Return a value with type TYPE located at ADDR.
c906108c
SS
875
876 Call value_at only if the data needs to be fetched immediately;
877 if we can be 'lazy' and defer the fetch, perhaps indefinately, call
878 value_at_lazy instead. value_at_lazy simply records the address of
070ad9f0 879 the data and sets the lazy-evaluation-required flag. The lazy flag
0fd88904 880 is tested in the value_contents macro, which is used if and when
070ad9f0 881 the contents are actually required.
c906108c
SS
882
883 Note: value_at does *NOT* handle embedded offsets; perform such
ac3eeb49 884 adjustments before or after calling it. */
c906108c 885
f23631e4 886struct value *
00a4c844 887value_at (struct type *type, CORE_ADDR addr)
c906108c 888{
4e5d721f 889 return get_value_at (type, addr, 0);
c906108c
SS
890}
891
892/* Return a lazy value with type TYPE located at ADDR (cf. value_at). */
893
f23631e4 894struct value *
00a4c844 895value_at_lazy (struct type *type, CORE_ADDR addr)
c906108c 896{
4e5d721f 897 return get_value_at (type, addr, 1);
c906108c
SS
898}
899
0fd88904 900/* Called only from the value_contents and value_contents_all()
46615f07 901 macros, if the current data for a variable needs to be loaded into
0fd88904 902 value_contents(VAL). Fetches the data from the user's process, and
46615f07
AC
903 clears the lazy flag to indicate that the data in the buffer is
904 valid.
c906108c 905
ac3eeb49
MS
906 If the value is zero-length, we avoid calling read_memory, which
907 would abort. We mark the value as fetched anyway -- all 0 bytes of
908 it.
c906108c 909
ac3eeb49
MS
910 This function returns a value because it is used in the
911 value_contents macro as part of an expression, where a void would
912 not work. The value is ignored. */
c906108c
SS
913
914int
f23631e4 915value_fetch_lazy (struct value *val)
c906108c 916{
3e3d7139
JG
917 gdb_assert (value_lazy (val));
918 allocate_value_contents (val);
4ea48cc1
DJ
919 if (value_bitsize (val))
920 {
921 /* To read a lazy bitfield, read the entire enclosing value. This
922 prevents reading the same block of (possibly volatile) memory once
923 per bitfield. It would be even better to read only the containing
924 word, but we have no way to record that just specific bits of a
925 value have been fetched. */
926 struct type *type = check_typedef (value_type (val));
927 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (type));
928 struct value *parent = value_parent (val);
929 LONGEST offset = value_offset (val);
930 LONGEST num = unpack_bits_as_long (value_type (val),
931 value_contents (parent) + offset,
932 value_bitpos (val),
933 value_bitsize (val));
934 int length = TYPE_LENGTH (type);
935 store_signed_integer (value_contents_raw (val), length, byte_order, num);
936 }
937 else if (VALUE_LVAL (val) == lval_memory)
9214ee5f 938 {
42ae5230 939 CORE_ADDR addr = value_address (val);
694182d2 940 int length = TYPE_LENGTH (check_typedef (value_enclosing_type (val)));
9214ee5f 941
9214ee5f 942 if (length)
4e5d721f
DE
943 {
944 if (value_stack (val))
945 read_stack (addr, value_contents_all_raw (val), length);
946 else
947 read_memory (addr, value_contents_all_raw (val), length);
948 }
9214ee5f
DJ
949 }
950 else if (VALUE_LVAL (val) == lval_register)
951 {
669fac23
DJ
952 struct frame_info *frame;
953 int regnum;
9214ee5f 954 struct type *type = check_typedef (value_type (val));
669fac23 955 struct value *new_val = val, *mark = value_mark ();
c906108c 956
669fac23
DJ
957 /* Offsets are not supported here; lazy register values must
958 refer to the entire register. */
959 gdb_assert (value_offset (val) == 0);
9214ee5f 960
669fac23
DJ
961 while (VALUE_LVAL (new_val) == lval_register && value_lazy (new_val))
962 {
963 frame = frame_find_by_id (VALUE_FRAME_ID (new_val));
964 regnum = VALUE_REGNUM (new_val);
965
966 gdb_assert (frame != NULL);
9214ee5f 967
669fac23
DJ
968 /* Convertible register routines are used for multi-register
969 values and for interpretation in different types
970 (e.g. float or int from a double register). Lazy
971 register values should have the register's natural type,
972 so they do not apply. */
973 gdb_assert (!gdbarch_convert_register_p (get_frame_arch (frame),
974 regnum, type));
975
976 new_val = get_frame_register_value (frame, regnum);
977 }
978
979 /* If it's still lazy (for instance, a saved register on the
980 stack), fetch it. */
981 if (value_lazy (new_val))
982 value_fetch_lazy (new_val);
983
984 /* If the register was not saved, mark it unavailable. */
985 if (value_optimized_out (new_val))
9214ee5f 986 set_value_optimized_out (val, 1);
669fac23
DJ
987 else
988 memcpy (value_contents_raw (val), value_contents (new_val),
989 TYPE_LENGTH (type));
990
991 if (frame_debug)
992 {
029a67e4 993 struct gdbarch *gdbarch;
669fac23
DJ
994 frame = frame_find_by_id (VALUE_FRAME_ID (val));
995 regnum = VALUE_REGNUM (val);
029a67e4 996 gdbarch = get_frame_arch (frame);
669fac23
DJ
997
998 fprintf_unfiltered (gdb_stdlog, "\
999{ value_fetch_lazy (frame=%d,regnum=%d(%s),...) ",
1000 frame_relative_level (frame), regnum,
029a67e4 1001 user_reg_map_regnum_to_name (gdbarch, regnum));
669fac23
DJ
1002
1003 fprintf_unfiltered (gdb_stdlog, "->");
1004 if (value_optimized_out (new_val))
1005 fprintf_unfiltered (gdb_stdlog, " optimized out");
1006 else
1007 {
1008 int i;
1009 const gdb_byte *buf = value_contents (new_val);
1010
1011 if (VALUE_LVAL (new_val) == lval_register)
1012 fprintf_unfiltered (gdb_stdlog, " register=%d",
1013 VALUE_REGNUM (new_val));
1014 else if (VALUE_LVAL (new_val) == lval_memory)
5af949e3
UW
1015 fprintf_unfiltered (gdb_stdlog, " address=%s",
1016 paddress (gdbarch,
1017 value_address (new_val)));
669fac23
DJ
1018 else
1019 fprintf_unfiltered (gdb_stdlog, " computed");
1020
1021 fprintf_unfiltered (gdb_stdlog, " bytes=");
1022 fprintf_unfiltered (gdb_stdlog, "[");
029a67e4 1023 for (i = 0; i < register_size (gdbarch, regnum); i++)
669fac23
DJ
1024 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
1025 fprintf_unfiltered (gdb_stdlog, "]");
1026 }
1027
1028 fprintf_unfiltered (gdb_stdlog, " }\n");
1029 }
1030
1031 /* Dispose of the intermediate values. This prevents
1032 watchpoints from trying to watch the saved frame pointer. */
1033 value_free_to_mark (mark);
9214ee5f 1034 }
5f5233d4
PA
1035 else if (VALUE_LVAL (val) == lval_computed)
1036 value_computed_funcs (val)->read (val);
9214ee5f
DJ
1037 else
1038 internal_error (__FILE__, __LINE__, "Unexpected lazy value type.");
802db21b 1039
dfa52d88 1040 set_value_lazy (val, 0);
c906108c
SS
1041 return 0;
1042}
1043
1044
1045/* Store the contents of FROMVAL into the location of TOVAL.
1046 Return a new value with the location of TOVAL and contents of FROMVAL. */
1047
f23631e4
AC
1048struct value *
1049value_assign (struct value *toval, struct value *fromval)
c906108c 1050{
52f0bd74 1051 struct type *type;
f23631e4 1052 struct value *val;
cb741690 1053 struct frame_id old_frame;
c906108c 1054
88e3b34b 1055 if (!deprecated_value_modifiable (toval))
8a3fe4f8 1056 error (_("Left operand of assignment is not a modifiable lvalue."));
c906108c 1057
994b9211 1058 toval = coerce_ref (toval);
c906108c 1059
df407dfe 1060 type = value_type (toval);
c906108c 1061 if (VALUE_LVAL (toval) != lval_internalvar)
63092375
DJ
1062 {
1063 toval = value_coerce_to_target (toval);
1064 fromval = value_cast (type, fromval);
1065 }
c906108c 1066 else
63092375
DJ
1067 {
1068 /* Coerce arrays and functions to pointers, except for arrays
1069 which only live in GDB's storage. */
1070 if (!value_must_coerce_to_target (fromval))
1071 fromval = coerce_array (fromval);
1072 }
1073
c906108c
SS
1074 CHECK_TYPEDEF (type);
1075
ac3eeb49
MS
1076 /* Since modifying a register can trash the frame chain, and
1077 modifying memory can trash the frame cache, we save the old frame
1078 and then restore the new frame afterwards. */
206415a3 1079 old_frame = get_frame_id (deprecated_safe_get_selected_frame ());
cb741690 1080
c906108c
SS
1081 switch (VALUE_LVAL (toval))
1082 {
1083 case lval_internalvar:
1084 set_internalvar (VALUE_INTERNALVAR (toval), fromval);
4fa62494 1085 val = value_copy (fromval);
ac3eeb49
MS
1086 val = value_change_enclosing_type (val,
1087 value_enclosing_type (fromval));
13c3b5f5 1088 set_value_embedded_offset (val, value_embedded_offset (fromval));
ac3eeb49
MS
1089 set_value_pointed_to_offset (val,
1090 value_pointed_to_offset (fromval));
c906108c
SS
1091 return val;
1092
1093 case lval_internalvar_component:
1094 set_internalvar_component (VALUE_INTERNALVAR (toval),
df407dfe
AC
1095 value_offset (toval),
1096 value_bitpos (toval),
1097 value_bitsize (toval),
c906108c
SS
1098 fromval);
1099 break;
1100
1101 case lval_memory:
1102 {
fc1a4b47 1103 const gdb_byte *dest_buffer;
c5aa993b
JM
1104 CORE_ADDR changed_addr;
1105 int changed_len;
10c42a71 1106 gdb_byte buffer[sizeof (LONGEST)];
c906108c 1107
df407dfe 1108 if (value_bitsize (toval))
c5aa993b 1109 {
2d88202a
UW
1110 struct value *parent = value_parent (toval);
1111 changed_addr = value_address (parent) + value_offset (toval);
1112
df407dfe
AC
1113 changed_len = (value_bitpos (toval)
1114 + value_bitsize (toval)
c5aa993b
JM
1115 + HOST_CHAR_BIT - 1)
1116 / HOST_CHAR_BIT;
c906108c 1117
4ea48cc1
DJ
1118 /* If we can read-modify-write exactly the size of the
1119 containing type (e.g. short or int) then do so. This
1120 is safer for volatile bitfields mapped to hardware
1121 registers. */
1122 if (changed_len < TYPE_LENGTH (type)
1123 && TYPE_LENGTH (type) <= (int) sizeof (LONGEST)
2d88202a 1124 && ((LONGEST) changed_addr % TYPE_LENGTH (type)) == 0)
4ea48cc1
DJ
1125 changed_len = TYPE_LENGTH (type);
1126
c906108c 1127 if (changed_len > (int) sizeof (LONGEST))
8a3fe4f8 1128 error (_("Can't handle bitfields which don't fit in a %d bit word."),
baa6f10b 1129 (int) sizeof (LONGEST) * HOST_CHAR_BIT);
c906108c 1130
2d88202a 1131 read_memory (changed_addr, buffer, changed_len);
50810684 1132 modify_field (type, buffer, value_as_long (fromval),
df407dfe 1133 value_bitpos (toval), value_bitsize (toval));
c906108c
SS
1134 dest_buffer = buffer;
1135 }
c906108c
SS
1136 else
1137 {
42ae5230 1138 changed_addr = value_address (toval);
c906108c 1139 changed_len = TYPE_LENGTH (type);
0fd88904 1140 dest_buffer = value_contents (fromval);
c906108c
SS
1141 }
1142
1143 write_memory (changed_addr, dest_buffer, changed_len);
8cebebb9
PP
1144 observer_notify_memory_changed (changed_addr, changed_len,
1145 dest_buffer);
c906108c
SS
1146 }
1147 break;
1148
492254e9 1149 case lval_register:
c906108c 1150 {
c906108c 1151 struct frame_info *frame;
d80b854b 1152 struct gdbarch *gdbarch;
ff2e87ac 1153 int value_reg;
c906108c
SS
1154
1155 /* Figure out which frame this is in currently. */
0c16dd26
AC
1156 frame = frame_find_by_id (VALUE_FRAME_ID (toval));
1157 value_reg = VALUE_REGNUM (toval);
c906108c
SS
1158
1159 if (!frame)
8a3fe4f8 1160 error (_("Value being assigned to is no longer active."));
d80b854b
UW
1161
1162 gdbarch = get_frame_arch (frame);
1163 if (gdbarch_convert_register_p (gdbarch, VALUE_REGNUM (toval), type))
492254e9 1164 {
ff2e87ac 1165 /* If TOVAL is a special machine register requiring
ac3eeb49
MS
1166 conversion of program values to a special raw
1167 format. */
d80b854b 1168 gdbarch_value_to_register (gdbarch, frame,
ac3eeb49
MS
1169 VALUE_REGNUM (toval), type,
1170 value_contents (fromval));
492254e9 1171 }
c906108c 1172 else
492254e9 1173 {
df407dfe 1174 if (value_bitsize (toval))
00fa51f6 1175 {
2d88202a
UW
1176 struct value *parent = value_parent (toval);
1177 int offset = value_offset (parent) + value_offset (toval);
00fa51f6
UW
1178 int changed_len;
1179 gdb_byte buffer[sizeof (LONGEST)];
1180
1181 changed_len = (value_bitpos (toval)
1182 + value_bitsize (toval)
1183 + HOST_CHAR_BIT - 1)
1184 / HOST_CHAR_BIT;
1185
1186 if (changed_len > (int) sizeof (LONGEST))
1187 error (_("Can't handle bitfields which don't fit in a %d bit word."),
1188 (int) sizeof (LONGEST) * HOST_CHAR_BIT);
1189
2d88202a 1190 get_frame_register_bytes (frame, value_reg, offset,
00fa51f6
UW
1191 changed_len, buffer);
1192
50810684
UW
1193 modify_field (type, buffer, value_as_long (fromval),
1194 value_bitpos (toval), value_bitsize (toval));
00fa51f6 1195
2d88202a 1196 put_frame_register_bytes (frame, value_reg, offset,
00fa51f6
UW
1197 changed_len, buffer);
1198 }
c906108c 1199 else
00fa51f6
UW
1200 {
1201 put_frame_register_bytes (frame, value_reg,
1202 value_offset (toval),
1203 TYPE_LENGTH (type),
1204 value_contents (fromval));
1205 }
ff2e87ac 1206 }
00fa51f6 1207
9a4105ab
AC
1208 if (deprecated_register_changed_hook)
1209 deprecated_register_changed_hook (-1);
f4c5303c 1210 observer_notify_target_changed (&current_target);
ff2e87ac 1211 break;
c906108c 1212 }
5f5233d4
PA
1213
1214 case lval_computed:
1215 {
1216 struct lval_funcs *funcs = value_computed_funcs (toval);
1217
1218 funcs->write (toval, fromval);
1219 }
1220 break;
1221
c906108c 1222 default:
8a3fe4f8 1223 error (_("Left operand of assignment is not an lvalue."));
c906108c
SS
1224 }
1225
cb741690
DJ
1226 /* Assigning to the stack pointer, frame pointer, and other
1227 (architecture and calling convention specific) registers may
1228 cause the frame cache to be out of date. Assigning to memory
1229 also can. We just do this on all assignments to registers or
1230 memory, for simplicity's sake; I doubt the slowdown matters. */
1231 switch (VALUE_LVAL (toval))
1232 {
1233 case lval_memory:
1234 case lval_register:
cb741690
DJ
1235
1236 reinit_frame_cache ();
1237
ac3eeb49
MS
1238 /* Having destroyed the frame cache, restore the selected
1239 frame. */
cb741690
DJ
1240
1241 /* FIXME: cagney/2002-11-02: There has to be a better way of
1242 doing this. Instead of constantly saving/restoring the
1243 frame. Why not create a get_selected_frame() function that,
1244 having saved the selected frame's ID can automatically
1245 re-find the previously selected frame automatically. */
1246
1247 {
1248 struct frame_info *fi = frame_find_by_id (old_frame);
1249 if (fi != NULL)
1250 select_frame (fi);
1251 }
1252
1253 break;
1254 default:
1255 break;
1256 }
1257
ac3eeb49
MS
1258 /* If the field does not entirely fill a LONGEST, then zero the sign
1259 bits. If the field is signed, and is negative, then sign
1260 extend. */
df407dfe
AC
1261 if ((value_bitsize (toval) > 0)
1262 && (value_bitsize (toval) < 8 * (int) sizeof (LONGEST)))
c906108c
SS
1263 {
1264 LONGEST fieldval = value_as_long (fromval);
df407dfe 1265 LONGEST valmask = (((ULONGEST) 1) << value_bitsize (toval)) - 1;
c906108c
SS
1266
1267 fieldval &= valmask;
ac3eeb49
MS
1268 if (!TYPE_UNSIGNED (type)
1269 && (fieldval & (valmask ^ (valmask >> 1))))
c906108c
SS
1270 fieldval |= ~valmask;
1271
1272 fromval = value_from_longest (type, fieldval);
1273 }
1274
1275 val = value_copy (toval);
0fd88904 1276 memcpy (value_contents_raw (val), value_contents (fromval),
c906108c 1277 TYPE_LENGTH (type));
04624583 1278 deprecated_set_value_type (val, type);
ac3eeb49
MS
1279 val = value_change_enclosing_type (val,
1280 value_enclosing_type (fromval));
13c3b5f5 1281 set_value_embedded_offset (val, value_embedded_offset (fromval));
b44d461b 1282 set_value_pointed_to_offset (val, value_pointed_to_offset (fromval));
c5aa993b 1283
c906108c
SS
1284 return val;
1285}
1286
1287/* Extend a value VAL to COUNT repetitions of its type. */
1288
f23631e4
AC
1289struct value *
1290value_repeat (struct value *arg1, int count)
c906108c 1291{
f23631e4 1292 struct value *val;
c906108c
SS
1293
1294 if (VALUE_LVAL (arg1) != lval_memory)
8a3fe4f8 1295 error (_("Only values in memory can be extended with '@'."));
c906108c 1296 if (count < 1)
8a3fe4f8 1297 error (_("Invalid number %d of repetitions."), count);
c906108c 1298
4754a64e 1299 val = allocate_repeat_value (value_enclosing_type (arg1), count);
c906108c 1300
42ae5230 1301 read_memory (value_address (arg1),
990a07ab 1302 value_contents_all_raw (val),
4754a64e 1303 TYPE_LENGTH (value_enclosing_type (val)));
c906108c 1304 VALUE_LVAL (val) = lval_memory;
42ae5230 1305 set_value_address (val, value_address (arg1));
c906108c
SS
1306
1307 return val;
1308}
1309
f23631e4 1310struct value *
fba45db2 1311value_of_variable (struct symbol *var, struct block *b)
c906108c 1312{
f23631e4 1313 struct value *val;
61212c0f 1314 struct frame_info *frame;
c906108c 1315
61212c0f
UW
1316 if (!symbol_read_needs_frame (var))
1317 frame = NULL;
1318 else if (!b)
1319 frame = get_selected_frame (_("No frame selected."));
1320 else
c906108c
SS
1321 {
1322 frame = block_innermost_frame (b);
1323 if (!frame)
c5aa993b 1324 {
edb3359d 1325 if (BLOCK_FUNCTION (b) && !block_inlined_p (b)
de5ad195 1326 && SYMBOL_PRINT_NAME (BLOCK_FUNCTION (b)))
8a3fe4f8 1327 error (_("No frame is currently executing in block %s."),
de5ad195 1328 SYMBOL_PRINT_NAME (BLOCK_FUNCTION (b)));
c906108c 1329 else
8a3fe4f8 1330 error (_("No frame is currently executing in specified block"));
c5aa993b 1331 }
c906108c
SS
1332 }
1333
1334 val = read_var_value (var, frame);
1335 if (!val)
8a3fe4f8 1336 error (_("Address of symbol \"%s\" is unknown."), SYMBOL_PRINT_NAME (var));
c906108c
SS
1337
1338 return val;
1339}
1340
61212c0f
UW
1341struct value *
1342address_of_variable (struct symbol *var, struct block *b)
1343{
1344 struct type *type = SYMBOL_TYPE (var);
1345 struct value *val;
1346
1347 /* Evaluate it first; if the result is a memory address, we're fine.
1348 Lazy evaluation pays off here. */
1349
1350 val = value_of_variable (var, b);
1351
1352 if ((VALUE_LVAL (val) == lval_memory && value_lazy (val))
1353 || TYPE_CODE (type) == TYPE_CODE_FUNC)
1354 {
42ae5230 1355 CORE_ADDR addr = value_address (val);
61212c0f
UW
1356 return value_from_pointer (lookup_pointer_type (type), addr);
1357 }
1358
1359 /* Not a memory address; check what the problem was. */
1360 switch (VALUE_LVAL (val))
1361 {
1362 case lval_register:
1363 {
1364 struct frame_info *frame;
1365 const char *regname;
1366
1367 frame = frame_find_by_id (VALUE_FRAME_ID (val));
1368 gdb_assert (frame);
1369
1370 regname = gdbarch_register_name (get_frame_arch (frame),
1371 VALUE_REGNUM (val));
1372 gdb_assert (regname && *regname);
1373
1374 error (_("Address requested for identifier "
1375 "\"%s\" which is in register $%s"),
1376 SYMBOL_PRINT_NAME (var), regname);
1377 break;
1378 }
1379
1380 default:
1381 error (_("Can't take address of \"%s\" which isn't an lvalue."),
1382 SYMBOL_PRINT_NAME (var));
1383 break;
1384 }
1385
1386 return val;
1387}
1388
63092375
DJ
1389/* Return one if VAL does not live in target memory, but should in order
1390 to operate on it. Otherwise return zero. */
1391
1392int
1393value_must_coerce_to_target (struct value *val)
1394{
1395 struct type *valtype;
1396
1397 /* The only lval kinds which do not live in target memory. */
1398 if (VALUE_LVAL (val) != not_lval
1399 && VALUE_LVAL (val) != lval_internalvar)
1400 return 0;
1401
1402 valtype = check_typedef (value_type (val));
1403
1404 switch (TYPE_CODE (valtype))
1405 {
1406 case TYPE_CODE_ARRAY:
1407 case TYPE_CODE_STRING:
1408 return 1;
1409 default:
1410 return 0;
1411 }
1412}
1413
1414/* Make sure that VAL lives in target memory if it's supposed to. For instance,
1415 strings are constructed as character arrays in GDB's storage, and this
1416 function copies them to the target. */
1417
1418struct value *
1419value_coerce_to_target (struct value *val)
1420{
1421 LONGEST length;
1422 CORE_ADDR addr;
1423
1424 if (!value_must_coerce_to_target (val))
1425 return val;
1426
1427 length = TYPE_LENGTH (check_typedef (value_type (val)));
1428 addr = allocate_space_in_inferior (length);
1429 write_memory (addr, value_contents (val), length);
1430 return value_at_lazy (value_type (val), addr);
1431}
1432
ac3eeb49
MS
1433/* Given a value which is an array, return a value which is a pointer
1434 to its first element, regardless of whether or not the array has a
1435 nonzero lower bound.
c906108c 1436
ac3eeb49
MS
1437 FIXME: A previous comment here indicated that this routine should
1438 be substracting the array's lower bound. It's not clear to me that
1439 this is correct. Given an array subscripting operation, it would
1440 certainly work to do the adjustment here, essentially computing:
c906108c
SS
1441
1442 (&array[0] - (lowerbound * sizeof array[0])) + (index * sizeof array[0])
1443
ac3eeb49
MS
1444 However I believe a more appropriate and logical place to account
1445 for the lower bound is to do so in value_subscript, essentially
1446 computing:
c906108c
SS
1447
1448 (&array[0] + ((index - lowerbound) * sizeof array[0]))
1449
ac3eeb49
MS
1450 As further evidence consider what would happen with operations
1451 other than array subscripting, where the caller would get back a
1452 value that had an address somewhere before the actual first element
1453 of the array, and the information about the lower bound would be
1454 lost because of the coercion to pointer type.
c5aa993b 1455 */
c906108c 1456
f23631e4
AC
1457struct value *
1458value_coerce_array (struct value *arg1)
c906108c 1459{
df407dfe 1460 struct type *type = check_typedef (value_type (arg1));
c906108c 1461
63092375
DJ
1462 /* If the user tries to do something requiring a pointer with an
1463 array that has not yet been pushed to the target, then this would
1464 be a good time to do so. */
1465 arg1 = value_coerce_to_target (arg1);
1466
c906108c 1467 if (VALUE_LVAL (arg1) != lval_memory)
8a3fe4f8 1468 error (_("Attempt to take address of value not located in memory."));
c906108c 1469
4478b372 1470 return value_from_pointer (lookup_pointer_type (TYPE_TARGET_TYPE (type)),
42ae5230 1471 value_address (arg1));
c906108c
SS
1472}
1473
1474/* Given a value which is a function, return a value which is a pointer
1475 to it. */
1476
f23631e4
AC
1477struct value *
1478value_coerce_function (struct value *arg1)
c906108c 1479{
f23631e4 1480 struct value *retval;
c906108c
SS
1481
1482 if (VALUE_LVAL (arg1) != lval_memory)
8a3fe4f8 1483 error (_("Attempt to take address of value not located in memory."));
c906108c 1484
df407dfe 1485 retval = value_from_pointer (lookup_pointer_type (value_type (arg1)),
42ae5230 1486 value_address (arg1));
c906108c 1487 return retval;
c5aa993b 1488}
c906108c 1489
ac3eeb49
MS
1490/* Return a pointer value for the object for which ARG1 is the
1491 contents. */
c906108c 1492
f23631e4
AC
1493struct value *
1494value_addr (struct value *arg1)
c906108c 1495{
f23631e4 1496 struct value *arg2;
c906108c 1497
df407dfe 1498 struct type *type = check_typedef (value_type (arg1));
c906108c
SS
1499 if (TYPE_CODE (type) == TYPE_CODE_REF)
1500 {
ac3eeb49
MS
1501 /* Copy the value, but change the type from (T&) to (T*). We
1502 keep the same location information, which is efficient, and
1503 allows &(&X) to get the location containing the reference. */
c906108c 1504 arg2 = value_copy (arg1);
ac3eeb49
MS
1505 deprecated_set_value_type (arg2,
1506 lookup_pointer_type (TYPE_TARGET_TYPE (type)));
c906108c
SS
1507 return arg2;
1508 }
1509 if (TYPE_CODE (type) == TYPE_CODE_FUNC)
1510 return value_coerce_function (arg1);
1511
63092375
DJ
1512 /* If this is an array that has not yet been pushed to the target,
1513 then this would be a good time to force it to memory. */
1514 arg1 = value_coerce_to_target (arg1);
1515
c906108c 1516 if (VALUE_LVAL (arg1) != lval_memory)
8a3fe4f8 1517 error (_("Attempt to take address of value not located in memory."));
c906108c 1518
c5aa993b 1519 /* Get target memory address */
df407dfe 1520 arg2 = value_from_pointer (lookup_pointer_type (value_type (arg1)),
42ae5230 1521 (value_address (arg1)
13c3b5f5 1522 + value_embedded_offset (arg1)));
c906108c
SS
1523
1524 /* This may be a pointer to a base subobject; so remember the
ac3eeb49 1525 full derived object's type ... */
4754a64e 1526 arg2 = value_change_enclosing_type (arg2, lookup_pointer_type (value_enclosing_type (arg1)));
ac3eeb49
MS
1527 /* ... and also the relative position of the subobject in the full
1528 object. */
b44d461b 1529 set_value_pointed_to_offset (arg2, value_embedded_offset (arg1));
c906108c
SS
1530 return arg2;
1531}
1532
ac3eeb49
MS
1533/* Return a reference value for the object for which ARG1 is the
1534 contents. */
fb933624
DJ
1535
1536struct value *
1537value_ref (struct value *arg1)
1538{
1539 struct value *arg2;
1540
1541 struct type *type = check_typedef (value_type (arg1));
1542 if (TYPE_CODE (type) == TYPE_CODE_REF)
1543 return arg1;
1544
1545 arg2 = value_addr (arg1);
1546 deprecated_set_value_type (arg2, lookup_reference_type (type));
1547 return arg2;
1548}
1549
ac3eeb49
MS
1550/* Given a value of a pointer type, apply the C unary * operator to
1551 it. */
c906108c 1552
f23631e4
AC
1553struct value *
1554value_ind (struct value *arg1)
c906108c
SS
1555{
1556 struct type *base_type;
f23631e4 1557 struct value *arg2;
c906108c 1558
994b9211 1559 arg1 = coerce_array (arg1);
c906108c 1560
df407dfe 1561 base_type = check_typedef (value_type (arg1));
c906108c 1562
22fe0fbb 1563 if (TYPE_CODE (base_type) == TYPE_CODE_PTR)
c906108c
SS
1564 {
1565 struct type *enc_type;
ac3eeb49
MS
1566 /* We may be pointing to something embedded in a larger object.
1567 Get the real type of the enclosing object. */
4754a64e 1568 enc_type = check_typedef (value_enclosing_type (arg1));
c906108c 1569 enc_type = TYPE_TARGET_TYPE (enc_type);
0d5de010
DJ
1570
1571 if (TYPE_CODE (check_typedef (enc_type)) == TYPE_CODE_FUNC
1572 || TYPE_CODE (check_typedef (enc_type)) == TYPE_CODE_METHOD)
1573 /* For functions, go through find_function_addr, which knows
1574 how to handle function descriptors. */
ac3eeb49
MS
1575 arg2 = value_at_lazy (enc_type,
1576 find_function_addr (arg1, NULL));
0d5de010
DJ
1577 else
1578 /* Retrieve the enclosing object pointed to */
ac3eeb49
MS
1579 arg2 = value_at_lazy (enc_type,
1580 (value_as_address (arg1)
1581 - value_pointed_to_offset (arg1)));
0d5de010 1582
ac3eeb49 1583 /* Re-adjust type. */
04624583 1584 deprecated_set_value_type (arg2, TYPE_TARGET_TYPE (base_type));
ac3eeb49 1585 /* Add embedding info. */
2b127877 1586 arg2 = value_change_enclosing_type (arg2, enc_type);
b44d461b 1587 set_value_embedded_offset (arg2, value_pointed_to_offset (arg1));
c906108c 1588
ac3eeb49 1589 /* We may be pointing to an object of some derived type. */
c906108c
SS
1590 arg2 = value_full_object (arg2, NULL, 0, 0, 0);
1591 return arg2;
1592 }
1593
8a3fe4f8 1594 error (_("Attempt to take contents of a non-pointer value."));
ac3eeb49 1595 return 0; /* For lint -- never reached. */
c906108c
SS
1596}
1597\f
63092375 1598/* Create a value for an array by allocating space in GDB, copying
ac3eeb49
MS
1599 copying the data into that space, and then setting up an array
1600 value.
c906108c 1601
ac3eeb49
MS
1602 The array bounds are set from LOWBOUND and HIGHBOUND, and the array
1603 is populated from the values passed in ELEMVEC.
c906108c
SS
1604
1605 The element type of the array is inherited from the type of the
1606 first element, and all elements must have the same size (though we
ac3eeb49 1607 don't currently enforce any restriction on their types). */
c906108c 1608
f23631e4
AC
1609struct value *
1610value_array (int lowbound, int highbound, struct value **elemvec)
c906108c
SS
1611{
1612 int nelem;
1613 int idx;
1614 unsigned int typelength;
f23631e4 1615 struct value *val;
c906108c
SS
1616 struct type *arraytype;
1617 CORE_ADDR addr;
1618
ac3eeb49
MS
1619 /* Validate that the bounds are reasonable and that each of the
1620 elements have the same size. */
c906108c
SS
1621
1622 nelem = highbound - lowbound + 1;
1623 if (nelem <= 0)
1624 {
8a3fe4f8 1625 error (_("bad array bounds (%d, %d)"), lowbound, highbound);
c906108c 1626 }
4754a64e 1627 typelength = TYPE_LENGTH (value_enclosing_type (elemvec[0]));
c906108c
SS
1628 for (idx = 1; idx < nelem; idx++)
1629 {
4754a64e 1630 if (TYPE_LENGTH (value_enclosing_type (elemvec[idx])) != typelength)
c906108c 1631 {
8a3fe4f8 1632 error (_("array elements must all be the same size"));
c906108c
SS
1633 }
1634 }
1635
e3506a9f
UW
1636 arraytype = lookup_array_range_type (value_enclosing_type (elemvec[0]),
1637 lowbound, highbound);
c906108c
SS
1638
1639 if (!current_language->c_style_arrays)
1640 {
1641 val = allocate_value (arraytype);
1642 for (idx = 0; idx < nelem; idx++)
1643 {
990a07ab 1644 memcpy (value_contents_all_raw (val) + (idx * typelength),
46615f07 1645 value_contents_all (elemvec[idx]),
c906108c
SS
1646 typelength);
1647 }
c906108c
SS
1648 return val;
1649 }
1650
63092375
DJ
1651 /* Allocate space to store the array, and then initialize it by
1652 copying in each element. */
c906108c 1653
63092375 1654 val = allocate_value (arraytype);
c906108c 1655 for (idx = 0; idx < nelem; idx++)
63092375
DJ
1656 memcpy (value_contents_writeable (val) + (idx * typelength),
1657 value_contents_all (elemvec[idx]),
1658 typelength);
1659 return val;
c906108c
SS
1660}
1661
6c7a06a3 1662struct value *
3b7538c0 1663value_cstring (char *ptr, int len, struct type *char_type)
6c7a06a3
TT
1664{
1665 struct value *val;
1666 int lowbound = current_language->string_lower_bound;
1667 int highbound = len / TYPE_LENGTH (char_type);
6c7a06a3 1668 struct type *stringtype
e3506a9f 1669 = lookup_array_range_type (char_type, lowbound, highbound + lowbound - 1);
6c7a06a3
TT
1670
1671 val = allocate_value (stringtype);
1672 memcpy (value_contents_raw (val), ptr, len);
1673 return val;
1674}
1675
ac3eeb49
MS
1676/* Create a value for a string constant by allocating space in the
1677 inferior, copying the data into that space, and returning the
1678 address with type TYPE_CODE_STRING. PTR points to the string
1679 constant data; LEN is number of characters.
1680
1681 Note that string types are like array of char types with a lower
1682 bound of zero and an upper bound of LEN - 1. Also note that the
1683 string may contain embedded null bytes. */
c906108c 1684
f23631e4 1685struct value *
3b7538c0 1686value_string (char *ptr, int len, struct type *char_type)
c906108c 1687{
f23631e4 1688 struct value *val;
c906108c 1689 int lowbound = current_language->string_lower_bound;
3b7538c0 1690 int highbound = len / TYPE_LENGTH (char_type);
c906108c 1691 struct type *stringtype
e3506a9f 1692 = lookup_string_range_type (char_type, lowbound, highbound + lowbound - 1);
c906108c 1693
3b7538c0
UW
1694 val = allocate_value (stringtype);
1695 memcpy (value_contents_raw (val), ptr, len);
1696 return val;
c906108c
SS
1697}
1698
f23631e4 1699struct value *
22601c15 1700value_bitstring (char *ptr, int len, struct type *index_type)
c906108c 1701{
f23631e4 1702 struct value *val;
22601c15
UW
1703 struct type *domain_type
1704 = create_range_type (NULL, index_type, 0, len - 1);
1705 struct type *type = create_set_type (NULL, domain_type);
c906108c
SS
1706 TYPE_CODE (type) = TYPE_CODE_BITSTRING;
1707 val = allocate_value (type);
990a07ab 1708 memcpy (value_contents_raw (val), ptr, TYPE_LENGTH (type));
c906108c
SS
1709 return val;
1710}
1711\f
ac3eeb49
MS
1712/* See if we can pass arguments in T2 to a function which takes
1713 arguments of types T1. T1 is a list of NARGS arguments, and T2 is
1714 a NULL-terminated vector. If some arguments need coercion of some
1715 sort, then the coerced values are written into T2. Return value is
1716 0 if the arguments could be matched, or the position at which they
1717 differ if not.
c906108c 1718
ac3eeb49
MS
1719 STATICP is nonzero if the T1 argument list came from a static
1720 member function. T2 will still include the ``this'' pointer, but
1721 it will be skipped.
c906108c
SS
1722
1723 For non-static member functions, we ignore the first argument,
ac3eeb49
MS
1724 which is the type of the instance variable. This is because we
1725 want to handle calls with objects from derived classes. This is
1726 not entirely correct: we should actually check to make sure that a
c906108c
SS
1727 requested operation is type secure, shouldn't we? FIXME. */
1728
1729static int
ad2f7632
DJ
1730typecmp (int staticp, int varargs, int nargs,
1731 struct field t1[], struct value *t2[])
c906108c
SS
1732{
1733 int i;
1734
1735 if (t2 == 0)
ac3eeb49
MS
1736 internal_error (__FILE__, __LINE__,
1737 _("typecmp: no argument list"));
ad2f7632 1738
ac3eeb49
MS
1739 /* Skip ``this'' argument if applicable. T2 will always include
1740 THIS. */
4a1970e4 1741 if (staticp)
ad2f7632
DJ
1742 t2 ++;
1743
1744 for (i = 0;
1745 (i < nargs) && TYPE_CODE (t1[i].type) != TYPE_CODE_VOID;
1746 i++)
c906108c 1747 {
c5aa993b 1748 struct type *tt1, *tt2;
ad2f7632 1749
c5aa993b
JM
1750 if (!t2[i])
1751 return i + 1;
ad2f7632
DJ
1752
1753 tt1 = check_typedef (t1[i].type);
df407dfe 1754 tt2 = check_typedef (value_type (t2[i]));
ad2f7632 1755
c906108c 1756 if (TYPE_CODE (tt1) == TYPE_CODE_REF
c5aa993b 1757 /* We should be doing hairy argument matching, as below. */
c906108c
SS
1758 && (TYPE_CODE (check_typedef (TYPE_TARGET_TYPE (tt1))) == TYPE_CODE (tt2)))
1759 {
1760 if (TYPE_CODE (tt2) == TYPE_CODE_ARRAY)
1761 t2[i] = value_coerce_array (t2[i]);
1762 else
fb933624 1763 t2[i] = value_ref (t2[i]);
c906108c
SS
1764 continue;
1765 }
1766
802db21b
DB
1767 /* djb - 20000715 - Until the new type structure is in the
1768 place, and we can attempt things like implicit conversions,
1769 we need to do this so you can take something like a map<const
1770 char *>, and properly access map["hello"], because the
1771 argument to [] will be a reference to a pointer to a char,
ac3eeb49
MS
1772 and the argument will be a pointer to a char. */
1773 while (TYPE_CODE(tt1) == TYPE_CODE_REF
1774 || TYPE_CODE (tt1) == TYPE_CODE_PTR)
802db21b
DB
1775 {
1776 tt1 = check_typedef( TYPE_TARGET_TYPE(tt1) );
1777 }
ac3eeb49
MS
1778 while (TYPE_CODE(tt2) == TYPE_CODE_ARRAY
1779 || TYPE_CODE(tt2) == TYPE_CODE_PTR
1780 || TYPE_CODE(tt2) == TYPE_CODE_REF)
c906108c 1781 {
ac3eeb49 1782 tt2 = check_typedef (TYPE_TARGET_TYPE(tt2));
c906108c 1783 }
c5aa993b
JM
1784 if (TYPE_CODE (tt1) == TYPE_CODE (tt2))
1785 continue;
ac3eeb49
MS
1786 /* Array to pointer is a `trivial conversion' according to the
1787 ARM. */
c906108c 1788
ac3eeb49
MS
1789 /* We should be doing much hairier argument matching (see
1790 section 13.2 of the ARM), but as a quick kludge, just check
1791 for the same type code. */
df407dfe 1792 if (TYPE_CODE (t1[i].type) != TYPE_CODE (value_type (t2[i])))
c5aa993b 1793 return i + 1;
c906108c 1794 }
ad2f7632 1795 if (varargs || t2[i] == NULL)
c5aa993b 1796 return 0;
ad2f7632 1797 return i + 1;
c906108c
SS
1798}
1799
ac3eeb49
MS
1800/* Helper function used by value_struct_elt to recurse through
1801 baseclasses. Look for a field NAME in ARG1. Adjust the address of
1802 ARG1 by OFFSET bytes, and search in it assuming it has (class) type
1803 TYPE. If found, return value, else return NULL.
c906108c 1804
ac3eeb49
MS
1805 If LOOKING_FOR_BASECLASS, then instead of looking for struct
1806 fields, look for a baseclass named NAME. */
c906108c 1807
f23631e4
AC
1808static struct value *
1809search_struct_field (char *name, struct value *arg1, int offset,
aa1ee363 1810 struct type *type, int looking_for_baseclass)
c906108c
SS
1811{
1812 int i;
edf3d5f3 1813 int nbases;
c906108c
SS
1814
1815 CHECK_TYPEDEF (type);
edf3d5f3 1816 nbases = TYPE_N_BASECLASSES (type);
c906108c 1817
c5aa993b 1818 if (!looking_for_baseclass)
c906108c
SS
1819 for (i = TYPE_NFIELDS (type) - 1; i >= nbases; i--)
1820 {
1821 char *t_field_name = TYPE_FIELD_NAME (type, i);
1822
db577aea 1823 if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
c906108c 1824 {
f23631e4 1825 struct value *v;
d6a843b5 1826 if (field_is_static (&TYPE_FIELD (type, i)))
2c2738a0
DC
1827 {
1828 v = value_static_field (type, i);
1829 if (v == 0)
8a3fe4f8 1830 error (_("field %s is nonexistent or has been optimised out"),
2c2738a0
DC
1831 name);
1832 }
c906108c 1833 else
2c2738a0
DC
1834 {
1835 v = value_primitive_field (arg1, offset, i, type);
1836 if (v == 0)
8a3fe4f8 1837 error (_("there is no field named %s"), name);
2c2738a0 1838 }
c906108c
SS
1839 return v;
1840 }
1841
1842 if (t_field_name
1843 && (t_field_name[0] == '\0'
1844 || (TYPE_CODE (type) == TYPE_CODE_UNION
db577aea 1845 && (strcmp_iw (t_field_name, "else") == 0))))
c906108c
SS
1846 {
1847 struct type *field_type = TYPE_FIELD_TYPE (type, i);
1848 if (TYPE_CODE (field_type) == TYPE_CODE_UNION
1849 || TYPE_CODE (field_type) == TYPE_CODE_STRUCT)
1850 {
ac3eeb49
MS
1851 /* Look for a match through the fields of an anonymous
1852 union, or anonymous struct. C++ provides anonymous
1853 unions.
c906108c 1854
1b831c93
AC
1855 In the GNU Chill (now deleted from GDB)
1856 implementation of variant record types, each
1857 <alternative field> has an (anonymous) union type,
1858 each member of the union represents a <variant
1859 alternative>. Each <variant alternative> is
1860 represented as a struct, with a member for each
1861 <variant field>. */
c5aa993b 1862
f23631e4 1863 struct value *v;
c906108c
SS
1864 int new_offset = offset;
1865
db034ac5
AC
1866 /* This is pretty gross. In G++, the offset in an
1867 anonymous union is relative to the beginning of the
1b831c93
AC
1868 enclosing struct. In the GNU Chill (now deleted
1869 from GDB) implementation of variant records, the
1870 bitpos is zero in an anonymous union field, so we
ac3eeb49 1871 have to add the offset of the union here. */
c906108c
SS
1872 if (TYPE_CODE (field_type) == TYPE_CODE_STRUCT
1873 || (TYPE_NFIELDS (field_type) > 0
1874 && TYPE_FIELD_BITPOS (field_type, 0) == 0))
1875 new_offset += TYPE_FIELD_BITPOS (type, i) / 8;
1876
ac3eeb49
MS
1877 v = search_struct_field (name, arg1, new_offset,
1878 field_type,
c906108c
SS
1879 looking_for_baseclass);
1880 if (v)
1881 return v;
1882 }
1883 }
1884 }
1885
c5aa993b 1886 for (i = 0; i < nbases; i++)
c906108c 1887 {
f23631e4 1888 struct value *v;
c906108c 1889 struct type *basetype = check_typedef (TYPE_BASECLASS (type, i));
ac3eeb49
MS
1890 /* If we are looking for baseclasses, this is what we get when
1891 we hit them. But it could happen that the base part's member
1892 name is not yet filled in. */
c906108c
SS
1893 int found_baseclass = (looking_for_baseclass
1894 && TYPE_BASECLASS_NAME (type, i) != NULL
ac3eeb49
MS
1895 && (strcmp_iw (name,
1896 TYPE_BASECLASS_NAME (type,
1897 i)) == 0));
c906108c
SS
1898
1899 if (BASETYPE_VIA_VIRTUAL (type, i))
1900 {
1901 int boffset;
3e3d7139 1902 struct value *v2;
c906108c
SS
1903
1904 boffset = baseclass_offset (type, i,
0fd88904 1905 value_contents (arg1) + offset,
42ae5230 1906 value_address (arg1) + offset);
c906108c 1907 if (boffset == -1)
8a3fe4f8 1908 error (_("virtual baseclass botch"));
c906108c 1909
ac3eeb49
MS
1910 /* The virtual base class pointer might have been clobbered
1911 by the user program. Make sure that it still points to a
1912 valid memory location. */
c906108c
SS
1913
1914 boffset += offset;
1915 if (boffset < 0 || boffset >= TYPE_LENGTH (type))
1916 {
1917 CORE_ADDR base_addr;
c5aa993b 1918
3e3d7139 1919 v2 = allocate_value (basetype);
42ae5230 1920 base_addr = value_address (arg1) + boffset;
ac3eeb49
MS
1921 if (target_read_memory (base_addr,
1922 value_contents_raw (v2),
c906108c 1923 TYPE_LENGTH (basetype)) != 0)
8a3fe4f8 1924 error (_("virtual baseclass botch"));
c906108c 1925 VALUE_LVAL (v2) = lval_memory;
42ae5230 1926 set_value_address (v2, base_addr);
c906108c
SS
1927 }
1928 else
1929 {
3e3d7139
JG
1930 if (VALUE_LVAL (arg1) == lval_memory && value_lazy (arg1))
1931 v2 = allocate_value_lazy (basetype);
1932 else
1933 {
1934 v2 = allocate_value (basetype);
1935 memcpy (value_contents_raw (v2),
1936 value_contents_raw (arg1) + boffset,
1937 TYPE_LENGTH (basetype));
1938 }
74bcbdf3 1939 set_value_component_location (v2, arg1);
65d3800a 1940 VALUE_FRAME_ID (v2) = VALUE_FRAME_ID (arg1);
f5cf64a7 1941 set_value_offset (v2, value_offset (arg1) + boffset);
c906108c
SS
1942 }
1943
1944 if (found_baseclass)
1945 return v2;
ac3eeb49
MS
1946 v = search_struct_field (name, v2, 0,
1947 TYPE_BASECLASS (type, i),
c906108c
SS
1948 looking_for_baseclass);
1949 }
1950 else if (found_baseclass)
1951 v = value_primitive_field (arg1, offset, i, type);
1952 else
1953 v = search_struct_field (name, arg1,
ac3eeb49
MS
1954 offset + TYPE_BASECLASS_BITPOS (type,
1955 i) / 8,
c906108c 1956 basetype, looking_for_baseclass);
c5aa993b
JM
1957 if (v)
1958 return v;
c906108c
SS
1959 }
1960 return NULL;
1961}
1962
ac3eeb49
MS
1963/* Helper function used by value_struct_elt to recurse through
1964 baseclasses. Look for a field NAME in ARG1. Adjust the address of
1965 ARG1 by OFFSET bytes, and search in it assuming it has (class) type
1966 TYPE.
1967
1968 If found, return value, else if name matched and args not return
1969 (value) -1, else return NULL. */
c906108c 1970
f23631e4
AC
1971static struct value *
1972search_struct_method (char *name, struct value **arg1p,
1973 struct value **args, int offset,
aa1ee363 1974 int *static_memfuncp, struct type *type)
c906108c
SS
1975{
1976 int i;
f23631e4 1977 struct value *v;
c906108c
SS
1978 int name_matched = 0;
1979 char dem_opname[64];
1980
1981 CHECK_TYPEDEF (type);
1982 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; i--)
1983 {
1984 char *t_field_name = TYPE_FN_FIELDLIST_NAME (type, i);
1985 /* FIXME! May need to check for ARM demangling here */
c5aa993b
JM
1986 if (strncmp (t_field_name, "__", 2) == 0 ||
1987 strncmp (t_field_name, "op", 2) == 0 ||
1988 strncmp (t_field_name, "type", 4) == 0)
c906108c 1989 {
c5aa993b
JM
1990 if (cplus_demangle_opname (t_field_name, dem_opname, DMGL_ANSI))
1991 t_field_name = dem_opname;
1992 else if (cplus_demangle_opname (t_field_name, dem_opname, 0))
c906108c 1993 t_field_name = dem_opname;
c906108c 1994 }
db577aea 1995 if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
c906108c
SS
1996 {
1997 int j = TYPE_FN_FIELDLIST_LENGTH (type, i) - 1;
1998 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
c5aa993b 1999 name_matched = 1;
c906108c 2000
de17c821 2001 check_stub_method_group (type, i);
c906108c 2002 if (j > 0 && args == 0)
8a3fe4f8 2003 error (_("cannot resolve overloaded method `%s': no arguments supplied"), name);
acf5ed49 2004 else if (j == 0 && args == 0)
c906108c 2005 {
acf5ed49
DJ
2006 v = value_fn_field (arg1p, f, j, type, offset);
2007 if (v != NULL)
2008 return v;
c906108c 2009 }
acf5ed49
DJ
2010 else
2011 while (j >= 0)
2012 {
acf5ed49 2013 if (!typecmp (TYPE_FN_FIELD_STATIC_P (f, j),
ad2f7632
DJ
2014 TYPE_VARARGS (TYPE_FN_FIELD_TYPE (f, j)),
2015 TYPE_NFIELDS (TYPE_FN_FIELD_TYPE (f, j)),
acf5ed49
DJ
2016 TYPE_FN_FIELD_ARGS (f, j), args))
2017 {
2018 if (TYPE_FN_FIELD_VIRTUAL_P (f, j))
ac3eeb49
MS
2019 return value_virtual_fn_field (arg1p, f, j,
2020 type, offset);
2021 if (TYPE_FN_FIELD_STATIC_P (f, j)
2022 && static_memfuncp)
acf5ed49
DJ
2023 *static_memfuncp = 1;
2024 v = value_fn_field (arg1p, f, j, type, offset);
2025 if (v != NULL)
2026 return v;
2027 }
2028 j--;
2029 }
c906108c
SS
2030 }
2031 }
2032
2033 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
2034 {
2035 int base_offset;
2036
2037 if (BASETYPE_VIA_VIRTUAL (type, i))
2038 {
086280be
UW
2039 struct type *baseclass = check_typedef (TYPE_BASECLASS (type, i));
2040 const gdb_byte *base_valaddr;
2041
2042 /* The virtual base class pointer might have been
2043 clobbered by the user program. Make sure that it
2044 still points to a valid memory location. */
2045
2046 if (offset < 0 || offset >= TYPE_LENGTH (type))
c5aa993b 2047 {
086280be 2048 gdb_byte *tmp = alloca (TYPE_LENGTH (baseclass));
42ae5230 2049 if (target_read_memory (value_address (*arg1p) + offset,
086280be
UW
2050 tmp, TYPE_LENGTH (baseclass)) != 0)
2051 error (_("virtual baseclass botch"));
2052 base_valaddr = tmp;
c5aa993b
JM
2053 }
2054 else
086280be 2055 base_valaddr = value_contents (*arg1p) + offset;
c5aa993b 2056
086280be 2057 base_offset = baseclass_offset (type, i, base_valaddr,
42ae5230 2058 value_address (*arg1p) + offset);
086280be
UW
2059 if (base_offset == -1)
2060 error (_("virtual baseclass botch"));
c5aa993b 2061 }
c906108c
SS
2062 else
2063 {
2064 base_offset = TYPE_BASECLASS_BITPOS (type, i) / 8;
c5aa993b 2065 }
c906108c
SS
2066 v = search_struct_method (name, arg1p, args, base_offset + offset,
2067 static_memfuncp, TYPE_BASECLASS (type, i));
f23631e4 2068 if (v == (struct value *) - 1)
c906108c
SS
2069 {
2070 name_matched = 1;
2071 }
2072 else if (v)
2073 {
ac3eeb49
MS
2074 /* FIXME-bothner: Why is this commented out? Why is it here? */
2075 /* *arg1p = arg1_tmp; */
c906108c 2076 return v;
c5aa993b 2077 }
c906108c 2078 }
c5aa993b 2079 if (name_matched)
f23631e4 2080 return (struct value *) - 1;
c5aa993b
JM
2081 else
2082 return NULL;
c906108c
SS
2083}
2084
2085/* Given *ARGP, a value of type (pointer to a)* structure/union,
ac3eeb49
MS
2086 extract the component named NAME from the ultimate target
2087 structure/union and return it as a value with its appropriate type.
c906108c
SS
2088 ERR is used in the error message if *ARGP's type is wrong.
2089
2090 C++: ARGS is a list of argument types to aid in the selection of
2091 an appropriate method. Also, handle derived types.
2092
2093 STATIC_MEMFUNCP, if non-NULL, points to a caller-supplied location
2094 where the truthvalue of whether the function that was resolved was
2095 a static member function or not is stored.
2096
ac3eeb49
MS
2097 ERR is an error message to be printed in case the field is not
2098 found. */
c906108c 2099
f23631e4
AC
2100struct value *
2101value_struct_elt (struct value **argp, struct value **args,
fba45db2 2102 char *name, int *static_memfuncp, char *err)
c906108c 2103{
52f0bd74 2104 struct type *t;
f23631e4 2105 struct value *v;
c906108c 2106
994b9211 2107 *argp = coerce_array (*argp);
c906108c 2108
df407dfe 2109 t = check_typedef (value_type (*argp));
c906108c
SS
2110
2111 /* Follow pointers until we get to a non-pointer. */
2112
2113 while (TYPE_CODE (t) == TYPE_CODE_PTR || TYPE_CODE (t) == TYPE_CODE_REF)
2114 {
2115 *argp = value_ind (*argp);
2116 /* Don't coerce fn pointer to fn and then back again! */
df407dfe 2117 if (TYPE_CODE (value_type (*argp)) != TYPE_CODE_FUNC)
994b9211 2118 *argp = coerce_array (*argp);
df407dfe 2119 t = check_typedef (value_type (*argp));
c906108c
SS
2120 }
2121
c5aa993b 2122 if (TYPE_CODE (t) != TYPE_CODE_STRUCT
c906108c 2123 && TYPE_CODE (t) != TYPE_CODE_UNION)
8a3fe4f8 2124 error (_("Attempt to extract a component of a value that is not a %s."), err);
c906108c
SS
2125
2126 /* Assume it's not, unless we see that it is. */
2127 if (static_memfuncp)
c5aa993b 2128 *static_memfuncp = 0;
c906108c
SS
2129
2130 if (!args)
2131 {
2132 /* if there are no arguments ...do this... */
2133
ac3eeb49
MS
2134 /* Try as a field first, because if we succeed, there is less
2135 work to be done. */
c906108c
SS
2136 v = search_struct_field (name, *argp, 0, t, 0);
2137 if (v)
2138 return v;
2139
2140 /* C++: If it was not found as a data field, then try to
7b83ea04 2141 return it as a pointer to a method. */
ac3eeb49
MS
2142 v = search_struct_method (name, argp, args, 0,
2143 static_memfuncp, t);
c906108c 2144
f23631e4 2145 if (v == (struct value *) - 1)
55b39184 2146 error (_("Cannot take address of method %s."), name);
c906108c
SS
2147 else if (v == 0)
2148 {
2149 if (TYPE_NFN_FIELDS (t))
8a3fe4f8 2150 error (_("There is no member or method named %s."), name);
c906108c 2151 else
8a3fe4f8 2152 error (_("There is no member named %s."), name);
c906108c
SS
2153 }
2154 return v;
2155 }
2156
ac3eeb49
MS
2157 v = search_struct_method (name, argp, args, 0,
2158 static_memfuncp, t);
7168a814 2159
f23631e4 2160 if (v == (struct value *) - 1)
c906108c 2161 {
8a3fe4f8 2162 error (_("One of the arguments you tried to pass to %s could not be converted to what the function wants."), name);
c906108c
SS
2163 }
2164 else if (v == 0)
2165 {
ac3eeb49
MS
2166 /* See if user tried to invoke data as function. If so, hand it
2167 back. If it's not callable (i.e., a pointer to function),
7b83ea04 2168 gdb should give an error. */
c906108c 2169 v = search_struct_field (name, *argp, 0, t, 0);
fa8de41e
TT
2170 /* If we found an ordinary field, then it is not a method call.
2171 So, treat it as if it were a static member function. */
2172 if (v && static_memfuncp)
2173 *static_memfuncp = 1;
c906108c
SS
2174 }
2175
2176 if (!v)
8a3fe4f8 2177 error (_("Structure has no component named %s."), name);
c906108c
SS
2178 return v;
2179}
2180
ac3eeb49 2181/* Search through the methods of an object (and its bases) to find a
cfe9eade 2182 specified method. Return the pointer to the fn_field list of
ac3eeb49
MS
2183 overloaded instances.
2184
2185 Helper function for value_find_oload_list.
2186 ARGP is a pointer to a pointer to a value (the object).
2187 METHOD is a string containing the method name.
2188 OFFSET is the offset within the value.
2189 TYPE is the assumed type of the object.
2190 NUM_FNS is the number of overloaded instances.
2191 BASETYPE is set to the actual type of the subobject where the
2192 method is found.
2193 BOFFSET is the offset of the base subobject where the method is found.
2194*/
c906108c 2195
7a292a7a 2196static struct fn_field *
ac3eeb49
MS
2197find_method_list (struct value **argp, char *method,
2198 int offset, struct type *type, int *num_fns,
fba45db2 2199 struct type **basetype, int *boffset)
c906108c
SS
2200{
2201 int i;
c5aa993b 2202 struct fn_field *f;
c906108c
SS
2203 CHECK_TYPEDEF (type);
2204
2205 *num_fns = 0;
2206
ac3eeb49 2207 /* First check in object itself. */
c5aa993b 2208 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; i--)
c906108c 2209 {
ac3eeb49 2210 /* pai: FIXME What about operators and type conversions? */
c5aa993b 2211 char *fn_field_name = TYPE_FN_FIELDLIST_NAME (type, i);
db577aea 2212 if (fn_field_name && (strcmp_iw (fn_field_name, method) == 0))
c5aa993b 2213 {
4a1970e4
DJ
2214 int len = TYPE_FN_FIELDLIST_LENGTH (type, i);
2215 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, i);
4a1970e4
DJ
2216
2217 *num_fns = len;
c5aa993b
JM
2218 *basetype = type;
2219 *boffset = offset;
4a1970e4 2220
de17c821
DJ
2221 /* Resolve any stub methods. */
2222 check_stub_method_group (type, i);
4a1970e4
DJ
2223
2224 return f;
c5aa993b
JM
2225 }
2226 }
2227
ac3eeb49 2228 /* Not found in object, check in base subobjects. */
c906108c
SS
2229 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
2230 {
2231 int base_offset;
2232 if (BASETYPE_VIA_VIRTUAL (type, i))
2233 {
086280be
UW
2234 base_offset = value_offset (*argp) + offset;
2235 base_offset = baseclass_offset (type, i,
2236 value_contents (*argp) + base_offset,
42ae5230 2237 value_address (*argp) + base_offset);
086280be
UW
2238 if (base_offset == -1)
2239 error (_("virtual baseclass botch"));
c5aa993b 2240 }
ac3eeb49
MS
2241 else /* Non-virtual base, simply use bit position from debug
2242 info. */
c906108c
SS
2243 {
2244 base_offset = TYPE_BASECLASS_BITPOS (type, i) / 8;
c5aa993b 2245 }
c906108c 2246 f = find_method_list (argp, method, base_offset + offset,
ac3eeb49
MS
2247 TYPE_BASECLASS (type, i), num_fns,
2248 basetype, boffset);
c906108c 2249 if (f)
c5aa993b 2250 return f;
c906108c 2251 }
c5aa993b 2252 return NULL;
c906108c
SS
2253}
2254
2255/* Return the list of overloaded methods of a specified name.
ac3eeb49
MS
2256
2257 ARGP is a pointer to a pointer to a value (the object).
2258 METHOD is the method name.
2259 OFFSET is the offset within the value contents.
2260 NUM_FNS is the number of overloaded instances.
2261 BASETYPE is set to the type of the base subobject that defines the
2262 method.
2263 BOFFSET is the offset of the base subobject which defines the method.
2264*/
c906108c
SS
2265
2266struct fn_field *
ac3eeb49
MS
2267value_find_oload_method_list (struct value **argp, char *method,
2268 int offset, int *num_fns,
2269 struct type **basetype, int *boffset)
c906108c 2270{
c5aa993b 2271 struct type *t;
c906108c 2272
df407dfe 2273 t = check_typedef (value_type (*argp));
c906108c 2274
ac3eeb49 2275 /* Code snarfed from value_struct_elt. */
c906108c
SS
2276 while (TYPE_CODE (t) == TYPE_CODE_PTR || TYPE_CODE (t) == TYPE_CODE_REF)
2277 {
2278 *argp = value_ind (*argp);
2279 /* Don't coerce fn pointer to fn and then back again! */
df407dfe 2280 if (TYPE_CODE (value_type (*argp)) != TYPE_CODE_FUNC)
994b9211 2281 *argp = coerce_array (*argp);
df407dfe 2282 t = check_typedef (value_type (*argp));
c906108c 2283 }
c5aa993b 2284
c5aa993b
JM
2285 if (TYPE_CODE (t) != TYPE_CODE_STRUCT
2286 && TYPE_CODE (t) != TYPE_CODE_UNION)
8a3fe4f8 2287 error (_("Attempt to extract a component of a value that is not a struct or union"));
c5aa993b 2288
ac3eeb49
MS
2289 return find_method_list (argp, method, 0, t, num_fns,
2290 basetype, boffset);
c906108c
SS
2291}
2292
2293/* Given an array of argument types (ARGTYPES) (which includes an
2294 entry for "this" in the case of C++ methods), the number of
2295 arguments NARGS, the NAME of a function whether it's a method or
2296 not (METHOD), and the degree of laxness (LAX) in conforming to
2297 overload resolution rules in ANSI C++, find the best function that
2298 matches on the argument types according to the overload resolution
2299 rules.
2300
2301 In the case of class methods, the parameter OBJ is an object value
2302 in which to search for overloaded methods.
2303
2304 In the case of non-method functions, the parameter FSYM is a symbol
2305 corresponding to one of the overloaded functions.
2306
2307 Return value is an integer: 0 -> good match, 10 -> debugger applied
2308 non-standard coercions, 100 -> incompatible.
2309
2310 If a method is being searched for, VALP will hold the value.
ac3eeb49
MS
2311 If a non-method is being searched for, SYMP will hold the symbol
2312 for it.
c906108c
SS
2313
2314 If a method is being searched for, and it is a static method,
2315 then STATICP will point to a non-zero value.
2316
2317 Note: This function does *not* check the value of
2318 overload_resolution. Caller must check it to see whether overload
2319 resolution is permitted.
ac3eeb49 2320*/
c906108c
SS
2321
2322int
ac3eeb49
MS
2323find_overload_match (struct type **arg_types, int nargs,
2324 char *name, int method, int lax,
2325 struct value **objp, struct symbol *fsym,
2326 struct value **valp, struct symbol **symp,
2327 int *staticp)
c906108c 2328{
7f8c9282 2329 struct value *obj = (objp ? *objp : NULL);
ac3eeb49
MS
2330 /* Index of best overloaded function. */
2331 int oload_champ;
2332 /* The measure for the current best match. */
2333 struct badness_vector *oload_champ_bv = NULL;
f23631e4 2334 struct value *temp = obj;
ac3eeb49
MS
2335 /* For methods, the list of overloaded methods. */
2336 struct fn_field *fns_ptr = NULL;
2337 /* For non-methods, the list of overloaded function symbols. */
2338 struct symbol **oload_syms = NULL;
2339 /* Number of overloaded instances being considered. */
2340 int num_fns = 0;
c5aa993b 2341 struct type *basetype = NULL;
c906108c 2342 int boffset;
52f0bd74 2343 int ix;
4a1970e4 2344 int static_offset;
8d577d32 2345 struct cleanup *old_cleanups = NULL;
c906108c 2346
8d577d32 2347 const char *obj_type_name = NULL;
c5aa993b 2348 char *func_name = NULL;
8d577d32 2349 enum oload_classification match_quality;
c906108c 2350
ac3eeb49 2351 /* Get the list of overloaded methods or functions. */
c906108c
SS
2352 if (method)
2353 {
a2ca50ae 2354 gdb_assert (obj);
df407dfe 2355 obj_type_name = TYPE_NAME (value_type (obj));
c906108c 2356 /* Hack: evaluate_subexp_standard often passes in a pointer
ac3eeb49
MS
2357 value rather than the object itself, so try again. */
2358 if ((!obj_type_name || !*obj_type_name)
2359 && (TYPE_CODE (value_type (obj)) == TYPE_CODE_PTR))
df407dfe 2360 obj_type_name = TYPE_NAME (TYPE_TARGET_TYPE (value_type (obj)));
c906108c 2361
ac3eeb49
MS
2362 fns_ptr = value_find_oload_method_list (&temp, name,
2363 0, &num_fns,
c5aa993b 2364 &basetype, &boffset);
c906108c 2365 if (!fns_ptr || !num_fns)
8a3fe4f8 2366 error (_("Couldn't find method %s%s%s"),
c5aa993b
JM
2367 obj_type_name,
2368 (obj_type_name && *obj_type_name) ? "::" : "",
2369 name);
4a1970e4 2370 /* If we are dealing with stub method types, they should have
ac3eeb49
MS
2371 been resolved by find_method_list via
2372 value_find_oload_method_list above. */
4a1970e4 2373 gdb_assert (TYPE_DOMAIN_TYPE (fns_ptr[0].type) != NULL);
ac3eeb49
MS
2374 oload_champ = find_oload_champ (arg_types, nargs, method,
2375 num_fns, fns_ptr,
2376 oload_syms, &oload_champ_bv);
c906108c
SS
2377 }
2378 else
2379 {
8d577d32 2380 const char *qualified_name = SYMBOL_CPLUS_DEMANGLED_NAME (fsym);
c906108c 2381
d9639e13
DJ
2382 /* If we have a C++ name, try to extract just the function
2383 part. */
2384 if (qualified_name)
2385 func_name = cp_func_name (qualified_name);
2386
2387 /* If there was no C++ name, this must be a C-style function.
2388 Just return the same symbol. Do the same if cp_func_name
2389 fails for some reason. */
8d577d32 2390 if (func_name == NULL)
7b83ea04 2391 {
917317f4 2392 *symp = fsym;
7b83ea04
AC
2393 return 0;
2394 }
917317f4 2395
8d577d32
DC
2396 old_cleanups = make_cleanup (xfree, func_name);
2397 make_cleanup (xfree, oload_syms);
2398 make_cleanup (xfree, oload_champ_bv);
2399
2400 oload_champ = find_oload_champ_namespace (arg_types, nargs,
2401 func_name,
2402 qualified_name,
2403 &oload_syms,
2404 &oload_champ_bv);
2405 }
2406
2407 /* Check how bad the best match is. */
2408
ac3eeb49
MS
2409 match_quality =
2410 classify_oload_match (oload_champ_bv, nargs,
2411 oload_method_static (method, fns_ptr,
2412 oload_champ));
8d577d32
DC
2413
2414 if (match_quality == INCOMPATIBLE)
2415 {
2416 if (method)
8a3fe4f8 2417 error (_("Cannot resolve method %s%s%s to any overloaded instance"),
8d577d32
DC
2418 obj_type_name,
2419 (obj_type_name && *obj_type_name) ? "::" : "",
2420 name);
2421 else
8a3fe4f8 2422 error (_("Cannot resolve function %s to any overloaded instance"),
8d577d32
DC
2423 func_name);
2424 }
2425 else if (match_quality == NON_STANDARD)
2426 {
2427 if (method)
8a3fe4f8 2428 warning (_("Using non-standard conversion to match method %s%s%s to supplied arguments"),
8d577d32
DC
2429 obj_type_name,
2430 (obj_type_name && *obj_type_name) ? "::" : "",
2431 name);
2432 else
8a3fe4f8 2433 warning (_("Using non-standard conversion to match function %s to supplied arguments"),
8d577d32
DC
2434 func_name);
2435 }
2436
2437 if (method)
2438 {
2439 if (staticp != NULL)
2440 *staticp = oload_method_static (method, fns_ptr, oload_champ);
2441 if (TYPE_FN_FIELD_VIRTUAL_P (fns_ptr, oload_champ))
ac3eeb49
MS
2442 *valp = value_virtual_fn_field (&temp, fns_ptr, oload_champ,
2443 basetype, boffset);
8d577d32 2444 else
ac3eeb49
MS
2445 *valp = value_fn_field (&temp, fns_ptr, oload_champ,
2446 basetype, boffset);
8d577d32
DC
2447 }
2448 else
2449 {
2450 *symp = oload_syms[oload_champ];
2451 }
2452
2453 if (objp)
2454 {
a4295225
TT
2455 struct type *temp_type = check_typedef (value_type (temp));
2456 struct type *obj_type = check_typedef (value_type (*objp));
2457 if (TYPE_CODE (temp_type) != TYPE_CODE_PTR
2458 && (TYPE_CODE (obj_type) == TYPE_CODE_PTR
2459 || TYPE_CODE (obj_type) == TYPE_CODE_REF))
8d577d32
DC
2460 {
2461 temp = value_addr (temp);
2462 }
2463 *objp = temp;
2464 }
2465 if (old_cleanups != NULL)
2466 do_cleanups (old_cleanups);
2467
2468 switch (match_quality)
2469 {
2470 case INCOMPATIBLE:
2471 return 100;
2472 case NON_STANDARD:
2473 return 10;
2474 default: /* STANDARD */
2475 return 0;
2476 }
2477}
2478
2479/* Find the best overload match, searching for FUNC_NAME in namespaces
2480 contained in QUALIFIED_NAME until it either finds a good match or
2481 runs out of namespaces. It stores the overloaded functions in
2482 *OLOAD_SYMS, and the badness vector in *OLOAD_CHAMP_BV. The
2483 calling function is responsible for freeing *OLOAD_SYMS and
2484 *OLOAD_CHAMP_BV. */
2485
2486static int
2487find_oload_champ_namespace (struct type **arg_types, int nargs,
2488 const char *func_name,
2489 const char *qualified_name,
2490 struct symbol ***oload_syms,
2491 struct badness_vector **oload_champ_bv)
2492{
2493 int oload_champ;
2494
2495 find_oload_champ_namespace_loop (arg_types, nargs,
2496 func_name,
2497 qualified_name, 0,
2498 oload_syms, oload_champ_bv,
2499 &oload_champ);
2500
2501 return oload_champ;
2502}
2503
2504/* Helper function for find_oload_champ_namespace; NAMESPACE_LEN is
2505 how deep we've looked for namespaces, and the champ is stored in
2506 OLOAD_CHAMP. The return value is 1 if the champ is a good one, 0
2507 if it isn't.
2508
2509 It is the caller's responsibility to free *OLOAD_SYMS and
2510 *OLOAD_CHAMP_BV. */
2511
2512static int
2513find_oload_champ_namespace_loop (struct type **arg_types, int nargs,
2514 const char *func_name,
2515 const char *qualified_name,
2516 int namespace_len,
2517 struct symbol ***oload_syms,
2518 struct badness_vector **oload_champ_bv,
2519 int *oload_champ)
2520{
2521 int next_namespace_len = namespace_len;
2522 int searched_deeper = 0;
2523 int num_fns = 0;
2524 struct cleanup *old_cleanups;
2525 int new_oload_champ;
2526 struct symbol **new_oload_syms;
2527 struct badness_vector *new_oload_champ_bv;
2528 char *new_namespace;
2529
2530 if (next_namespace_len != 0)
2531 {
2532 gdb_assert (qualified_name[next_namespace_len] == ':');
2533 next_namespace_len += 2;
c906108c 2534 }
ac3eeb49
MS
2535 next_namespace_len +=
2536 cp_find_first_component (qualified_name + next_namespace_len);
8d577d32
DC
2537
2538 /* Initialize these to values that can safely be xfree'd. */
2539 *oload_syms = NULL;
2540 *oload_champ_bv = NULL;
c5aa993b 2541
ac3eeb49
MS
2542 /* First, see if we have a deeper namespace we can search in.
2543 If we get a good match there, use it. */
8d577d32
DC
2544
2545 if (qualified_name[next_namespace_len] == ':')
2546 {
2547 searched_deeper = 1;
2548
2549 if (find_oload_champ_namespace_loop (arg_types, nargs,
2550 func_name, qualified_name,
2551 next_namespace_len,
2552 oload_syms, oload_champ_bv,
2553 oload_champ))
2554 {
2555 return 1;
2556 }
2557 };
2558
2559 /* If we reach here, either we're in the deepest namespace or we
2560 didn't find a good match in a deeper namespace. But, in the
2561 latter case, we still have a bad match in a deeper namespace;
2562 note that we might not find any match at all in the current
2563 namespace. (There's always a match in the deepest namespace,
2564 because this overload mechanism only gets called if there's a
2565 function symbol to start off with.) */
2566
2567 old_cleanups = make_cleanup (xfree, *oload_syms);
2568 old_cleanups = make_cleanup (xfree, *oload_champ_bv);
2569 new_namespace = alloca (namespace_len + 1);
2570 strncpy (new_namespace, qualified_name, namespace_len);
2571 new_namespace[namespace_len] = '\0';
2572 new_oload_syms = make_symbol_overload_list (func_name,
2573 new_namespace);
2574 while (new_oload_syms[num_fns])
2575 ++num_fns;
2576
2577 new_oload_champ = find_oload_champ (arg_types, nargs, 0, num_fns,
2578 NULL, new_oload_syms,
2579 &new_oload_champ_bv);
2580
2581 /* Case 1: We found a good match. Free earlier matches (if any),
2582 and return it. Case 2: We didn't find a good match, but we're
2583 not the deepest function. Then go with the bad match that the
2584 deeper function found. Case 3: We found a bad match, and we're
2585 the deepest function. Then return what we found, even though
2586 it's a bad match. */
2587
2588 if (new_oload_champ != -1
2589 && classify_oload_match (new_oload_champ_bv, nargs, 0) == STANDARD)
2590 {
2591 *oload_syms = new_oload_syms;
2592 *oload_champ = new_oload_champ;
2593 *oload_champ_bv = new_oload_champ_bv;
2594 do_cleanups (old_cleanups);
2595 return 1;
2596 }
2597 else if (searched_deeper)
2598 {
2599 xfree (new_oload_syms);
2600 xfree (new_oload_champ_bv);
2601 discard_cleanups (old_cleanups);
2602 return 0;
2603 }
2604 else
2605 {
2606 gdb_assert (new_oload_champ != -1);
2607 *oload_syms = new_oload_syms;
2608 *oload_champ = new_oload_champ;
2609 *oload_champ_bv = new_oload_champ_bv;
2610 discard_cleanups (old_cleanups);
2611 return 0;
2612 }
2613}
2614
2615/* Look for a function to take NARGS args of types ARG_TYPES. Find
2616 the best match from among the overloaded methods or functions
2617 (depending on METHOD) given by FNS_PTR or OLOAD_SYMS, respectively.
2618 The number of methods/functions in the list is given by NUM_FNS.
2619 Return the index of the best match; store an indication of the
2620 quality of the match in OLOAD_CHAMP_BV.
2621
2622 It is the caller's responsibility to free *OLOAD_CHAMP_BV. */
2623
2624static int
2625find_oload_champ (struct type **arg_types, int nargs, int method,
2626 int num_fns, struct fn_field *fns_ptr,
2627 struct symbol **oload_syms,
2628 struct badness_vector **oload_champ_bv)
2629{
2630 int ix;
ac3eeb49
MS
2631 /* A measure of how good an overloaded instance is. */
2632 struct badness_vector *bv;
2633 /* Index of best overloaded function. */
2634 int oload_champ = -1;
2635 /* Current ambiguity state for overload resolution. */
2636 int oload_ambiguous = 0;
2637 /* 0 => no ambiguity, 1 => two good funcs, 2 => incomparable funcs. */
8d577d32
DC
2638
2639 *oload_champ_bv = NULL;
c906108c 2640
ac3eeb49 2641 /* Consider each candidate in turn. */
c906108c
SS
2642 for (ix = 0; ix < num_fns; ix++)
2643 {
8d577d32
DC
2644 int jj;
2645 int static_offset = oload_method_static (method, fns_ptr, ix);
2646 int nparms;
2647 struct type **parm_types;
2648
db577aea
AC
2649 if (method)
2650 {
ad2f7632 2651 nparms = TYPE_NFIELDS (TYPE_FN_FIELD_TYPE (fns_ptr, ix));
db577aea
AC
2652 }
2653 else
2654 {
ac3eeb49
MS
2655 /* If it's not a method, this is the proper place. */
2656 nparms = TYPE_NFIELDS (SYMBOL_TYPE (oload_syms[ix]));
db577aea 2657 }
c906108c 2658
ac3eeb49
MS
2659 /* Prepare array of parameter types. */
2660 parm_types = (struct type **)
2661 xmalloc (nparms * (sizeof (struct type *)));
c906108c 2662 for (jj = 0; jj < nparms; jj++)
db577aea 2663 parm_types[jj] = (method
ad2f7632 2664 ? (TYPE_FN_FIELD_ARGS (fns_ptr, ix)[jj].type)
ac3eeb49
MS
2665 : TYPE_FIELD_TYPE (SYMBOL_TYPE (oload_syms[ix]),
2666 jj));
c906108c 2667
ac3eeb49
MS
2668 /* Compare parameter types to supplied argument types. Skip
2669 THIS for static methods. */
2670 bv = rank_function (parm_types, nparms,
2671 arg_types + static_offset,
4a1970e4 2672 nargs - static_offset);
c5aa993b 2673
8d577d32 2674 if (!*oload_champ_bv)
c5aa993b 2675 {
8d577d32 2676 *oload_champ_bv = bv;
c5aa993b 2677 oload_champ = 0;
c5aa993b 2678 }
ac3eeb49
MS
2679 else /* See whether current candidate is better or worse than
2680 previous best. */
8d577d32 2681 switch (compare_badness (bv, *oload_champ_bv))
c5aa993b 2682 {
ac3eeb49
MS
2683 case 0: /* Top two contenders are equally good. */
2684 oload_ambiguous = 1;
c5aa993b 2685 break;
ac3eeb49
MS
2686 case 1: /* Incomparable top contenders. */
2687 oload_ambiguous = 2;
c5aa993b 2688 break;
ac3eeb49
MS
2689 case 2: /* New champion, record details. */
2690 *oload_champ_bv = bv;
c5aa993b
JM
2691 oload_ambiguous = 0;
2692 oload_champ = ix;
c5aa993b
JM
2693 break;
2694 case 3:
2695 default:
2696 break;
2697 }
b8c9b27d 2698 xfree (parm_types);
6b1ba9a0
ND
2699 if (overload_debug)
2700 {
2701 if (method)
ac3eeb49
MS
2702 fprintf_filtered (gdb_stderr,
2703 "Overloaded method instance %s, # of parms %d\n",
2704 fns_ptr[ix].physname, nparms);
6b1ba9a0 2705 else
ac3eeb49
MS
2706 fprintf_filtered (gdb_stderr,
2707 "Overloaded function instance %s # of parms %d\n",
2708 SYMBOL_DEMANGLED_NAME (oload_syms[ix]),
2709 nparms);
4a1970e4 2710 for (jj = 0; jj < nargs - static_offset; jj++)
ac3eeb49
MS
2711 fprintf_filtered (gdb_stderr,
2712 "...Badness @ %d : %d\n",
2713 jj, bv->rank[jj]);
2714 fprintf_filtered (gdb_stderr,
2715 "Overload resolution champion is %d, ambiguous? %d\n",
2716 oload_champ, oload_ambiguous);
6b1ba9a0 2717 }
c906108c
SS
2718 }
2719
8d577d32
DC
2720 return oload_champ;
2721}
6b1ba9a0 2722
8d577d32
DC
2723/* Return 1 if we're looking at a static method, 0 if we're looking at
2724 a non-static method or a function that isn't a method. */
c906108c 2725
8d577d32
DC
2726static int
2727oload_method_static (int method, struct fn_field *fns_ptr, int index)
2728{
2729 if (method && TYPE_FN_FIELD_STATIC_P (fns_ptr, index))
2730 return 1;
c906108c 2731 else
8d577d32
DC
2732 return 0;
2733}
c906108c 2734
8d577d32
DC
2735/* Check how good an overload match OLOAD_CHAMP_BV represents. */
2736
2737static enum oload_classification
2738classify_oload_match (struct badness_vector *oload_champ_bv,
2739 int nargs,
2740 int static_offset)
2741{
2742 int ix;
2743
2744 for (ix = 1; ix <= nargs - static_offset; ix++)
7f8c9282 2745 {
8d577d32 2746 if (oload_champ_bv->rank[ix] >= 100)
ac3eeb49 2747 return INCOMPATIBLE; /* Truly mismatched types. */
8d577d32 2748 else if (oload_champ_bv->rank[ix] >= 10)
ac3eeb49
MS
2749 return NON_STANDARD; /* Non-standard type conversions
2750 needed. */
7f8c9282 2751 }
02f0d45d 2752
8d577d32 2753 return STANDARD; /* Only standard conversions needed. */
c906108c
SS
2754}
2755
ac3eeb49
MS
2756/* C++: return 1 is NAME is a legitimate name for the destructor of
2757 type TYPE. If TYPE does not have a destructor, or if NAME is
2758 inappropriate for TYPE, an error is signaled. */
c906108c 2759int
fba45db2 2760destructor_name_p (const char *name, const struct type *type)
c906108c 2761{
c906108c
SS
2762 if (name[0] == '~')
2763 {
2764 char *dname = type_name_no_tag (type);
2765 char *cp = strchr (dname, '<');
2766 unsigned int len;
2767
2768 /* Do not compare the template part for template classes. */
2769 if (cp == NULL)
2770 len = strlen (dname);
2771 else
2772 len = cp - dname;
bf896cb0 2773 if (strlen (name + 1) != len || strncmp (dname, name + 1, len) != 0)
8a3fe4f8 2774 error (_("name of destructor must equal name of class"));
c906108c
SS
2775 else
2776 return 1;
2777 }
2778 return 0;
2779}
2780
2b2d9e11 2781/* Given TYPE, a structure/union,
ac3eeb49
MS
2782 return 1 if the component named NAME from the ultimate target
2783 structure/union is defined, otherwise, return 0. */
c906108c 2784
2b2d9e11
VP
2785int
2786check_field (struct type *type, const char *name)
c906108c 2787{
52f0bd74 2788 int i;
c906108c 2789
edf3d5f3
TT
2790 /* The type may be a stub. */
2791 CHECK_TYPEDEF (type);
2792
c906108c
SS
2793 for (i = TYPE_NFIELDS (type) - 1; i >= TYPE_N_BASECLASSES (type); i--)
2794 {
2795 char *t_field_name = TYPE_FIELD_NAME (type, i);
db577aea 2796 if (t_field_name && (strcmp_iw (t_field_name, name) == 0))
c906108c
SS
2797 return 1;
2798 }
2799
ac3eeb49
MS
2800 /* C++: If it was not found as a data field, then try to return it
2801 as a pointer to a method. */
c906108c 2802
c906108c
SS
2803 for (i = TYPE_NFN_FIELDS (type) - 1; i >= 0; --i)
2804 {
db577aea 2805 if (strcmp_iw (TYPE_FN_FIELDLIST_NAME (type, i), name) == 0)
c906108c
SS
2806 return 1;
2807 }
2808
2809 for (i = TYPE_N_BASECLASSES (type) - 1; i >= 0; i--)
2b2d9e11 2810 if (check_field (TYPE_BASECLASS (type, i), name))
c906108c 2811 return 1;
c5aa993b 2812
c906108c
SS
2813 return 0;
2814}
2815
79c2c32d 2816/* C++: Given an aggregate type CURTYPE, and a member name NAME,
0d5de010
DJ
2817 return the appropriate member (or the address of the member, if
2818 WANT_ADDRESS). This function is used to resolve user expressions
2819 of the form "DOMAIN::NAME". For more details on what happens, see
2820 the comment before value_struct_elt_for_reference. */
79c2c32d
DC
2821
2822struct value *
072bba3b
KS
2823value_aggregate_elt (struct type *curtype, char *name,
2824 struct type *expect_type, int want_address,
79c2c32d
DC
2825 enum noside noside)
2826{
2827 switch (TYPE_CODE (curtype))
2828 {
2829 case TYPE_CODE_STRUCT:
2830 case TYPE_CODE_UNION:
ac3eeb49 2831 return value_struct_elt_for_reference (curtype, 0, curtype,
072bba3b 2832 name, expect_type,
0d5de010 2833 want_address, noside);
79c2c32d 2834 case TYPE_CODE_NAMESPACE:
ac3eeb49
MS
2835 return value_namespace_elt (curtype, name,
2836 want_address, noside);
79c2c32d
DC
2837 default:
2838 internal_error (__FILE__, __LINE__,
e2e0b3e5 2839 _("non-aggregate type in value_aggregate_elt"));
79c2c32d
DC
2840 }
2841}
2842
072bba3b
KS
2843/* Compares the two method/function types T1 and T2 for "equality"
2844 with respect to the the methods' parameters. If the types of the
2845 two parameter lists are the same, returns 1; 0 otherwise. This
2846 comparison may ignore any artificial parameters in T1 if
2847 SKIP_ARTIFICIAL is non-zero. This function will ALWAYS skip
2848 the first artificial parameter in T1, assumed to be a 'this' pointer.
2849
2850 The type T2 is expected to have come from make_params (in eval.c). */
2851
2852static int
2853compare_parameters (struct type *t1, struct type *t2, int skip_artificial)
2854{
2855 int start = 0;
2856
2857 if (TYPE_FIELD_ARTIFICIAL (t1, 0))
2858 ++start;
2859
2860 /* If skipping artificial fields, find the first real field
2861 in T1. */
2862 if (skip_artificial)
2863 {
2864 while (start < TYPE_NFIELDS (t1)
2865 && TYPE_FIELD_ARTIFICIAL (t1, start))
2866 ++start;
2867 }
2868
2869 /* Now compare parameters */
2870
2871 /* Special case: a method taking void. T1 will contain no
2872 non-artificial fields, and T2 will contain TYPE_CODE_VOID. */
2873 if ((TYPE_NFIELDS (t1) - start) == 0 && TYPE_NFIELDS (t2) == 1
2874 && TYPE_CODE (TYPE_FIELD_TYPE (t2, 0)) == TYPE_CODE_VOID)
2875 return 1;
2876
2877 if ((TYPE_NFIELDS (t1) - start) == TYPE_NFIELDS (t2))
2878 {
2879 int i;
2880 for (i = 0; i < TYPE_NFIELDS (t2); ++i)
2881 {
2882 if (rank_one_type (TYPE_FIELD_TYPE (t1, start + i),
2883 TYPE_FIELD_TYPE (t2, i))
2884 != 0)
2885 return 0;
2886 }
2887
2888 return 1;
2889 }
2890
2891 return 0;
2892}
2893
c906108c 2894/* C++: Given an aggregate type CURTYPE, and a member name NAME,
ac3eeb49
MS
2895 return the address of this member as a "pointer to member" type.
2896 If INTYPE is non-null, then it will be the type of the member we
2897 are looking for. This will help us resolve "pointers to member
2898 functions". This function is used to resolve user expressions of
2899 the form "DOMAIN::NAME". */
c906108c 2900
63d06c5c 2901static struct value *
fba45db2
KB
2902value_struct_elt_for_reference (struct type *domain, int offset,
2903 struct type *curtype, char *name,
ac3eeb49
MS
2904 struct type *intype,
2905 int want_address,
63d06c5c 2906 enum noside noside)
c906108c 2907{
52f0bd74
AC
2908 struct type *t = curtype;
2909 int i;
0d5de010 2910 struct value *v, *result;
c906108c 2911
c5aa993b 2912 if (TYPE_CODE (t) != TYPE_CODE_STRUCT
c906108c 2913 && TYPE_CODE (t) != TYPE_CODE_UNION)
8a3fe4f8 2914 error (_("Internal error: non-aggregate type to value_struct_elt_for_reference"));
c906108c
SS
2915
2916 for (i = TYPE_NFIELDS (t) - 1; i >= TYPE_N_BASECLASSES (t); i--)
2917 {
2918 char *t_field_name = TYPE_FIELD_NAME (t, i);
c5aa993b 2919
6314a349 2920 if (t_field_name && strcmp (t_field_name, name) == 0)
c906108c 2921 {
d6a843b5 2922 if (field_is_static (&TYPE_FIELD (t, i)))
c906108c
SS
2923 {
2924 v = value_static_field (t, i);
2925 if (v == NULL)
8a3fe4f8 2926 error (_("static field %s has been optimized out"),
c906108c 2927 name);
0d5de010
DJ
2928 if (want_address)
2929 v = value_addr (v);
c906108c
SS
2930 return v;
2931 }
2932 if (TYPE_FIELD_PACKED (t, i))
8a3fe4f8 2933 error (_("pointers to bitfield members not allowed"));
c5aa993b 2934
0d5de010
DJ
2935 if (want_address)
2936 return value_from_longest
2937 (lookup_memberptr_type (TYPE_FIELD_TYPE (t, i), domain),
2938 offset + (LONGEST) (TYPE_FIELD_BITPOS (t, i) >> 3));
2939 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
2940 return allocate_value (TYPE_FIELD_TYPE (t, i));
2941 else
2942 error (_("Cannot reference non-static field \"%s\""), name);
c906108c
SS
2943 }
2944 }
2945
ac3eeb49
MS
2946 /* C++: If it was not found as a data field, then try to return it
2947 as a pointer to a method. */
c906108c 2948
c906108c
SS
2949 /* Perform all necessary dereferencing. */
2950 while (intype && TYPE_CODE (intype) == TYPE_CODE_PTR)
2951 intype = TYPE_TARGET_TYPE (intype);
2952
2953 for (i = TYPE_NFN_FIELDS (t) - 1; i >= 0; --i)
2954 {
2955 char *t_field_name = TYPE_FN_FIELDLIST_NAME (t, i);
2956 char dem_opname[64];
2957
ac3eeb49
MS
2958 if (strncmp (t_field_name, "__", 2) == 0
2959 || strncmp (t_field_name, "op", 2) == 0
2960 || strncmp (t_field_name, "type", 4) == 0)
c906108c 2961 {
ac3eeb49
MS
2962 if (cplus_demangle_opname (t_field_name,
2963 dem_opname, DMGL_ANSI))
c5aa993b 2964 t_field_name = dem_opname;
ac3eeb49
MS
2965 else if (cplus_demangle_opname (t_field_name,
2966 dem_opname, 0))
c906108c 2967 t_field_name = dem_opname;
c906108c 2968 }
6314a349 2969 if (t_field_name && strcmp (t_field_name, name) == 0)
c906108c 2970 {
072bba3b
KS
2971 int j;
2972 int len = TYPE_FN_FIELDLIST_LENGTH (t, i);
c906108c 2973 struct fn_field *f = TYPE_FN_FIELDLIST1 (t, i);
c5aa993b 2974
de17c821
DJ
2975 check_stub_method_group (t, i);
2976
c906108c
SS
2977 if (intype)
2978 {
072bba3b
KS
2979 for (j = 0; j < len; ++j)
2980 {
2981 if (compare_parameters (TYPE_FN_FIELD_TYPE (f, j), intype, 0)
2982 || compare_parameters (TYPE_FN_FIELD_TYPE (f, j), intype, 1))
2983 break;
2984 }
2985
2986 if (j == len)
7f79b1c5
DJ
2987 error (_("no member function matches that type instantiation"));
2988 }
c906108c 2989 else
072bba3b
KS
2990 {
2991 int ii;
7f79b1c5
DJ
2992
2993 j = -1;
072bba3b
KS
2994 for (ii = 0; ii < TYPE_FN_FIELDLIST_LENGTH (t, i);
2995 ++ii)
2996 {
7f79b1c5
DJ
2997 /* Skip artificial methods. This is necessary if,
2998 for example, the user wants to "print
2999 subclass::subclass" with only one user-defined
3000 constructor. There is no ambiguity in this
3001 case. */
072bba3b 3002 if (TYPE_FN_FIELD_ARTIFICIAL (f, ii))
7f79b1c5 3003 continue;
072bba3b 3004
7f79b1c5
DJ
3005 /* Desired method is ambiguous if more than one
3006 method is defined. */
3007 if (j != -1)
3008 error (_("non-unique member `%s' requires type instantiation"), name);
072bba3b 3009
7f79b1c5
DJ
3010 j = ii;
3011 }
072bba3b 3012 }
c5aa993b 3013
0d5de010
DJ
3014 if (TYPE_FN_FIELD_STATIC_P (f, j))
3015 {
ac3eeb49
MS
3016 struct symbol *s =
3017 lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, j),
2570f2b7 3018 0, VAR_DOMAIN, 0);
0d5de010
DJ
3019 if (s == NULL)
3020 return NULL;
3021
3022 if (want_address)
3023 return value_addr (read_var_value (s, 0));
3024 else
3025 return read_var_value (s, 0);
3026 }
3027
c906108c
SS
3028 if (TYPE_FN_FIELD_VIRTUAL_P (f, j))
3029 {
0d5de010
DJ
3030 if (want_address)
3031 {
3032 result = allocate_value
3033 (lookup_methodptr_type (TYPE_FN_FIELD_TYPE (f, j)));
ad4820ab
UW
3034 cplus_make_method_ptr (value_type (result),
3035 value_contents_writeable (result),
0d5de010
DJ
3036 TYPE_FN_FIELD_VOFFSET (f, j), 1);
3037 }
3038 else if (noside == EVAL_AVOID_SIDE_EFFECTS)
3039 return allocate_value (TYPE_FN_FIELD_TYPE (f, j));
3040 else
3041 error (_("Cannot reference virtual member function \"%s\""),
3042 name);
c906108c
SS
3043 }
3044 else
3045 {
ac3eeb49
MS
3046 struct symbol *s =
3047 lookup_symbol (TYPE_FN_FIELD_PHYSNAME (f, j),
2570f2b7 3048 0, VAR_DOMAIN, 0);
c906108c 3049 if (s == NULL)
0d5de010
DJ
3050 return NULL;
3051
3052 v = read_var_value (s, 0);
3053 if (!want_address)
3054 result = v;
c906108c
SS
3055 else
3056 {
0d5de010 3057 result = allocate_value (lookup_methodptr_type (TYPE_FN_FIELD_TYPE (f, j)));
ad4820ab
UW
3058 cplus_make_method_ptr (value_type (result),
3059 value_contents_writeable (result),
42ae5230 3060 value_address (v), 0);
c906108c 3061 }
c906108c 3062 }
0d5de010 3063 return result;
c906108c
SS
3064 }
3065 }
3066 for (i = TYPE_N_BASECLASSES (t) - 1; i >= 0; i--)
3067 {
f23631e4 3068 struct value *v;
c906108c
SS
3069 int base_offset;
3070
3071 if (BASETYPE_VIA_VIRTUAL (t, i))
3072 base_offset = 0;
3073 else
3074 base_offset = TYPE_BASECLASS_BITPOS (t, i) / 8;
3075 v = value_struct_elt_for_reference (domain,
3076 offset + base_offset,
3077 TYPE_BASECLASS (t, i),
ac3eeb49
MS
3078 name, intype,
3079 want_address, noside);
c906108c
SS
3080 if (v)
3081 return v;
3082 }
63d06c5c
DC
3083
3084 /* As a last chance, pretend that CURTYPE is a namespace, and look
3085 it up that way; this (frequently) works for types nested inside
3086 classes. */
3087
ac3eeb49
MS
3088 return value_maybe_namespace_elt (curtype, name,
3089 want_address, noside);
c906108c
SS
3090}
3091
79c2c32d
DC
3092/* C++: Return the member NAME of the namespace given by the type
3093 CURTYPE. */
3094
3095static struct value *
3096value_namespace_elt (const struct type *curtype,
0d5de010 3097 char *name, int want_address,
79c2c32d 3098 enum noside noside)
63d06c5c
DC
3099{
3100 struct value *retval = value_maybe_namespace_elt (curtype, name,
ac3eeb49
MS
3101 want_address,
3102 noside);
63d06c5c
DC
3103
3104 if (retval == NULL)
ac3eeb49
MS
3105 error (_("No symbol \"%s\" in namespace \"%s\"."),
3106 name, TYPE_TAG_NAME (curtype));
63d06c5c
DC
3107
3108 return retval;
3109}
3110
3111/* A helper function used by value_namespace_elt and
3112 value_struct_elt_for_reference. It looks up NAME inside the
3113 context CURTYPE; this works if CURTYPE is a namespace or if CURTYPE
3114 is a class and NAME refers to a type in CURTYPE itself (as opposed
3115 to, say, some base class of CURTYPE). */
3116
3117static struct value *
3118value_maybe_namespace_elt (const struct type *curtype,
0d5de010 3119 char *name, int want_address,
63d06c5c 3120 enum noside noside)
79c2c32d
DC
3121{
3122 const char *namespace_name = TYPE_TAG_NAME (curtype);
3123 struct symbol *sym;
0d5de010 3124 struct value *result;
79c2c32d
DC
3125
3126 sym = cp_lookup_symbol_namespace (namespace_name, name, NULL,
ac3eeb49 3127 get_selected_block (0),
b14e635e 3128 VAR_DOMAIN, 1);
79c2c32d
DC
3129
3130 if (sym == NULL)
63d06c5c 3131 return NULL;
79c2c32d
DC
3132 else if ((noside == EVAL_AVOID_SIDE_EFFECTS)
3133 && (SYMBOL_CLASS (sym) == LOC_TYPEDEF))
0d5de010 3134 result = allocate_value (SYMBOL_TYPE (sym));
79c2c32d 3135 else
0d5de010
DJ
3136 result = value_of_variable (sym, get_selected_block (0));
3137
3138 if (result && want_address)
3139 result = value_addr (result);
3140
3141 return result;
79c2c32d
DC
3142}
3143
ac3eeb49
MS
3144/* Given a pointer value V, find the real (RTTI) type of the object it
3145 points to.
3146
c906108c 3147 Other parameters FULL, TOP, USING_ENC as with value_rtti_type()
ac3eeb49 3148 and refer to the values computed for the object pointed to. */
c906108c
SS
3149
3150struct type *
ac3eeb49
MS
3151value_rtti_target_type (struct value *v, int *full,
3152 int *top, int *using_enc)
c906108c 3153{
f23631e4 3154 struct value *target;
c906108c
SS
3155
3156 target = value_ind (v);
3157
3158 return value_rtti_type (target, full, top, using_enc);
3159}
3160
3161/* Given a value pointed to by ARGP, check its real run-time type, and
3162 if that is different from the enclosing type, create a new value
3163 using the real run-time type as the enclosing type (and of the same
3164 type as ARGP) and return it, with the embedded offset adjusted to
ac3eeb49
MS
3165 be the correct offset to the enclosed object. RTYPE is the type,
3166 and XFULL, XTOP, and XUSING_ENC are the other parameters, computed
3167 by value_rtti_type(). If these are available, they can be supplied
3168 and a second call to value_rtti_type() is avoided. (Pass RTYPE ==
3169 NULL if they're not available. */
c906108c 3170
f23631e4 3171struct value *
ac3eeb49
MS
3172value_full_object (struct value *argp,
3173 struct type *rtype,
3174 int xfull, int xtop,
fba45db2 3175 int xusing_enc)
c906108c 3176{
c5aa993b 3177 struct type *real_type;
c906108c
SS
3178 int full = 0;
3179 int top = -1;
3180 int using_enc = 0;
f23631e4 3181 struct value *new_val;
c906108c
SS
3182
3183 if (rtype)
3184 {
3185 real_type = rtype;
3186 full = xfull;
3187 top = xtop;
3188 using_enc = xusing_enc;
3189 }
3190 else
3191 real_type = value_rtti_type (argp, &full, &top, &using_enc);
3192
ac3eeb49 3193 /* If no RTTI data, or if object is already complete, do nothing. */
4754a64e 3194 if (!real_type || real_type == value_enclosing_type (argp))
c906108c
SS
3195 return argp;
3196
3197 /* If we have the full object, but for some reason the enclosing
ac3eeb49
MS
3198 type is wrong, set it. */
3199 /* pai: FIXME -- sounds iffy */
c906108c
SS
3200 if (full)
3201 {
2b127877 3202 argp = value_change_enclosing_type (argp, real_type);
c906108c
SS
3203 return argp;
3204 }
3205
3206 /* Check if object is in memory */
3207 if (VALUE_LVAL (argp) != lval_memory)
3208 {
ac3eeb49
MS
3209 warning (_("Couldn't retrieve complete object of RTTI type %s; object may be in register(s)."),
3210 TYPE_NAME (real_type));
c5aa993b 3211
c906108c
SS
3212 return argp;
3213 }
c5aa993b 3214
ac3eeb49
MS
3215 /* All other cases -- retrieve the complete object. */
3216 /* Go back by the computed top_offset from the beginning of the
3217 object, adjusting for the embedded offset of argp if that's what
3218 value_rtti_type used for its computation. */
42ae5230 3219 new_val = value_at_lazy (real_type, value_address (argp) - top +
13c3b5f5 3220 (using_enc ? 0 : value_embedded_offset (argp)));
04624583 3221 deprecated_set_value_type (new_val, value_type (argp));
13c3b5f5
AC
3222 set_value_embedded_offset (new_val, (using_enc
3223 ? top + value_embedded_offset (argp)
3224 : top));
c906108c
SS
3225 return new_val;
3226}
3227
389e51db 3228
d069f99d 3229/* Return the value of the local variable, if one exists.
c906108c
SS
3230 Flag COMPLAIN signals an error if the request is made in an
3231 inappropriate context. */
3232
f23631e4 3233struct value *
d069f99d 3234value_of_local (const char *name, int complain)
c906108c
SS
3235{
3236 struct symbol *func, *sym;
3237 struct block *b;
d069f99d 3238 struct value * ret;
206415a3 3239 struct frame_info *frame;
c906108c 3240
206415a3
DJ
3241 if (complain)
3242 frame = get_selected_frame (_("no frame selected"));
3243 else
c906108c 3244 {
206415a3
DJ
3245 frame = deprecated_safe_get_selected_frame ();
3246 if (frame == 0)
c5aa993b 3247 return 0;
c906108c
SS
3248 }
3249
206415a3 3250 func = get_frame_function (frame);
c906108c
SS
3251 if (!func)
3252 {
3253 if (complain)
8a3fe4f8 3254 error (_("no `%s' in nameless context"), name);
c5aa993b
JM
3255 else
3256 return 0;
c906108c
SS
3257 }
3258
3259 b = SYMBOL_BLOCK_VALUE (func);
de4f826b 3260 if (dict_empty (BLOCK_DICT (b)))
c906108c
SS
3261 {
3262 if (complain)
8a3fe4f8 3263 error (_("no args, no `%s'"), name);
c5aa993b
JM
3264 else
3265 return 0;
c906108c
SS
3266 }
3267
3268 /* Calling lookup_block_symbol is necessary to get the LOC_REGISTER
3269 symbol instead of the LOC_ARG one (if both exist). */
176620f1 3270 sym = lookup_block_symbol (b, name, NULL, VAR_DOMAIN);
c906108c
SS
3271 if (sym == NULL)
3272 {
3273 if (complain)
ac3eeb49
MS
3274 error (_("current stack frame does not contain a variable named `%s'"),
3275 name);
c906108c
SS
3276 else
3277 return NULL;
3278 }
3279
206415a3 3280 ret = read_var_value (sym, frame);
d069f99d 3281 if (ret == 0 && complain)
8a3fe4f8 3282 error (_("`%s' argument unreadable"), name);
d069f99d
AF
3283 return ret;
3284}
3285
3286/* C++/Objective-C: return the value of the class instance variable,
3287 if one exists. Flag COMPLAIN signals an error if the request is
3288 made in an inappropriate context. */
3289
3290struct value *
3291value_of_this (int complain)
3292{
2b2d9e11
VP
3293 if (!current_language->la_name_of_this)
3294 return 0;
3295 return value_of_local (current_language->la_name_of_this, complain);
c906108c
SS
3296}
3297
ac3eeb49
MS
3298/* Create a slice (sub-string, sub-array) of ARRAY, that is LENGTH
3299 elements long, starting at LOWBOUND. The result has the same lower
3300 bound as the original ARRAY. */
c906108c 3301
f23631e4
AC
3302struct value *
3303value_slice (struct value *array, int lowbound, int length)
c906108c
SS
3304{
3305 struct type *slice_range_type, *slice_type, *range_type;
7a67d0fe 3306 LONGEST lowerbound, upperbound;
f23631e4 3307 struct value *slice;
c906108c 3308 struct type *array_type;
ac3eeb49 3309
df407dfe 3310 array_type = check_typedef (value_type (array));
c906108c
SS
3311 if (TYPE_CODE (array_type) != TYPE_CODE_ARRAY
3312 && TYPE_CODE (array_type) != TYPE_CODE_STRING
3313 && TYPE_CODE (array_type) != TYPE_CODE_BITSTRING)
8a3fe4f8 3314 error (_("cannot take slice of non-array"));
ac3eeb49 3315
c906108c
SS
3316 range_type = TYPE_INDEX_TYPE (array_type);
3317 if (get_discrete_bounds (range_type, &lowerbound, &upperbound) < 0)
8a3fe4f8 3318 error (_("slice from bad array or bitstring"));
ac3eeb49 3319
c906108c 3320 if (lowbound < lowerbound || length < 0
db034ac5 3321 || lowbound + length - 1 > upperbound)
8a3fe4f8 3322 error (_("slice out of range"));
ac3eeb49 3323
c906108c
SS
3324 /* FIXME-type-allocation: need a way to free this type when we are
3325 done with it. */
c5aa993b 3326 slice_range_type = create_range_type ((struct type *) NULL,
c906108c 3327 TYPE_TARGET_TYPE (range_type),
ac3eeb49
MS
3328 lowbound,
3329 lowbound + length - 1);
c906108c
SS
3330 if (TYPE_CODE (array_type) == TYPE_CODE_BITSTRING)
3331 {
3332 int i;
ac3eeb49
MS
3333
3334 slice_type = create_set_type ((struct type *) NULL,
3335 slice_range_type);
c906108c
SS
3336 TYPE_CODE (slice_type) = TYPE_CODE_BITSTRING;
3337 slice = value_zero (slice_type, not_lval);
ac3eeb49 3338
c906108c
SS
3339 for (i = 0; i < length; i++)
3340 {
3341 int element = value_bit_index (array_type,
0fd88904 3342 value_contents (array),
c906108c
SS
3343 lowbound + i);
3344 if (element < 0)
8a3fe4f8 3345 error (_("internal error accessing bitstring"));
c906108c
SS
3346 else if (element > 0)
3347 {
3348 int j = i % TARGET_CHAR_BIT;
50810684 3349 if (gdbarch_bits_big_endian (get_type_arch (array_type)))
c906108c 3350 j = TARGET_CHAR_BIT - 1 - j;
990a07ab 3351 value_contents_raw (slice)[i / TARGET_CHAR_BIT] |= (1 << j);
c906108c
SS
3352 }
3353 }
ac3eeb49
MS
3354 /* We should set the address, bitssize, and bitspos, so the
3355 slice can be used on the LHS, but that may require extensions
3356 to value_assign. For now, just leave as a non_lval.
3357 FIXME. */
c906108c
SS
3358 }
3359 else
3360 {
3361 struct type *element_type = TYPE_TARGET_TYPE (array_type);
ac3eeb49
MS
3362 LONGEST offset =
3363 (lowbound - lowerbound) * TYPE_LENGTH (check_typedef (element_type));
3364
3365 slice_type = create_array_type ((struct type *) NULL,
3366 element_type,
c906108c
SS
3367 slice_range_type);
3368 TYPE_CODE (slice_type) = TYPE_CODE (array_type);
ac3eeb49 3369
9214ee5f 3370 if (VALUE_LVAL (array) == lval_memory && value_lazy (array))
3e3d7139 3371 slice = allocate_value_lazy (slice_type);
c906108c 3372 else
3e3d7139
JG
3373 {
3374 slice = allocate_value (slice_type);
3375 memcpy (value_contents_writeable (slice),
3376 value_contents (array) + offset,
3377 TYPE_LENGTH (slice_type));
3378 }
ac3eeb49 3379
74bcbdf3 3380 set_value_component_location (slice, array);
65d3800a 3381 VALUE_FRAME_ID (slice) = VALUE_FRAME_ID (array);
f5cf64a7 3382 set_value_offset (slice, value_offset (array) + offset);
c906108c
SS
3383 }
3384 return slice;
3385}
3386
ac3eeb49
MS
3387/* Create a value for a FORTRAN complex number. Currently most of the
3388 time values are coerced to COMPLEX*16 (i.e. a complex number
070ad9f0
DB
3389 composed of 2 doubles. This really should be a smarter routine
3390 that figures out precision inteligently as opposed to assuming
ac3eeb49 3391 doubles. FIXME: fmb */
c906108c 3392
f23631e4 3393struct value *
ac3eeb49
MS
3394value_literal_complex (struct value *arg1,
3395 struct value *arg2,
3396 struct type *type)
c906108c 3397{
f23631e4 3398 struct value *val;
c906108c
SS
3399 struct type *real_type = TYPE_TARGET_TYPE (type);
3400
3401 val = allocate_value (type);
3402 arg1 = value_cast (real_type, arg1);
3403 arg2 = value_cast (real_type, arg2);
3404
990a07ab 3405 memcpy (value_contents_raw (val),
0fd88904 3406 value_contents (arg1), TYPE_LENGTH (real_type));
990a07ab 3407 memcpy (value_contents_raw (val) + TYPE_LENGTH (real_type),
0fd88904 3408 value_contents (arg2), TYPE_LENGTH (real_type));
c906108c
SS
3409 return val;
3410}
3411
ac3eeb49 3412/* Cast a value into the appropriate complex data type. */
c906108c 3413
f23631e4
AC
3414static struct value *
3415cast_into_complex (struct type *type, struct value *val)
c906108c
SS
3416{
3417 struct type *real_type = TYPE_TARGET_TYPE (type);
ac3eeb49 3418
df407dfe 3419 if (TYPE_CODE (value_type (val)) == TYPE_CODE_COMPLEX)
c906108c 3420 {
df407dfe 3421 struct type *val_real_type = TYPE_TARGET_TYPE (value_type (val));
f23631e4
AC
3422 struct value *re_val = allocate_value (val_real_type);
3423 struct value *im_val = allocate_value (val_real_type);
c906108c 3424
990a07ab 3425 memcpy (value_contents_raw (re_val),
0fd88904 3426 value_contents (val), TYPE_LENGTH (val_real_type));
990a07ab 3427 memcpy (value_contents_raw (im_val),
0fd88904 3428 value_contents (val) + TYPE_LENGTH (val_real_type),
c5aa993b 3429 TYPE_LENGTH (val_real_type));
c906108c
SS
3430
3431 return value_literal_complex (re_val, im_val, type);
3432 }
df407dfe
AC
3433 else if (TYPE_CODE (value_type (val)) == TYPE_CODE_FLT
3434 || TYPE_CODE (value_type (val)) == TYPE_CODE_INT)
ac3eeb49
MS
3435 return value_literal_complex (val,
3436 value_zero (real_type, not_lval),
3437 type);
c906108c 3438 else
8a3fe4f8 3439 error (_("cannot cast non-number to complex"));
c906108c
SS
3440}
3441
3442void
fba45db2 3443_initialize_valops (void)
c906108c 3444{
5bf193a2
AC
3445 add_setshow_boolean_cmd ("overload-resolution", class_support,
3446 &overload_resolution, _("\
3447Set overload resolution in evaluating C++ functions."), _("\
ac3eeb49
MS
3448Show overload resolution in evaluating C++ functions."),
3449 NULL, NULL,
920d2a44 3450 show_overload_resolution,
5bf193a2 3451 &setlist, &showlist);
c906108c 3452 overload_resolution = 1;
c906108c 3453}
This page took 1.184681 seconds and 4 git commands to generate.