+2020-02-08 Tom Tromey <tom@tromey.com>
+
+ * dwarf2/read.c (~dwarf2_per_objfile): Don't delete
+ line_header_hash.
+ (handle_DW_AT_stmt_list): Update. Don't allocate on obstack.
+ * dwarf2/read.h (struct dwarf2_per_objfile) <line_header_hash>:
+ Change type to htab_up.
+
2020-02-08 Tom Tromey <tom@tromey.com>
* dwarf2/read.c (allocate_type_unit_groups_table): Return
if (quick_file_names_table)
htab_delete (quick_file_names_table);
- if (line_header_hash)
- htab_delete (line_header_hash);
-
for (dwarf2_per_cu_data *per_cu : all_comp_units)
per_cu->imported_symtabs_free ();
{
struct dwarf2_per_objfile *dwarf2_per_objfile
= cu->per_cu->dwarf2_per_objfile;
- struct objfile *objfile = dwarf2_per_objfile->objfile;
struct attribute *attr;
struct line_header line_header_local;
hashval_t line_header_local_hash;
&& die->tag == DW_TAG_partial_unit)
{
dwarf2_per_objfile->line_header_hash
- = htab_create_alloc_ex (127, line_header_hash_voidp,
- line_header_eq_voidp,
- free_line_header_voidp,
- &objfile->objfile_obstack,
- hashtab_obstack_allocate,
- dummy_obstack_deallocate);
+ .reset (htab_create_alloc (127, line_header_hash_voidp,
+ line_header_eq_voidp,
+ free_line_header_voidp,
+ xcalloc, xfree));
}
line_header_local.sect_off = line_offset;
line_header_local_hash = line_header_hash (&line_header_local);
if (dwarf2_per_objfile->line_header_hash != NULL)
{
- slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash,
+ slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash.get (),
&line_header_local,
line_header_local_hash, NO_INSERT);
slot = NULL;
else
{
- slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash,
+ slot = htab_find_slot_with_hash (dwarf2_per_objfile->line_header_hash.get (),
&line_header_local,
line_header_local_hash, INSERT);
gdb_assert (slot != NULL);
std::vector<dwarf2_per_cu_data *> just_read_cus;
/* Table containing line_header indexed by offset and offset_in_dwz. */
- htab_t line_header_hash {};
+ htab_up line_header_hash;
/* Table containing all filenames. This is an optional because the
table is lazily constructed on first access. */