arc gas: don't leak arc_opcode_hash memory
authorAlan Modra <amodra@gmail.com>
Thu, 7 Jul 2022 12:39:28 +0000 (22:09 +0930)
committerAlan Modra <amodra@gmail.com>
Sat, 9 Jul 2022 12:05:15 +0000 (21:35 +0930)
The arc opcode hash table has entries that have a realloc'd field.
This doesn't lend itself to obstack allocation, so freeing must be
done with a purpose built hashtab del_f.

* config/tc-arc.c (arc_opcode_free): New function.
(md_begin): Pass the above as del_f to htab_create_alloc.
(arc_md_end): New function.
* config/tc-arc.h (arc_md_end): Declare.
(md_end): Define.

gas/config/tc-arc.c
gas/config/tc-arc.h

index 6c5b1d6807856d6b4dff18fd9d886b0b53f77563..fd648b742b40c78d5c6138f2794841f3417075a7 100644 (file)
@@ -774,6 +774,15 @@ arc_insert_opcode (const struct arc_opcode *opcode)
   entry->count++;
 }
 
+static void
+arc_opcode_free (void *elt)
+{
+  string_tuple_t *tuple = (string_tuple_t *) elt;
+  struct arc_opcode_hash_entry *entry = (void *) tuple->value;
+  free (entry->opcode);
+  free (entry);
+  free (tuple);
+}
 
 /* Like md_number_to_chars but for middle-endian values.  The 4-byte limm
    value, is encoded as 'middle-endian' for a little-endian target.  This
@@ -2605,7 +2614,8 @@ md_begin (void)
   bfd_set_private_flags (stdoutput, selected_cpu.eflags);
 
   /* Set up a hash table for the instructions.  */
-  arc_opcode_hash = str_htab_create ();
+  arc_opcode_hash = htab_create_alloc (16, hash_string_tuple, eq_string_tuple,
+                                      arc_opcode_free, xcalloc, free);
 
   /* Initialize the hash table with the insns.  */
   do
@@ -2710,6 +2720,15 @@ md_begin (void)
   declare_addrtype ("cxd", ARC_NPS400_ADDRTYPE_CXD);
 }
 
+void
+arc_md_end (void)
+{
+  htab_delete (arc_opcode_hash);
+  htab_delete (arc_reg_hash);
+  htab_delete (arc_aux_hash);
+  htab_delete (arc_addrtype_hash);
+}
+
 /* Write a value out to the object file, using the appropriate
    endianness.  */
 
index 29b4582ae22f3a6ffc375f9448d4def30bb29de6..d7b989e7f191dda61ab3621d0bad4eef864aae07 100644 (file)
@@ -268,4 +268,7 @@ struct arc_relax_type
   int nflg;
 };
 
+extern void arc_md_end (void);
+#define md_end arc_md_end
+
 #endif