From ce60d38f6d1a5d1898a12391bf75cc1e88ee41f1 Mon Sep 17 00:00:00 2001 From: "dbaron%dbaron.org" Date: Sun, 12 Aug 2007 22:20:36 +0000 Subject: [PATCH] Don't count frees of things whose allocations weren't counted because they were before we overrode malloc, etc. b=391950 r+a=brendan --- tools/trace-malloc/leakstats.c | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/tools/trace-malloc/leakstats.c b/tools/trace-malloc/leakstats.c index f1cd6560fd4..4c6174c5dae 100644 --- a/tools/trace-malloc/leakstats.c +++ b/tools/trace-malloc/leakstats.c @@ -55,6 +55,7 @@ int optind=1; #include #include "nsTraceMalloc.h" #include "tmreader.h" +#include "prlog.h" static char *program; @@ -64,6 +65,7 @@ typedef struct handler_data { uint32 bytes_allocated; uint32 current_allocations; uint32 total_allocations; + uint32 unmatched_frees; int finished; } handler_data; @@ -74,6 +76,7 @@ static void handler_data_init(handler_data *data) data->bytes_allocated = 0; data->current_allocations = 0; data->total_allocations = 0; + data->unmatched_frees = 0; data->finished = 0; } @@ -87,8 +90,14 @@ static void my_tmevent_handler(tmreader *tmr, tmevent *event) switch (event->type) { case TM_EVENT_REALLOC: - data->current_heapsize -= event->u.alloc.oldsize; - --data->current_allocations; + /* On Windows, original allocation could be before we overrode malloc */ + if (event->u.alloc.oldserial != 0) { + data->current_heapsize -= event->u.alloc.oldsize; + --data->current_allocations; + } else { + ++data->unmatched_frees; + PR_ASSERT(event->u.alloc.oldsize == 0); + } /* fall-through intentional */ case TM_EVENT_MALLOC: case TM_EVENT_CALLOC: @@ -100,8 +109,14 @@ static void my_tmevent_handler(tmreader *tmr, tmevent *event) data->max_heapsize = data->current_heapsize; break; case TM_EVENT_FREE: - --data->current_allocations; - data->current_heapsize -= event->u.alloc.size; + /* On Windows, original allocation could be before we overrode malloc */ + if (event->serial != 0) { + --data->current_allocations; + data->current_heapsize -= event->u.alloc.size; + } else { + ++data->unmatched_frees; + PR_ASSERT(event->u.alloc.size == 0); + } break; case TM_EVENT_STATS: data->finished = 1; @@ -167,6 +182,11 @@ int main(int argc, char **argv) data.current_heapsize, data.current_allocations, data.max_heapsize, data.bytes_allocated, data.total_allocations); + if (data.unmatched_frees != 0) + fprintf(stdout, + "Logged %u free (or realloc) calls for which we missed the " + "original malloc.\n", + data.unmatched_frees); handler_data_finish(&data); tmreader_destroy(tmr);