make MSYMBOL_VALUE_ADDRESS an rvalue
[deliverable/binutils-gdb.git] / gdb / gnu-v3-abi.c
CommitLineData
7ed49443
JB
1/* Abstraction of GNU v3 abi.
2 Contributed by Jim Blandy <jimb@redhat.com>
451fbdda 3
ecd75fc8 4 Copyright (C) 2001-2014 Free Software Foundation, Inc.
7ed49443
JB
5
6 This file is part of GDB.
7
a9762ec7
JB
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
7ed49443
JB
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
7ed49443
JB
20
21#include "defs.h"
22#include "value.h"
23#include "cp-abi.h"
362ff856 24#include "cp-support.h"
7ed49443 25#include "demangle.h"
b18be20d 26#include "objfiles.h"
0d5de010 27#include "valprint.h"
94af9270 28#include "c-lang.h"
c4aeac85 29#include "exceptions.h"
79d43c61 30#include "typeprint.h"
0d5de010 31
3d499020 32#include "gdb_assert.h"
0e9f083f 33#include <string.h>
7ed49443 34
b27b8843 35static struct cp_abi_ops gnu_v3_abi_ops;
7ed49443 36
6e72ca20
TT
37/* A gdbarch key for std::type_info, in the event that it can't be
38 found in the debug info. */
39
40static struct gdbarch_data *std_type_info_gdbarch_data;
41
42
7ed49443
JB
43static int
44gnuv3_is_vtable_name (const char *name)
45{
46 return strncmp (name, "_ZTV", 4) == 0;
47}
48
49static int
50gnuv3_is_operator_name (const char *name)
51{
52 return strncmp (name, "operator", 8) == 0;
53}
54
55
56/* To help us find the components of a vtable, we build ourselves a
57 GDB type object representing the vtable structure. Following the
58 V3 ABI, it goes something like this:
59
60 struct gdb_gnu_v3_abi_vtable {
61
62 / * An array of virtual call and virtual base offsets. The real
63 length of this array depends on the class hierarchy; we use
64 negative subscripts to access the elements. Yucky, but
65 better than the alternatives. * /
66 ptrdiff_t vcall_and_vbase_offsets[0];
67
68 / * The offset from a virtual pointer referring to this table
69 to the top of the complete object. * /
70 ptrdiff_t offset_to_top;
71
72 / * The type_info pointer for this class. This is really a
73 std::type_info *, but GDB doesn't really look at the
74 type_info object itself, so we don't bother to get the type
75 exactly right. * /
76 void *type_info;
77
78 / * Virtual table pointers in objects point here. * /
79
80 / * Virtual function pointers. Like the vcall/vbase array, the
81 real length of this table depends on the class hierarchy. * /
82 void (*virtual_functions[0]) ();
83
84 };
85
86 The catch, of course, is that the exact layout of this table
87 depends on the ABI --- word size, endianness, alignment, etc. So
88 the GDB type object is actually a per-architecture kind of thing.
89
90 vtable_type_gdbarch_data is a gdbarch per-architecture data pointer
91 which refers to the struct type * for this structure, laid out
92 appropriately for the architecture. */
b27b8843 93static struct gdbarch_data *vtable_type_gdbarch_data;
7ed49443
JB
94
95
96/* Human-readable names for the numbers of the fields above. */
97enum {
98 vtable_field_vcall_and_vbase_offsets,
99 vtable_field_offset_to_top,
100 vtable_field_type_info,
101 vtable_field_virtual_functions
102};
103
104
105/* Return a GDB type representing `struct gdb_gnu_v3_abi_vtable',
106 described above, laid out appropriately for ARCH.
107
108 We use this function as the gdbarch per-architecture data
9970f04b 109 initialization function. */
7ed49443
JB
110static void *
111build_gdb_vtable_type (struct gdbarch *arch)
112{
113 struct type *t;
114 struct field *field_list, *field;
115 int offset;
116
117 struct type *void_ptr_type
fde6c819 118 = builtin_type (arch)->builtin_data_ptr;
7ed49443 119 struct type *ptr_to_void_fn_type
fde6c819 120 = builtin_type (arch)->builtin_func_ptr;
7ed49443
JB
121
122 /* ARCH can't give us the true ptrdiff_t type, so we guess. */
123 struct type *ptrdiff_type
e9bb382b 124 = arch_integer_type (arch, gdbarch_ptr_bit (arch), 0, "ptrdiff_t");
7ed49443
JB
125
126 /* We assume no padding is necessary, since GDB doesn't know
127 anything about alignment at the moment. If this assumption bites
128 us, we should add a gdbarch method which, given a type, returns
129 the alignment that type requires, and then use that here. */
130
131 /* Build the field list. */
132 field_list = xmalloc (sizeof (struct field [4]));
133 memset (field_list, 0, sizeof (struct field [4]));
134 field = &field_list[0];
135 offset = 0;
136
137 /* ptrdiff_t vcall_and_vbase_offsets[0]; */
138 FIELD_NAME (*field) = "vcall_and_vbase_offsets";
e3506a9f 139 FIELD_TYPE (*field) = lookup_array_range_type (ptrdiff_type, 0, -1);
f41f5e61 140 SET_FIELD_BITPOS (*field, offset * TARGET_CHAR_BIT);
7ed49443
JB
141 offset += TYPE_LENGTH (FIELD_TYPE (*field));
142 field++;
143
144 /* ptrdiff_t offset_to_top; */
145 FIELD_NAME (*field) = "offset_to_top";
146 FIELD_TYPE (*field) = ptrdiff_type;
f41f5e61 147 SET_FIELD_BITPOS (*field, offset * TARGET_CHAR_BIT);
7ed49443
JB
148 offset += TYPE_LENGTH (FIELD_TYPE (*field));
149 field++;
150
151 /* void *type_info; */
152 FIELD_NAME (*field) = "type_info";
153 FIELD_TYPE (*field) = void_ptr_type;
f41f5e61 154 SET_FIELD_BITPOS (*field, offset * TARGET_CHAR_BIT);
7ed49443
JB
155 offset += TYPE_LENGTH (FIELD_TYPE (*field));
156 field++;
157
158 /* void (*virtual_functions[0]) (); */
159 FIELD_NAME (*field) = "virtual_functions";
e3506a9f 160 FIELD_TYPE (*field) = lookup_array_range_type (ptr_to_void_fn_type, 0, -1);
f41f5e61 161 SET_FIELD_BITPOS (*field, offset * TARGET_CHAR_BIT);
7ed49443
JB
162 offset += TYPE_LENGTH (FIELD_TYPE (*field));
163 field++;
164
165 /* We assumed in the allocation above that there were four fields. */
3d499020 166 gdb_assert (field == (field_list + 4));
7ed49443 167
e9bb382b 168 t = arch_type (arch, TYPE_CODE_STRUCT, offset, NULL);
7ed49443
JB
169 TYPE_NFIELDS (t) = field - field_list;
170 TYPE_FIELDS (t) = field_list;
171 TYPE_TAG_NAME (t) = "gdb_gnu_v3_abi_vtable";
e9bb382b 172 INIT_CPLUS_SPECIFIC (t);
7ed49443 173
706d0883 174 return make_type_with_address_space (t, TYPE_INSTANCE_FLAG_CODE_SPACE);
7ed49443
JB
175}
176
177
ed09d7da
KB
178/* Return the ptrdiff_t type used in the vtable type. */
179static struct type *
180vtable_ptrdiff_type (struct gdbarch *gdbarch)
181{
182 struct type *vtable_type = gdbarch_data (gdbarch, vtable_type_gdbarch_data);
183
184 /* The "offset_to_top" field has the appropriate (ptrdiff_t) type. */
185 return TYPE_FIELD_TYPE (vtable_type, vtable_field_offset_to_top);
186}
187
7ed49443
JB
188/* Return the offset from the start of the imaginary `struct
189 gdb_gnu_v3_abi_vtable' object to the vtable's "address point"
190 (i.e., where objects' virtual table pointers point). */
191static int
ad4820ab 192vtable_address_point_offset (struct gdbarch *gdbarch)
7ed49443 193{
ad4820ab 194 struct type *vtable_type = gdbarch_data (gdbarch, vtable_type_gdbarch_data);
7ed49443
JB
195
196 return (TYPE_FIELD_BITPOS (vtable_type, vtable_field_virtual_functions)
197 / TARGET_CHAR_BIT);
198}
199
200
d48cc9dd
DJ
201/* Determine whether structure TYPE is a dynamic class. Cache the
202 result. */
203
204static int
205gnuv3_dynamic_class (struct type *type)
206{
207 int fieldnum, fieldelem;
208
209 if (TYPE_CPLUS_DYNAMIC (type))
210 return TYPE_CPLUS_DYNAMIC (type) == 1;
211
212 ALLOCATE_CPLUS_STRUCT_TYPE (type);
213
214 for (fieldnum = 0; fieldnum < TYPE_N_BASECLASSES (type); fieldnum++)
215 if (BASETYPE_VIA_VIRTUAL (type, fieldnum)
216 || gnuv3_dynamic_class (TYPE_FIELD_TYPE (type, fieldnum)))
217 {
218 TYPE_CPLUS_DYNAMIC (type) = 1;
219 return 1;
220 }
221
222 for (fieldnum = 0; fieldnum < TYPE_NFN_FIELDS (type); fieldnum++)
223 for (fieldelem = 0; fieldelem < TYPE_FN_FIELDLIST_LENGTH (type, fieldnum);
224 fieldelem++)
225 {
226 struct fn_field *f = TYPE_FN_FIELDLIST1 (type, fieldnum);
227
228 if (TYPE_FN_FIELD_VIRTUAL_P (f, fieldelem))
229 {
230 TYPE_CPLUS_DYNAMIC (type) = 1;
231 return 1;
232 }
233 }
234
235 TYPE_CPLUS_DYNAMIC (type) = -1;
236 return 0;
237}
238
239/* Find the vtable for a value of CONTAINER_TYPE located at
240 CONTAINER_ADDR. Return a value of the correct vtable type for this
241 architecture, or NULL if CONTAINER does not have a vtable. */
242
243static struct value *
244gnuv3_get_vtable (struct gdbarch *gdbarch,
245 struct type *container_type, CORE_ADDR container_addr)
246{
247 struct type *vtable_type = gdbarch_data (gdbarch,
248 vtable_type_gdbarch_data);
249 struct type *vtable_pointer_type;
250 struct value *vtable_pointer;
251 CORE_ADDR vtable_address;
252
253 /* If this type does not have a virtual table, don't read the first
254 field. */
255 if (!gnuv3_dynamic_class (check_typedef (container_type)))
256 return NULL;
257
258 /* We do not consult the debug information to find the virtual table.
259 The ABI specifies that it is always at offset zero in any class,
260 and debug information may not represent it.
261
262 We avoid using value_contents on principle, because the object might
263 be large. */
264
265 /* Find the type "pointer to virtual table". */
266 vtable_pointer_type = lookup_pointer_type (vtable_type);
267
268 /* Load it from the start of the class. */
269 vtable_pointer = value_at (vtable_pointer_type, container_addr);
270 vtable_address = value_as_address (vtable_pointer);
271
272 /* Correct it to point at the start of the virtual table, rather
273 than the address point. */
274 return value_at_lazy (vtable_type,
0963b4bd
MS
275 vtable_address
276 - vtable_address_point_offset (gdbarch));
d48cc9dd
DJ
277}
278
279
7ed49443
JB
280static struct type *
281gnuv3_rtti_type (struct value *value,
282 int *full_p, int *top_p, int *using_enc_p)
283{
ad4820ab 284 struct gdbarch *gdbarch;
df407dfe 285 struct type *values_type = check_typedef (value_type (value));
7ed49443
JB
286 struct value *vtable;
287 struct minimal_symbol *vtable_symbol;
288 const char *vtable_symbol_name;
289 const char *class_name;
7ed49443
JB
290 struct type *run_time_type;
291 LONGEST offset_to_top;
8de20a37 292 char *atsign;
7ed49443
JB
293
294 /* We only have RTTI for class objects. */
df407dfe 295 if (TYPE_CODE (values_type) != TYPE_CODE_CLASS)
7ed49443
JB
296 return NULL;
297
eb2a6f42
TT
298 /* Java doesn't have RTTI following the C++ ABI. */
299 if (TYPE_CPLUS_REALLY_JAVA (values_type))
300 return NULL;
301
ad4820ab 302 /* Determine architecture. */
50810684 303 gdbarch = get_type_arch (values_type);
7ed49443 304
21cfb3b6
DJ
305 if (using_enc_p)
306 *using_enc_p = 0;
307
d48cc9dd
DJ
308 vtable = gnuv3_get_vtable (gdbarch, value_type (value),
309 value_as_address (value_addr (value)));
310 if (vtable == NULL)
311 return NULL;
312
7ed49443
JB
313 /* Find the linker symbol for this vtable. */
314 vtable_symbol
42ae5230 315 = lookup_minimal_symbol_by_pc (value_address (vtable)
7cbd4a93 316 + value_embedded_offset (vtable)).minsym;
7ed49443
JB
317 if (! vtable_symbol)
318 return NULL;
319
320 /* The symbol's demangled name should be something like "vtable for
321 CLASS", where CLASS is the name of the run-time type of VALUE.
322 If we didn't like this approach, we could instead look in the
323 type_info object itself to get the class name. But this way
324 should work just as well, and doesn't read target memory. */
efd66ac6 325 vtable_symbol_name = MSYMBOL_DEMANGLED_NAME (vtable_symbol);
98081e55
PB
326 if (vtable_symbol_name == NULL
327 || strncmp (vtable_symbol_name, "vtable for ", 11))
f773fdbb 328 {
8a3fe4f8 329 warning (_("can't find linker symbol for virtual table for `%s' value"),
0a07729b 330 TYPE_SAFE_NAME (values_type));
f773fdbb 331 if (vtable_symbol_name)
8a3fe4f8 332 warning (_(" found `%s' instead"), vtable_symbol_name);
f773fdbb
JM
333 return NULL;
334 }
7ed49443
JB
335 class_name = vtable_symbol_name + 11;
336
8de20a37
TT
337 /* Strip off @plt and version suffixes. */
338 atsign = strchr (class_name, '@');
339 if (atsign != NULL)
340 {
341 char *copy;
342
343 copy = alloca (atsign - class_name + 1);
344 memcpy (copy, class_name, atsign - class_name);
345 copy[atsign - class_name] = '\0';
346 class_name = copy;
347 }
348
7ed49443 349 /* Try to look up the class name as a type name. */
0963b4bd 350 /* FIXME: chastain/2003-11-26: block=NULL is bogus. See pr gdb/1465. */
362ff856
MC
351 run_time_type = cp_lookup_rtti_type (class_name, NULL);
352 if (run_time_type == NULL)
353 return NULL;
7ed49443
JB
354
355 /* Get the offset from VALUE to the top of the complete object.
356 NOTE: this is the reverse of the meaning of *TOP_P. */
357 offset_to_top
358 = value_as_long (value_field (vtable, vtable_field_offset_to_top));
359
360 if (full_p)
13c3b5f5 361 *full_p = (- offset_to_top == value_embedded_offset (value)
4754a64e 362 && (TYPE_LENGTH (value_enclosing_type (value))
7ed49443
JB
363 >= TYPE_LENGTH (run_time_type)));
364 if (top_p)
365 *top_p = - offset_to_top;
7ed49443
JB
366 return run_time_type;
367}
368
0d5de010
DJ
369/* Return a function pointer for CONTAINER's VTABLE_INDEX'th virtual
370 function, of type FNTYPE. */
7ed49443 371
0d5de010 372static struct value *
ad4820ab
UW
373gnuv3_get_virtual_fn (struct gdbarch *gdbarch, struct value *container,
374 struct type *fntype, int vtable_index)
0d5de010 375{
d48cc9dd
DJ
376 struct value *vtable, *vfn;
377
378 /* Every class with virtual functions must have a vtable. */
379 vtable = gnuv3_get_vtable (gdbarch, value_type (container),
380 value_as_address (value_addr (container)));
381 gdb_assert (vtable != NULL);
7ed49443
JB
382
383 /* Fetch the appropriate function pointer from the vtable. */
384 vfn = value_subscript (value_field (vtable, vtable_field_virtual_functions),
2497b498 385 vtable_index);
7ed49443 386
0d5de010
DJ
387 /* If this architecture uses function descriptors directly in the vtable,
388 then the address of the vtable entry is actually a "function pointer"
389 (i.e. points to the descriptor). We don't need to scale the index
390 by the size of a function descriptor; GCC does that before outputing
391 debug information. */
ad4820ab 392 if (gdbarch_vtable_function_descriptors (gdbarch))
0d5de010 393 vfn = value_addr (vfn);
7ed49443 394
0d5de010
DJ
395 /* Cast the function pointer to the appropriate type. */
396 vfn = value_cast (lookup_pointer_type (fntype), vfn);
76b79d6e 397
7ed49443
JB
398 return vfn;
399}
400
0d5de010
DJ
401/* GNU v3 implementation of value_virtual_fn_field. See cp-abi.h
402 for a description of the arguments. */
403
404static struct value *
405gnuv3_virtual_fn_field (struct value **value_p,
406 struct fn_field *f, int j,
407 struct type *vfn_base, int offset)
408{
409 struct type *values_type = check_typedef (value_type (*value_p));
ad4820ab 410 struct gdbarch *gdbarch;
0d5de010
DJ
411
412 /* Some simple sanity checks. */
413 if (TYPE_CODE (values_type) != TYPE_CODE_CLASS)
414 error (_("Only classes can have virtual functions."));
415
ad4820ab 416 /* Determine architecture. */
50810684 417 gdbarch = get_type_arch (values_type);
ad4820ab 418
0d5de010
DJ
419 /* Cast our value to the base class which defines this virtual
420 function. This takes care of any necessary `this'
421 adjustments. */
422 if (vfn_base != values_type)
423 *value_p = value_cast (vfn_base, *value_p);
424
ad4820ab 425 return gnuv3_get_virtual_fn (gdbarch, *value_p, TYPE_FN_FIELD_TYPE (f, j),
0d5de010
DJ
426 TYPE_FN_FIELD_VOFFSET (f, j));
427}
428
1514d34e
DJ
429/* Compute the offset of the baseclass which is
430 the INDEXth baseclass of class TYPE,
431 for value at VALADDR (in host) at ADDRESS (in target).
432 The result is the offset of the baseclass value relative
433 to (the address of)(ARG) + OFFSET.
434
0963b4bd
MS
435 -1 is returned on error. */
436
b9362cc7 437static int
8af8e3bc
PA
438gnuv3_baseclass_offset (struct type *type, int index,
439 const bfd_byte *valaddr, int embedded_offset,
440 CORE_ADDR address, const struct value *val)
1514d34e 441{
ad4820ab 442 struct gdbarch *gdbarch;
ad4820ab 443 struct type *ptr_type;
79d5b63a 444 struct value *vtable;
2497b498 445 struct value *vbase_array;
1514d34e 446 long int cur_base_offset, base_offset;
1514d34e 447
ad4820ab 448 /* Determine architecture. */
50810684 449 gdbarch = get_type_arch (type);
ad4820ab
UW
450 ptr_type = builtin_type (gdbarch)->builtin_data_ptr;
451
1514d34e 452 /* If it isn't a virtual base, this is easy. The offset is in the
b1af9e97
TT
453 type definition. Likewise for Java, which doesn't really have
454 virtual inheritance in the C++ sense. */
455 if (!BASETYPE_VIA_VIRTUAL (type, index) || TYPE_CPLUS_REALLY_JAVA (type))
1514d34e
DJ
456 return TYPE_BASECLASS_BITPOS (type, index) / 8;
457
458 /* To access a virtual base, we need to use the vbase offset stored in
459 our vtable. Recent GCC versions provide this information. If it isn't
460 available, we could get what we needed from RTTI, or from drawing the
461 complete inheritance graph based on the debug info. Neither is
462 worthwhile. */
463 cur_base_offset = TYPE_BASECLASS_BITPOS (type, index) / 8;
ad4820ab 464 if (cur_base_offset >= - vtable_address_point_offset (gdbarch))
8a3fe4f8 465 error (_("Expected a negative vbase offset (old compiler?)"));
1514d34e 466
ad4820ab
UW
467 cur_base_offset = cur_base_offset + vtable_address_point_offset (gdbarch);
468 if ((- cur_base_offset) % TYPE_LENGTH (ptr_type) != 0)
8a3fe4f8 469 error (_("Misaligned vbase offset."));
ad4820ab 470 cur_base_offset = cur_base_offset / ((int) TYPE_LENGTH (ptr_type));
1514d34e 471
8af8e3bc 472 vtable = gnuv3_get_vtable (gdbarch, type, address + embedded_offset);
d48cc9dd 473 gdb_assert (vtable != NULL);
1514d34e 474 vbase_array = value_field (vtable, vtable_field_vcall_and_vbase_offsets);
2497b498 475 base_offset = value_as_long (value_subscript (vbase_array, cur_base_offset));
1514d34e
DJ
476 return base_offset;
477}
7ed49443 478
0d5de010
DJ
479/* Locate a virtual method in DOMAIN or its non-virtual base classes
480 which has virtual table index VOFFSET. The method has an associated
481 "this" adjustment of ADJUSTMENT bytes. */
482
2c0b251b 483static const char *
0d5de010
DJ
484gnuv3_find_method_in (struct type *domain, CORE_ADDR voffset,
485 LONGEST adjustment)
486{
487 int i;
0d5de010
DJ
488
489 /* Search this class first. */
0d5de010
DJ
490 if (adjustment == 0)
491 {
492 int len;
493
494 len = TYPE_NFN_FIELDS (domain);
495 for (i = 0; i < len; i++)
496 {
497 int len2, j;
498 struct fn_field *f;
499
500 f = TYPE_FN_FIELDLIST1 (domain, i);
501 len2 = TYPE_FN_FIELDLIST_LENGTH (domain, i);
502
503 check_stub_method_group (domain, i);
504 for (j = 0; j < len2; j++)
505 if (TYPE_FN_FIELD_VOFFSET (f, j) == voffset)
506 return TYPE_FN_FIELD_PHYSNAME (f, j);
507 }
508 }
509
510 /* Next search non-virtual bases. If it's in a virtual base,
511 we're out of luck. */
512 for (i = 0; i < TYPE_N_BASECLASSES (domain); i++)
513 {
514 int pos;
515 struct type *basetype;
516
517 if (BASETYPE_VIA_VIRTUAL (domain, i))
518 continue;
519
520 pos = TYPE_BASECLASS_BITPOS (domain, i) / 8;
521 basetype = TYPE_FIELD_TYPE (domain, i);
522 /* Recurse with a modified adjustment. We don't need to adjust
523 voffset. */
524 if (adjustment >= pos && adjustment < pos + TYPE_LENGTH (basetype))
525 return gnuv3_find_method_in (basetype, voffset, adjustment - pos);
526 }
527
528 return NULL;
529}
530
fead6908
UW
531/* Decode GNU v3 method pointer. */
532
533static int
ad4820ab
UW
534gnuv3_decode_method_ptr (struct gdbarch *gdbarch,
535 const gdb_byte *contents,
fead6908
UW
536 CORE_ADDR *value_p,
537 LONGEST *adjustment_p)
538{
ad4820ab 539 struct type *funcptr_type = builtin_type (gdbarch)->builtin_func_ptr;
ed09d7da 540 struct type *offset_type = vtable_ptrdiff_type (gdbarch);
e17a4113 541 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
fead6908
UW
542 CORE_ADDR ptr_value;
543 LONGEST voffset, adjustment;
544 int vbit;
545
546 /* Extract the pointer to member. The first element is either a pointer
547 or a vtable offset. For pointers, we need to use extract_typed_address
548 to allow the back-end to convert the pointer to a GDB address -- but
549 vtable offsets we must handle as integers. At this point, we do not
550 yet know which case we have, so we extract the value under both
551 interpretations and choose the right one later on. */
552 ptr_value = extract_typed_address (contents, funcptr_type);
e17a4113
UW
553 voffset = extract_signed_integer (contents,
554 TYPE_LENGTH (funcptr_type), byte_order);
fead6908 555 contents += TYPE_LENGTH (funcptr_type);
e17a4113
UW
556 adjustment = extract_signed_integer (contents,
557 TYPE_LENGTH (offset_type), byte_order);
fead6908 558
ad4820ab 559 if (!gdbarch_vbit_in_delta (gdbarch))
fead6908
UW
560 {
561 vbit = voffset & 1;
562 voffset = voffset ^ vbit;
563 }
564 else
565 {
566 vbit = adjustment & 1;
567 adjustment = adjustment >> 1;
568 }
569
570 *value_p = vbit? voffset : ptr_value;
571 *adjustment_p = adjustment;
572 return vbit;
573}
574
0d5de010
DJ
575/* GNU v3 implementation of cplus_print_method_ptr. */
576
577static void
578gnuv3_print_method_ptr (const gdb_byte *contents,
579 struct type *type,
580 struct ui_file *stream)
581{
ad4820ab 582 struct type *domain = TYPE_DOMAIN_TYPE (type);
50810684 583 struct gdbarch *gdbarch = get_type_arch (domain);
0d5de010
DJ
584 CORE_ADDR ptr_value;
585 LONGEST adjustment;
0d5de010
DJ
586 int vbit;
587
0d5de010 588 /* Extract the pointer to member. */
ad4820ab 589 vbit = gnuv3_decode_method_ptr (gdbarch, contents, &ptr_value, &adjustment);
0d5de010
DJ
590
591 /* Check for NULL. */
592 if (ptr_value == 0 && vbit == 0)
593 {
594 fprintf_filtered (stream, "NULL");
595 return;
596 }
597
598 /* Search for a virtual method. */
599 if (vbit)
600 {
601 CORE_ADDR voffset;
602 const char *physname;
603
604 /* It's a virtual table offset, maybe in this class. Search
605 for a field with the correct vtable offset. First convert it
606 to an index, as used in TYPE_FN_FIELD_VOFFSET. */
ed09d7da 607 voffset = ptr_value / TYPE_LENGTH (vtable_ptrdiff_type (gdbarch));
0d5de010
DJ
608
609 physname = gnuv3_find_method_in (domain, voffset, adjustment);
610
611 /* If we found a method, print that. We don't bother to disambiguate
612 possible paths to the method based on the adjustment. */
613 if (physname)
614 {
8de20a37
TT
615 char *demangled_name = gdb_demangle (physname,
616 DMGL_ANSI | DMGL_PARAMS);
d8734c88 617
94af9270
KS
618 fprintf_filtered (stream, "&virtual ");
619 if (demangled_name == NULL)
620 fputs_filtered (physname, stream);
621 else
0d5de010 622 {
0d5de010
DJ
623 fputs_filtered (demangled_name, stream);
624 xfree (demangled_name);
0d5de010 625 }
94af9270 626 return;
0d5de010
DJ
627 }
628 }
94af9270
KS
629 else if (ptr_value != 0)
630 {
631 /* Found a non-virtual function: print out the type. */
632 fputs_filtered ("(", stream);
79d43c61 633 c_print_type (type, "", stream, -1, 0, &type_print_raw_options);
94af9270
KS
634 fputs_filtered (") ", stream);
635 }
0d5de010
DJ
636
637 /* We didn't find it; print the raw data. */
638 if (vbit)
639 {
640 fprintf_filtered (stream, "&virtual table offset ");
641 print_longest (stream, 'd', 1, ptr_value);
642 }
643 else
edf0c1b7
TT
644 {
645 struct value_print_options opts;
646
647 get_user_print_options (&opts);
648 print_address_demangle (&opts, gdbarch, ptr_value, stream, demangle);
649 }
0d5de010
DJ
650
651 if (adjustment)
652 {
653 fprintf_filtered (stream, ", this adjustment ");
654 print_longest (stream, 'd', 1, adjustment);
655 }
656}
657
658/* GNU v3 implementation of cplus_method_ptr_size. */
659
660static int
ad4820ab 661gnuv3_method_ptr_size (struct type *type)
0d5de010 662{
561d3825 663 struct gdbarch *gdbarch = get_type_arch (type);
d8734c88 664
ad4820ab 665 return 2 * TYPE_LENGTH (builtin_type (gdbarch)->builtin_data_ptr);
0d5de010
DJ
666}
667
668/* GNU v3 implementation of cplus_make_method_ptr. */
669
670static void
ad4820ab
UW
671gnuv3_make_method_ptr (struct type *type, gdb_byte *contents,
672 CORE_ADDR value, int is_virtual)
0d5de010 673{
561d3825 674 struct gdbarch *gdbarch = get_type_arch (type);
ad4820ab 675 int size = TYPE_LENGTH (builtin_type (gdbarch)->builtin_data_ptr);
e17a4113 676 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
0d5de010
DJ
677
678 /* FIXME drow/2006-12-24: The adjustment of "this" is currently
679 always zero, since the method pointer is of the correct type.
680 But if the method pointer came from a base class, this is
681 incorrect - it should be the offset to the base. The best
682 fix might be to create the pointer to member pointing at the
683 base class and cast it to the derived class, but that requires
684 support for adjusting pointers to members when casting them -
685 not currently supported by GDB. */
686
ad4820ab 687 if (!gdbarch_vbit_in_delta (gdbarch))
0d5de010 688 {
e17a4113
UW
689 store_unsigned_integer (contents, size, byte_order, value | is_virtual);
690 store_unsigned_integer (contents + size, size, byte_order, 0);
0d5de010
DJ
691 }
692 else
693 {
e17a4113
UW
694 store_unsigned_integer (contents, size, byte_order, value);
695 store_unsigned_integer (contents + size, size, byte_order, is_virtual);
0d5de010
DJ
696 }
697}
698
699/* GNU v3 implementation of cplus_method_ptr_to_value. */
700
701static struct value *
702gnuv3_method_ptr_to_value (struct value **this_p, struct value *method_ptr)
703{
ad4820ab 704 struct gdbarch *gdbarch;
0d5de010
DJ
705 const gdb_byte *contents = value_contents (method_ptr);
706 CORE_ADDR ptr_value;
ad4820ab 707 struct type *domain_type, *final_type, *method_type;
0d5de010 708 LONGEST adjustment;
0d5de010
DJ
709 int vbit;
710
ad4820ab
UW
711 domain_type = TYPE_DOMAIN_TYPE (check_typedef (value_type (method_ptr)));
712 final_type = lookup_pointer_type (domain_type);
0d5de010
DJ
713
714 method_type = TYPE_TARGET_TYPE (check_typedef (value_type (method_ptr)));
715
fead6908 716 /* Extract the pointer to member. */
50810684 717 gdbarch = get_type_arch (domain_type);
ad4820ab 718 vbit = gnuv3_decode_method_ptr (gdbarch, contents, &ptr_value, &adjustment);
0d5de010
DJ
719
720 /* First convert THIS to match the containing type of the pointer to
721 member. This cast may adjust the value of THIS. */
722 *this_p = value_cast (final_type, *this_p);
723
724 /* Then apply whatever adjustment is necessary. This creates a somewhat
725 strange pointer: it claims to have type FINAL_TYPE, but in fact it
726 might not be a valid FINAL_TYPE. For instance, it might be a
727 base class of FINAL_TYPE. And if it's not the primary base class,
728 then printing it out as a FINAL_TYPE object would produce some pretty
729 garbage.
730
731 But we don't really know the type of the first argument in
732 METHOD_TYPE either, which is why this happens. We can't
733 dereference this later as a FINAL_TYPE, but once we arrive in the
734 called method we'll have debugging information for the type of
735 "this" - and that'll match the value we produce here.
736
737 You can provoke this case by casting a Base::* to a Derived::*, for
738 instance. */
ad4820ab 739 *this_p = value_cast (builtin_type (gdbarch)->builtin_data_ptr, *this_p);
2497b498 740 *this_p = value_ptradd (*this_p, adjustment);
0d5de010
DJ
741 *this_p = value_cast (final_type, *this_p);
742
743 if (vbit)
744 {
ad4820ab 745 LONGEST voffset;
d8734c88 746
ed09d7da 747 voffset = ptr_value / TYPE_LENGTH (vtable_ptrdiff_type (gdbarch));
ad4820ab
UW
748 return gnuv3_get_virtual_fn (gdbarch, value_ind (*this_p),
749 method_type, voffset);
0d5de010
DJ
750 }
751 else
752 return value_from_pointer (lookup_pointer_type (method_type), ptr_value);
753}
754
c4aeac85
TT
755/* Objects of this type are stored in a hash table and a vector when
756 printing the vtables for a class. */
757
758struct value_and_voffset
759{
760 /* The value representing the object. */
761 struct value *value;
762
763 /* The maximum vtable offset we've found for any object at this
764 offset in the outermost object. */
765 int max_voffset;
766};
767
768typedef struct value_and_voffset *value_and_voffset_p;
769DEF_VEC_P (value_and_voffset_p);
770
771/* Hash function for value_and_voffset. */
772
773static hashval_t
774hash_value_and_voffset (const void *p)
775{
776 const struct value_and_voffset *o = p;
777
778 return value_address (o->value) + value_embedded_offset (o->value);
779}
780
781/* Equality function for value_and_voffset. */
782
783static int
784eq_value_and_voffset (const void *a, const void *b)
785{
786 const struct value_and_voffset *ova = a;
787 const struct value_and_voffset *ovb = b;
788
789 return (value_address (ova->value) + value_embedded_offset (ova->value)
790 == value_address (ovb->value) + value_embedded_offset (ovb->value));
791}
792
793/* qsort comparison function for value_and_voffset. */
794
795static int
796compare_value_and_voffset (const void *a, const void *b)
797{
798 const struct value_and_voffset * const *ova = a;
799 CORE_ADDR addra = (value_address ((*ova)->value)
800 + value_embedded_offset ((*ova)->value));
801 const struct value_and_voffset * const *ovb = b;
802 CORE_ADDR addrb = (value_address ((*ovb)->value)
803 + value_embedded_offset ((*ovb)->value));
804
805 if (addra < addrb)
806 return -1;
807 if (addra > addrb)
808 return 1;
809 return 0;
810}
811
812/* A helper function used when printing vtables. This determines the
813 key (most derived) sub-object at each address and also computes the
814 maximum vtable offset seen for the corresponding vtable. Updates
815 OFFSET_HASH and OFFSET_VEC with a new value_and_voffset object, if
816 needed. VALUE is the object to examine. */
817
818static void
819compute_vtable_size (htab_t offset_hash,
820 VEC (value_and_voffset_p) **offset_vec,
821 struct value *value)
822{
823 int i;
824 struct type *type = check_typedef (value_type (value));
825 void **slot;
826 struct value_and_voffset search_vo, *current_vo;
c4aeac85
TT
827
828 /* If the object is not dynamic, then we are done; as it cannot have
829 dynamic base types either. */
830 if (!gnuv3_dynamic_class (type))
831 return;
832
833 /* Update the hash and the vec, if needed. */
834 search_vo.value = value;
835 slot = htab_find_slot (offset_hash, &search_vo, INSERT);
836 if (*slot)
837 current_vo = *slot;
838 else
839 {
840 current_vo = XNEW (struct value_and_voffset);
841 current_vo->value = value;
842 current_vo->max_voffset = -1;
843 *slot = current_vo;
844 VEC_safe_push (value_and_voffset_p, *offset_vec, current_vo);
845 }
846
847 /* Update the value_and_voffset object with the highest vtable
848 offset from this class. */
849 for (i = 0; i < TYPE_NFN_FIELDS (type); ++i)
850 {
851 int j;
852 struct fn_field *fn = TYPE_FN_FIELDLIST1 (type, i);
853
854 for (j = 0; j < TYPE_FN_FIELDLIST_LENGTH (type, i); ++j)
855 {
856 if (TYPE_FN_FIELD_VIRTUAL_P (fn, j))
857 {
858 int voffset = TYPE_FN_FIELD_VOFFSET (fn, j);
859
860 if (voffset > current_vo->max_voffset)
861 current_vo->max_voffset = voffset;
862 }
863 }
864 }
865
866 /* Recurse into base classes. */
867 for (i = 0; i < TYPE_N_BASECLASSES (type); ++i)
868 compute_vtable_size (offset_hash, offset_vec, value_field (value, i));
869}
870
871/* Helper for gnuv3_print_vtable that prints a single vtable. */
872
873static void
874print_one_vtable (struct gdbarch *gdbarch, struct value *value,
875 int max_voffset,
876 struct value_print_options *opts)
877{
878 int i;
879 struct type *type = check_typedef (value_type (value));
880 struct value *vtable;
881 CORE_ADDR vt_addr;
882
883 vtable = gnuv3_get_vtable (gdbarch, type,
884 value_address (value)
885 + value_embedded_offset (value));
886 vt_addr = value_address (value_field (vtable,
887 vtable_field_virtual_functions));
888
889 printf_filtered (_("vtable for '%s' @ %s (subobject @ %s):\n"),
890 TYPE_SAFE_NAME (type),
891 paddress (gdbarch, vt_addr),
892 paddress (gdbarch, (value_address (value)
893 + value_embedded_offset (value))));
894
895 for (i = 0; i <= max_voffset; ++i)
896 {
cafe75b0
JK
897 /* Initialize it just to avoid a GCC false warning. */
898 CORE_ADDR addr = 0;
c4aeac85 899 struct value *vfn;
c4aeac85
TT
900 volatile struct gdb_exception ex;
901
902 printf_filtered ("[%d]: ", i);
903
904 vfn = value_subscript (value_field (vtable,
905 vtable_field_virtual_functions),
906 i);
907
908 if (gdbarch_vtable_function_descriptors (gdbarch))
909 vfn = value_addr (vfn);
910
911 TRY_CATCH (ex, RETURN_MASK_ERROR)
912 {
913 addr = value_as_address (vfn);
914 }
915 if (ex.reason < 0)
916 printf_filtered (_("<error: %s>"), ex.message);
917 else
edf0c1b7 918 print_function_pointer_address (opts, gdbarch, addr, gdb_stdout);
c4aeac85
TT
919 printf_filtered ("\n");
920 }
921}
922
923/* Implementation of the print_vtable method. */
924
925static void
926gnuv3_print_vtable (struct value *value)
927{
928 struct gdbarch *gdbarch;
929 struct type *type;
930 struct value *vtable;
931 struct value_print_options opts;
932 htab_t offset_hash;
933 struct cleanup *cleanup;
5ff5c7b4 934 VEC (value_and_voffset_p) *result_vec = NULL;
c4aeac85
TT
935 struct value_and_voffset *iter;
936 int i, count;
937
938 value = coerce_ref (value);
939 type = check_typedef (value_type (value));
940 if (TYPE_CODE (type) == TYPE_CODE_PTR)
941 {
942 value = value_ind (value);
943 type = check_typedef (value_type (value));
944 }
945
946 get_user_print_options (&opts);
947
948 /* Respect 'set print object'. */
949 if (opts.objectprint)
950 {
951 value = value_full_object (value, NULL, 0, 0, 0);
952 type = check_typedef (value_type (value));
953 }
954
955 gdbarch = get_type_arch (type);
956 vtable = gnuv3_get_vtable (gdbarch, type,
957 value_as_address (value_addr (value)));
958
959 if (!vtable)
960 {
961 printf_filtered (_("This object does not have a virtual function table\n"));
962 return;
963 }
964
965 offset_hash = htab_create_alloc (1, hash_value_and_voffset,
966 eq_value_and_voffset,
967 xfree, xcalloc, xfree);
968 cleanup = make_cleanup_htab_delete (offset_hash);
969 make_cleanup (VEC_cleanup (value_and_voffset_p), &result_vec);
970
971 compute_vtable_size (offset_hash, &result_vec, value);
972
973 qsort (VEC_address (value_and_voffset_p, result_vec),
974 VEC_length (value_and_voffset_p, result_vec),
975 sizeof (value_and_voffset_p),
976 compare_value_and_voffset);
977
978 count = 0;
979 for (i = 0; VEC_iterate (value_and_voffset_p, result_vec, i, iter); ++i)
980 {
981 if (iter->max_voffset >= 0)
982 {
983 if (count > 0)
984 printf_filtered ("\n");
985 print_one_vtable (gdbarch, iter->value, iter->max_voffset, &opts);
986 ++count;
987 }
988 }
989
990 do_cleanups (cleanup);
991}
992
6e72ca20
TT
993/* Return a GDB type representing `struct std::type_info', laid out
994 appropriately for ARCH.
995
996 We use this function as the gdbarch per-architecture data
997 initialization function. */
998
999static void *
1000build_std_type_info_type (struct gdbarch *arch)
1001{
1002 struct type *t;
1003 struct field *field_list, *field;
1004 int offset;
1005 struct type *void_ptr_type
1006 = builtin_type (arch)->builtin_data_ptr;
1007 struct type *char_type
1008 = builtin_type (arch)->builtin_char;
1009 struct type *char_ptr_type
1010 = make_pointer_type (make_cv_type (1, 0, char_type, NULL), NULL);
1011
1012 field_list = xmalloc (sizeof (struct field [2]));
1013 memset (field_list, 0, sizeof (struct field [2]));
1014 field = &field_list[0];
1015 offset = 0;
1016
1017 /* The vtable. */
1018 FIELD_NAME (*field) = "_vptr.type_info";
1019 FIELD_TYPE (*field) = void_ptr_type;
1020 SET_FIELD_BITPOS (*field, offset * TARGET_CHAR_BIT);
1021 offset += TYPE_LENGTH (FIELD_TYPE (*field));
1022 field++;
1023
1024 /* The name. */
1025 FIELD_NAME (*field) = "__name";
1026 FIELD_TYPE (*field) = char_ptr_type;
1027 SET_FIELD_BITPOS (*field, offset * TARGET_CHAR_BIT);
1028 offset += TYPE_LENGTH (FIELD_TYPE (*field));
1029 field++;
1030
1031 gdb_assert (field == (field_list + 2));
1032
1033 t = arch_type (arch, TYPE_CODE_STRUCT, offset, NULL);
1034 TYPE_NFIELDS (t) = field - field_list;
1035 TYPE_FIELDS (t) = field_list;
1036 TYPE_TAG_NAME (t) = "gdb_gnu_v3_type_info";
1037 INIT_CPLUS_SPECIFIC (t);
1038
1039 return t;
1040}
1041
1042/* Implement the 'get_typeid_type' method. */
1043
1044static struct type *
1045gnuv3_get_typeid_type (struct gdbarch *gdbarch)
1046{
1047 struct symbol *typeinfo;
1048 struct type *typeinfo_type;
1049
1050 typeinfo = lookup_symbol ("std::type_info", NULL, STRUCT_DOMAIN, NULL);
1051 if (typeinfo == NULL)
1052 typeinfo_type = gdbarch_data (gdbarch, std_type_info_gdbarch_data);
1053 else
1054 typeinfo_type = SYMBOL_TYPE (typeinfo);
1055
1056 return typeinfo_type;
1057}
1058
1059/* Implement the 'get_typeid' method. */
1060
1061static struct value *
1062gnuv3_get_typeid (struct value *value)
1063{
1064 struct type *typeinfo_type;
1065 struct type *type;
1066 struct gdbarch *gdbarch;
1067 struct cleanup *cleanup;
1068 struct value *result;
1069 char *typename, *canonical;
1070
1071 /* We have to handle values a bit trickily here, to allow this code
1072 to work properly with non_lvalue values that are really just
1073 disguised types. */
1074 if (value_lval_const (value) == lval_memory)
1075 value = coerce_ref (value);
1076
1077 type = check_typedef (value_type (value));
1078
1079 /* In the non_lvalue case, a reference might have slipped through
1080 here. */
1081 if (TYPE_CODE (type) == TYPE_CODE_REF)
1082 type = check_typedef (TYPE_TARGET_TYPE (type));
1083
1084 /* Ignore top-level cv-qualifiers. */
1085 type = make_cv_type (0, 0, type, NULL);
1086 gdbarch = get_type_arch (type);
1087
1088 typename = type_to_string (type);
1089 if (typename == NULL)
1090 error (_("cannot find typeinfo for unnamed type"));
1091 cleanup = make_cleanup (xfree, typename);
1092
1093 /* We need to canonicalize the type name here, because we do lookups
1094 using the demangled name, and so we must match the format it
1095 uses. E.g., GDB tends to use "const char *" as a type name, but
1096 the demangler uses "char const *". */
1097 canonical = cp_canonicalize_string (typename);
1098 if (canonical != NULL)
1099 {
1100 make_cleanup (xfree, canonical);
1101 typename = canonical;
1102 }
1103
1104 typeinfo_type = gnuv3_get_typeid_type (gdbarch);
1105
1106 /* We check for lval_memory because in the "typeid (type-id)" case,
1107 the type is passed via a not_lval value object. */
1108 if (TYPE_CODE (type) == TYPE_CODE_CLASS
1109 && value_lval_const (value) == lval_memory
1110 && gnuv3_dynamic_class (type))
1111 {
1112 struct value *vtable, *typeinfo_value;
1113 CORE_ADDR address = value_address (value) + value_embedded_offset (value);
1114
1115 vtable = gnuv3_get_vtable (gdbarch, type, address);
1116 if (vtable == NULL)
1117 error (_("cannot find typeinfo for object of type '%s'"), typename);
1118 typeinfo_value = value_field (vtable, vtable_field_type_info);
1119 result = value_ind (value_cast (make_pointer_type (typeinfo_type, NULL),
1120 typeinfo_value));
1121 }
1122 else
1123 {
1124 char *sym_name;
1125 struct minimal_symbol *minsym;
1126
1127 sym_name = concat ("typeinfo for ", typename, (char *) NULL);
1128 make_cleanup (xfree, sym_name);
1129 minsym = lookup_minimal_symbol (sym_name, NULL, NULL);
1130
1131 if (minsym == NULL)
1132 error (_("could not find typeinfo symbol for '%s'"), typename);
1133
efd66ac6 1134 result = value_at_lazy (typeinfo_type, MSYMBOL_VALUE_ADDRESS (minsym));
6e72ca20
TT
1135 }
1136
1137 do_cleanups (cleanup);
1138 return result;
1139}
1140
cc16e6c9 1141/* Implement the 'get_typename_from_type_info' method. */
72f1fe8a
TT
1142
1143static char *
1144gnuv3_get_typename_from_type_info (struct value *type_info_ptr)
1145{
1146 struct gdbarch *gdbarch = get_type_arch (value_type (type_info_ptr));
1147 struct bound_minimal_symbol typeinfo_sym;
1148 CORE_ADDR addr;
1149 const char *symname;
1150 const char *class_name;
1151 const char *atsign;
1152
1153 addr = value_as_address (type_info_ptr);
1154 typeinfo_sym = lookup_minimal_symbol_by_pc (addr);
1155 if (typeinfo_sym.minsym == NULL)
1156 error (_("could not find minimal symbol for typeinfo address %s"),
1157 paddress (gdbarch, addr));
1158
1159#define TYPEINFO_PREFIX "typeinfo for "
1160#define TYPEINFO_PREFIX_LEN (sizeof (TYPEINFO_PREFIX) - 1)
efd66ac6 1161 symname = MSYMBOL_DEMANGLED_NAME (typeinfo_sym.minsym);
72f1fe8a
TT
1162 if (symname == NULL || strncmp (symname, TYPEINFO_PREFIX,
1163 TYPEINFO_PREFIX_LEN))
1164 error (_("typeinfo symbol '%s' has unexpected name"),
efd66ac6 1165 MSYMBOL_LINKAGE_NAME (typeinfo_sym.minsym));
72f1fe8a
TT
1166 class_name = symname + TYPEINFO_PREFIX_LEN;
1167
1168 /* Strip off @plt and version suffixes. */
1169 atsign = strchr (class_name, '@');
1170 if (atsign != NULL)
1171 return savestring (class_name, atsign - class_name);
1172 return xstrdup (class_name);
1173}
1174
1175/* Implement the 'get_type_from_type_info' method. */
1176
1177static struct type *
1178gnuv3_get_type_from_type_info (struct value *type_info_ptr)
1179{
1180 char *typename;
1181 struct cleanup *cleanup;
1182 struct value *type_val;
1183 struct expression *expr;
1184 struct type *result;
1185
1186 typename = gnuv3_get_typename_from_type_info (type_info_ptr);
1187 cleanup = make_cleanup (xfree, typename);
1188
1189 /* We have to parse the type name, since in general there is not a
1190 symbol for a type. This is somewhat bogus since there may be a
1191 mis-parse. Another approach might be to re-use the demangler's
1192 internal form to reconstruct the type somehow. */
1193
1194 expr = parse_expression (typename);
1195 make_cleanup (xfree, expr);
1196
1197 type_val = evaluate_type (expr);
1198 result = value_type (type_val);
1199
1200 do_cleanups (cleanup);
1201 return result;
1202}
1203
b18be20d
DJ
1204/* Determine if we are currently in a C++ thunk. If so, get the address
1205 of the routine we are thunking to and continue to there instead. */
1206
1207static CORE_ADDR
52f729a7 1208gnuv3_skip_trampoline (struct frame_info *frame, CORE_ADDR stop_pc)
b18be20d 1209{
a513d1e8 1210 CORE_ADDR real_stop_pc, method_stop_pc, func_addr;
9970f04b 1211 struct gdbarch *gdbarch = get_frame_arch (frame);
b18be20d
DJ
1212 struct minimal_symbol *thunk_sym, *fn_sym;
1213 struct obj_section *section;
0d5cff50 1214 const char *thunk_name, *fn_name;
b18be20d 1215
9970f04b 1216 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
b18be20d
DJ
1217 if (real_stop_pc == 0)
1218 real_stop_pc = stop_pc;
1219
1220 /* Find the linker symbol for this potential thunk. */
7cbd4a93 1221 thunk_sym = lookup_minimal_symbol_by_pc (real_stop_pc).minsym;
b18be20d
DJ
1222 section = find_pc_section (real_stop_pc);
1223 if (thunk_sym == NULL || section == NULL)
1224 return 0;
1225
1226 /* The symbol's demangled name should be something like "virtual
1227 thunk to FUNCTION", where FUNCTION is the name of the function
1228 being thunked to. */
efd66ac6 1229 thunk_name = MSYMBOL_DEMANGLED_NAME (thunk_sym);
b18be20d
DJ
1230 if (thunk_name == NULL || strstr (thunk_name, " thunk to ") == NULL)
1231 return 0;
1232
1233 fn_name = strstr (thunk_name, " thunk to ") + strlen (" thunk to ");
1234 fn_sym = lookup_minimal_symbol (fn_name, NULL, section->objfile);
1235 if (fn_sym == NULL)
1236 return 0;
1237
efd66ac6 1238 method_stop_pc = MSYMBOL_VALUE_ADDRESS (fn_sym);
a513d1e8
LM
1239
1240 /* Some targets have minimal symbols pointing to function descriptors
1241 (powerpc 64 for example). Make sure to retrieve the address
1242 of the real function from the function descriptor before passing on
1243 the address to other layers of GDB. */
1244 func_addr = gdbarch_convert_from_func_ptr_addr (gdbarch, method_stop_pc,
1245 &current_target);
1246 if (func_addr != 0)
1247 method_stop_pc = func_addr;
1248
e76f05fa 1249 real_stop_pc = gdbarch_skip_trampoline_code
9970f04b 1250 (gdbarch, frame, method_stop_pc);
b18be20d
DJ
1251 if (real_stop_pc == 0)
1252 real_stop_pc = method_stop_pc;
1253
1254 return real_stop_pc;
1255}
1256
41f1b697
DJ
1257/* Return nonzero if a type should be passed by reference.
1258
1259 The rule in the v3 ABI document comes from section 3.1.1. If the
1260 type has a non-trivial copy constructor or destructor, then the
1261 caller must make a copy (by calling the copy constructor if there
1262 is one or perform the copy itself otherwise), pass the address of
1263 the copy, and then destroy the temporary (if necessary).
1264
1265 For return values with non-trivial copy constructors or
1266 destructors, space will be allocated in the caller, and a pointer
1267 will be passed as the first argument (preceding "this").
1268
1269 We don't have a bulletproof mechanism for determining whether a
1270 constructor or destructor is trivial. For GCC and DWARF2 debug
1271 information, we can check the artificial flag.
1272
1273 We don't do anything with the constructors or destructors,
1274 but we have to get the argument passing right anyway. */
1275static int
1276gnuv3_pass_by_reference (struct type *type)
1277{
1278 int fieldnum, fieldelem;
1279
1280 CHECK_TYPEDEF (type);
1281
1282 /* We're only interested in things that can have methods. */
1283 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
1284 && TYPE_CODE (type) != TYPE_CODE_CLASS
1285 && TYPE_CODE (type) != TYPE_CODE_UNION)
1286 return 0;
1287
1288 for (fieldnum = 0; fieldnum < TYPE_NFN_FIELDS (type); fieldnum++)
1289 for (fieldelem = 0; fieldelem < TYPE_FN_FIELDLIST_LENGTH (type, fieldnum);
1290 fieldelem++)
1291 {
1292 struct fn_field *fn = TYPE_FN_FIELDLIST1 (type, fieldnum);
0d5cff50 1293 const char *name = TYPE_FN_FIELDLIST_NAME (type, fieldnum);
41f1b697
DJ
1294 struct type *fieldtype = TYPE_FN_FIELD_TYPE (fn, fieldelem);
1295
1296 /* If this function is marked as artificial, it is compiler-generated,
1297 and we assume it is trivial. */
1298 if (TYPE_FN_FIELD_ARTIFICIAL (fn, fieldelem))
1299 continue;
1300
1301 /* If we've found a destructor, we must pass this by reference. */
1302 if (name[0] == '~')
1303 return 1;
1304
1305 /* If the mangled name of this method doesn't indicate that it
1306 is a constructor, we're not interested.
1307
1308 FIXME drow/2007-09-23: We could do this using the name of
1309 the method and the name of the class instead of dealing
1310 with the mangled name. We don't have a convenient function
1311 to strip off both leading scope qualifiers and trailing
1312 template arguments yet. */
7d27a96d
TT
1313 if (!is_constructor_name (TYPE_FN_FIELD_PHYSNAME (fn, fieldelem))
1314 && !TYPE_FN_FIELD_CONSTRUCTOR (fn, fieldelem))
41f1b697
DJ
1315 continue;
1316
1317 /* If this method takes two arguments, and the second argument is
1318 a reference to this class, then it is a copy constructor. */
1319 if (TYPE_NFIELDS (fieldtype) == 2
1320 && TYPE_CODE (TYPE_FIELD_TYPE (fieldtype, 1)) == TYPE_CODE_REF
0963b4bd
MS
1321 && check_typedef (TYPE_TARGET_TYPE (TYPE_FIELD_TYPE (fieldtype,
1322 1))) == type)
41f1b697
DJ
1323 return 1;
1324 }
1325
1326 /* Even if all the constructors and destructors were artificial, one
1327 of them may have invoked a non-artificial constructor or
1328 destructor in a base class. If any base class needs to be passed
1329 by reference, so does this class. Similarly for members, which
1330 are constructed whenever this class is. We do not need to worry
1331 about recursive loops here, since we are only looking at members
bceffbf3 1332 of complete class type. Also ignore any static members. */
41f1b697 1333 for (fieldnum = 0; fieldnum < TYPE_NFIELDS (type); fieldnum++)
bceffbf3
JK
1334 if (! field_is_static (&TYPE_FIELD (type, fieldnum))
1335 && gnuv3_pass_by_reference (TYPE_FIELD_TYPE (type, fieldnum)))
41f1b697
DJ
1336 return 1;
1337
1338 return 0;
1339}
1340
7ed49443
JB
1341static void
1342init_gnuv3_ops (void)
1343{
0963b4bd
MS
1344 vtable_type_gdbarch_data
1345 = gdbarch_data_register_post_init (build_gdb_vtable_type);
6e72ca20
TT
1346 std_type_info_gdbarch_data
1347 = gdbarch_data_register_post_init (build_std_type_info_type);
7ed49443
JB
1348
1349 gnu_v3_abi_ops.shortname = "gnu-v3";
1350 gnu_v3_abi_ops.longname = "GNU G++ Version 3 ABI";
1351 gnu_v3_abi_ops.doc = "G++ Version 3 ABI";
358777b0
EZ
1352 gnu_v3_abi_ops.is_destructor_name =
1353 (enum dtor_kinds (*) (const char *))is_gnu_v3_mangled_dtor;
1354 gnu_v3_abi_ops.is_constructor_name =
1355 (enum ctor_kinds (*) (const char *))is_gnu_v3_mangled_ctor;
7ed49443
JB
1356 gnu_v3_abi_ops.is_vtable_name = gnuv3_is_vtable_name;
1357 gnu_v3_abi_ops.is_operator_name = gnuv3_is_operator_name;
1358 gnu_v3_abi_ops.rtti_type = gnuv3_rtti_type;
1359 gnu_v3_abi_ops.virtual_fn_field = gnuv3_virtual_fn_field;
1514d34e 1360 gnu_v3_abi_ops.baseclass_offset = gnuv3_baseclass_offset;
0d5de010
DJ
1361 gnu_v3_abi_ops.print_method_ptr = gnuv3_print_method_ptr;
1362 gnu_v3_abi_ops.method_ptr_size = gnuv3_method_ptr_size;
1363 gnu_v3_abi_ops.make_method_ptr = gnuv3_make_method_ptr;
1364 gnu_v3_abi_ops.method_ptr_to_value = gnuv3_method_ptr_to_value;
c4aeac85 1365 gnu_v3_abi_ops.print_vtable = gnuv3_print_vtable;
6e72ca20
TT
1366 gnu_v3_abi_ops.get_typeid = gnuv3_get_typeid;
1367 gnu_v3_abi_ops.get_typeid_type = gnuv3_get_typeid_type;
72f1fe8a 1368 gnu_v3_abi_ops.get_type_from_type_info = gnuv3_get_type_from_type_info;
cc16e6c9
TT
1369 gnu_v3_abi_ops.get_typename_from_type_info
1370 = gnuv3_get_typename_from_type_info;
b18be20d 1371 gnu_v3_abi_ops.skip_trampoline = gnuv3_skip_trampoline;
41f1b697 1372 gnu_v3_abi_ops.pass_by_reference = gnuv3_pass_by_reference;
7ed49443
JB
1373}
1374
b9362cc7 1375extern initialize_file_ftype _initialize_gnu_v3_abi; /* -Wmissing-prototypes */
7ed49443
JB
1376
1377void
1378_initialize_gnu_v3_abi (void)
1379{
1380 init_gnuv3_ops ();
1381
fe1f4a5e 1382 register_cp_abi (&gnu_v3_abi_ops);
1605ef26 1383 set_cp_abi_as_auto_default (gnu_v3_abi_ops.shortname);
7ed49443 1384}
This page took 1.066766 seconds and 4 git commands to generate.