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