diff options
author | Joel Brobecker <brobecker@gnat.com> | 2007-01-05 05:49:56 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2007-01-05 05:49:56 +0000 |
commit | fa4028e95595b8aa602fa73aa47e592405f0397b (patch) | |
tree | c2c3e1f167b0f7fab1d440eb6bc7b5dcfa5dd932 /gdb/dwarf2read.c | |
parent | 20414cabefd9bfe3398e58193f59118b295904bf (diff) | |
download | gdb-fa4028e95595b8aa602fa73aa47e592405f0397b.zip gdb-fa4028e95595b8aa602fa73aa47e592405f0397b.tar.gz gdb-fa4028e95595b8aa602fa73aa47e592405f0397b.tar.bz2 |
* dwarf2read.c (partial_die_info): Add field has_byte_size.
(add_partial_symbol): Correct identification of external references.
(process_structure_scope): Likewise.
(read_partial_die): Handle DW_AT_byte_size attribute.
Diffstat (limited to 'gdb/dwarf2read.c')
-rw-r--r-- | gdb/dwarf2read.c | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c index 9059189..d917e29 100644 --- a/gdb/dwarf2read.c +++ b/gdb/dwarf2read.c @@ -1,7 +1,7 @@ /* DWARF 2 debugging format support for GDB. Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, - 2002, 2003, 2004, 2005, 2006 + 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. Adapted by Gary Funck (gary@intrepid.com), Intrepid Technology, @@ -467,6 +467,9 @@ struct partial_die_info computed. */ unsigned int scope_set : 1; + /* Flag set if the DIE has a byte_size attribute. */ + unsigned int has_byte_size : 1; + /* The name of this DIE. Normally the value of DW_AT_name, but sometimes DW_TAG_MIPS_linkage_name or a string computed in some other fashion. */ @@ -1979,12 +1982,16 @@ add_partial_symbol (struct partial_die_info *pdi, struct dwarf2_cu *cu) case DW_TAG_structure_type: case DW_TAG_union_type: case DW_TAG_enumeration_type: - /* Skip aggregate types without children, these are external - references. */ + /* Skip external references. The DWARF standard says in the section + about "Structure, Union, and Class Type Entries": "An incomplete + structure, union or class type is represented by a structure, + union or class entry that does not have a byte size attribute + and that has a DW_AT_declaration attribute." */ + if (!pdi->has_byte_size && pdi->is_declaration) + return; + /* NOTE: carlton/2003-10-07: See comment in new_symbol about static vs. global. */ - if (pdi->has_children == 0) - return; add_psymbol_to_list (actual_name, strlen (actual_name), STRUCT_DOMAIN, LOC_TYPEDEF, (cu->language == language_cplus @@ -4010,7 +4017,11 @@ process_structure_scope (struct die_info *die, struct dwarf2_cu *cu) child_die = sibling_die (child_die); } - if (die->child != NULL && ! die_is_declaration (die, cu)) + /* Do not consider external references. According to the DWARF standard, + these DIEs are identified by the fact that they have no byte_size + attribute, and a declaration attribute. */ + if (dwarf2_attr (die, DW_AT_byte_size, cu) != NULL + || !die_is_declaration (die, cu)) new_symbol (die, die->type, cu); processing_current_prefix = previous_prefix; @@ -5575,6 +5586,9 @@ read_partial_die (struct partial_die_info *part_die, part_die->has_stmt_list = 1; part_die->line_offset = DW_UNSND (&attr); break; + case DW_AT_byte_size: + part_die->has_byte_size = 1; + break; default: break; } |