summaryrefslogtreecommitdiff
path: root/gdb/gdb-gdb.py
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2010-01-15 09:15:46 +0000
committerJoel Brobecker <brobecker@gnat.com>2010-01-15 09:15:46 +0000
commitebcba207b6fffdb46b36515e41250771adf686bf (patch)
tree3ebed031126c03b59b0e839c45f14a8277b564ef /gdb/gdb-gdb.py
parent18b61611f5bcc235feb5ceebf19954713feee380 (diff)
downloadgdb-ebcba207b6fffdb46b36515e41250771adf686bf.tar.gz
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.py31
1 files changed, 26 insertions, 5 deletions
diff --git a/gdb/gdb-gdb.py b/gdb/gdb-gdb.py
index 49695b54bea..44133abd498 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):