OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [gdb/] [gnu-v3-abi.c] - Blame information for rev 1767

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 578 markom
/* Abstraction of GNU v3 abi.
2
   Contributed by Jim Blandy <jimb@redhat.com>
3
   Copyright 2001 Free Software Foundation, Inc.
4
 
5
   This file is part of GDB.
6
 
7
   This program is free software; you can redistribute it and/or
8
   modify it under the terms of the GNU General Public License as
9
   published by the Free Software Foundation; either version 2 of the
10
   License, or (at your option) any later version.
11
 
12
   This program is distributed in the hope that it will be useful,
13
   but WITHOUT ANY WARRANTY; without even the implied warranty of
14
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
   GNU General Public License for more details.
16
 
17
   You should have received a copy of the GNU General Public License
18
   along with this program; if not, write to the Free Software
19
   Foundation, Inc., 59 Temple Place - Suite 330,
20
   Boston, MA 02111-1307, USA.  */
21
 
22
#include "defs.h"
23
#include "value.h"
24
#include "cp-abi.h"
25
#include "demangle.h"
26
#include "gdb_assert.h"
27
 
28
static struct cp_abi_ops gnu_v3_abi_ops;
29
 
30
static int
31
gnuv3_is_vtable_name (const char *name)
32
{
33
  return strncmp (name, "_ZTV", 4) == 0;
34
}
35
 
36
static int
37
gnuv3_is_operator_name (const char *name)
38
{
39
  return strncmp (name, "operator", 8) == 0;
40
}
41
 
42
 
43
/* To help us find the components of a vtable, we build ourselves a
44
   GDB type object representing the vtable structure.  Following the
45
   V3 ABI, it goes something like this:
46
 
47
   struct gdb_gnu_v3_abi_vtable {
48
 
49
     / * An array of virtual call and virtual base offsets.  The real
50
         length of this array depends on the class hierarchy; we use
51
         negative subscripts to access the elements.  Yucky, but
52
         better than the alternatives.  * /
53
     ptrdiff_t vcall_and_vbase_offsets[0];
54
 
55
     / * The offset from a virtual pointer referring to this table
56
         to the top of the complete object.  * /
57
     ptrdiff_t offset_to_top;
58
 
59
     / * The type_info pointer for this class.  This is really a
60
         std::type_info *, but GDB doesn't really look at the
61
         type_info object itself, so we don't bother to get the type
62
         exactly right.  * /
63
     void *type_info;
64
 
65
     / * Virtual table pointers in objects point here.  * /
66
 
67
     / * Virtual function pointers.  Like the vcall/vbase array, the
68
         real length of this table depends on the class hierarchy.  * /
69
     void (*virtual_functions[0]) ();
70
 
71
   };
72
 
73
   The catch, of course, is that the exact layout of this table
74
   depends on the ABI --- word size, endianness, alignment, etc.  So
75
   the GDB type object is actually a per-architecture kind of thing.
76
 
77
   vtable_type_gdbarch_data is a gdbarch per-architecture data pointer
78
   which refers to the struct type * for this structure, laid out
79
   appropriately for the architecture.  */
80
static struct gdbarch_data *vtable_type_gdbarch_data;
81
 
82
 
83
/* Human-readable names for the numbers of the fields above.  */
84
enum {
85
  vtable_field_vcall_and_vbase_offsets,
86
  vtable_field_offset_to_top,
87
  vtable_field_type_info,
88
  vtable_field_virtual_functions
89
};
90
 
91
 
92
/* Return a GDB type representing `struct gdb_gnu_v3_abi_vtable',
93
   described above, laid out appropriately for ARCH.
94
 
95
   We use this function as the gdbarch per-architecture data
96
   initialization function.  We assume that the gdbarch framework
97
   calls the per-architecture data initialization functions after it
98
   sets current_gdbarch to the new architecture.  */
