diff options
author | Joel Brobecker <brobecker@gnat.com> | 2010-01-15 09:15:46 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2010-01-15 09:15:46 +0000 |
commit | c389c3dc73d399d4292e62fa157b32697bccf520 (patch) | |
tree | c789cbbb0ee338d887224bf22bf9de5555ca190a /gdb/gdb-gdb.py | |
parent | 41263c058cc15b551b254ac040a29886edd7d8df (diff) | |
download | gdb-c389c3dc73d399d4292e62fa157b32697bccf520.zip gdb-c389c3dc73d399d4292e62fa157b32697bccf520.tar.gz gdb-c389c3dc73d399d4292e62fa157b32697bccf520.tar.bz2 |
Enhance gdb-gdb.py to handle main_type.type_specific.
* gdb-gdb.py: Print the type-specific part of struct main_type.
Diffstat (limited to 'gdb/gdb-gdb.py')
-rw-r--r-- | gdb/gdb-gdb.py | 31 |
1 files changed, 26 insertions, 5 deletions
diff --git a/gdb/gdb-gdb.py b/gdb/gdb-gdb.py index 49695b5..44133ab 100644 --- a/gdb/gdb-gdb.py +++ b/gdb/gdb-gdb.py @@ -187,6 +187,30 @@ class StructMainTypePrettyPrinter: if b['high_undefined'] != 0: high += " (undefined)" return "bounds = {%s, %s}" % (low, high) + def type_specific_img(self): + """Return a string image of the main_type type_specific union. + Only the relevant component of that union is printed (based on + the value of the type_specific_kind field. + """ + type_specific_kind = str(self.val['type_specific_field']) + type_specific = self.val['type_specific'] + if type_specific_kind == "TYPE_SPECIFIC_NONE": + img = 'type_specific_field = %s' % type_specific_kind + elif type_specific_kind == "TYPE_SPECIFIC_CPLUS_STUFF": + img = "cplus_stuff = %s" % type_specific['cplus_stuff'] + elif type_specific_kind == "TYPE_SPECIFIC_GNAT_STUFF": + img = ("gnat_stuff = {descriptive_type = %s}" + % type_specific['gnat_stuff']['descriptive_type']) + elif type_specific_kind == "TYPE_SPECIFIC_FLOATFORMAT": + img = "floatformat[0..1] = %s" % type_specific['floatformat'] + elif type_specific_kind == "TYPE_SPECIFIC_CALLING_CONVENTION": + img = ("calling_convention = %d" + % type_specific['calling_convention']) + else: + img = ("type_specific = ??? (unknown type_secific_kind: %s)" + % type_specific_kind) + return img + def to_string(self): """Return a pretty-printed image of our main_type. """ @@ -200,14 +224,11 @@ class StructMainTypePrettyPrinter: fields.append("vptr_basetype = %s" % self.val['vptr_basetype']) if self.val['nfields'] > 0: for fieldno in range(self.val['nfields']): - fields.append("field[%d]:") fields.append(self.struct_field_img(fieldno)) if self.val.type.code == gdb.TYPE_CODE_RANGE: fields.append(self.bounds_img()) - # FIXME: We need to print the type_specific field as well. - # But I will wait for a patch that introduces a discriminant. - # This will simplify the selection of the right component in - # that union. + fields.append(self.type_specific_img()) + return "\n{" + ",\n ".join(fields) + "}" def type_lookup_function(val): |