gas: free sy_hash, macro_hash and po_hash
authorAlan Modra <amodra@gmail.com>
Tue, 5 Jul 2022 03:30:41 +0000 (13:00 +0930)
committerAlan Modra <amodra@gmail.com>
Sat, 9 Jul 2022 11:52:28 +0000 (21:22 +0930)
* macro.c (macro_end): New function.
* macro.h (macro_end): Declare.
* read.c (read_end, poend): New functions.
* read.h (read_end): Declare.
* symbols.c (symbol_end): New function.
* symbols.h (symbol_end): Declare.
* output-file.c (output_file_close): Call new *_end functions.

gas/macro.c
gas/macro.h
gas/output-file.c
gas/read.c
gas/read.h
gas/symbols.c
gas/symbols.h

index b360b2ec038e314349daf11a41d01eb5dde8391f..e2cfbee5439fd18bb3dc9e72d9b51e4a27550969 100644 (file)
@@ -84,6 +84,12 @@ macro_init (int alternate, int mri, int strip_at,
   macro_expr = exp;
 }
 
+void
+macro_end (void)
+{
+  htab_delete (macro_hash);
+}
+
 /* Switch in and out of alternate mode on the fly.  */
 
 void
index 227c9cb5c93522c2e92902f875e67ecef710cb0b..03d6a81c5e3978e3c3cb19de3837bd3c89f4f42a 100644 (file)
@@ -85,6 +85,7 @@ extern int buffer_and_nest (const char *, const char *, sb *,
                            size_t (*) (sb *));
 extern void macro_init (int, int, int,
                        size_t (*) (const char *, size_t, sb *, offsetT *));
+extern void macro_end (void);
 extern void macro_set_alternate (int);
 extern void macro_mri_mode (int);
 extern const char *define_macro (size_t, sb *, sb *, size_t (*) (sb *),
index 584deb27c0800d4dfcda82e14687b8930de54a52..3c4074b263d34219b877a90a3a07bd2fe44b46bd 100644 (file)
@@ -20,6 +20,8 @@
 
 #include "as.h"
 #include "subsegs.h"
+#include "sb.h"
+#include "macro.h"
 #include "output-file.h"
 
 #ifndef TARGET_MACH
@@ -103,6 +105,9 @@ output_file_close (void)
   if (!keep_it && filename)
     unlink_if_ordinary (filename);
 
+  macro_end ();
+  read_end ();
+  symbol_end ();
   subsegs_end (obs);
 
   if (!res)
index 2f9a22a8d76fd6bb59fc5baded46638cc26408ef..edf3f2a788199e52fe804f6ff1e0105664906707 100644 (file)
@@ -248,6 +248,7 @@ static void s_reloc (int);
 static int hex_float (int, char *);
 static segT get_known_segmented_expression (expressionS * expP);
 static void pobegin (void);
+static void poend (void);
 static size_t get_non_macro_line_sb (sb *);
 static void generate_file_debug (void);
 static char *_find_end_of_line (char *, int, int, int);
@@ -276,6 +277,12 @@ read_begin (void)
   if (flag_mri)
     lex_type['?'] = 3;
 }
+
+void
+read_end (void)
+{
+  poend ();
+}
 \f
 #ifndef TC_ADDRESS_BYTES
 #define TC_ADDRESS_BYTES address_bytes
@@ -561,6 +568,12 @@ pobegin (void)
   pop_override_ok = 1;
   cfi_pop_insert ();
 }
+
+static void
+poend (void)
+{
+  htab_delete (po_hash);
+}
 \f
 #define HANDLE_CONDITIONAL_ASSEMBLY(num_read)                          \
   if (ignore_input ())                                                 \
index 0fa9e7951894b3a3e67df4fd9e94d270d3ecfa74..acab66748993a84767b6765c73a2a438d2ed5f2e 100644 (file)
@@ -141,6 +141,7 @@ extern unsigned output_leb128 (char *, valueT, int);
 extern void pseudo_set (symbolS * symbolP);
 extern void read_a_source_file (const char *name);
 extern void read_begin (void);
+extern void read_end (void);
 extern void read_print_statistics (FILE *);
 extern char *read_symbol_name (void);
 extern unsigned sizeof_leb128 (valueT, int);
index 00ae49b91ed53139d66a71fa2d0f372a6c80a585..744f6e1260ff59d1e199221fdbfbacfa5ee5af98 100644 (file)
@@ -3062,6 +3062,12 @@ symbol_begin (void)
     fb_label_init ();
 }
 
+void
+symbol_end (void)
+{
+  htab_delete (sy_hash);
+}
+
 void
 dot_symbol_init (void)
 {
index 240e08f8df6a066a8290d19ac1b9c36947b7b8a0..c33a28ff86b1c7098c7cc3f62b1cca8023658241 100644 (file)
@@ -67,6 +67,7 @@ symbolS *symbol_temp_make (void);
 symbolS *colon (const char *sym_name);
 void local_colon (int n);
 void symbol_begin (void);
+void symbol_end (void);
 void dot_symbol_init (void);
 void symbol_print_statistics (FILE *);
 void symbol_table_insert (symbolS * symbolP);