[Nasm-bugs] [Bug 3392774] Large define lists crash recent NASM

noreply-nasm at dev.nasm.us noreply-nasm at dev.nasm.us
Fri Aug 26 07:56:58 PDT 2022


https://bugzilla.nasm.us/show_bug.cgi?id=3392774

--- Comment #4 from H. Peter Anvin <hpa at zytor.com> ---
Hmmm... this smells like a failure to reclaim storage to me. Basically
malloc/free is likely to have the same kind of overhead as inlining the text,
but if token heads aren't getting reused, this is a memory leak, and one which
generic tools will not be able to see.

So my strong guess is that either there is a missing token delete somewhere, or
the token allocator fails to makes a deleted token head available for reuse.

-- 
You are receiving this mail because:
You are watching all bug changes.
You are on the CC list for the bug.


More information about the Nasm-bugs mailing list