17"""Utilities for working with gdb.Types."""
23 """Return the "basic" type of a type.
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
30 and typedefs/references converted to the underlying type.
34 type_.code == gdb.TYPE_CODE_REF
35 or type_.code == gdb.TYPE_CODE_RVALUE_REF
36 or type_.code == gdb.TYPE_CODE_TYPEDEF
38 if type_.code == gdb.TYPE_CODE_REF
or type_.code == gdb.TYPE_CODE_RVALUE_REF:
39 type_ = type_.target()
41 type_ = type_.strip_typedefs()
42 return type_.unqualified()
46 """Return True if a type has the specified field.
49 type_: The type to examine.
50 It must be one of gdb.TYPE_CODE_STRUCT, gdb.TYPE_CODE_UNION.
51 field: The name of the field to look up.
54 True if the field is present either in type_ or any baseclass.
57 TypeError: The type is not a struct or union.
61 if type_.code != gdb.TYPE_CODE_STRUCT
and type_.code != gdb.TYPE_CODE_UNION:
62 raise TypeError(
"not a struct or union")
63 for f
in type_.fields():
75 """Return a dictionary from a program's enum type.
78 enum_type: The enum to compute the dictionary for.
81 The dictionary of the enum.
84 TypeError: The type is not an enum.
87 if enum_type.code != gdb.TYPE_CODE_ENUM:
88 raise TypeError(
"not an enum type")
90 for field
in enum_type.fields():
92 enum_dict[field.name] = field.enumval
97 """Return an iterator that recursively traverses anonymous fields.
100 type_: The type to traverse. It should be one of
101 gdb.TYPE_CODE_STRUCT or gdb.TYPE_CODE_UNION.
104 an iterator similar to gdb.Type.iteritems(), i.e., it returns
105 pairs of key, value, but for any anonymous struct or union
106 field that field is traversed recursively, depth-first.
108 for k, v
in type_.iteritems():
117 """The base class for type printers.
119 Instances of this type can be used to substitute type names during
122 A type printer must have at least 'name' and 'enabled' attributes,
123 and supply an 'instantiate' method.
125 The 'instantiate' method must either return None, or return an
126 object which has a 'recognize' method. This method must accept a
127 gdb.Type argument and either return None, meaning that the type
128 was not recognized, or a string naming the type.
141 for printer
in plist:
143 inst = printer.instantiate()
150 "Return a list of the enabled type recognizers for the current context."
165 """Apply the given list of type recognizers to the type TYPE_OBJ.
166 If any recognizer in the list recognizes TYPE_OBJ, returns the name
167 given by the recognizer. Otherwise, this returns None."""
168 for r
in recognizers:
169 result = r.recognize(type_obj)
170 if result
is not None:
176 """Register a type printer.
177 PRINTER is the type printer instance.
178 LOCUS is either an objfile, a program space, or None, indicating
179 global registration."""
183 locus.type_printers.insert(0, printer)
apply_type_recognizers(recognizers, type_obj)
register_type_printer(locus, printer)
make_enum_dict(enum_type)
_get_some_type_recognizers(result, plist)