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