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