diff options
author | Tom Tromey <tom@tromey.com> | 2022-09-23 16:23:41 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-10-08 09:00:06 -0600 |
commit | 4482b068b2b50878b7a03651318cd8cd32d698cf (patch) | |
tree | 994fc470803e33294c53636d1b32bffe7b6033e7 /gdb/dwarf2/index-write.c | |
parent | db95282ce93b6453bc533ea1dbe1637213daf59b (diff) | |
download | gdb-4482b068b2b50878b7a03651318cd8cd32d698cf.zip gdb-4482b068b2b50878b7a03651318cd8cd32d698cf.tar.gz gdb-4482b068b2b50878b7a03651318cd8cd32d698cf.tar.bz2 |
Merge both implementations of debug_names::insert
The class debug_names has two 'insert' overloads, but only one of them
is ever called externally, and it simply forwards to the other
implementation. It seems cleaner to me to have a single method, so
this patch merges the two.
Diffstat (limited to 'gdb/dwarf2/index-write.c')
-rw-r--r-- | gdb/dwarf2/index-write.c | 51 |
1 files changed, 24 insertions, 27 deletions
diff --git a/gdb/dwarf2/index-write.c b/gdb/dwarf2/index-write.c index 4cc0ee5..4827b59 100644 --- a/gdb/dwarf2/index-write.c +++ b/gdb/dwarf2/index-write.c @@ -519,10 +519,29 @@ public: enum class unit_kind { cu, tu }; /* Insert one symbol. */ - void insert (int dwarf_tag, const char *name, int cu_index, bool is_static, - unit_kind kind, enum language lang) + void insert (const cooked_index_entry *entry) { - if (lang == language_ada) + const auto it = m_cu_index_htab.find (entry->per_cu); + gdb_assert (it != m_cu_index_htab.cend ()); + const char *name = entry->full_name (&m_string_obstack); + + /* This is incorrect but it mirrors gdb's historical behavior; and + because the current .debug_names generation is also incorrect, + it seems better to follow what was done before, rather than + introduce a mismatch between the newer and older gdb. */ + dwarf_tag tag = entry->tag; + if (tag != DW_TAG_typedef && tag_is_type (tag)) + tag = DW_TAG_structure_type; + else if (tag == DW_TAG_enumerator || tag == DW_TAG_constant) + tag = DW_TAG_variable; + + int cu_index = it->second; + bool is_static = (entry->flags & IS_STATIC) != 0; + unit_kind kind = (entry->per_cu->is_debug_types + ? unit_kind::tu + : unit_kind::cu); + + if (entry->per_cu->lang () == language_ada) { /* We want to ensure that the Ada main function's name appears verbatim in the index. However, this name will be of the @@ -535,8 +554,7 @@ public: = m_name_to_value_set.emplace (c_str_view (name), std::set<symbol_value> ()); std::set<symbol_value> &value_set = insertpair.first->second; - value_set.emplace (symbol_value (dwarf_tag, cu_index, is_static, - kind)); + value_set.emplace (symbol_value (tag, cu_index, is_static, kind)); } /* In order for the index to work when read back into gdb, it @@ -562,28 +580,7 @@ public: = m_name_to_value_set.emplace (c_str_view (name), std::set<symbol_value> ()); std::set<symbol_value> &value_set = insertpair.first->second; - value_set.emplace (symbol_value (dwarf_tag, cu_index, is_static, kind)); - } - - void insert (const cooked_index_entry *entry) - { - const auto it = m_cu_index_htab.find (entry->per_cu); - gdb_assert (it != m_cu_index_htab.cend ()); - const char *name = entry->full_name (&m_string_obstack); - - /* This is incorrect but it mirrors gdb's historical behavior; and - because the current .debug_names generation is also incorrect, - it seems better to follow what was done before, rather than - introduce a mismatch between the newer and older gdb. */ - dwarf_tag tag = entry->tag; - if (tag != DW_TAG_typedef && tag_is_type (tag)) - tag = DW_TAG_structure_type; - else if (tag == DW_TAG_enumerator || tag == DW_TAG_constant) - tag = DW_TAG_variable; - - insert (tag, name, it->second, (entry->flags & IS_STATIC) != 0, - entry->per_cu->is_debug_types ? unit_kind::tu : unit_kind::cu, - entry->per_cu->lang ()); + value_set.emplace (symbol_value (tag, cu_index, is_static, kind)); } /* Build all the tables. All symbols must be already inserted. |