99
static void *
100
build_gdb_vtable_type (struct gdbarch *arch)
101
{
102
  struct type *t;
103
  struct field *field_list, *field;
104
  int offset;
105
 
106
  struct type *void_ptr_type
107
    = lookup_pointer_type (builtin_type_void);
108
  struct type *ptr_to_void_fn_type
109
    = lookup_pointer_type (lookup_function_type (builtin_type_void));
110
 
111
  /* ARCH can't give us the true ptrdiff_t type, so we guess.  */
112
  struct type *ptrdiff_type
113
    = init_type (TYPE_CODE_INT, TARGET_PTR_BIT / TARGET_CHAR_BIT, 0,
114
                 "ptrdiff_t", 0);
115
 
116
  /* We assume no padding is necessary, since GDB doesn't know
117
     anything about alignment at the moment.  If this assumption bites
118
     us, we should add a gdbarch method which, given a type, returns
119
     the alignment that type requires, and then use that here.  */
120
 
121
  /* Build the field list.  */
122
  field_list = xmalloc (sizeof (struct field [4]));
123
  memset (field_list, 0, sizeof (struct field [4]));
124
  field = &field_list[0];
125
  offset = 0;
126
 
127
  /* ptrdiff_t vcall_and_vbase_offsets[0]; */
128
  FIELD_NAME (*field) = "vcall_and_vbase_offsets";
129
  FIELD_TYPE (*field)
130
    = create_array_type (0, ptrdiff_type,
131
                         create_range_type (0, builtin_type_int, 0, -1));
132
  FIELD_BITPOS (*field) = offset * TARGET_CHAR_BIT;
133
  offset += TYPE_LENGTH (FIELD_TYPE (*field));
134
  field++;
135
 
136
  /* ptrdiff_t offset_to_top; */
137
  FIELD_NAME (*field) = "offset_to_top";
138
  FIELD_TYPE (*field) = ptrdiff_type;
139
  FIELD_BITPOS (*field) = offset * TARGET_CHAR_BIT;
140
  offset += TYPE_LENGTH (FIELD_TYPE (*field));
141
  field++;
142
 
143
  /* void *type_info; */
144
  FIELD_NAME (*field) = "type_info";
145
  FIELD_TYPE (*field) = void_ptr_type;
146
  FIELD_BITPOS (*field) = offset * TARGET_CHAR_BIT;
147
  offset += TYPE_LENGTH (FIELD_TYPE (*field));
148
  field++;
149
 
150
  /* void (*virtual_functions[0]) (); */
151
  FIELD_NAME (*field) = "virtual_functions";
152
  FIELD_TYPE (*field)
153
    = create_array_type (0, ptr_to_void_fn_type,
154
                         create_range_type (0, builtin_type_int, 0, -1));
155
  FIELD_BITPOS (*field) = offset * TARGET_CHAR_BIT;
156
  offset += TYPE_LENGTH (FIELD_TYPE (*field));
157
  field++;
158
 
159
  /* We assumed in the allocation above that there were four fields.  */
160
  gdb_assert (field == (field_list + 4));
161
 
162
  t = init_type (TYPE_CODE_STRUCT, offset, 0, 0, 0);
163
  TYPE_NFIELDS (t) = field - field_list;
164
  TYPE_FIELDS (t) = field_list;
165
  TYPE_TAG_NAME (t) = "gdb_gnu_v3_abi_vtable";
166
 
167
  return t;
168
}
169
 
170
 
171
/* Return the offset from the start of the imaginary `struct
172
   gdb_gnu_v3_abi_vtable' object to the vtable's "address point"
173
   (i.e., where objects' virtual table pointers point).  */
174
static int
175
vtable_address_point_offset ()
176
{
177
  struct type *vtable_type = gdbarch_data (vtable_type_gdbarch_data);
178
 
179
  return (TYPE_FIELD_BITPOS (vtable_type, vtable_field_virtual_functions)
180
          / TARGET_CHAR_BIT);
181
}
182
 
183
 
184
static struct type *
185
gnuv3_rtti_type (struct value *value,
186
                 int *full_p, int *top_p, int *using_enc_p)
