Use gdbarch obstack to allocate types in alloc_type_arch
authorPatrick Palka <patrick@parcs.ath.cx>
Mon, 29 Jun 2015 14:39:26 +0000 (10:39 -0400)
committerPatrick Palka <patrick@parcs.ath.cx>
Sat, 29 Aug 2015 12:52:50 +0000 (08:52 -0400)
commit8f57eec2fb31db5ab4598f09136e7978b7f84c97
tree8827099c833d14fc0f4cca508481b82448160ecb
parent4df041938601a456999fbe9f22831e389ca74242
Use gdbarch obstack to allocate types in alloc_type_arch

For the command "gdb gdb" valgrind currently reports 100s of individual
memory leaks, 500 of which originate solely out of the function
alloc_type_arch.  This function allocates a "struct type" associated
with the given gdbarch using malloc but apparently the types allocated
by this function are never freed.

This patch fixes these leaks by making the function alloc_type_arch
allocate these gdbarch-associated types on the gdbarch obstack instead
of on the general heap.  Since, from what I can tell, the types
allocated by this function are all fundamental "wired-in" types, such
types would not benefit from more granular memory management anyway.
They would likely live as long as the gdbarch is alive so allocating
them on the gdbarch obstack makes sense.

With this patch, the number of individual vargrind warnings emitted for
the command "gdb gdb" drops from ~800 to ~300.

Tested on x86_64-unknown-linux-gnu.

gdb/ChangeLog:

* gdbtypes.c (alloc_type_arch): Allocate the type on the given
gdbarch obstack instead of on the heap.  Update commentary
accordingly.
gdb/ChangeLog
gdb/gdbtypes.c