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