187
{
188
  struct type *vtable_type = gdbarch_data (vtable_type_gdbarch_data);
189
  struct type *value_type = check_typedef (VALUE_TYPE (value));
190
  CORE_ADDR vtable_address;
191
  struct value *vtable;
192
  struct minimal_symbol *vtable_symbol;
193
  const char *vtable_symbol_name;
194
  const char *class_name;
195
  struct symbol *class_symbol;
196
  struct type *run_time_type;
197
  LONGEST offset_to_top;
198
 
199
  /* We only have RTTI for class objects.  */
200
  if (TYPE_CODE (value_type) != TYPE_CODE_CLASS)
201
    return NULL;
202
 
203
  /* If we can't find the virtual table pointer for value_type, we
204
     can't find the RTTI.  */
205
  fill_in_vptr_fieldno (value_type);
206
  if (TYPE_VPTR_FIELDNO (value_type) == -1)
207
    return NULL;
208
 
209
  /* Fetch VALUE's virtual table pointer, and tweak it to point at
210
     an instance of our imaginary gdb_gnu_v3_abi_vtable structure.   */
211
  vtable_address
212
    = value_as_pointer (value_field (value, TYPE_VPTR_FIELDNO (value_type)));
213
  vtable = value_at_lazy (vtable_type,
214
                          vtable_address - vtable_address_point_offset (),
215
                          VALUE_BFD_SECTION (value));
216
 
217
  /* Find the linker symbol for this vtable.  */
218
  vtable_symbol
219
    = lookup_minimal_symbol_by_pc (VALUE_ADDRESS (vtable)
220
                                   + VALUE_OFFSET (vtable)
221
                                   + VALUE_EMBEDDED_OFFSET (vtable));
222
  if (! vtable_symbol)
223
    return NULL;
224
 
225
  /* The symbol's demangled name should be something like "vtable for
226
     CLASS", where CLASS is the name of the run-time type of VALUE.
227
     If we didn't like this approach, we could instead look in the
228
     type_info object itself to get the class name.  But this way
229
     should work just as well, and doesn't read target memory.  */
230
  vtable_symbol_name = SYMBOL_DEMANGLED_NAME (vtable_symbol);
231
  if (strncmp (vtable_symbol_name, "vtable for ", 11))
232
    error ("can't find linker symbol for virtual table for `%s' value",
233
           TYPE_NAME (value_type));
234
  class_name = vtable_symbol_name + 11;
235
 
236
  /* Try to look up the class name as a type name.  */
237
  class_symbol = lookup_symbol (class_name, 0, STRUCT_NAMESPACE, 0, 0);
238
  if (! class_symbol)
239
    error ("can't find class named `%s', as given by C++ RTTI", class_name);
240
 
241
  /* Make sure the type symbol is sane.  (An earlier version of this
242
     code would find constructor functions, who have the same name as
243
     the class.)  */
244
  if (SYMBOL_CLASS (class_symbol) != LOC_TYPEDEF
245
      || TYPE_CODE (SYMBOL_TYPE (class_symbol)) != TYPE_CODE_CLASS)
246
    error ("C++ RTTI gives a class name of `%s', but that isn't a type name",
247
           class_name);
248
 
249
  /* This is the object's run-time type!  */
250
  run_time_type = SYMBOL_TYPE (class_symbol);
251
 
252
  /* Get the offset from VALUE to the top of the complete object.
253
     NOTE: this is the reverse of the meaning of *TOP_P.  */
254
  offset_to_top
255
    = value_as_long (value_field (vtable, vtable_field_offset_to_top));
256
 
257
  if (full_p)
258
    *full_p = (- offset_to_top == VALUE_EMBEDDED_OFFSET (value)
259
               && (TYPE_LENGTH (VALUE_ENCLOSING_TYPE (value))
260
                   >= TYPE_LENGTH (run_time_type)));
261
  if (top_p)
262
    *top_p = - offset_to_top;
263
  if (using_enc_p)
264
    *using_enc_p = 0;
265
 
266
  return run_time_type;
267
}
268
 
269
 
270
static struct value *
271
gnuv3_virtual_fn_field (struct value **value_p,
272
                        struct fn_field *f, int j,
273
                        struct type *type, int offset)
