gas macro memory leaks
authorAlan Modra <amodra@gmail.com>
Fri, 27 Jan 2023 00:01:56 +0000 (10:31 +1030)
committerAlan Modra <amodra@gmail.com>
Fri, 27 Jan 2023 05:08:52 +0000 (15:38 +1030)
commitc026360c7578b4599c289987981d9c9c80481e40
tree695998bd2116183a34814b02cd44d44316f6674b
parent48afe8b710712bf131fadbfa3278e512a7034483
gas macro memory leaks

This tidies memory allocated for entries in macro_hash.  Freeing the
macro name requires a little restructuring of the define_macro
interface due to the name being used in the error message, and exposed
the fact that the name and other fields were not initialised by the
iq2000 backend.

There is also a fix for
 .macro .macro
 .endm
 .macro .macro
 .endm
which prior to this patch reported
mac.s:1: Warning: attempt to redefine pseudo-op `.macro' ignored
mac.s:3: Error: Macro `.macro' was already defined
rather than reporting the attempt to redefine twice.

* macro.c (macro_del_f): New function.
(macro_init): Use it when creating macro_hash.
(free_macro): Free macro name too.
(define_macro): Return the macro_entry, remove idx, file, line and
namep params.  Call as_where.  Report errors here.  Delete macro
from macro_hash on attempt to redefined pseudo-op.
(delete_macro): Don't call free_macro.
* macro.h (define_macro): Update prototype.
* read.c (s_macro): Adjust to suit.
* config/tc-iq2000.c (iq2000_add_macro): Init all fields of
macro_entry.
gas/config/tc-iq2000.c
gas/macro.c
gas/macro.h
gas/read.c