1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
16 * The Original Code is nsTraceMalloc.c/bloatblame.c code, released
19 * The Initial Developer of the Original Code is
20 * Netscape Communications Corporation.
21 * Portions created by the Initial Developer are Copyright (C) 2000
22 * the Initial Developer. All Rights Reserved.
25 * Brendan Eich, 14-April-2000
26 * L. David Baron, 2001-06-07, created leakstats.c based on bloatblame.c
27 * L. David Baron, 2004-02-19, created allocation-stats.c based
30 * Alternatively, the contents of this file may be used under the terms of
31 * either the GNU General Public License Version 2 or later (the "GPL"), or
32 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
33 * in which case the provisions of the GPL or the LGPL are applicable instead
34 * of those above. If you wish to allow use of your version of this file only
35 * under the terms of either the GPL or the LGPL, and not to allow others to
36 * use your version of this file under the terms of the MPL, indicate your
37 * decision by deleting the provisions above and replace them with the notice
38 * and other provisions required by the GPL or the LGPL. If you do not delete
39 * the provisions above, a recipient may use your version of this file under
40 * the terms of any one of the MPL, the GPL or the LGPL.
42 * ***** END LICENSE BLOCK ***** */
50 extern int getopt(int argc
, char *const *argv
, const char *shortopts
);
58 #include "nsTraceMalloc.h"
63 static void my_tmevent_handler(tmreader
*tmr
, tmevent
*event
)
67 switch (event
->type
) {
68 case TM_EVENT_REALLOC
:
71 for (callsite
= tmreader_callsite(tmr
, event
->serial
);
72 callsite
!= &tmr
->calltree_root
; callsite
= callsite
->parent
) {
73 fprintf(stdout
, "%s +%08X (%s:%d)\n",
74 (const char*)callsite
->method
->graphnode
.entry
.value
,
76 callsite
->method
->sourcefile
,
77 callsite
->method
->linenumber
);
79 fprintf(stdout
, "\n");
83 int main(int argc
, char **argv
)
92 tmr
= tmreader_new(program
, NULL
);
99 fprintf(stdout
, "%s starting at %s", program
, ctime(&start
));
105 if (tmreader_eventloop(tmr
, "-", my_tmevent_handler
) <= 0)
108 for (i
= j
= 0; i
< argc
; i
++) {
109 fp
= fopen(argv
[i
], "r");
111 fprintf(stderr
, "%s: can't open %s: %s\n",
112 program
, argv
[i
], strerror(errno
));
115 rv
= tmreader_eventloop(tmr
, argv
[i
], my_tmevent_handler
);
126 tmreader_destroy(tmr
);