Add constructor and destructor to demangle_parse_info
[binutils-gdb.git] / gdb / python / py-type.c
1 /* Python interface to types.
2
3 Copyright (C) 2008-2017 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 modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (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, see <http://www.gnu.org/licenses/>. */
19
20 #include "defs.h"
21 #include "value.h"
22 #include "python-internal.h"
23 #include "charset.h"
24 #include "gdbtypes.h"
25 #include "cp-support.h"
26 #include "demangle.h"
27 #include "objfiles.h"
28 #include "language.h"
29 #include "vec.h"
30 #include "typeprint.h"
31 #include "py-ref.h"
32
33 typedef struct pyty_type_object
34 {
35 PyObject_HEAD
36 struct type *type;
37
38 /* If a Type object is associated with an objfile, it is kept on a
39 doubly-linked list, rooted in the objfile. This lets us copy the
40 underlying struct type when the objfile is deleted. */
41 struct pyty_type_object *prev;
42 struct pyty_type_object *next;
43 } type_object;
44
45 extern PyTypeObject type_object_type
46 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("type_object");
47
48 /* A Field object. */
49 typedef struct pyty_field_object
50 {
51 PyObject_HEAD
52
53 /* Dictionary holding our attributes. */
54 PyObject *dict;
55 } field_object;
56
57 extern PyTypeObject field_object_type
58 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("field_object");
59
60 /* A type iterator object. */
61 typedef struct {
62 PyObject_HEAD
63 /* The current field index. */
64 int field;
65 /* What to return. */
66 enum gdbpy_iter_kind kind;
67 /* Pointer back to the original source type object. */
68 struct pyty_type_object *source;
69 } typy_iterator_object;
70
71 extern PyTypeObject type_iterator_object_type
72 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF ("typy_iterator_object");
73
74 /* This is used to initialize various gdb.TYPE_ constants. */
75 struct pyty_code
76 {
77 /* The code. */
78 enum type_code code;
79 /* The name. */
80 const char *name;
81 };
82
83 /* Forward declarations. */
84 static PyObject *typy_make_iter (PyObject *self, enum gdbpy_iter_kind kind);
85
86 #define ENTRY(X) { X, #X }
87
88 static struct pyty_code pyty_codes[] =
89 {
90 ENTRY (TYPE_CODE_BITSTRING),
91 ENTRY (TYPE_CODE_PTR),
92 ENTRY (TYPE_CODE_ARRAY),
93 ENTRY (TYPE_CODE_STRUCT),
94 ENTRY (TYPE_CODE_UNION),
95 ENTRY (TYPE_CODE_ENUM),
96 ENTRY (TYPE_CODE_FLAGS),
97 ENTRY (TYPE_CODE_FUNC),
98 ENTRY (TYPE_CODE_INT),
99 ENTRY (TYPE_CODE_FLT),
100 ENTRY (TYPE_CODE_VOID),
101 ENTRY (TYPE_CODE_SET),
102 ENTRY (TYPE_CODE_RANGE),
103 ENTRY (TYPE_CODE_STRING),
104 ENTRY (TYPE_CODE_ERROR),
105 ENTRY (TYPE_CODE_METHOD),
106 ENTRY (TYPE_CODE_METHODPTR),
107 ENTRY (TYPE_CODE_MEMBERPTR),
108 ENTRY (TYPE_CODE_REF),
109 ENTRY (TYPE_CODE_CHAR),
110 ENTRY (TYPE_CODE_BOOL),
111 ENTRY (TYPE_CODE_COMPLEX),
112 ENTRY (TYPE_CODE_TYPEDEF),
113 ENTRY (TYPE_CODE_NAMESPACE),
114 ENTRY (TYPE_CODE_DECFLOAT),
115 ENTRY (TYPE_CODE_INTERNAL_FUNCTION),
116 { TYPE_CODE_UNDEF, NULL }
117 };
118
119 \f
120
121 static void
122 field_dealloc (PyObject *obj)
123 {
124 field_object *f = (field_object *) obj;
125
126 Py_XDECREF (f->dict);
127 Py_TYPE (obj)->tp_free (obj);
128 }
129
130 static PyObject *
131 field_new (void)
132 {
133 field_object *result = PyObject_New (field_object, &field_object_type);
134
135 if (result)
136 {
137 result->dict = PyDict_New ();
138 if (!result->dict)
139 {
140 Py_DECREF (result);
141 result = NULL;
142 }
143 }
144 return (PyObject *) result;
145 }
146
147 \f
148
149 /* Return true if OBJ is of type gdb.Field, false otherwise. */
150
151 int
152 gdbpy_is_field (PyObject *obj)
153 {
154 return PyObject_TypeCheck (obj, &field_object_type);
155 }
156
157 /* Return the code for this type. */
158 static PyObject *
159 typy_get_code (PyObject *self, void *closure)
160 {
161 struct type *type = ((type_object *) self)->type;
162
163 return PyInt_FromLong (TYPE_CODE (type));
164 }
165
166 /* Helper function for typy_fields which converts a single field to a
167 gdb.Field object. Returns NULL on error. */
168
169 static PyObject *
170 convert_field (struct type *type, int field)
171 {
172 gdbpy_ref result (field_new ());
173
174 if (result == NULL)
175 return NULL;
176
177 gdbpy_ref arg (type_to_type_object (type));
178 if (arg == NULL)
179 return NULL;
180 if (PyObject_SetAttrString (result.get (), "parent_type", arg.get ()) < 0)
181 return NULL;
182
183 if (!field_is_static (&TYPE_FIELD (type, field)))
184 {
185 const char *attrstring;
186
187 if (TYPE_CODE (type) == TYPE_CODE_ENUM)
188 {
189 arg.reset (gdb_py_long_from_longest (TYPE_FIELD_ENUMVAL (type,
190 field)));
191 attrstring = "enumval";
192 }
193 else
194 {
195 arg.reset (gdb_py_long_from_longest (TYPE_FIELD_BITPOS (type,
196 field)));
197 attrstring = "bitpos";
198 }
199
200 if (arg == NULL)
201 return NULL;
202
203 /* At least python-2.4 had the second parameter non-const. */
204 if (PyObject_SetAttrString (result.get (), (char *) attrstring,
205 arg.get ()) < 0)
206 return NULL;
207 }
208
209 arg.reset (NULL);
210 if (TYPE_FIELD_NAME (type, field))
211 {
212 const char *field_name = TYPE_FIELD_NAME (type, field);
213
214 if (field_name[0] != '\0')
215 {
216 arg.reset (PyString_FromString (TYPE_FIELD_NAME (type, field)));
217 if (arg == NULL)
218 return NULL;
219 }
220 }
221 if (arg == NULL)
222 {
223 arg.reset (Py_None);
224 Py_INCREF (arg.get ());
225 }
226 if (PyObject_SetAttrString (result.get (), "name", arg.get ()) < 0)
227 return NULL;
228
229 arg.reset (TYPE_FIELD_ARTIFICIAL (type, field) ? Py_True : Py_False);
230 Py_INCREF (arg.get ());
231 if (PyObject_SetAttrString (result.get (), "artificial", arg.get ()) < 0)
232 return NULL;
233
234 if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
235 arg.reset (field < TYPE_N_BASECLASSES (type) ? Py_True : Py_False);
236 else
237 arg.reset (Py_False);
238 Py_INCREF (arg.get ());
239 if (PyObject_SetAttrString (result.get (), "is_base_class", arg.get ()) < 0)
240 return NULL;
241
242 arg.reset (PyLong_FromLong (TYPE_FIELD_BITSIZE (type, field)));
243 if (arg == NULL)
244 return NULL;
245 if (PyObject_SetAttrString (result.get (), "bitsize", arg.get ()) < 0)
246 return NULL;
247
248 /* A field can have a NULL type in some situations. */
249 if (TYPE_FIELD_TYPE (type, field) == NULL)
250 {
251 arg.reset (Py_None);
252 Py_INCREF (arg.get ());
253 }
254 else
255 arg.reset (type_to_type_object (TYPE_FIELD_TYPE (type, field)));
256 if (arg == NULL)
257 return NULL;
258 if (PyObject_SetAttrString (result.get (), "type", arg.get ()) < 0)
259 return NULL;
260
261 return result.release ();
262 }
263
264 /* Helper function to return the name of a field, as a gdb.Field object.
265 If the field doesn't have a name, None is returned. */
266
267 static PyObject *
268 field_name (struct type *type, int field)
269 {
270 PyObject *result;
271
272 if (TYPE_FIELD_NAME (type, field))
273 result = PyString_FromString (TYPE_FIELD_NAME (type, field));
274 else
275 {
276 result = Py_None;
277 Py_INCREF (result);
278 }
279 return result;
280 }
281
282 /* Helper function for Type standard mapping methods. Returns a
283 Python object for field i of the type. "kind" specifies what to
284 return: the name of the field, a gdb.Field object corresponding to
285 the field, or a tuple consisting of field name and gdb.Field
286 object. */
287
288 static PyObject *
289 make_fielditem (struct type *type, int i, enum gdbpy_iter_kind kind)
290 {
291 switch (kind)
292 {
293 case iter_items:
294 {
295 gdbpy_ref key (field_name (type, i));
296 if (key == NULL)
297 return NULL;
298 gdbpy_ref value (convert_field (type, i));
299 if (value == NULL)
300 return NULL;
301 gdbpy_ref item (PyTuple_New (2));
302 if (item == NULL)
303 return NULL;
304 PyTuple_SET_ITEM (item.get (), 0, key.release ());
305 PyTuple_SET_ITEM (item.get (), 1, value.release ());
306 return item.release ();
307 }
308 case iter_keys:
309 return field_name (type, i);
310 case iter_values:
311 return convert_field (type, i);
312 }
313 gdb_assert_not_reached ("invalid gdbpy_iter_kind");
314 }
315
316 /* Return a sequence of all field names, fields, or (name, field) pairs.
317 Each field is a gdb.Field object. */
318
319 static PyObject *
320 typy_fields_items (PyObject *self, enum gdbpy_iter_kind kind)
321 {
322 PyObject *py_type = self;
323 PyObject *result = NULL, *iter = NULL;
324 struct type *type = ((type_object *) py_type)->type;
325 struct type *checked_type = type;
326
327 TRY
328 {
329 checked_type = check_typedef (checked_type);
330 }
331 CATCH (except, RETURN_MASK_ALL)
332 {
333 GDB_PY_HANDLE_EXCEPTION (except);
334 }
335 END_CATCH
336
337 if (checked_type != type)
338 py_type = type_to_type_object (checked_type);
339 iter = typy_make_iter (py_type, kind);
340 if (checked_type != type)
341 {
342 /* Need to wrap this in braces because Py_DECREF isn't wrapped
343 in a do{}while(0). */
344 Py_DECREF (py_type);
345 }
346 if (iter != NULL)
347 {
348 result = PySequence_List (iter);
349 Py_DECREF (iter);
350 }
351
352 return result;
353 }
354
355 /* Return a sequence of all fields. Each field is a gdb.Field object. */
356
357 static PyObject *
358 typy_values (PyObject *self, PyObject *args)
359 {
360 return typy_fields_items (self, iter_values);
361 }
362
363 /* Return a sequence of all fields. Each field is a gdb.Field object.
364 This method is similar to typy_values, except where the supplied
365 gdb.Type is an array, in which case it returns a list of one entry
366 which is a gdb.Field object for a range (the array bounds). */
367
368 static PyObject *
369 typy_fields (PyObject *self, PyObject *args)
370 {
371 struct type *type = ((type_object *) self)->type;
372
373 if (TYPE_CODE (type) != TYPE_CODE_ARRAY)
374 return typy_fields_items (self, iter_values);
375
376 /* Array type. Handle this as a special case because the common
377 machinery wants struct or union or enum types. Build a list of
378 one entry which is the range for the array. */
379 gdbpy_ref r (convert_field (type, 0));
380 if (r == NULL)
381 return NULL;
382
383 return Py_BuildValue ("[O]", r.get ());
384 }
385
386 /* Return a sequence of all field names. Each field is a gdb.Field object. */
387
388 static PyObject *
389 typy_field_names (PyObject *self, PyObject *args)
390 {
391 return typy_fields_items (self, iter_keys);
392 }
393
394 /* Return a sequence of all (name, fields) pairs. Each field is a
395 gdb.Field object. */
396
397 static PyObject *
398 typy_items (PyObject *self, PyObject *args)
399 {
400 return typy_fields_items (self, iter_items);
401 }
402
403 /* Return the type's name, or None. */
404
405 static PyObject *
406 typy_get_name (PyObject *self, void *closure)
407 {
408 struct type *type = ((type_object *) self)->type;
409
410 if (TYPE_NAME (type) == NULL)
411 Py_RETURN_NONE;
412 return PyString_FromString (TYPE_NAME (type));
413 }
414
415 /* Return the type's tag, or None. */
416 static PyObject *
417 typy_get_tag (PyObject *self, void *closure)
418 {
419 struct type *type = ((type_object *) self)->type;
420
421 if (!TYPE_TAG_NAME (type))
422 Py_RETURN_NONE;
423 return PyString_FromString (TYPE_TAG_NAME (type));
424 }
425
426 /* Return the type, stripped of typedefs. */
427 static PyObject *
428 typy_strip_typedefs (PyObject *self, PyObject *args)
429 {
430 struct type *type = ((type_object *) self)->type;
431
432 TRY
433 {
434 type = check_typedef (type);
435 }
436 CATCH (except, RETURN_MASK_ALL)
437 {
438 GDB_PY_HANDLE_EXCEPTION (except);
439 }
440 END_CATCH
441
442 return type_to_type_object (type);
443 }
444
445 /* Strip typedefs and pointers/reference from a type. Then check that
446 it is a struct, union, or enum type. If not, raise TypeError. */
447
448 static struct type *
449 typy_get_composite (struct type *type)
450 {
451
452 for (;;)
453 {
454 TRY
455 {
456 type = check_typedef (type);
457 }
458 CATCH (except, RETURN_MASK_ALL)
459 {
460 GDB_PY_HANDLE_EXCEPTION (except);
461 }
462 END_CATCH
463
464 if (TYPE_CODE (type) != TYPE_CODE_PTR
465 && TYPE_CODE (type) != TYPE_CODE_REF)
466 break;
467 type = TYPE_TARGET_TYPE (type);
468 }
469
470 /* If this is not a struct, union, or enum type, raise TypeError
471 exception. */
472 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
473 && TYPE_CODE (type) != TYPE_CODE_UNION
474 && TYPE_CODE (type) != TYPE_CODE_ENUM
475 && TYPE_CODE (type) != TYPE_CODE_FUNC)
476 {
477 PyErr_SetString (PyExc_TypeError,
478 "Type is not a structure, union, enum, or function type.");
479 return NULL;
480 }
481
482 return type;
483 }
484
485 /* Helper for typy_array and typy_vector. */
486
487 static PyObject *
488 typy_array_1 (PyObject *self, PyObject *args, int is_vector)
489 {
490 long n1, n2;
491 PyObject *n2_obj = NULL;
492 struct type *array = NULL;
493 struct type *type = ((type_object *) self)->type;
494
495 if (! PyArg_ParseTuple (args, "l|O", &n1, &n2_obj))
496 return NULL;
497
498 if (n2_obj)
499 {
500 if (!PyInt_Check (n2_obj))
501 {
502 PyErr_SetString (PyExc_RuntimeError,
503 _("Array bound must be an integer"));
504 return NULL;
505 }
506
507 if (! gdb_py_int_as_long (n2_obj, &n2))
508 return NULL;
509 }
510 else
511 {
512 n2 = n1;
513 n1 = 0;
514 }
515
516 if (n2 < n1 - 1) /* Note: An empty array has n2 == n1 - 1. */
517 {
518 PyErr_SetString (PyExc_ValueError,
519 _("Array length must not be negative"));
520 return NULL;
521 }
522
523 TRY
524 {
525 array = lookup_array_range_type (type, n1, n2);
526 if (is_vector)
527 make_vector_type (array);
528 }
529 CATCH (except, RETURN_MASK_ALL)
530 {
531 GDB_PY_HANDLE_EXCEPTION (except);
532 }
533 END_CATCH
534
535 return type_to_type_object (array);
536 }
537
538 /* Return an array type. */
539
540 static PyObject *
541 typy_array (PyObject *self, PyObject *args)
542 {
543 return typy_array_1 (self, args, 0);
544 }
545
546 /* Return a vector type. */
547
548 static PyObject *
549 typy_vector (PyObject *self, PyObject *args)
550 {
551 return typy_array_1 (self, args, 1);
552 }
553
554 /* Return a Type object which represents a pointer to SELF. */
555 static PyObject *
556 typy_pointer (PyObject *self, PyObject *args)
557 {
558 struct type *type = ((type_object *) self)->type;
559
560 TRY
561 {
562 type = lookup_pointer_type (type);
563 }
564 CATCH (except, RETURN_MASK_ALL)
565 {
566 GDB_PY_HANDLE_EXCEPTION (except);
567 }
568 END_CATCH
569
570 return type_to_type_object (type);
571 }
572
573 /* Return the range of a type represented by SELF. The return type is
574 a tuple. The first element of the tuple contains the low bound,
575 while the second element of the tuple contains the high bound. */
576 static PyObject *
577 typy_range (PyObject *self, PyObject *args)
578 {
579 struct type *type = ((type_object *) self)->type;
580 /* Initialize these to appease GCC warnings. */
581 LONGEST low = 0, high = 0;
582
583 if (TYPE_CODE (type) != TYPE_CODE_ARRAY
584 && TYPE_CODE (type) != TYPE_CODE_STRING
585 && TYPE_CODE (type) != TYPE_CODE_RANGE)
586 {
587 PyErr_SetString (PyExc_RuntimeError,
588 _("This type does not have a range."));
589 return NULL;
590 }
591
592 switch (TYPE_CODE (type))
593 {
594 case TYPE_CODE_ARRAY:
595 case TYPE_CODE_STRING:
596 low = TYPE_LOW_BOUND (TYPE_INDEX_TYPE (type));
597 high = TYPE_HIGH_BOUND (TYPE_INDEX_TYPE (type));
598 break;
599 case TYPE_CODE_RANGE:
600 low = TYPE_LOW_BOUND (type);
601 high = TYPE_HIGH_BOUND (type);
602 break;
603 }
604
605 gdbpy_ref low_bound (PyLong_FromLong (low));
606 if (low_bound == NULL)
607 return NULL;
608
609 gdbpy_ref high_bound (PyLong_FromLong (high));
610 if (high_bound == NULL)
611 return NULL;
612
613 gdbpy_ref result (PyTuple_New (2));
614 if (result == NULL)
615 return NULL;
616
617 if (PyTuple_SetItem (result.get (), 0, low_bound.release ()) != 0
618 || PyTuple_SetItem (result.get (), 1, high_bound.release ()) != 0)
619 return NULL;
620 return result.release ();
621 }
622
623 /* Return a Type object which represents a reference to SELF. */
624 static PyObject *
625 typy_reference (PyObject *self, PyObject *args)
626 {
627 struct type *type = ((type_object *) self)->type;
628
629 TRY
630 {
631 type = lookup_reference_type (type);
632 }
633 CATCH (except, RETURN_MASK_ALL)
634 {
635 GDB_PY_HANDLE_EXCEPTION (except);
636 }
637 END_CATCH
638
639 return type_to_type_object (type);
640 }
641
642 /* Return a Type object which represents the target type of SELF. */
643 static PyObject *
644 typy_target (PyObject *self, PyObject *args)
645 {
646 struct type *type = ((type_object *) self)->type;
647
648 if (!TYPE_TARGET_TYPE (type))
649 {
650 PyErr_SetString (PyExc_RuntimeError,
651 _("Type does not have a target."));
652 return NULL;
653 }
654
655 return type_to_type_object (TYPE_TARGET_TYPE (type));
656 }
657
658 /* Return a const-qualified type variant. */
659 static PyObject *
660 typy_const (PyObject *self, PyObject *args)
661 {
662 struct type *type = ((type_object *) self)->type;
663
664 TRY
665 {
666 type = make_cv_type (1, 0, type, NULL);
667 }
668 CATCH (except, RETURN_MASK_ALL)
669 {
670 GDB_PY_HANDLE_EXCEPTION (except);
671 }
672 END_CATCH
673
674 return type_to_type_object (type);
675 }
676
677 /* Return a volatile-qualified type variant. */
678 static PyObject *
679 typy_volatile (PyObject *self, PyObject *args)
680 {
681 struct type *type = ((type_object *) self)->type;
682
683 TRY
684 {
685 type = make_cv_type (0, 1, type, NULL);
686 }
687 CATCH (except, RETURN_MASK_ALL)
688 {
689 GDB_PY_HANDLE_EXCEPTION (except);
690 }
691 END_CATCH
692
693 return type_to_type_object (type);
694 }
695
696 /* Return an unqualified type variant. */
697 static PyObject *
698 typy_unqualified (PyObject *self, PyObject *args)
699 {
700 struct type *type = ((type_object *) self)->type;
701
702 TRY
703 {
704 type = make_cv_type (0, 0, type, NULL);
705 }
706 CATCH (except, RETURN_MASK_ALL)
707 {
708 GDB_PY_HANDLE_EXCEPTION (except);
709 }
710 END_CATCH
711
712 return type_to_type_object (type);
713 }
714
715 /* Return the size of the type represented by SELF, in bytes. */
716 static PyObject *
717 typy_get_sizeof (PyObject *self, void *closure)
718 {
719 struct type *type = ((type_object *) self)->type;
720
721 TRY
722 {
723 check_typedef (type);
724 }
725 CATCH (except, RETURN_MASK_ALL)
726 {
727 }
728 END_CATCH
729
730 /* Ignore exceptions. */
731
732 return gdb_py_long_from_longest (TYPE_LENGTH (type));
733 }
734
735 static struct type *
736 typy_lookup_typename (const char *type_name, const struct block *block)
737 {
738 struct type *type = NULL;
739
740 TRY
741 {
742 if (startswith (type_name, "struct "))
743 type = lookup_struct (type_name + 7, NULL);
744 else if (startswith (type_name, "union "))
745 type = lookup_union (type_name + 6, NULL);
746 else if (startswith (type_name, "enum "))
747 type = lookup_enum (type_name + 5, NULL);
748 else
749 type = lookup_typename (python_language, python_gdbarch,
750 type_name, block, 0);
751 }
752 CATCH (except, RETURN_MASK_ALL)
753 {
754 GDB_PY_HANDLE_EXCEPTION (except);
755 }
756 END_CATCH
757
758 return type;
759 }
760
761 static struct type *
762 typy_lookup_type (struct demangle_component *demangled,
763 const struct block *block)
764 {
765 struct type *type, *rtype = NULL;
766 char *type_name = NULL;
767 enum demangle_component_type demangled_type;
768
769 /* Save the type: typy_lookup_type() may (indirectly) overwrite
770 memory pointed by demangled. */
771 demangled_type = demangled->type;
772
773 if (demangled_type == DEMANGLE_COMPONENT_POINTER
774 || demangled_type == DEMANGLE_COMPONENT_REFERENCE
775 || demangled_type == DEMANGLE_COMPONENT_CONST
776 || demangled_type == DEMANGLE_COMPONENT_VOLATILE)
777 {
778 type = typy_lookup_type (demangled->u.s_binary.left, block);
779 if (! type)
780 return NULL;
781
782 TRY
783 {
784 /* If the demangled_type matches with one of the types
785 below, run the corresponding function and save the type
786 to return later. We cannot just return here as we are in
787 an exception handler. */
788 switch (demangled_type)
789 {
790 case DEMANGLE_COMPONENT_REFERENCE:
791 rtype = lookup_reference_type (type);
792 break;
793 case DEMANGLE_COMPONENT_POINTER:
794 rtype = lookup_pointer_type (type);
795 break;
796 case DEMANGLE_COMPONENT_CONST:
797 rtype = make_cv_type (1, 0, type, NULL);
798 break;
799 case DEMANGLE_COMPONENT_VOLATILE:
800 rtype = make_cv_type (0, 1, type, NULL);
801 break;
802 }
803 }
804 CATCH (except, RETURN_MASK_ALL)
805 {
806 GDB_PY_HANDLE_EXCEPTION (except);
807 }
808 END_CATCH
809 }
810
811 /* If we have a type from the switch statement above, just return
812 that. */
813 if (rtype)
814 return rtype;
815
816 /* We don't have a type, so lookup the type. */
817 type_name = cp_comp_to_string (demangled, 10);
818 type = typy_lookup_typename (type_name, block);
819 xfree (type_name);
820
821 return type;
822 }
823
824 /* This is a helper function for typy_template_argument that is used
825 when the type does not have template symbols attached. It works by
826 parsing the type name. This happens with compilers, like older
827 versions of GCC, that do not emit DW_TAG_template_*. */
828
829 static PyObject *
830 typy_legacy_template_argument (struct type *type, const struct block *block,
831 int argno)
832 {
833 int i;
834 struct demangle_component *demangled;
835 std::unique_ptr<demangle_parse_info> info;
836 const char *err;
837 struct type *argtype;
838 struct cleanup *cleanup;
839
840 if (TYPE_NAME (type) == NULL)
841 {
842 PyErr_SetString (PyExc_RuntimeError, _("Null type name."));
843 return NULL;
844 }
845
846 TRY
847 {
848 /* Note -- this is not thread-safe. */
849 info = cp_demangled_name_to_comp (TYPE_NAME (type), &err);
850 }
851 CATCH (except, RETURN_MASK_ALL)
852 {
853 GDB_PY_HANDLE_EXCEPTION (except);
854 }
855 END_CATCH
856
857 if (! info)
858 {
859 PyErr_SetString (PyExc_RuntimeError, err);
860 return NULL;
861 }
862 demangled = info->tree;
863
864 /* Strip off component names. */
865 while (demangled->type == DEMANGLE_COMPONENT_QUAL_NAME
866 || demangled->type == DEMANGLE_COMPONENT_LOCAL_NAME)
867 demangled = demangled->u.s_binary.right;
868
869 if (demangled->type != DEMANGLE_COMPONENT_TEMPLATE)
870 {
871 PyErr_SetString (PyExc_RuntimeError, _("Type is not a template."));
872 return NULL;
873 }
874
875 /* Skip from the template to the arguments. */
876 demangled = demangled->u.s_binary.right;
877
878 for (i = 0; demangled && i < argno; ++i)
879 demangled = demangled->u.s_binary.right;
880
881 if (! demangled)
882 {
883 PyErr_Format (PyExc_RuntimeError, _("No argument %d in template."),
884 argno);
885 return NULL;
886 }
887
888 argtype = typy_lookup_type (demangled->u.s_binary.left, block);
889 if (! argtype)
890 return NULL;
891
892 return type_to_type_object (argtype);
893 }
894
895 static PyObject *
896 typy_template_argument (PyObject *self, PyObject *args)
897 {
898 int argno;
899 struct type *type = ((type_object *) self)->type;
900 const struct block *block = NULL;
901 PyObject *block_obj = NULL;
902 struct symbol *sym;
903 struct value *val = NULL;
904
905 if (! PyArg_ParseTuple (args, "i|O", &argno, &block_obj))
906 return NULL;
907
908 if (block_obj)
909 {
910 block = block_object_to_block (block_obj);
911 if (! block)
912 {
913 PyErr_SetString (PyExc_RuntimeError,
914 _("Second argument must be block."));
915 return NULL;
916 }
917 }
918
919 TRY
920 {
921 type = check_typedef (type);
922 if (TYPE_CODE (type) == TYPE_CODE_REF)
923 type = check_typedef (TYPE_TARGET_TYPE (type));
924 }
925 CATCH (except, RETURN_MASK_ALL)
926 {
927 GDB_PY_HANDLE_EXCEPTION (except);
928 }
929 END_CATCH
930
931 /* We might not have DW_TAG_template_*, so try to parse the type's
932 name. This is inefficient if we do not have a template type --
933 but that is going to wind up as an error anyhow. */
934 if (! TYPE_N_TEMPLATE_ARGUMENTS (type))
935 return typy_legacy_template_argument (type, block, argno);
936
937 if (argno >= TYPE_N_TEMPLATE_ARGUMENTS (type))
938 {
939 PyErr_Format (PyExc_RuntimeError, _("No argument %d in template."),
940 argno);
941 return NULL;
942 }
943
944 sym = TYPE_TEMPLATE_ARGUMENT (type, argno);
945 if (SYMBOL_CLASS (sym) == LOC_TYPEDEF)
946 return type_to_type_object (SYMBOL_TYPE (sym));
947 else if (SYMBOL_CLASS (sym) == LOC_OPTIMIZED_OUT)
948 {
949 PyErr_Format (PyExc_RuntimeError,
950 _("Template argument is optimized out"));
951 return NULL;
952 }
953
954 TRY
955 {
956 val = value_of_variable (sym, block);
957 }
958 CATCH (except, RETURN_MASK_ALL)
959 {
960 GDB_PY_HANDLE_EXCEPTION (except);
961 }
962 END_CATCH
963
964 return value_to_value_object (val);
965 }
966
967 static PyObject *
968 typy_str (PyObject *self)
969 {
970 std::string thetype;
971 PyObject *result;
972
973 TRY
974 {
975 struct cleanup *old_chain;
976 struct ui_file *stb;
977
978 stb = mem_fileopen ();
979 old_chain = make_cleanup_ui_file_delete (stb);
980
981 LA_PRINT_TYPE (type_object_to_type (self), "", stb, -1, 0,
982 &type_print_raw_options);
983
984 thetype = ui_file_as_string (stb);
985 do_cleanups (old_chain);
986 }
987 CATCH (except, RETURN_MASK_ALL)
988 {
989 GDB_PY_HANDLE_EXCEPTION (except);
990 }
991 END_CATCH
992
993 result = PyUnicode_Decode (thetype.c_str (), thetype.length (),
994 host_charset (), NULL);
995
996 return result;
997 }
998
999 /* Implement the richcompare method. */
1000
1001 static PyObject *
1002 typy_richcompare (PyObject *self, PyObject *other, int op)
1003 {
1004 int result = Py_NE;
1005 struct type *type1 = type_object_to_type (self);
1006 struct type *type2 = type_object_to_type (other);
1007
1008 /* We can only compare ourselves to another Type object, and only
1009 for equality or inequality. */
1010 if (type2 == NULL || (op != Py_EQ && op != Py_NE))
1011 {
1012 Py_INCREF (Py_NotImplemented);
1013 return Py_NotImplemented;
1014 }
1015
1016 if (type1 == type2)
1017 result = Py_EQ;
1018 else
1019 {
1020 TRY
1021 {
1022 result = types_deeply_equal (type1, type2);
1023 }
1024 CATCH (except, RETURN_MASK_ALL)
1025 {
1026 /* If there is a GDB exception, a comparison is not capable
1027 (or trusted), so exit. */
1028 GDB_PY_HANDLE_EXCEPTION (except);
1029 }
1030 END_CATCH
1031 }
1032
1033 if (op == (result ? Py_EQ : Py_NE))
1034 Py_RETURN_TRUE;
1035 Py_RETURN_FALSE;
1036 }
1037
1038 \f
1039
1040 static const struct objfile_data *typy_objfile_data_key;
1041
1042 static void
1043 save_objfile_types (struct objfile *objfile, void *datum)
1044 {
1045 type_object *obj = (type_object *) datum;
1046 htab_t copied_types;
1047
1048 if (!gdb_python_initialized)
1049 return;
1050
1051 /* This prevents another thread from freeing the objects we're
1052 operating on. */
1053 gdbpy_enter enter_py (get_objfile_arch (objfile), current_language);
1054
1055 copied_types = create_copied_types_hash (objfile);
1056
1057 while (obj)
1058 {
1059 type_object *next = obj->next;
1060
1061 htab_empty (copied_types);
1062
1063 obj->type = copy_type_recursive (objfile, obj->type, copied_types);
1064
1065 obj->next = NULL;
1066 obj->prev = NULL;
1067
1068 obj = next;
1069 }
1070
1071 htab_delete (copied_types);
1072 }
1073
1074 static void
1075 set_type (type_object *obj, struct type *type)
1076 {
1077 obj->type = type;
1078 obj->prev = NULL;
1079 if (type && TYPE_OBJFILE (type))
1080 {
1081 struct objfile *objfile = TYPE_OBJFILE (type);
1082
1083 obj->next = ((struct pyty_type_object *)
1084 objfile_data (objfile, typy_objfile_data_key));
1085 if (obj->next)
1086 obj->next->prev = obj;
1087 set_objfile_data (objfile, typy_objfile_data_key, obj);
1088 }
1089 else
1090 obj->next = NULL;
1091 }
1092
1093 static void
1094 typy_dealloc (PyObject *obj)
1095 {
1096 type_object *type = (type_object *) obj;
1097
1098 if (type->prev)
1099 type->prev->next = type->next;
1100 else if (type->type && TYPE_OBJFILE (type->type))
1101 {
1102 /* Must reset head of list. */
1103 struct objfile *objfile = TYPE_OBJFILE (type->type);
1104
1105 if (objfile)
1106 set_objfile_data (objfile, typy_objfile_data_key, type->next);
1107 }
1108 if (type->next)
1109 type->next->prev = type->prev;
1110
1111 Py_TYPE (type)->tp_free (type);
1112 }
1113
1114 /* Return number of fields ("length" of the field dictionary). */
1115
1116 static Py_ssize_t
1117 typy_length (PyObject *self)
1118 {
1119 struct type *type = ((type_object *) self)->type;
1120
1121 type = typy_get_composite (type);
1122 if (type == NULL)
1123 return -1;
1124
1125 return TYPE_NFIELDS (type);
1126 }
1127
1128 /* Implements boolean evaluation of gdb.Type. Handle this like other
1129 Python objects that don't have a meaningful truth value -- all
1130 values are true. */
1131
1132 static int
1133 typy_nonzero (PyObject *self)
1134 {
1135 return 1;
1136 }
1137
1138 /* Return optimized out value of this type. */
1139
1140 static PyObject *
1141 typy_optimized_out (PyObject *self, PyObject *args)
1142 {
1143 struct type *type = ((type_object *) self)->type;
1144
1145 return value_to_value_object (allocate_optimized_out_value (type));
1146 }
1147
1148 /* Return a gdb.Field object for the field named by the argument. */
1149
1150 static PyObject *
1151 typy_getitem (PyObject *self, PyObject *key)
1152 {
1153 struct type *type = ((type_object *) self)->type;
1154 int i;
1155
1156 gdb::unique_xmalloc_ptr<char> field = python_string_to_host_string (key);
1157 if (field == NULL)
1158 return NULL;
1159
1160 /* We want just fields of this type, not of base types, so instead of
1161 using lookup_struct_elt_type, portions of that function are
1162 copied here. */
1163
1164 type = typy_get_composite (type);
1165 if (type == NULL)
1166 return NULL;
1167
1168 for (i = 0; i < TYPE_NFIELDS (type); i++)
1169 {
1170 const char *t_field_name = TYPE_FIELD_NAME (type, i);
1171
1172 if (t_field_name && (strcmp_iw (t_field_name, field.get ()) == 0))
1173 {
1174 return convert_field (type, i);
1175 }
1176 }
1177 PyErr_SetObject (PyExc_KeyError, key);
1178 return NULL;
1179 }
1180
1181 /* Implement the "get" method on the type object. This is the
1182 same as getitem if the key is present, but returns the supplied
1183 default value or None if the key is not found. */
1184
1185 static PyObject *
1186 typy_get (PyObject *self, PyObject *args)
1187 {
1188 PyObject *key, *defval = Py_None, *result;
1189
1190 if (!PyArg_UnpackTuple (args, "get", 1, 2, &key, &defval))
1191 return NULL;
1192
1193 result = typy_getitem (self, key);
1194 if (result != NULL)
1195 return result;
1196
1197 /* typy_getitem returned error status. If the exception is
1198 KeyError, clear the exception status and return the defval
1199 instead. Otherwise return the exception unchanged. */
1200 if (!PyErr_ExceptionMatches (PyExc_KeyError))
1201 return NULL;
1202
1203 PyErr_Clear ();
1204 Py_INCREF (defval);
1205 return defval;
1206 }
1207
1208 /* Implement the "has_key" method on the type object. */
1209
1210 static PyObject *
1211 typy_has_key (PyObject *self, PyObject *args)
1212 {
1213 struct type *type = ((type_object *) self)->type;
1214 const char *field;
1215 int i;
1216
1217 if (!PyArg_ParseTuple (args, "s", &field))
1218 return NULL;
1219
1220 /* We want just fields of this type, not of base types, so instead of
1221 using lookup_struct_elt_type, portions of that function are
1222 copied here. */
1223
1224 type = typy_get_composite (type);
1225 if (type == NULL)
1226 return NULL;
1227
1228 for (i = 0; i < TYPE_NFIELDS (type); i++)
1229 {
1230 const char *t_field_name = TYPE_FIELD_NAME (type, i);
1231
1232 if (t_field_name && (strcmp_iw (t_field_name, field) == 0))
1233 Py_RETURN_TRUE;
1234 }
1235 Py_RETURN_FALSE;
1236 }
1237
1238 /* Make an iterator object to iterate over keys, values, or items. */
1239
1240 static PyObject *
1241 typy_make_iter (PyObject *self, enum gdbpy_iter_kind kind)
1242 {
1243 typy_iterator_object *typy_iter_obj;
1244
1245 /* Check that "self" is a structure or union type. */
1246 if (typy_get_composite (((type_object *) self)->type) == NULL)
1247 return NULL;
1248
1249 typy_iter_obj = PyObject_New (typy_iterator_object,
1250 &type_iterator_object_type);
1251 if (typy_iter_obj == NULL)
1252 return NULL;
1253
1254 typy_iter_obj->field = 0;
1255 typy_iter_obj->kind = kind;
1256 Py_INCREF (self);
1257 typy_iter_obj->source = (type_object *) self;
1258
1259 return (PyObject *) typy_iter_obj;
1260 }
1261
1262 /* iteritems() method. */
1263
1264 static PyObject *
1265 typy_iteritems (PyObject *self, PyObject *args)
1266 {
1267 return typy_make_iter (self, iter_items);
1268 }
1269
1270 /* iterkeys() method. */
1271
1272 static PyObject *
1273 typy_iterkeys (PyObject *self, PyObject *args)
1274 {
1275 return typy_make_iter (self, iter_keys);
1276 }
1277
1278 /* Iterating over the class, same as iterkeys except for the function
1279 signature. */
1280
1281 static PyObject *
1282 typy_iter (PyObject *self)
1283 {
1284 return typy_make_iter (self, iter_keys);
1285 }
1286
1287 /* itervalues() method. */
1288
1289 static PyObject *
1290 typy_itervalues (PyObject *self, PyObject *args)
1291 {
1292 return typy_make_iter (self, iter_values);
1293 }
1294
1295 /* Return a reference to the type iterator. */
1296
1297 static PyObject *
1298 typy_iterator_iter (PyObject *self)
1299 {
1300 Py_INCREF (self);
1301 return self;
1302 }
1303
1304 /* Return the next field in the iteration through the list of fields
1305 of the type. */
1306
1307 static PyObject *
1308 typy_iterator_iternext (PyObject *self)
1309 {
1310 typy_iterator_object *iter_obj = (typy_iterator_object *) self;
1311 struct type *type = iter_obj->source->type;
1312 PyObject *result;
1313
1314 if (iter_obj->field < TYPE_NFIELDS (type))
1315 {
1316 result = make_fielditem (type, iter_obj->field, iter_obj->kind);
1317 if (result != NULL)
1318 iter_obj->field++;
1319 return result;
1320 }
1321
1322 return NULL;
1323 }
1324
1325 static void
1326 typy_iterator_dealloc (PyObject *obj)
1327 {
1328 typy_iterator_object *iter_obj = (typy_iterator_object *) obj;
1329
1330 Py_DECREF (iter_obj->source);
1331 }
1332
1333 /* Create a new Type referring to TYPE. */
1334 PyObject *
1335 type_to_type_object (struct type *type)
1336 {
1337 type_object *type_obj;
1338
1339 type_obj = PyObject_New (type_object, &type_object_type);
1340 if (type_obj)
1341 set_type (type_obj, type);
1342
1343 return (PyObject *) type_obj;
1344 }
1345
1346 struct type *
1347 type_object_to_type (PyObject *obj)
1348 {
1349 if (! PyObject_TypeCheck (obj, &type_object_type))
1350 return NULL;
1351 return ((type_object *) obj)->type;
1352 }
1353
1354 \f
1355
1356 /* Implementation of gdb.lookup_type. */
1357 PyObject *
1358 gdbpy_lookup_type (PyObject *self, PyObject *args, PyObject *kw)
1359 {
1360 static char *keywords[] = { "name", "block", NULL };
1361 const char *type_name = NULL;
1362 struct type *type = NULL;
1363 PyObject *block_obj = NULL;
1364 const struct block *block = NULL;
1365
1366 if (! PyArg_ParseTupleAndKeywords (args, kw, "s|O", keywords,
1367 &type_name, &block_obj))
1368 return NULL;
1369
1370 if (block_obj)
1371 {
1372 block = block_object_to_block (block_obj);
1373 if (! block)
1374 {
1375 PyErr_SetString (PyExc_RuntimeError,
1376 _("'block' argument must be a Block."));
1377 return NULL;
1378 }
1379 }
1380
1381 type = typy_lookup_typename (type_name, block);
1382 if (! type)
1383 return NULL;
1384
1385 return (PyObject *) type_to_type_object (type);
1386 }
1387
1388 int
1389 gdbpy_initialize_types (void)
1390 {
1391 int i;
1392
1393 typy_objfile_data_key
1394 = register_objfile_data_with_cleanup (save_objfile_types, NULL);
1395
1396 if (PyType_Ready (&type_object_type) < 0)
1397 return -1;
1398 if (PyType_Ready (&field_object_type) < 0)
1399 return -1;
1400 if (PyType_Ready (&type_iterator_object_type) < 0)
1401 return -1;
1402
1403 for (i = 0; pyty_codes[i].name; ++i)
1404 {
1405 if (PyModule_AddIntConstant (gdb_module,
1406 /* Cast needed for Python 2.4. */
1407 (char *) pyty_codes[i].name,
1408 pyty_codes[i].code) < 0)
1409 return -1;
1410 }
1411
1412 if (gdb_pymodule_addobject (gdb_module, "Type",
1413 (PyObject *) &type_object_type) < 0)
1414 return -1;
1415
1416 if (gdb_pymodule_addobject (gdb_module, "TypeIterator",
1417 (PyObject *) &type_iterator_object_type) < 0)
1418 return -1;
1419
1420 return gdb_pymodule_addobject (gdb_module, "Field",
1421 (PyObject *) &field_object_type);
1422 }
1423
1424 \f
1425
1426 static PyGetSetDef type_object_getset[] =
1427 {
1428 { "code", typy_get_code, NULL,
1429 "The code for this type.", NULL },
1430 { "name", typy_get_name, NULL,
1431 "The name for this type, or None.", NULL },
1432 { "sizeof", typy_get_sizeof, NULL,
1433 "The size of this type, in bytes.", NULL },
1434 { "tag", typy_get_tag, NULL,
1435 "The tag name for this type, or None.", NULL },
1436 { NULL }
1437 };
1438
1439 static PyMethodDef type_object_methods[] =
1440 {
1441 { "array", typy_array, METH_VARARGS,
1442 "array ([LOW_BOUND,] HIGH_BOUND) -> Type\n\
1443 Return a type which represents an array of objects of this type.\n\
1444 The bounds of the array are [LOW_BOUND, HIGH_BOUND] inclusive.\n\
1445 If LOW_BOUND is omitted, a value of zero is used." },
1446 { "vector", typy_vector, METH_VARARGS,
1447 "vector ([LOW_BOUND,] HIGH_BOUND) -> Type\n\
1448 Return a type which represents a vector of objects of this type.\n\
1449 The bounds of the array are [LOW_BOUND, HIGH_BOUND] inclusive.\n\
1450 If LOW_BOUND is omitted, a value of zero is used.\n\
1451 Vectors differ from arrays in that if the current language has C-style\n\
1452 arrays, vectors don't decay to a pointer to the first element.\n\
1453 They are first class values." },
1454 { "__contains__", typy_has_key, METH_VARARGS,
1455 "T.__contains__(k) -> True if T has a field named k, else False" },
1456 { "const", typy_const, METH_NOARGS,
1457 "const () -> Type\n\
1458 Return a const variant of this type." },
1459 { "optimized_out", typy_optimized_out, METH_NOARGS,
1460 "optimized_out() -> Value\n\
1461 Return optimized out value of this type." },
1462 { "fields", typy_fields, METH_NOARGS,
1463 "fields () -> list\n\
1464 Return a list holding all the fields of this type.\n\
1465 Each field is a gdb.Field object." },
1466 { "get", typy_get, METH_VARARGS,
1467 "T.get(k[,default]) -> returns field named k in T, if it exists;\n\
1468 otherwise returns default, if supplied, or None if not." },
1469 { "has_key", typy_has_key, METH_VARARGS,
1470 "T.has_key(k) -> True if T has a field named k, else False" },
1471 { "items", typy_items, METH_NOARGS,
1472 "items () -> list\n\
1473 Return a list of (name, field) pairs of this type.\n\
1474 Each field is a gdb.Field object." },
1475 { "iteritems", typy_iteritems, METH_NOARGS,
1476 "iteritems () -> an iterator over the (name, field)\n\
1477 pairs of this type. Each field is a gdb.Field object." },
1478 { "iterkeys", typy_iterkeys, METH_NOARGS,
1479 "iterkeys () -> an iterator over the field names of this type." },
1480 { "itervalues", typy_itervalues, METH_NOARGS,
1481 "itervalues () -> an iterator over the fields of this type.\n\
1482 Each field is a gdb.Field object." },
1483 { "keys", typy_field_names, METH_NOARGS,
1484 "keys () -> list\n\
1485 Return a list holding all the fields names of this type." },
1486 { "pointer", typy_pointer, METH_NOARGS,
1487 "pointer () -> Type\n\
1488 Return a type of pointer to this type." },
1489 { "range", typy_range, METH_NOARGS,
1490 "range () -> tuple\n\
1491 Return a tuple containing the lower and upper range for this type."},
1492 { "reference", typy_reference, METH_NOARGS,
1493 "reference () -> Type\n\
1494 Return a type of reference to this type." },
1495 { "strip_typedefs", typy_strip_typedefs, METH_NOARGS,
1496 "strip_typedefs () -> Type\n\
1497 Return a type formed by stripping this type of all typedefs."},
1498 { "target", typy_target, METH_NOARGS,
1499 "target () -> Type\n\
1500 Return the target type of this type." },
1501 { "template_argument", typy_template_argument, METH_VARARGS,
1502 "template_argument (arg, [block]) -> Type\n\
1503 Return the type of a template argument." },
1504 { "unqualified", typy_unqualified, METH_NOARGS,
1505 "unqualified () -> Type\n\
1506 Return a variant of this type without const or volatile attributes." },
1507 { "values", typy_values, METH_NOARGS,
1508 "values () -> list\n\
1509 Return a list holding all the fields of this type.\n\
1510 Each field is a gdb.Field object." },
1511 { "volatile", typy_volatile, METH_NOARGS,
1512 "volatile () -> Type\n\
1513 Return a volatile variant of this type" },
1514 { NULL }
1515 };
1516
1517 static PyNumberMethods type_object_as_number = {
1518 NULL, /* nb_add */
1519 NULL, /* nb_subtract */
1520 NULL, /* nb_multiply */
1521 #ifndef IS_PY3K
1522 NULL, /* nb_divide */
1523 #endif
1524 NULL, /* nb_remainder */
1525 NULL, /* nb_divmod */
1526 NULL, /* nb_power */
1527 NULL, /* nb_negative */
1528 NULL, /* nb_positive */
1529 NULL, /* nb_absolute */
1530 typy_nonzero, /* nb_nonzero */
1531 NULL, /* nb_invert */
1532 NULL, /* nb_lshift */
1533 NULL, /* nb_rshift */
1534 NULL, /* nb_and */
1535 NULL, /* nb_xor */
1536 NULL, /* nb_or */
1537 #ifdef IS_PY3K
1538 NULL, /* nb_int */
1539 NULL, /* reserved */
1540 #else
1541 NULL, /* nb_coerce */
1542 NULL, /* nb_int */
1543 NULL, /* nb_long */
1544 #endif
1545 NULL, /* nb_float */
1546 #ifndef IS_PY3K
1547 NULL, /* nb_oct */
1548 NULL /* nb_hex */
1549 #endif
1550 };
1551
1552 static PyMappingMethods typy_mapping = {
1553 typy_length,
1554 typy_getitem,
1555 NULL /* no "set" method */
1556 };
1557
1558 PyTypeObject type_object_type =
1559 {
1560 PyVarObject_HEAD_INIT (NULL, 0)
1561 "gdb.Type", /*tp_name*/
1562 sizeof (type_object), /*tp_basicsize*/
1563 0, /*tp_itemsize*/
1564 typy_dealloc, /*tp_dealloc*/
1565 0, /*tp_print*/
1566 0, /*tp_getattr*/
1567 0, /*tp_setattr*/
1568 0, /*tp_compare*/
1569 0, /*tp_repr*/
1570 &type_object_as_number, /*tp_as_number*/
1571 0, /*tp_as_sequence*/
1572 &typy_mapping, /*tp_as_mapping*/
1573 0, /*tp_hash */
1574 0, /*tp_call*/
1575 typy_str, /*tp_str*/
1576 0, /*tp_getattro*/
1577 0, /*tp_setattro*/
1578 0, /*tp_as_buffer*/
1579 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_ITER, /*tp_flags*/
1580 "GDB type object", /* tp_doc */
1581 0, /* tp_traverse */
1582 0, /* tp_clear */
1583 typy_richcompare, /* tp_richcompare */
1584 0, /* tp_weaklistoffset */
1585 typy_iter, /* tp_iter */
1586 0, /* tp_iternext */
1587 type_object_methods, /* tp_methods */
1588 0, /* tp_members */
1589 type_object_getset, /* tp_getset */
1590 0, /* tp_base */
1591 0, /* tp_dict */
1592 0, /* tp_descr_get */
1593 0, /* tp_descr_set */
1594 0, /* tp_dictoffset */
1595 0, /* tp_init */
1596 0, /* tp_alloc */
1597 0, /* tp_new */
1598 };
1599
1600 static PyGetSetDef field_object_getset[] =
1601 {
1602 { "__dict__", gdb_py_generic_dict, NULL,
1603 "The __dict__ for this field.", &field_object_type },
1604 { NULL }
1605 };
1606
1607 PyTypeObject field_object_type =
1608 {
1609 PyVarObject_HEAD_INIT (NULL, 0)
1610 "gdb.Field", /*tp_name*/
1611 sizeof (field_object), /*tp_basicsize*/
1612 0, /*tp_itemsize*/
1613 field_dealloc, /*tp_dealloc*/
1614 0, /*tp_print*/
1615 0, /*tp_getattr*/
1616 0, /*tp_setattr*/
1617 0, /*tp_compare*/
1618 0, /*tp_repr*/
1619 0, /*tp_as_number*/
1620 0, /*tp_as_sequence*/
1621 0, /*tp_as_mapping*/
1622 0, /*tp_hash */
1623 0, /*tp_call*/
1624 0, /*tp_str*/
1625 0, /*tp_getattro*/
1626 0, /*tp_setattro*/
1627 0, /*tp_as_buffer*/
1628 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_ITER, /*tp_flags*/
1629 "GDB field object", /* tp_doc */
1630 0, /* tp_traverse */
1631 0, /* tp_clear */
1632 0, /* tp_richcompare */
1633 0, /* tp_weaklistoffset */
1634 0, /* tp_iter */
1635 0, /* tp_iternext */
1636 0, /* tp_methods */
1637 0, /* tp_members */
1638 field_object_getset, /* tp_getset */
1639 0, /* tp_base */
1640 0, /* tp_dict */
1641 0, /* tp_descr_get */
1642 0, /* tp_descr_set */
1643 offsetof (field_object, dict), /* tp_dictoffset */
1644 0, /* tp_init */
1645 0, /* tp_alloc */
1646 0, /* tp_new */
1647 };
1648
1649 PyTypeObject type_iterator_object_type = {
1650 PyVarObject_HEAD_INIT (NULL, 0)
1651 "gdb.TypeIterator", /*tp_name*/
1652 sizeof (typy_iterator_object), /*tp_basicsize*/
1653 0, /*tp_itemsize*/
1654 typy_iterator_dealloc, /*tp_dealloc*/
1655 0, /*tp_print*/
1656 0, /*tp_getattr*/
1657 0, /*tp_setattr*/
1658 0, /*tp_compare*/
1659 0, /*tp_repr*/
1660 0, /*tp_as_number*/
1661 0, /*tp_as_sequence*/
1662 0, /*tp_as_mapping*/
1663 0, /*tp_hash */
1664 0, /*tp_call*/
1665 0, /*tp_str*/
1666 0, /*tp_getattro*/
1667 0, /*tp_setattro*/
1668 0, /*tp_as_buffer*/
1669 Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_ITER, /*tp_flags*/
1670 "GDB type iterator object", /*tp_doc */
1671 0, /*tp_traverse */
1672 0, /*tp_clear */
1673 0, /*tp_richcompare */
1674 0, /*tp_weaklistoffset */
1675 typy_iterator_iter, /*tp_iter */
1676 typy_iterator_iternext, /*tp_iternext */
1677 0 /*tp_methods */
1678 };