274
{
275
  struct type *vtable_type = gdbarch_data (vtable_type_gdbarch_data);
276
  struct value *value = *value_p;
277
  struct type *value_type = check_typedef (VALUE_TYPE (value));
278
  struct type *vfn_base;
279
  CORE_ADDR vtable_address;
280
  struct value *vtable;
281
  struct value *vfn;
282
 
283
  /* Some simple sanity checks.  */
284
  if (TYPE_CODE (value_type) != TYPE_CODE_CLASS)
285
    error ("Only classes can have virtual functions.");
286
 
287
  /* Find the base class that defines this virtual function.  */
288
  vfn_base = TYPE_FN_FIELD_FCONTEXT (f, j);
289
  if (! vfn_base)
290
    /* In programs compiled with G++ version 1, the debug info doesn't
291
       say which base class defined the virtual function.  We'll guess
292
       it's the same base class that has our vtable; this is wrong for
293
       multiple inheritance, but it's better than nothing.  */
294
    vfn_base = TYPE_VPTR_BASETYPE (type);
295
 
296
  /* This type may have been defined before its virtual function table
297
     was.  If so, fill in the virtual function table entry for the
298
     type now.  */
299
  if (TYPE_VPTR_FIELDNO (vfn_base) < 0)
300
    fill_in_vptr_fieldno (vfn_base);
301
 
302
  /* Now that we know which base class is defining our virtual
303
     function, cast our value to that baseclass.  This takes care of
304
     any necessary `this' adjustments.  */
305
  if (vfn_base != value_type)
306
    /* It would be nicer to simply cast the value to the appropriate
307
       base class (and I think that is supposed to be legal), but
308
       value_cast only does the right magic when casting pointers.  */
309
    value = value_ind (value_cast (vfn_base, value_addr (value)));
310
 
311
  /* Now value is an object of the appropriate base type.  Fetch its
312
     virtual table.  */
313
  vtable_address
314
    = value_as_pointer (value_field (value, TYPE_VPTR_FIELDNO (vfn_base)));
315
  vtable = value_at_lazy (vtable_type,
316
                          vtable_address - vtable_address_point_offset (),
317
                          VALUE_BFD_SECTION (value));
318
 
319
  /* Fetch the appropriate function pointer from the vtable.  */
320
  vfn = value_subscript (value_field (vtable, vtable_field_virtual_functions),
321
                         value_from_longest (builtin_type_int,
322
                                             TYPE_FN_FIELD_VOFFSET (f, j)));
323
 
324
  /* Cast the function pointer to the appropriate type.  */
325
  vfn = value_cast (lookup_pointer_type (TYPE_FN_FIELD_TYPE (f, j)),
326
                    vfn);
327
 
328
  return vfn;
329
}
330
 
331
 
332
static void
333
init_gnuv3_ops (void)
334
{
335
  vtable_type_gdbarch_data = register_gdbarch_data (build_gdb_vtable_type, 0);
336
 
337
  gnu_v3_abi_ops.shortname = "gnu-v3";
338
  gnu_v3_abi_ops.longname = "GNU G++ Version 3 ABI";
339
  gnu_v3_abi_ops.doc = "G++ Version 3 ABI";
340
  gnu_v3_abi_ops.is_destructor_name = is_gnu_v3_mangled_dtor;
341
  gnu_v3_abi_ops.is_constructor_name = is_gnu_v3_mangled_ctor;
342
  gnu_v3_abi_ops.is_vtable_name = gnuv3_is_vtable_name;
343
  gnu_v3_abi_ops.is_operator_name = gnuv3_is_operator_name;
344
  gnu_v3_abi_ops.rtti_type = gnuv3_rtti_type;
345
  gnu_v3_abi_ops.virtual_fn_field = gnuv3_virtual_fn_field;
346
}
347
 
348
 
349
void
350
_initialize_gnu_v3_abi (void)
351
{
352
  init_gnuv3_ops ();
353
 
354
  register_cp_abi (gnu_v3_abi_ops);
355
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.