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