blob: a2c1f3908a319c0ecb71cf684b7aea4765c4b8da [file] [log] [blame]
njn734b8052007-11-01 04:40:37 +00001//--------------------------------------------------------------------*/
2//--- Massif: a heap profiling tool. ms_main.c ---*/
3//--------------------------------------------------------------------*/
nethercotec9f36922004-02-14 16:40:02 +00004
5/*
nethercote996901a2004-08-03 13:29:09 +00006 This file is part of Massif, a Valgrind tool for profiling memory
nethercotec9f36922004-02-14 16:40:02 +00007 usage of programs.
8
Elliott Hughesed398002017-06-21 14:41:24 -07009 Copyright (C) 2003-2017 Nicholas Nethercote
njn2bc10122005-05-08 02:10:27 +000010 njn@valgrind.org
nethercotec9f36922004-02-14 16:40:02 +000011
12 This program is free software; you can redistribute it and/or
13 modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation; either version 2 of the
15 License, or (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
25 02111-1307, USA.
26
27 The GNU General Public License is contained in the file COPYING.
28*/
29
njn734b8052007-11-01 04:40:37 +000030//---------------------------------------------------------------------------
31// XXX:
32//---------------------------------------------------------------------------
njn734b8052007-11-01 04:40:37 +000033// Todo -- nice, but less critical:
njnab23b612007-11-27 00:53:56 +000034// - do a graph-drawing test
njn734b8052007-11-01 04:40:37 +000035// - make file format more generic. Obstacles:
36// - unit prefixes are not generic
37// - preset column widths for stats are not generic
38// - preset column headers are not generic
39// - "Massif arguments:" line is not generic
philippe868bfa22015-03-07 19:20:12 +000040// - do snapshots on some specific client requests
njn734b8052007-11-01 04:40:37 +000041// - "show me the extra allocations since the last snapshot"
42// - "start/stop logging" (eg. quickly skip boring bits)
43// - Add ability to draw multiple graphs, eg. heap-only, stack-only, total.
44// Give each graph a title. (try to do it generically!)
njn734b8052007-11-01 04:40:37 +000045// - make --show-below-main=no work
njna15b6662009-08-04 05:59:46 +000046// - Options like --alloc-fn='operator new(unsigned, std::nothrow_t const&)'
njn1a2741a2007-11-26 21:59:04 +000047// don't work in a .valgrindrc file or in $VALGRIND_OPTS.
48// m_commandline.c:add_args_from_string() needs to respect single quotes.
njn3b677e52007-12-03 21:29:22 +000049// - With --stack=yes, want to add a stack trace for detailed snapshots so
50// it's clear where/why the peak is occurring. (Mattieu Castet) Also,
51// possibly useful even with --stack=no? (Andi Yin)
njn734b8052007-11-01 04:40:37 +000052//
53// Performance:
54// - To run the benchmarks:
55//
56// perl perf/vg_perf --tools=massif --reps=3 perf/{heap,tinycc} massif
57// time valgrind --tool=massif --depth=100 konqueror
58//
59// The other benchmarks don't do much allocation, and so give similar speeds
60// to Nulgrind.
61//
62// Timing results on 'nevermore' (njn's machine) as of r7013:
63//
64// heap 0.53s ma:12.4s (23.5x, -----)
65// tinycc 0.46s ma: 4.9s (10.7x, -----)
66// many-xpts 0.08s ma: 2.0s (25.0x, -----)
67// konqueror 29.6s real 0:21.0s user
68//
njnab23b612007-11-27 00:53:56 +000069// [Introduction of --time-unit=i as the default slowed things down by
70// roughly 0--20%.]
71//
njn734b8052007-11-01 04:40:37 +000072// Todo -- low priority:
njn734b8052007-11-01 04:40:37 +000073// - In each XPt, record both bytes and the number of allocations, and
74// possibly the global number of allocations.
njn0f85e022007-11-27 02:03:44 +000075// - (Andy Lin) Give a stack trace on detailed snapshots?
njn734b8052007-11-01 04:40:37 +000076// - (Artur Wisz) add a feature to Massif to ignore any heap blocks larger
77// than a certain size! Because: "linux's malloc allows to set a
78// MMAP_THRESHOLD value, so we set it to 4096 - all blocks above that will
79// be handled directly by the kernel, and are guaranteed to be returned to
80// the system when freed. So we needed to profile only blocks below this
81// limit."
82//
njn734b8052007-11-01 04:40:37 +000083// File format working notes:
84
85#if 0
86desc: --heap-admin=foo
87cmd: date
88time_unit: ms
89#-----------
90snapshot=0
91#-----------
92time=0
93mem_heap_B=0
94mem_heap_admin_B=0
95mem_stacks_B=0
96heap_tree=empty
97#-----------
98snapshot=1
99#-----------
100time=353
101mem_heap_B=5
102mem_heap_admin_B=0
103mem_stacks_B=0
104heap_tree=detailed
105n1: 5 (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
106 n1: 5 0x27F6E0: _nl_normalize_codeset (in /lib/libc-2.3.5.so)
107 n1: 5 0x279DE6: _nl_load_locale_from_archive (in /lib/libc-2.3.5.so)
108 n1: 5 0x278E97: _nl_find_locale (in /lib/libc-2.3.5.so)
109 n1: 5 0x278871: setlocale (in /lib/libc-2.3.5.so)
110 n1: 5 0x8049821: (within /bin/date)
111 n0: 5 0x26ED5E: (below main) (in /lib/libc-2.3.5.so)
112
113
114n_events: n time(ms) total(B) useful-heap(B) admin-heap(B) stacks(B)
115t_events: B
116n 0 0 0 0 0
117n 0 0 0 0 0
118t1: 5 <string...>
119 t1: 6 <string...>
120
121Ideas:
122- each snapshot specifies an x-axis value and one or more y-axis values.
123- can display the y-axis values separately if you like
124- can completely separate connection between snapshots and trees.
125
126Challenges:
127- how to specify and scale/abbreviate units on axes?
128- how to combine multiple values into the y-axis?
129
130--------------------------------------------------------------------------------Command: date
131Massif arguments: --heap-admin=foo
132ms_print arguments: massif.out
133--------------------------------------------------------------------------------
134 KB
1356.472^ :#
136 | :# :: . .
137 ...
138 | ::@ :@ :@ :@:::# :: : ::::
139 0 +-----------------------------------@---@---@-----@--@---#-------------->ms 0 713
140
141Number of snapshots: 50
142 Detailed snapshots: [2, 11, 13, 19, 25, 32 (peak)]
143-------------------------------------------------------------------------------- n time(ms) total(B) useful-heap(B) admin-heap(B) stacks(B)
144-------------------------------------------------------------------------------- 0 0 0 0 0 0
145 1 345 5 5 0 0
146 2 353 5 5 0 0
147100.00% (5B) (heap allocation functions) malloc/new/new[], --alloc-fns, etc.
148->100.00% (5B) 0x27F6E0: _nl_normalize_codeset (in /lib/libc-2.3.5.so)
149#endif
150
151//---------------------------------------------------------------------------
nethercotec9f36922004-02-14 16:40:02 +0000152
njnc7561b92005-06-19 01:24:32 +0000153#include "pub_tool_basics.h"
sewardj4cfea4f2006-10-14 19:26:10 +0000154#include "pub_tool_vki.h"
sewardj45f4e7c2005-09-27 19:20:21 +0000155#include "pub_tool_aspacemgr.h"
njnea27e462005-05-31 02:38:09 +0000156#include "pub_tool_debuginfo.h"
njn81c00df2005-05-14 21:28:43 +0000157#include "pub_tool_hashtable.h"
njn97405b22005-06-02 03:39:33 +0000158#include "pub_tool_libcbase.h"
njn132bfcc2005-06-04 19:16:06 +0000159#include "pub_tool_libcassert.h"
njneb8896b2005-06-04 20:03:55 +0000160#include "pub_tool_libcfile.h"
njn36a20fa2005-06-03 03:08:39 +0000161#include "pub_tool_libcprint.h"
njnf39e9a32005-06-12 02:43:17 +0000162#include "pub_tool_libcproc.h"
njnb506bd82005-06-21 04:01:51 +0000163#include "pub_tool_machine.h"
njn717cde52005-05-10 02:47:21 +0000164#include "pub_tool_mallocfree.h"
njn20242342005-05-16 23:31:24 +0000165#include "pub_tool_options.h"
Elliott Hughesed398002017-06-21 14:41:24 -0700166#include "pub_tool_poolalloc.h"
njn717cde52005-05-10 02:47:21 +0000167#include "pub_tool_replacemalloc.h"
njnd01fef72005-03-25 23:35:48 +0000168#include "pub_tool_stacktrace.h"
njne323a6b2010-07-01 02:35:03 +0000169#include "pub_tool_threadstate.h"
njn43b9a8a2005-05-10 04:37:01 +0000170#include "pub_tool_tooliface.h"
sewardj14c7cc52007-02-25 15:08:24 +0000171#include "pub_tool_xarray.h"
Elliott Hughesed398002017-06-21 14:41:24 -0700172#include "pub_tool_xtree.h"
173#include "pub_tool_xtmemory.h"
sewardj45f4e7c2005-09-27 19:20:21 +0000174#include "pub_tool_clientstate.h"
sewardj3b290482011-05-06 21:02:55 +0000175#include "pub_tool_gdbserver.h"
nethercotec9f36922004-02-14 16:40:02 +0000176
florian1a046d52013-09-16 20:56:35 +0000177#include "pub_tool_clreq.h" // For {MALLOC,FREE}LIKE_BLOCK
nethercotec9f36922004-02-14 16:40:02 +0000178
njn734b8052007-11-01 04:40:37 +0000179//------------------------------------------------------------*/
180//--- Overview of operation ---*/
181//------------------------------------------------------------*/
nethercotec9f36922004-02-14 16:40:02 +0000182
njn734b8052007-11-01 04:40:37 +0000183// The size of the stacks and heap is tracked. The heap is tracked in a lot
184// of detail, enough to tell how many bytes each line of code is responsible
Elliott Hughesed398002017-06-21 14:41:24 -0700185// for, more or less. The main data structure is an xtree maintaining the
njn734b8052007-11-01 04:40:37 +0000186// call tree beneath all the allocation functions like malloc().
njne323a6b2010-07-01 02:35:03 +0000187// (Alternatively, if --pages-as-heap=yes is specified, memory is tracked at
188// the page level, and each page is treated much like a heap block. We use
189// "heap" throughout below to cover this case because the concepts are all the
190// same.)
nethercotec9f36922004-02-14 16:40:02 +0000191//
njn734b8052007-11-01 04:40:37 +0000192// "Snapshots" are recordings of the memory usage. There are two basic
193// kinds:
194// - Normal: these record the current time, total memory size, total heap
195// size, heap admin size and stack size.
196// - Detailed: these record those things in a normal snapshot, plus a very
197// detailed XTree (see below) indicating how the heap is structured.
nethercotec9f36922004-02-14 16:40:02 +0000198//
njn734b8052007-11-01 04:40:37 +0000199// Snapshots are taken every so often. There are two storage classes of
200// snapshots:
201// - Temporary: Massif does a temporary snapshot every so often. The idea
202// is to always have a certain number of temporary snapshots around. So
203// we take them frequently to begin with, but decreasingly often as the
204// program continues to run. Also, we remove some old ones after a while.
205// Overall it's a kind of exponential decay thing. Most of these are
206// normal snapshots, a small fraction are detailed snapshots.
207// - Permanent: Massif takes a permanent (detailed) snapshot in some
208// circumstances. They are:
209// - Peak snapshot: When the memory usage peak is reached, it takes a
210// snapshot. It keeps this, unless the peak is subsequently exceeded,
211// in which case it will overwrite the peak snapshot.
212// - User-requested snapshots: These are done in response to client
213// requests. They are always kept.
nethercotec9f36922004-02-14 16:40:02 +0000214
njn734b8052007-11-01 04:40:37 +0000215// Used for printing things when clo_verbosity > 1.
216#define VERB(verb, format, args...) \
Elliott Hughesed398002017-06-21 14:41:24 -0700217 if (UNLIKELY(VG_(clo_verbosity) > verb)) { \
218 VG_(dmsg)("Massif: " format, ##args); \
nethercotec9f36922004-02-14 16:40:02 +0000219 }
nethercotec9f36922004-02-14 16:40:02 +0000220
njn734b8052007-11-01 04:40:37 +0000221//------------------------------------------------------------//
222//--- Statistics ---//
223//------------------------------------------------------------//
nethercotec9f36922004-02-14 16:40:02 +0000224
225// Konqueror startup, to give an idea of the numbers involved with a biggish
226// program, with default depth:
227//
228// depth=3 depth=40
229// - 310,000 allocations
230// - 300,000 frees
231// - 15,000 XPts 800,000 XPts
232// - 1,800 top-XPts
233
njnf6b00762009-04-17 04:26:41 +0000234static UInt n_heap_allocs = 0;
235static UInt n_heap_reallocs = 0;
236static UInt n_heap_frees = 0;
237static UInt n_ignored_heap_allocs = 0;
238static UInt n_ignored_heap_frees = 0;
239static UInt n_ignored_heap_reallocs = 0;
240static UInt n_stack_allocs = 0;
241static UInt n_stack_frees = 0;
Elliott Hughesed398002017-06-21 14:41:24 -0700242
njnf6b00762009-04-17 04:26:41 +0000243static UInt n_skipped_snapshots = 0;
244static UInt n_real_snapshots = 0;
245static UInt n_detailed_snapshots = 0;
246static UInt n_peak_snapshots = 0;
247static UInt n_cullings = 0;
nethercotec9f36922004-02-14 16:40:02 +0000248
njn734b8052007-11-01 04:40:37 +0000249//------------------------------------------------------------//
250//--- Globals ---//
251//------------------------------------------------------------//
nethercotec9f36922004-02-14 16:40:02 +0000252
njn1a2741a2007-11-26 21:59:04 +0000253// Number of guest instructions executed so far. Only used with
254// --time-unit=i.
255static Long guest_instrs_executed = 0;
256
njn32397c02007-11-10 04:08:08 +0000257static SizeT heap_szB = 0; // Live heap size
258static SizeT heap_extra_szB = 0; // Live heap extra size -- slop + admin bytes
259static SizeT stacks_szB = 0; // Live stacks size
nethercotec9f36922004-02-14 16:40:02 +0000260
njn734b8052007-11-01 04:40:37 +0000261// This is the total size from the current peak snapshot, or 0 if no peak
262// snapshot has been taken yet.
263static SizeT peak_snapshot_total_szB = 0;
nethercotec9f36922004-02-14 16:40:02 +0000264
njn734b8052007-11-01 04:40:37 +0000265// Incremented every time memory is allocated/deallocated, by the
266// allocated/deallocated amount; includes heap, heap-admin and stack
267// memory. An alternative to milliseconds as a unit of program "time".
268static ULong total_allocs_deallocs_szB = 0;
nethercotec9f36922004-02-14 16:40:02 +0000269
njne323a6b2010-07-01 02:35:03 +0000270// When running with --heap=yes --pages-as-heap=no, we don't start taking
271// snapshots until the first basic block is executed, rather than doing it in
272// ms_post_clo_init (which is the obvious spot), for two reasons.
njn734b8052007-11-01 04:40:37 +0000273// - It lets us ignore stack events prior to that, because they're not
274// really proper ones and just would screw things up.
275// - Because there's still some core initialisation to do, and so there
276// would be an artificial time gap between the first and second snapshots.
277//
njne323a6b2010-07-01 02:35:03 +0000278// When running with --heap=yes --pages-as-heap=yes, snapshots start much
279// earlier due to new_mem_startup so this isn't relevant.
280//
njn734b8052007-11-01 04:40:37 +0000281static Bool have_started_executing_code = False;
nethercotec9f36922004-02-14 16:40:02 +0000282
njn734b8052007-11-01 04:40:37 +0000283//------------------------------------------------------------//
284//--- Alloc fns ---//
285//------------------------------------------------------------//
nethercotec9f36922004-02-14 16:40:02 +0000286
njn734b8052007-11-01 04:40:37 +0000287static XArray* alloc_fns;
njnf6b00762009-04-17 04:26:41 +0000288static XArray* ignore_fns;
nethercotec9f36922004-02-14 16:40:02 +0000289
njn734b8052007-11-01 04:40:37 +0000290static void init_alloc_fns(void)
291{
292 // Create the list, and add the default elements.
sewardj9c606bd2008-09-18 18:12:50 +0000293 alloc_fns = VG_(newXA)(VG_(malloc), "ms.main.iaf.1",
florian19f91bb2012-11-10 22:29:54 +0000294 VG_(free), sizeof(HChar*));
florian6bd9dc12012-11-23 16:17:43 +0000295 #define DO(x) { const HChar* s = x; VG_(addToXA)(alloc_fns, &s); }
nethercotec9f36922004-02-14 16:40:02 +0000296
njn13118f82009-07-01 02:44:12 +0000297 // Ordered roughly according to (presumed) frequency.
njn734b8052007-11-01 04:40:37 +0000298 // Nb: The C++ "operator new*" ones are overloadable. We include them
299 // always anyway, because even if they're overloaded, it would be a
300 // prodigiously stupid overloading that caused them to not allocate
301 // memory.
njn343a5042009-07-01 05:05:38 +0000302 //
303 // XXX: because we don't look at the first stack entry (unless it's a
304 // custom allocation) there's not much point to having all these alloc
305 // functions here -- they should never appear anywhere (I think?) other
306 // than the top stack entry. The only exceptions are those that in
307 // vg_replace_malloc.c are partly or fully implemented in terms of another
308 // alloc function: realloc (which uses malloc); valloc,
309 // malloc_zone_valloc, posix_memalign and memalign_common (which use
310 // memalign).
311 //
njn734b8052007-11-01 04:40:37 +0000312 DO("malloc" );
313 DO("__builtin_new" );
314 DO("operator new(unsigned)" );
315 DO("operator new(unsigned long)" );
316 DO("__builtin_vec_new" );
317 DO("operator new[](unsigned)" );
318 DO("operator new[](unsigned long)" );
319 DO("calloc" );
320 DO("realloc" );
321 DO("memalign" );
njn13118f82009-07-01 02:44:12 +0000322 DO("posix_memalign" );
323 DO("valloc" );
njn734b8052007-11-01 04:40:37 +0000324 DO("operator new(unsigned, std::nothrow_t const&)" );
325 DO("operator new[](unsigned, std::nothrow_t const&)" );
326 DO("operator new(unsigned long, std::nothrow_t const&)" );
327 DO("operator new[](unsigned long, std::nothrow_t const&)");
sewardj6e9de462011-06-28 07:25:29 +0000328#if defined(VGO_darwin)
njn13118f82009-07-01 02:44:12 +0000329 DO("malloc_zone_malloc" );
330 DO("malloc_zone_calloc" );
331 DO("malloc_zone_realloc" );
332 DO("malloc_zone_memalign" );
333 DO("malloc_zone_valloc" );
334#endif
njn734b8052007-11-01 04:40:37 +0000335}
nethercotec9f36922004-02-14 16:40:02 +0000336
njnf6b00762009-04-17 04:26:41 +0000337static void init_ignore_fns(void)
njn734b8052007-11-01 04:40:37 +0000338{
njnf6b00762009-04-17 04:26:41 +0000339 // Create the (empty) list.
340 ignore_fns = VG_(newXA)(VG_(malloc), "ms.main.iif.1",
florian19f91bb2012-11-10 22:29:54 +0000341 VG_(free), sizeof(HChar*));
njnf6b00762009-04-17 04:26:41 +0000342}
343
njn734b8052007-11-01 04:40:37 +0000344//------------------------------------------------------------//
345//--- Command line args ---//
346//------------------------------------------------------------//
347
348#define MAX_DEPTH 200
349
njn1a2741a2007-11-26 21:59:04 +0000350typedef enum { TimeI, TimeMS, TimeB } TimeUnit;
njn734b8052007-11-01 04:40:37 +0000351
floriane58e8a72012-10-20 19:57:16 +0000352static const HChar* TimeUnit_to_string(TimeUnit time_unit)
njn734b8052007-11-01 04:40:37 +0000353{
354 switch (time_unit) {
njn1a2741a2007-11-26 21:59:04 +0000355 case TimeI: return "i";
njn734b8052007-11-01 04:40:37 +0000356 case TimeMS: return "ms";
357 case TimeB: return "B";
358 default: tl_assert2(0, "TimeUnit_to_string: unrecognised TimeUnit");
359 }
360}
361
njne323a6b2010-07-01 02:35:03 +0000362static Bool clo_heap = True;
njn429afb42007-11-02 04:12:48 +0000363 // clo_heap_admin is deliberately a word-sized type. At one point it was
364 // a UInt, but this caused problems on 64-bit machines when it was
365 // multiplied by a small negative number and then promoted to a
366 // word-sized type -- it ended up with a value of 4.2 billion. Sigh.
njnefc13c22009-02-23 06:44:51 +0000367static SSizeT clo_heap_admin = 8;
njne323a6b2010-07-01 02:35:03 +0000368static Bool clo_pages_as_heap = False;
njn62721e92007-11-11 22:15:58 +0000369static Bool clo_stacks = False;
njn83df0b62009-02-25 01:01:05 +0000370static Int clo_depth = 30;
njn62721e92007-11-11 22:15:58 +0000371static double clo_threshold = 1.0; // percentage
372static double clo_peak_inaccuracy = 1.0; // percentage
njn83df0b62009-02-25 01:01:05 +0000373static Int clo_time_unit = TimeI;
374static Int clo_detailed_freq = 10;
375static Int clo_max_snapshots = 100;
florian19f91bb2012-11-10 22:29:54 +0000376static const HChar* clo_massif_out_file = "massif.out.%p";
njn734b8052007-11-01 04:40:37 +0000377
378static XArray* args_for_massif;
nethercotec9f36922004-02-14 16:40:02 +0000379
florian19f91bb2012-11-10 22:29:54 +0000380static Bool ms_process_cmd_line_option(const HChar* arg)
nethercotec9f36922004-02-14 16:40:02 +0000381{
florian19f91bb2012-11-10 22:29:54 +0000382 const HChar* tmp_str;
njn83df0b62009-02-25 01:01:05 +0000383
njn734b8052007-11-01 04:40:37 +0000384 // Remember the arg for later use.
385 VG_(addToXA)(args_for_massif, &arg);
nethercotec9f36922004-02-14 16:40:02 +0000386
njne323a6b2010-07-01 02:35:03 +0000387 if VG_BOOL_CLO(arg, "--heap", clo_heap) {}
388 else if VG_BINT_CLO(arg, "--heap-admin", clo_heap_admin, 0, 1024) {}
njn734b8052007-11-01 04:40:37 +0000389
njne323a6b2010-07-01 02:35:03 +0000390 else if VG_BOOL_CLO(arg, "--stacks", clo_stacks) {}
njn734b8052007-11-01 04:40:37 +0000391
njne323a6b2010-07-01 02:35:03 +0000392 else if VG_BOOL_CLO(arg, "--pages-as-heap", clo_pages_as_heap) {}
393
394 else if VG_BINT_CLO(arg, "--depth", clo_depth, 1, MAX_DEPTH) {}
395
396 else if VG_STR_CLO(arg, "--alloc-fn", tmp_str) {
397 VG_(addToXA)(alloc_fns, &tmp_str);
398 }
399 else if VG_STR_CLO(arg, "--ignore-fn", tmp_str) {
400 VG_(addToXA)(ignore_fns, &tmp_str);
401 }
402
njnb1cc5d62010-07-06 04:05:23 +0000403 else if VG_DBL_CLO(arg, "--threshold", clo_threshold) {
404 if (clo_threshold < 0 || clo_threshold > 100) {
405 VG_(fmsg_bad_option)(arg,
406 "--threshold must be between 0.0 and 100.0\n");
407 }
408 }
njn734b8052007-11-01 04:40:37 +0000409
njn83df0b62009-02-25 01:01:05 +0000410 else if VG_DBL_CLO(arg, "--peak-inaccuracy", clo_peak_inaccuracy) {}
njn734b8052007-11-01 04:40:37 +0000411
njne323a6b2010-07-01 02:35:03 +0000412 else if VG_XACT_CLO(arg, "--time-unit=i", clo_time_unit, TimeI) {}
413 else if VG_XACT_CLO(arg, "--time-unit=ms", clo_time_unit, TimeMS) {}
414 else if VG_XACT_CLO(arg, "--time-unit=B", clo_time_unit, TimeB) {}
njn734b8052007-11-01 04:40:37 +0000415
njne006e6f2010-12-08 02:42:38 +0000416 else if VG_BINT_CLO(arg, "--detailed-freq", clo_detailed_freq, 1, 1000000) {}
nethercotec9f36922004-02-14 16:40:02 +0000417
njne323a6b2010-07-01 02:35:03 +0000418 else if VG_BINT_CLO(arg, "--max-snapshots", clo_max_snapshots, 10, 1000) {}
419
njn83df0b62009-02-25 01:01:05 +0000420 else if VG_STR_CLO(arg, "--massif-out-file", clo_massif_out_file) {}
njnf4c665f2007-11-20 07:55:40 +0000421
nethercotec9f36922004-02-14 16:40:02 +0000422 else
423 return VG_(replacement_malloc_process_cmd_line_option)(arg);
nethercote27fec902004-06-16 21:26:32 +0000424
nethercotec9f36922004-02-14 16:40:02 +0000425 return True;
426}
427
njn51d827b2005-05-09 01:02:08 +0000428static void ms_print_usage(void)
nethercotec9f36922004-02-14 16:40:02 +0000429{
njn734b8052007-11-01 04:40:37 +0000430 VG_(printf)(
nethercotec9f36922004-02-14 16:40:02 +0000431" --heap=no|yes profile heap blocks [yes]\n"
njna15b6662009-08-04 05:59:46 +0000432" --heap-admin=<size> average admin bytes per heap block;\n"
njn734b8052007-11-01 04:40:37 +0000433" ignored if --heap=no [8]\n"
434" --stacks=no|yes profile stack(s) [no]\n"
njne323a6b2010-07-01 02:35:03 +0000435" --pages-as-heap=no|yes profile memory at the page level [no]\n"
njn734b8052007-11-01 04:40:37 +0000436" --depth=<number> depth of contexts [30]\n"
njnf6b00762009-04-17 04:26:41 +0000437" --alloc-fn=<name> specify <name> as an alloc function [empty]\n"
438" --ignore-fn=<name> ignore heap allocations within <name> [empty]\n"
njn62721e92007-11-11 22:15:58 +0000439" --threshold=<m.n> significance threshold, as a percentage [1.0]\n"
440" --peak-inaccuracy=<m.n> maximum peak inaccuracy, as a percentage [1.0]\n"
njn1a2741a2007-11-26 21:59:04 +0000441" --time-unit=i|ms|B time unit: instructions executed, milliseconds\n"
442" or heap bytes alloc'd/dealloc'd [i]\n"
njn734b8052007-11-01 04:40:37 +0000443" --detailed-freq=<N> every Nth snapshot should be detailed [10]\n"
444" --max-snapshots=<N> maximum number of snapshots recorded [100]\n"
njn374a36d2007-11-23 01:41:32 +0000445" --massif-out-file=<file> output file name [massif.out.%%p]\n"
nethercotec9f36922004-02-14 16:40:02 +0000446 );
nethercotec9f36922004-02-14 16:40:02 +0000447}
448
njn51d827b2005-05-09 01:02:08 +0000449static void ms_print_debug_usage(void)
nethercotec9f36922004-02-14 16:40:02 +0000450{
njn97db7612009-08-04 02:32:55 +0000451 VG_(printf)(
452" (none)\n"
453 );
nethercotec9f36922004-02-14 16:40:02 +0000454}
455
njn734b8052007-11-01 04:40:37 +0000456
457//------------------------------------------------------------//
Elliott Hughesed398002017-06-21 14:41:24 -0700458//--- XTrees ---//
njn734b8052007-11-01 04:40:37 +0000459//------------------------------------------------------------//
460
Elliott Hughesed398002017-06-21 14:41:24 -0700461// The details of the heap are represented by a single XTree.
462// This XTree maintains the nr of allocated bytes for each
463// stacktrace/execontext.
njn734b8052007-11-01 04:40:37 +0000464//
Elliott Hughesed398002017-06-21 14:41:24 -0700465// The root of the Xtree will be output as a top node 'alloc functions',
466// which represents all allocation functions, eg:
njn734b8052007-11-01 04:40:37 +0000467// - malloc/calloc/realloc/memalign/new/new[];
468// - user-specified allocation functions (using --alloc-fn);
469// - custom allocation (MALLOCLIKE) points
Elliott Hughesed398002017-06-21 14:41:24 -0700470static XTree* heap_xt;
471/* heap_xt contains a SizeT: the nr of allocated bytes by this execontext. */
472static void init_szB(void* value)
nethercotec9f36922004-02-14 16:40:02 +0000473{
Elliott Hughesed398002017-06-21 14:41:24 -0700474 *((SizeT*)value) = 0;
475}
476static void add_szB(void* to, const void* value)
477{
478 *((SizeT*)to) += *((const SizeT*)value);
479}
480static void sub_szB(void* from, const void* value)
481{
482 *((SizeT*)from) -= *((const SizeT*)value);
483}
484static ULong alloc_szB(const void* value)
485{
486 return (ULong)*((const SizeT*)value);
nethercotec9f36922004-02-14 16:40:02 +0000487}
488
njn734b8052007-11-01 04:40:37 +0000489
490//------------------------------------------------------------//
491//--- XTree Operations ---//
492//------------------------------------------------------------//
493
Elliott Hughesed398002017-06-21 14:41:24 -0700494// This is the limit on the number of filtered alloc-fns that can be in a
495// single stacktrace.
njn734b8052007-11-01 04:40:37 +0000496#define MAX_OVERESTIMATE 50
497#define MAX_IPS (MAX_DEPTH + MAX_OVERESTIMATE)
498
Elliott Hughesed398002017-06-21 14:41:24 -0700499// filtering out uninteresting entries:
njn734b8052007-11-01 04:40:37 +0000500// alloc-fns and entries above alloc-fns, and entries below main-or-below-main.
501// Eg: alloc-fn1 / alloc-fn2 / a / b / main / (below main) / c
502// becomes: a / b / main
503// Nb: it's possible to end up with an empty trace, eg. if 'main' is marked
504// as an alloc-fn. This is ok.
505static
Elliott Hughesed398002017-06-21 14:41:24 -0700506void filter_IPs (Addr* ips, Int n_ips,
507 UInt* top, UInt* n_ips_sel)
njn734b8052007-11-01 04:40:37 +0000508{
Elliott Hughesed398002017-06-21 14:41:24 -0700509 Int i;
510 Bool top_has_fnname;
511 const HChar *fnname;
njn734b8052007-11-01 04:40:37 +0000512
Elliott Hughesed398002017-06-21 14:41:24 -0700513 *top = 0;
514 *n_ips_sel = n_ips;
njn734b8052007-11-01 04:40:37 +0000515
Elliott Hughesed398002017-06-21 14:41:24 -0700516 // Advance *top as long as we find alloc functions
517 // PW Nov 2016 xtree work:
518 // old massif code was doing something really strange(?buggy):
519 // 'sliding' a bunch of functions without names by removing an
520 // alloc function 'inside' a stacktrace e.g.
521 // 0x1 0x2 0x3 alloc func1 main
522 // becomes 0x1 0x2 0x3 func1 main
523 for (i = *top; i < n_ips; i++) {
524 top_has_fnname = VG_(get_fnname)(ips[*top], &fnname);
525 if (top_has_fnname && VG_(strIsMemberXA)(alloc_fns, fnname)) {
526 VERB(4, "filtering alloc fn %s\n", fnname);
527 (*top)++;
528 (*n_ips_sel)--;
529 } else {
530 break;
nethercotec9f36922004-02-14 16:40:02 +0000531 }
532 }
Elliott Hughesed398002017-06-21 14:41:24 -0700533
534 // filter the whole stacktrace if this allocation has to be ignored.
535 if (*n_ips_sel > 0
536 && top_has_fnname
537 && VG_(strIsMemberXA)(ignore_fns, fnname)) {
538 VERB(4, "ignored allocation from fn %s\n", fnname);
539 *top = n_ips;
540 *n_ips_sel = 0;
541 }
542
543
544 if (!VG_(clo_show_below_main) && *n_ips_sel > 0 ) {
545 Int mbm = VG_(XT_offset_main_or_below_main)(ips, n_ips);
546
547 if (mbm < *top) {
548 // Special case: the first main (or below main) function is an
549 // alloc function.
550 *n_ips_sel = 1;
551 VERB(4, "main/below main: keeping 1 fn\n");
552 } else {
553 *n_ips_sel -= n_ips - mbm - 1;
554 VERB(4, "main/below main: filtering %d\n", n_ips - mbm - 1);
555 }
556 }
557
558 // filter the frames if we have more than clo_depth
559 if (*n_ips_sel > clo_depth) {
560 VERB(4, "filtering IPs above clo_depth\n");
561 *n_ips_sel = clo_depth;
562 }
njn734b8052007-11-01 04:40:37 +0000563}
nethercotec9f36922004-02-14 16:40:02 +0000564
Elliott Hughesed398002017-06-21 14:41:24 -0700565// Capture a stacktrace, and make an ec of it, without the first entry
566// if exclude_first_entry is True.
567static ExeContext* make_ec(ThreadId tid, Bool exclude_first_entry)
njn734b8052007-11-01 04:40:37 +0000568{
njnf6b00762009-04-17 04:26:41 +0000569 static Addr ips[MAX_IPS];
nethercotec9f36922004-02-14 16:40:02 +0000570
njn734b8052007-11-01 04:40:37 +0000571 // After this call, the IPs we want are in ips[0]..ips[n_ips-1].
Elliott Hughesed398002017-06-21 14:41:24 -0700572 Int n_ips = VG_(get_StackTrace)( tid, ips, clo_depth + MAX_OVERESTIMATE,
573 NULL/*array to dump SP values in*/,
574 NULL/*array to dump FP values in*/,
575 0/*first_ip_delta*/ );
576 if (exclude_first_entry && n_ips > 0) {
577 const HChar *fnname;
578 VERB(4, "removing top fn %s from stacktrace\n",
579 VG_(get_fnname)(ips[0], &fnname) ? fnname : "???");
580 return VG_(make_ExeContext_from_StackTrace)(ips+1, n_ips-1);
581 } else
582 return VG_(make_ExeContext_from_StackTrace)(ips, n_ips);
nethercotec9f36922004-02-14 16:40:02 +0000583}
584
Elliott Hughesed398002017-06-21 14:41:24 -0700585// Create (or update) in heap_xt an xec corresponding to the stacktrace of tid.
586// req_szB is added to the xec (unless ec is fully filtered).
587// Returns the correspding XTree xec.
588// exclude_first_entry is an optimisation: if True, automatically removes
589// the top level IP from the stacktrace. Should be set to True if it is known
590// that this is an alloc fn. The top function presumably will be something like
591// malloc or __builtin_new that we're sure to filter out).
592static Xecu add_heap_xt( ThreadId tid, SizeT req_szB, Bool exclude_first_entry)
593{
594 ExeContext *ec = make_ec(tid, exclude_first_entry);
595
596 if (UNLIKELY(VG_(clo_xtree_memory) == Vg_XTMemory_Full))
597 VG_(XTMemory_Full_alloc)(req_szB, ec);
598 return VG_(XT_add_to_ec) (heap_xt, ec, &req_szB);
599}
600
601// Substract req_szB from the heap_xt where.
602static void sub_heap_xt(Xecu where, SizeT req_szB, Bool exclude_first_entry)
nethercotec9f36922004-02-14 16:40:02 +0000603{
njne323a6b2010-07-01 02:35:03 +0000604 tl_assert(clo_heap);
nethercotec9f36922004-02-14 16:40:02 +0000605
Elliott Hughesed398002017-06-21 14:41:24 -0700606 if (0 == req_szB)
njn734b8052007-11-01 04:40:37 +0000607 return;
608
Elliott Hughesed398002017-06-21 14:41:24 -0700609 VG_(XT_sub_from_xecu) (heap_xt, where, &req_szB);
610 if (UNLIKELY(VG_(clo_xtree_memory) == Vg_XTMemory_Full)) {
611 ExeContext *ec_free = make_ec(VG_(get_running_tid)(),
612 exclude_first_entry);
613 VG_(XTMemory_Full_free)(req_szB,
614 VG_(XT_get_ec_from_xecu)(heap_xt, where),
615 ec_free);
njn734b8052007-11-01 04:40:37 +0000616 }
nethercotec9f36922004-02-14 16:40:02 +0000617}
618
619
njn734b8052007-11-01 04:40:37 +0000620//------------------------------------------------------------//
621//--- Snapshots ---//
622//------------------------------------------------------------//
623
624// Snapshots are done in a way so that we always have a reasonable number of
625// them. We start by taking them quickly. Once we hit our limit, we cull
626// some (eg. half), and start taking them more slowly. Once we hit the
627// limit again, we again cull and then take them even more slowly, and so
628// on.
629
njn734b8052007-11-01 04:40:37 +0000630#define UNUSED_SNAPSHOT_TIME -333 // A conspicuous negative number.
631
632typedef
633 enum {
634 Normal = 77,
635 Peak,
636 Unused
637 }
638 SnapshotKind;
nethercotec9f36922004-02-14 16:40:02 +0000639
640typedef
641 struct {
njn734b8052007-11-01 04:40:37 +0000642 SnapshotKind kind;
643 Time time;
644 SizeT heap_szB;
njn32397c02007-11-10 04:08:08 +0000645 SizeT heap_extra_szB;// Heap slop + admin bytes.
njn734b8052007-11-01 04:40:37 +0000646 SizeT stacks_szB;
Elliott Hughesed398002017-06-21 14:41:24 -0700647 XTree* xt; // Snapshot of heap_xt, if a detailed snapshot,
648 } // otherwise NULL.
njn734b8052007-11-01 04:40:37 +0000649 Snapshot;
nethercotec9f36922004-02-14 16:40:02 +0000650
njn734b8052007-11-01 04:40:37 +0000651static UInt next_snapshot_i = 0; // Index of where next snapshot will go.
652static Snapshot* snapshots; // Array of snapshots.
653
654static Bool is_snapshot_in_use(Snapshot* snapshot)
nethercotec9f36922004-02-14 16:40:02 +0000655{
njn734b8052007-11-01 04:40:37 +0000656 if (Unused == snapshot->kind) {
657 // If snapshot is unused, check all the fields are unset.
658 tl_assert(snapshot->time == UNUSED_SNAPSHOT_TIME);
njn32397c02007-11-10 04:08:08 +0000659 tl_assert(snapshot->heap_extra_szB == 0);
njn734b8052007-11-01 04:40:37 +0000660 tl_assert(snapshot->heap_szB == 0);
661 tl_assert(snapshot->stacks_szB == 0);
Elliott Hughesed398002017-06-21 14:41:24 -0700662 tl_assert(snapshot->xt == NULL);
njn734b8052007-11-01 04:40:37 +0000663 return False;
nethercotec9f36922004-02-14 16:40:02 +0000664 } else {
njn734b8052007-11-01 04:40:37 +0000665 tl_assert(snapshot->time != UNUSED_SNAPSHOT_TIME);
666 return True;
nethercotec9f36922004-02-14 16:40:02 +0000667 }
668}
669
njn734b8052007-11-01 04:40:37 +0000670static Bool is_detailed_snapshot(Snapshot* snapshot)
nethercotec9f36922004-02-14 16:40:02 +0000671{
Elliott Hughesed398002017-06-21 14:41:24 -0700672 return (snapshot->xt ? True : False);
nethercotec9f36922004-02-14 16:40:02 +0000673}
674
njn734b8052007-11-01 04:40:37 +0000675static Bool is_uncullable_snapshot(Snapshot* snapshot)
nethercotec9f36922004-02-14 16:40:02 +0000676{
njn734b8052007-11-01 04:40:37 +0000677 return &snapshots[0] == snapshot // First snapshot
678 || &snapshots[next_snapshot_i-1] == snapshot // Last snapshot
679 || snapshot->kind == Peak; // Peak snapshot
nethercotec9f36922004-02-14 16:40:02 +0000680}
681
njn734b8052007-11-01 04:40:37 +0000682static void sanity_check_snapshot(Snapshot* snapshot)
nethercotec9f36922004-02-14 16:40:02 +0000683{
Elliott Hughesed398002017-06-21 14:41:24 -0700684 // Not much we can sanity check.
685 tl_assert(snapshot->xt == NULL || snapshot->kind != Unused);
nethercotec9f36922004-02-14 16:40:02 +0000686}
687
njn734b8052007-11-01 04:40:37 +0000688// All the used entries should look used, all the unused ones should be clear.
689static void sanity_check_snapshots_array(void)
690{
691 Int i;
692 for (i = 0; i < next_snapshot_i; i++) {
693 tl_assert( is_snapshot_in_use( & snapshots[i] ));
694 }
695 for ( ; i < clo_max_snapshots; i++) {
696 tl_assert(!is_snapshot_in_use( & snapshots[i] ));
697 }
698}
nethercotec9f36922004-02-14 16:40:02 +0000699
Elliott Hughesed398002017-06-21 14:41:24 -0700700// This zeroes all the fields in the snapshot, but does not free the xt
njn734b8052007-11-01 04:40:37 +0000701// XTree if present. It also does a sanity check unless asked not to; we
702// can't sanity check at startup when clearing the initial snapshots because
703// they're full of junk.
704static void clear_snapshot(Snapshot* snapshot, Bool do_sanity_check)
705{
706 if (do_sanity_check) sanity_check_snapshot(snapshot);
707 snapshot->kind = Unused;
708 snapshot->time = UNUSED_SNAPSHOT_TIME;
njn32397c02007-11-10 04:08:08 +0000709 snapshot->heap_extra_szB = 0;
njn734b8052007-11-01 04:40:37 +0000710 snapshot->heap_szB = 0;
711 snapshot->stacks_szB = 0;
Elliott Hughesed398002017-06-21 14:41:24 -0700712 snapshot->xt = NULL;
njn734b8052007-11-01 04:40:37 +0000713}
714
Elliott Hughesed398002017-06-21 14:41:24 -0700715// This zeroes all the fields in the snapshot, and frees the heap XTree xt if
njn734b8052007-11-01 04:40:37 +0000716// present.
717static void delete_snapshot(Snapshot* snapshot)
718{
719 // Nb: if there's an XTree, we free it after calling clear_snapshot,
720 // because clear_snapshot does a sanity check which includes checking the
721 // XTree.
Elliott Hughesed398002017-06-21 14:41:24 -0700722 XTree* tmp_xt = snapshot->xt;
njn734b8052007-11-01 04:40:37 +0000723 clear_snapshot(snapshot, /*do_sanity_check*/True);
Elliott Hughesed398002017-06-21 14:41:24 -0700724 if (tmp_xt) {
725 VG_(XT_delete)(tmp_xt);
njn734b8052007-11-01 04:40:37 +0000726 }
727}
728
floriane58e8a72012-10-20 19:57:16 +0000729static void VERB_snapshot(Int verbosity, const HChar* prefix, Int i)
njn734b8052007-11-01 04:40:37 +0000730{
731 Snapshot* snapshot = &snapshots[i];
floriane58e8a72012-10-20 19:57:16 +0000732 const HChar* suffix;
njn734b8052007-11-01 04:40:37 +0000733 switch (snapshot->kind) {
734 case Peak: suffix = "p"; break;
735 case Normal: suffix = ( is_detailed_snapshot(snapshot) ? "d" : "." ); break;
736 case Unused: suffix = "u"; break;
737 default:
738 tl_assert2(0, "VERB_snapshot: unknown snapshot kind: %d", snapshot->kind);
739 }
florian16eef852015-08-03 21:05:20 +0000740 VERB(verbosity, "%s S%s%3d (t:%lld, hp:%lu, ex:%lu, st:%lu)\n",
njn734b8052007-11-01 04:40:37 +0000741 prefix, suffix, i,
742 snapshot->time,
743 snapshot->heap_szB,
njn32397c02007-11-10 04:08:08 +0000744 snapshot->heap_extra_szB,
njn734b8052007-11-01 04:40:37 +0000745 snapshot->stacks_szB
746 );
747}
748
749// Cull half the snapshots; we choose those that represent the smallest
750// time-spans, because that gives us the most even distribution of snapshots
751// over time. (It's possible to lose interesting spikes, however.)
752//
753// Algorithm for N snapshots: We find the snapshot representing the smallest
754// timeframe, and remove it. We repeat this until (N/2) snapshots are gone.
755// We have to do this one snapshot at a time, rather than finding the (N/2)
756// smallest snapshots in one hit, because when a snapshot is removed, its
757// neighbours immediately cover greater timespans. So it's O(N^2), but N is
758// small, and it's not done very often.
759//
760// Once we're done, we return the new smallest interval between snapshots.
761// That becomes our minimum time interval.
762static UInt cull_snapshots(void)
763{
764 Int i, jp, j, jn, min_timespan_i;
765 Int n_deleted = 0;
766 Time min_timespan;
767
768 n_cullings++;
769
770 // Sets j to the index of the first not-yet-removed snapshot at or after i
771 #define FIND_SNAPSHOT(i, j) \
772 for (j = i; \
773 j < clo_max_snapshots && !is_snapshot_in_use(&snapshots[j]); \
774 j++) { }
775
sewardj5ea0f392009-07-15 14:51:34 +0000776 VERB(2, "Culling...\n");
njn734b8052007-11-01 04:40:37 +0000777
778 // First we remove enough snapshots by clearing them in-place. Once
779 // that's done, we can slide the remaining ones down.
780 for (i = 0; i < clo_max_snapshots/2; i++) {
781 // Find the snapshot representing the smallest timespan. The timespan
782 // for snapshot n = d(N-1,N)+d(N,N+1), where d(A,B) is the time between
783 // snapshot A and B. We don't consider the first and last snapshots for
784 // removal.
785 Snapshot* min_snapshot;
786 Int min_j;
787
788 // Initial triple: (prev, curr, next) == (jp, j, jn)
789 // Initial min_timespan is the first one.
790 jp = 0;
791 FIND_SNAPSHOT(1, j);
792 FIND_SNAPSHOT(j+1, jn);
793 min_timespan = 0x7fffffffffffffffLL;
794 min_j = -1;
795 while (jn < clo_max_snapshots) {
796 Time timespan = snapshots[jn].time - snapshots[jp].time;
797 tl_assert(timespan >= 0);
798 // Nb: We never cull the peak snapshot.
799 if (Peak != snapshots[j].kind && timespan < min_timespan) {
800 min_timespan = timespan;
801 min_j = j;
802 }
803 // Move on to next triple
804 jp = j;
805 j = jn;
806 FIND_SNAPSHOT(jn+1, jn);
807 }
808 // We've found the least important snapshot, now delete it. First
809 // print it if necessary.
810 tl_assert(-1 != min_j); // Check we found a minimum.
811 min_snapshot = & snapshots[ min_j ];
812 if (VG_(clo_verbosity) > 1) {
florianef901ff2014-11-16 09:56:42 +0000813 HChar buf[64]; // large enough
njn734b8052007-11-01 04:40:37 +0000814 VG_(snprintf)(buf, 64, " %3d (t-span = %lld)", i, min_timespan);
815 VERB_snapshot(2, buf, min_j);
816 }
817 delete_snapshot(min_snapshot);
818 n_deleted++;
819 }
820
821 // Slide down the remaining snapshots over the removed ones. First set i
822 // to point to the first empty slot, and j to the first full slot after
823 // i. Then slide everything down.
824 for (i = 0; is_snapshot_in_use( &snapshots[i] ); i++) { }
825 for (j = i; !is_snapshot_in_use( &snapshots[j] ); j++) { }
826 for ( ; j < clo_max_snapshots; j++) {
827 if (is_snapshot_in_use( &snapshots[j] )) {
828 snapshots[i++] = snapshots[j];
829 clear_snapshot(&snapshots[j], /*do_sanity_check*/True);
830 }
831 }
832 next_snapshot_i = i;
833
834 // Check snapshots array looks ok after changes.
835 sanity_check_snapshots_array();
836
837 // Find the minimum timespan remaining; that will be our new minimum
838 // time interval. Note that above we were finding timespans by measuring
839 // two intervals around a snapshot that was under consideration for
840 // deletion. Here we only measure single intervals because all the
841 // deletions have occurred.
842 //
843 // But we have to be careful -- some snapshots (eg. snapshot 0, and the
844 // peak snapshot) are uncullable. If two uncullable snapshots end up
845 // next to each other, they'll never be culled (assuming the peak doesn't
846 // change), and the time gap between them will not change. However, the
847 // time between the remaining cullable snapshots will grow ever larger.
848 // This means that the min_timespan found will always be that between the
849 // two uncullable snapshots, and it will be much smaller than it should
850 // be. To avoid this problem, when computing the minimum timespan, we
851 // ignore any timespans between two uncullable snapshots.
852 tl_assert(next_snapshot_i > 1);
853 min_timespan = 0x7fffffffffffffffLL;
854 min_timespan_i = -1;
855 for (i = 1; i < next_snapshot_i; i++) {
856 if (is_uncullable_snapshot(&snapshots[i]) &&
857 is_uncullable_snapshot(&snapshots[i-1]))
858 {
sewardj5ea0f392009-07-15 14:51:34 +0000859 VERB(2, "(Ignoring interval %d--%d when computing minimum)\n", i-1, i);
njn734b8052007-11-01 04:40:37 +0000860 } else {
861 Time timespan = snapshots[i].time - snapshots[i-1].time;
862 tl_assert(timespan >= 0);
863 if (timespan < min_timespan) {
864 min_timespan = timespan;
865 min_timespan_i = i;
866 }
867 }
868 }
869 tl_assert(-1 != min_timespan_i); // Check we found a minimum.
870
871 // Print remaining snapshots, if necessary.
872 if (VG_(clo_verbosity) > 1) {
sewardj5ea0f392009-07-15 14:51:34 +0000873 VERB(2, "Finished culling (%3d of %3d deleted)\n",
njn734b8052007-11-01 04:40:37 +0000874 n_deleted, clo_max_snapshots);
875 for (i = 0; i < next_snapshot_i; i++) {
876 VERB_snapshot(2, " post-cull", i);
877 }
sewardj5ea0f392009-07-15 14:51:34 +0000878 VERB(2, "New time interval = %lld (between snapshots %d and %d)\n",
njn734b8052007-11-01 04:40:37 +0000879 min_timespan, min_timespan_i-1, min_timespan_i);
880 }
881
882 return min_timespan;
883}
884
885static Time get_time(void)
886{
887 // Get current time, in whatever time unit we're using.
njn1a2741a2007-11-26 21:59:04 +0000888 if (clo_time_unit == TimeI) {
889 return guest_instrs_executed;
890 } else if (clo_time_unit == TimeMS) {
njn734b8052007-11-01 04:40:37 +0000891 // Some stuff happens between the millisecond timer being initialised
892 // to zero and us taking our first snapshot. We determine that time
893 // gap so we can subtract it from all subsequent times so that our
894 // first snapshot is considered to be at t = 0ms. Unfortunately, a
895 // bunch of symbols get read after the first snapshot is taken but
896 // before the second one (which is triggered by the first allocation),
897 // so when the time-unit is 'ms' we always have a big gap between the
898 // first two snapshots. But at least users won't have to wonder why
899 // the first snapshot isn't at t=0.
900 static Bool is_first_get_time = True;
901 static Time start_time_ms;
902 if (is_first_get_time) {
903 start_time_ms = VG_(read_millisecond_timer)();
904 is_first_get_time = False;
905 return 0;
906 } else {
907 return VG_(read_millisecond_timer)() - start_time_ms;
908 }
909 } else if (clo_time_unit == TimeB) {
910 return total_allocs_deallocs_szB;
911 } else {
912 tl_assert2(0, "bad --time-unit value");
913 }
914}
915
916// Take a snapshot, and only that -- decisions on whether to take a
917// snapshot, or what kind of snapshot, are made elsewhere.
njnf76d27a2009-05-28 01:53:07 +0000918// Nb: we call the arg "my_time" because "time" shadows a global declaration
919// in /usr/include/time.h on Darwin.
njn734b8052007-11-01 04:40:37 +0000920static void
njnf76d27a2009-05-28 01:53:07 +0000921take_snapshot(Snapshot* snapshot, SnapshotKind kind, Time my_time,
njnefc13c22009-02-23 06:44:51 +0000922 Bool is_detailed)
njn734b8052007-11-01 04:40:37 +0000923{
924 tl_assert(!is_snapshot_in_use(snapshot));
njne323a6b2010-07-01 02:35:03 +0000925 if (!clo_pages_as_heap) {
926 tl_assert(have_started_executing_code);
927 }
njn734b8052007-11-01 04:40:37 +0000928
929 // Heap and heap admin.
930 if (clo_heap) {
931 snapshot->heap_szB = heap_szB;
932 if (is_detailed) {
Elliott Hughesed398002017-06-21 14:41:24 -0700933 snapshot->xt = VG_(XT_snapshot)(heap_xt);
njn734b8052007-11-01 04:40:37 +0000934 }
njn32397c02007-11-10 04:08:08 +0000935 snapshot->heap_extra_szB = heap_extra_szB;
njn734b8052007-11-01 04:40:37 +0000936 }
937
938 // Stack(s).
939 if (clo_stacks) {
940 snapshot->stacks_szB = stacks_szB;
941 }
942
943 // Rest of snapshot.
944 snapshot->kind = kind;
njnf76d27a2009-05-28 01:53:07 +0000945 snapshot->time = my_time;
njn734b8052007-11-01 04:40:37 +0000946 sanity_check_snapshot(snapshot);
947
948 // Update stats.
949 if (Peak == kind) n_peak_snapshots++;
950 if (is_detailed) n_detailed_snapshots++;
951 n_real_snapshots++;
952}
953
954
955// Take a snapshot, if it's time, or if we've hit a peak.
956static void
floriane58e8a72012-10-20 19:57:16 +0000957maybe_take_snapshot(SnapshotKind kind, const HChar* what)
njn734b8052007-11-01 04:40:37 +0000958{
959 // 'min_time_interval' is the minimum time interval between snapshots.
960 // If we try to take a snapshot and less than this much time has passed,
961 // we don't take it. It gets larger as the program runs longer. It's
962 // initialised to zero so that we begin by taking snapshots as quickly as
963 // possible.
964 static Time min_time_interval = 0;
965 // Zero allows startup snapshot.
966 static Time earliest_possible_time_of_next_snapshot = 0;
967 static Int n_snapshots_since_last_detailed = 0;
968 static Int n_skipped_snapshots_since_last_snapshot = 0;
969
970 Snapshot* snapshot;
971 Bool is_detailed;
njnf76d27a2009-05-28 01:53:07 +0000972 // Nb: we call this variable "my_time" because "time" shadows a global
973 // declaration in /usr/include/time.h on Darwin.
974 Time my_time = get_time();
njn734b8052007-11-01 04:40:37 +0000975
976 switch (kind) {
977 case Normal:
978 // Only do a snapshot if it's time.
njnf76d27a2009-05-28 01:53:07 +0000979 if (my_time < earliest_possible_time_of_next_snapshot) {
njn734b8052007-11-01 04:40:37 +0000980 n_skipped_snapshots++;
981 n_skipped_snapshots_since_last_snapshot++;
982 return;
983 }
984 is_detailed = (clo_detailed_freq-1 == n_snapshots_since_last_detailed);
985 break;
986
987 case Peak: {
988 // Because we're about to do a deallocation, we're coming down from a
989 // local peak. If it is (a) actually a global peak, and (b) a certain
990 // amount bigger than the previous peak, then we take a peak snapshot.
991 // By not taking a snapshot for every peak, we save a lot of effort --
992 // because many peaks remain peak only for a short time.
njn32397c02007-11-10 04:08:08 +0000993 SizeT total_szB = heap_szB + heap_extra_szB + stacks_szB;
njn734b8052007-11-01 04:40:37 +0000994 SizeT excess_szB_for_new_peak =
njn62721e92007-11-11 22:15:58 +0000995 (SizeT)((peak_snapshot_total_szB * clo_peak_inaccuracy) / 100);
njn734b8052007-11-01 04:40:37 +0000996 if (total_szB <= peak_snapshot_total_szB + excess_szB_for_new_peak) {
997 return;
998 }
999 is_detailed = True;
1000 break;
1001 }
1002
1003 default:
1004 tl_assert2(0, "maybe_take_snapshot: unrecognised snapshot kind");
1005 }
1006
1007 // Take the snapshot.
1008 snapshot = & snapshots[next_snapshot_i];
njnf76d27a2009-05-28 01:53:07 +00001009 take_snapshot(snapshot, kind, my_time, is_detailed);
njn734b8052007-11-01 04:40:37 +00001010
1011 // Record if it was detailed.
1012 if (is_detailed) {
1013 n_snapshots_since_last_detailed = 0;
1014 } else {
1015 n_snapshots_since_last_detailed++;
1016 }
1017
1018 // Update peak data, if it's a Peak snapshot.
1019 if (Peak == kind) {
1020 Int i, number_of_peaks_snapshots_found = 0;
1021
1022 // Sanity check the size, then update our recorded peak.
1023 SizeT snapshot_total_szB =
njn32397c02007-11-10 04:08:08 +00001024 snapshot->heap_szB + snapshot->heap_extra_szB + snapshot->stacks_szB;
njn734b8052007-11-01 04:40:37 +00001025 tl_assert2(snapshot_total_szB > peak_snapshot_total_szB,
1026 "%ld, %ld\n", snapshot_total_szB, peak_snapshot_total_szB);
1027 peak_snapshot_total_szB = snapshot_total_szB;
1028
1029 // Find the old peak snapshot, if it exists, and mark it as normal.
1030 for (i = 0; i < next_snapshot_i; i++) {
1031 if (Peak == snapshots[i].kind) {
1032 snapshots[i].kind = Normal;
1033 number_of_peaks_snapshots_found++;
1034 }
1035 }
1036 tl_assert(number_of_peaks_snapshots_found <= 1);
1037 }
1038
1039 // Finish up verbosity and stats stuff.
1040 if (n_skipped_snapshots_since_last_snapshot > 0) {
sewardj5ea0f392009-07-15 14:51:34 +00001041 VERB(2, " (skipped %d snapshot%s)\n",
njn734b8052007-11-01 04:40:37 +00001042 n_skipped_snapshots_since_last_snapshot,
njn84f32b22009-02-10 07:14:37 +00001043 ( 1 == n_skipped_snapshots_since_last_snapshot ? "" : "s") );
njn734b8052007-11-01 04:40:37 +00001044 }
1045 VERB_snapshot(2, what, next_snapshot_i);
1046 n_skipped_snapshots_since_last_snapshot = 0;
1047
1048 // Cull the entries, if our snapshot table is full.
1049 next_snapshot_i++;
1050 if (clo_max_snapshots == next_snapshot_i) {
1051 min_time_interval = cull_snapshots();
1052 }
1053
1054 // Work out the earliest time when the next snapshot can happen.
njnf76d27a2009-05-28 01:53:07 +00001055 earliest_possible_time_of_next_snapshot = my_time + min_time_interval;
njn734b8052007-11-01 04:40:37 +00001056}
1057
1058
1059//------------------------------------------------------------//
1060//--- Sanity checking ---//
1061//------------------------------------------------------------//
1062
1063static Bool ms_cheap_sanity_check ( void )
1064{
1065 return True; // Nothing useful we can cheaply check.
1066}
1067
1068static Bool ms_expensive_sanity_check ( void )
1069{
Elliott Hughesed398002017-06-21 14:41:24 -07001070 tl_assert(heap_xt);
njn734b8052007-11-01 04:40:37 +00001071 sanity_check_snapshots_array();
1072 return True;
1073}
1074
1075
1076//------------------------------------------------------------//
1077//--- Heap management ---//
1078//------------------------------------------------------------//
1079
Elliott Hughesed398002017-06-21 14:41:24 -07001080// Metadata for heap blocks. Each one contains an Xecu,
1081// which identifies the XTree ec at which it was allocated. From
1082// HP_Chunks, XTree ec 'space' field is incremented (at allocation) and
njn734b8052007-11-01 04:40:37 +00001083// decremented (at deallocation).
1084//
1085// Nb: first two fields must match core's VgHashNode.
1086typedef
1087 struct _HP_Chunk {
1088 struct _HP_Chunk* next;
njn32397c02007-11-10 04:08:08 +00001089 Addr data; // Ptr to actual block
1090 SizeT req_szB; // Size requested
1091 SizeT slop_szB; // Extra bytes given above those requested
Elliott Hughesed398002017-06-21 14:41:24 -07001092 Xecu where; // Where allocated; XTree xecu from heap_xt
njn734b8052007-11-01 04:40:37 +00001093 }
1094 HP_Chunk;
1095
Elliott Hughesed398002017-06-21 14:41:24 -07001096/* Pool allocator for HP_Chunk. */
1097static PoolAlloc *HP_chunk_poolalloc = NULL;
1098
florian09a4c792014-10-18 10:58:05 +00001099static VgHashTable *malloc_list = NULL; // HP_Chunks
njn734b8052007-11-01 04:40:37 +00001100
1101static void update_alloc_stats(SSizeT szB_delta)
1102{
1103 // Update total_allocs_deallocs_szB.
1104 if (szB_delta < 0) szB_delta = -szB_delta;
1105 total_allocs_deallocs_szB += szB_delta;
1106}
1107
njn32397c02007-11-10 04:08:08 +00001108static void update_heap_stats(SSizeT heap_szB_delta, Int heap_extra_szB_delta)
njn734b8052007-11-01 04:40:37 +00001109{
njn32397c02007-11-10 04:08:08 +00001110 if (heap_szB_delta < 0)
1111 tl_assert(heap_szB >= -heap_szB_delta);
1112 if (heap_extra_szB_delta < 0)
1113 tl_assert(heap_extra_szB >= -heap_extra_szB_delta);
njn734b8052007-11-01 04:40:37 +00001114
njn32397c02007-11-10 04:08:08 +00001115 heap_extra_szB += heap_extra_szB_delta;
1116 heap_szB += heap_szB_delta;
1117
1118 update_alloc_stats(heap_szB_delta + heap_extra_szB_delta);
njn734b8052007-11-01 04:40:37 +00001119}
nethercotec9f36922004-02-14 16:40:02 +00001120
nethercote159dfef2004-09-13 13:27:30 +00001121static
njne323a6b2010-07-01 02:35:03 +00001122void* record_block( ThreadId tid, void* p, SizeT req_szB, SizeT slop_szB,
1123 Bool exclude_first_entry, Bool maybe_snapshot )
nethercotec9f36922004-02-14 16:40:02 +00001124{
njnf1c5def2005-08-11 02:17:07 +00001125 // Make new HP_Chunk node, add to malloc_list
Elliott Hughesed398002017-06-21 14:41:24 -07001126 HP_Chunk* hc = VG_(allocEltPA)(HP_chunk_poolalloc);
njn32397c02007-11-10 04:08:08 +00001127 hc->req_szB = req_szB;
1128 hc->slop_szB = slop_szB;
1129 hc->data = (Addr)p;
Elliott Hughesed398002017-06-21 14:41:24 -07001130 hc->where = 0;
njn246a9d22005-08-14 06:24:20 +00001131 VG_(HT_add_node)(malloc_list, hc);
nethercote57e36b32004-07-10 14:56:28 +00001132
njn734b8052007-11-01 04:40:37 +00001133 if (clo_heap) {
njne323a6b2010-07-01 02:35:03 +00001134 VERB(3, "<<< record_block (%lu, %lu)\n", req_szB, slop_szB);
njn734b8052007-11-01 04:40:37 +00001135
Elliott Hughesed398002017-06-21 14:41:24 -07001136 hc->where = add_heap_xt( tid, req_szB, exclude_first_entry);
njn734b8052007-11-01 04:40:37 +00001137
Elliott Hughesed398002017-06-21 14:41:24 -07001138 if (VG_(XT_n_ips_sel)(heap_xt, hc->where) > 0) {
njnf6b00762009-04-17 04:26:41 +00001139 // Update statistics.
1140 n_heap_allocs++;
1141
1142 // Update heap stats.
1143 update_heap_stats(req_szB, clo_heap_admin + slop_szB);
1144
njnf6b00762009-04-17 04:26:41 +00001145 // Maybe take a snapshot.
njne323a6b2010-07-01 02:35:03 +00001146 if (maybe_snapshot) {
1147 maybe_take_snapshot(Normal, " alloc");
1148 }
njnf6b00762009-04-17 04:26:41 +00001149
1150 } else {
1151 // Ignored allocation.
1152 n_ignored_heap_allocs++;
1153
sewardj5ea0f392009-07-15 14:51:34 +00001154 VERB(3, "(ignored)\n");
njnf6b00762009-04-17 04:26:41 +00001155 }
njn734b8052007-11-01 04:40:37 +00001156
sewardj5ea0f392009-07-15 14:51:34 +00001157 VERB(3, ">>>\n");
njn734b8052007-11-01 04:40:37 +00001158 }
nethercotec9f36922004-02-14 16:40:02 +00001159
nethercotec9f36922004-02-14 16:40:02 +00001160 return p;
1161}
1162
1163static __inline__
njne323a6b2010-07-01 02:35:03 +00001164void* alloc_and_record_block ( ThreadId tid, SizeT req_szB, SizeT req_alignB,
1165 Bool is_zeroed )
1166{
1167 SizeT actual_szB, slop_szB;
1168 void* p;
1169
1170 if ((SSizeT)req_szB < 0) return NULL;
1171
1172 // Allocate and zero if necessary.
1173 p = VG_(cli_malloc)( req_alignB, req_szB );
1174 if (!p) {
1175 return NULL;
1176 }
1177 if (is_zeroed) VG_(memset)(p, 0, req_szB);
floriane464e802014-09-11 20:15:23 +00001178 actual_szB = VG_(cli_malloc_usable_size)(p);
njne323a6b2010-07-01 02:35:03 +00001179 tl_assert(actual_szB >= req_szB);
1180 slop_szB = actual_szB - req_szB;
1181
1182 // Record block.
1183 record_block(tid, p, req_szB, slop_szB, /*exclude_first_entry*/True,
1184 /*maybe_snapshot*/True);
1185
1186 return p;
1187}
1188
1189static __inline__
Elliott Hughesed398002017-06-21 14:41:24 -07001190void unrecord_block ( void* p, Bool maybe_snapshot, Bool exclude_first_entry )
nethercotec9f36922004-02-14 16:40:02 +00001191{
njnf1c5def2005-08-11 02:17:07 +00001192 // Remove HP_Chunk from malloc_list
njn7081c1a2009-05-19 01:53:30 +00001193 HP_Chunk* hc = VG_(HT_remove)(malloc_list, (UWord)p);
njn734b8052007-11-01 04:40:37 +00001194 if (NULL == hc) {
njn5cc5d7e2005-08-11 02:09:25 +00001195 return; // must have been a bogus free()
njn734b8052007-11-01 04:40:37 +00001196 }
nethercotec9f36922004-02-14 16:40:02 +00001197
njn734b8052007-11-01 04:40:37 +00001198 if (clo_heap) {
njne323a6b2010-07-01 02:35:03 +00001199 VERB(3, "<<< unrecord_block\n");
nethercotec9f36922004-02-14 16:40:02 +00001200
Elliott Hughesed398002017-06-21 14:41:24 -07001201 if (VG_(XT_n_ips_sel)(heap_xt, hc->where) > 0) {
njnf6b00762009-04-17 04:26:41 +00001202 // Update statistics.
1203 n_heap_frees++;
nethercote57e36b32004-07-10 14:56:28 +00001204
njnf6b00762009-04-17 04:26:41 +00001205 // Maybe take a peak snapshot, since it's a deallocation.
njne323a6b2010-07-01 02:35:03 +00001206 if (maybe_snapshot) {
1207 maybe_take_snapshot(Peak, "de-PEAK");
1208 }
njn734b8052007-11-01 04:40:37 +00001209
njnf6b00762009-04-17 04:26:41 +00001210 // Update heap stats.
1211 update_heap_stats(-hc->req_szB, -clo_heap_admin - hc->slop_szB);
njn734b8052007-11-01 04:40:37 +00001212
njnf6b00762009-04-17 04:26:41 +00001213 // Update XTree.
Elliott Hughesed398002017-06-21 14:41:24 -07001214 sub_heap_xt(hc->where, hc->req_szB, exclude_first_entry);
njn734b8052007-11-01 04:40:37 +00001215
njnf6b00762009-04-17 04:26:41 +00001216 // Maybe take a snapshot.
njne323a6b2010-07-01 02:35:03 +00001217 if (maybe_snapshot) {
1218 maybe_take_snapshot(Normal, "dealloc");
1219 }
njnf6b00762009-04-17 04:26:41 +00001220
1221 } else {
1222 n_ignored_heap_frees++;
1223
sewardj5ea0f392009-07-15 14:51:34 +00001224 VERB(3, "(ignored)\n");
njnf6b00762009-04-17 04:26:41 +00001225 }
njn734b8052007-11-01 04:40:37 +00001226
sewardj5ea0f392009-07-15 14:51:34 +00001227 VERB(3, ">>> (-%lu, -%lu)\n", hc->req_szB, hc->slop_szB);
njn734b8052007-11-01 04:40:37 +00001228 }
1229
1230 // Actually free the chunk, and the heap block (if necessary)
Elliott Hughesed398002017-06-21 14:41:24 -07001231 VG_(freeEltPA) (HP_chunk_poolalloc, hc); hc = NULL;
nethercotec9f36922004-02-14 16:40:02 +00001232}
1233
njnf6b00762009-04-17 04:26:41 +00001234// Nb: --ignore-fn is tricky for realloc. If the block's original alloc was
1235// ignored, but the realloc is not requested to be ignored, and we are
1236// shrinking the block, then we have to ignore the realloc -- otherwise we
1237// could end up with negative heap sizes. This isn't a danger if we are
1238// growing such a block, but for consistency (it also simplifies things) we
1239// ignore such reallocs as well.
Elliott Hughesed398002017-06-21 14:41:24 -07001240// PW Nov 2016 xtree work: why can't we just consider that a realloc of an
1241// ignored alloc is just a new alloc (i.e. do not remove the old sz from the
1242// stats). Then everything would be fine, and a non ignored realloc would be
1243// counted properly.
njn734b8052007-11-01 04:40:37 +00001244static __inline__
njne323a6b2010-07-01 02:35:03 +00001245void* realloc_block ( ThreadId tid, void* p_old, SizeT new_req_szB )
nethercotec9f36922004-02-14 16:40:02 +00001246{
njn734b8052007-11-01 04:40:37 +00001247 HP_Chunk* hc;
1248 void* p_new;
njn32397c02007-11-10 04:08:08 +00001249 SizeT old_req_szB, old_slop_szB, new_slop_szB, new_actual_szB;
Elliott Hughesed398002017-06-21 14:41:24 -07001250 Xecu old_where;
njnf6b00762009-04-17 04:26:41 +00001251 Bool is_ignored = False;
njn734b8052007-11-01 04:40:37 +00001252
1253 // Remove the old block
1254 hc = VG_(HT_remove)(malloc_list, (UWord)p_old);
1255 if (hc == NULL) {
1256 return NULL; // must have been a bogus realloc()
1257 }
1258
njn32397c02007-11-10 04:08:08 +00001259 old_req_szB = hc->req_szB;
1260 old_slop_szB = hc->slop_szB;
njn734b8052007-11-01 04:40:37 +00001261
njne323a6b2010-07-01 02:35:03 +00001262 tl_assert(!clo_pages_as_heap); // Shouldn't be here if --pages-as-heap=yes.
njn734b8052007-11-01 04:40:37 +00001263 if (clo_heap) {
njne323a6b2010-07-01 02:35:03 +00001264 VERB(3, "<<< realloc_block (%lu)\n", new_req_szB);
njn734b8052007-11-01 04:40:37 +00001265
Elliott Hughesed398002017-06-21 14:41:24 -07001266 if (VG_(XT_n_ips_sel)(heap_xt, hc->where) > 0) {
njnf6b00762009-04-17 04:26:41 +00001267 // Update statistics.
1268 n_heap_reallocs++;
njn734b8052007-11-01 04:40:37 +00001269
njnf6b00762009-04-17 04:26:41 +00001270 // Maybe take a peak snapshot, if it's (effectively) a deallocation.
1271 if (new_req_szB < old_req_szB) {
1272 maybe_take_snapshot(Peak, "re-PEAK");
1273 }
1274 } else {
1275 // The original malloc was ignored, so we have to ignore the
1276 // realloc as well.
1277 is_ignored = True;
njn734b8052007-11-01 04:40:37 +00001278 }
njn734b8052007-11-01 04:40:37 +00001279 }
1280
1281 // Actually do the allocation, if necessary.
njn32397c02007-11-10 04:08:08 +00001282 if (new_req_szB <= old_req_szB + old_slop_szB) {
1283 // New size is smaller or same; block not moved.
njn734b8052007-11-01 04:40:37 +00001284 p_new = p_old;
njn32397c02007-11-10 04:08:08 +00001285 new_slop_szB = old_slop_szB + (old_req_szB - new_req_szB);
njn734b8052007-11-01 04:40:37 +00001286
1287 } else {
njn32397c02007-11-10 04:08:08 +00001288 // New size is bigger; make new block, copy shared contents, free old.
1289 p_new = VG_(cli_malloc)(VG_(clo_alignment), new_req_szB);
1290 if (!p_new) {
1291 // Nb: if realloc fails, NULL is returned but the old block is not
1292 // touched. What an awful function.
1293 return NULL;
njn734b8052007-11-01 04:40:37 +00001294 }
njndfa408c2011-08-08 01:58:50 +00001295 VG_(memcpy)(p_new, p_old, old_req_szB + old_slop_szB);
njn32397c02007-11-10 04:08:08 +00001296 VG_(cli_free)(p_old);
floriane464e802014-09-11 20:15:23 +00001297 new_actual_szB = VG_(cli_malloc_usable_size)(p_new);
njn32397c02007-11-10 04:08:08 +00001298 tl_assert(new_actual_szB >= new_req_szB);
1299 new_slop_szB = new_actual_szB - new_req_szB;
njn734b8052007-11-01 04:40:37 +00001300 }
1301
1302 if (p_new) {
1303 // Update HP_Chunk.
njn32397c02007-11-10 04:08:08 +00001304 hc->data = (Addr)p_new;
1305 hc->req_szB = new_req_szB;
1306 hc->slop_szB = new_slop_szB;
1307 old_where = hc->where;
Elliott Hughesed398002017-06-21 14:41:24 -07001308 hc->where = 0;
njn734b8052007-11-01 04:40:37 +00001309
1310 // Update XTree.
1311 if (clo_heap) {
Elliott Hughesed398002017-06-21 14:41:24 -07001312 hc->where = add_heap_xt( tid, new_req_szB,
1313 /*exclude_first_entry*/True);
1314 if (!is_ignored && VG_(XT_n_ips_sel)(heap_xt, hc->where) > 0) {
1315 sub_heap_xt(old_where, old_req_szB, /*exclude_first_entry*/True);
njnf6b00762009-04-17 04:26:41 +00001316 } else {
1317 // The realloc itself is ignored.
1318 is_ignored = True;
1319
Elliott Hughesed398002017-06-21 14:41:24 -07001320 /* XTREE??? hack to have something compatible with pre
1321 m_xtree massif: if the previous alloc/realloc was
1322 ignored, and this one is not ignored, then keep the
1323 previous where, to continue marking this memory as
1324 ignored. */
1325 if (VG_(XT_n_ips_sel)(heap_xt, hc->where) > 0
1326 && VG_(XT_n_ips_sel)(heap_xt, old_where) == 0)
1327 hc->where = old_where;
1328
njnf6b00762009-04-17 04:26:41 +00001329 // Update statistics.
1330 n_ignored_heap_reallocs++;
1331 }
njn734b8052007-11-01 04:40:37 +00001332 }
1333 }
1334
1335 // Now insert the new hc (with a possibly new 'data' field) into
1336 // malloc_list. If this realloc() did not increase the memory size, we
1337 // will have removed and then re-added hc unnecessarily. But that's ok
1338 // because shrinking a block with realloc() is (presumably) much rarer
1339 // than growing it, and this way simplifies the growing case.
1340 VG_(HT_add_node)(malloc_list, hc);
1341
njn734b8052007-11-01 04:40:37 +00001342 if (clo_heap) {
njnf6b00762009-04-17 04:26:41 +00001343 if (!is_ignored) {
1344 // Update heap stats.
1345 update_heap_stats(new_req_szB - old_req_szB,
Elliott Hughesed398002017-06-21 14:41:24 -07001346 new_slop_szB - old_slop_szB);
njn32397c02007-11-10 04:08:08 +00001347
njnf6b00762009-04-17 04:26:41 +00001348 // Maybe take a snapshot.
1349 maybe_take_snapshot(Normal, "realloc");
1350 } else {
1351
sewardj5ea0f392009-07-15 14:51:34 +00001352 VERB(3, "(ignored)\n");
njnf6b00762009-04-17 04:26:41 +00001353 }
njn734b8052007-11-01 04:40:37 +00001354
sewardj5ea0f392009-07-15 14:51:34 +00001355 VERB(3, ">>> (%ld, %ld)\n",
florian16eef852015-08-03 21:05:20 +00001356 (SSizeT)(new_req_szB - old_req_szB),
1357 (SSizeT)(new_slop_szB - old_slop_szB));
njn734b8052007-11-01 04:40:37 +00001358 }
1359
1360 return p_new;
nethercotec9f36922004-02-14 16:40:02 +00001361}
1362
njn734b8052007-11-01 04:40:37 +00001363
1364//------------------------------------------------------------//
1365//--- malloc() et al replacement wrappers ---//
1366//------------------------------------------------------------//
1367
1368static void* ms_malloc ( ThreadId tid, SizeT szB )
nethercotec9f36922004-02-14 16:40:02 +00001369{
njne323a6b2010-07-01 02:35:03 +00001370 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False );
nethercotec9f36922004-02-14 16:40:02 +00001371}
1372
njn734b8052007-11-01 04:40:37 +00001373static void* ms___builtin_new ( ThreadId tid, SizeT szB )
nethercotec9f36922004-02-14 16:40:02 +00001374{
njne323a6b2010-07-01 02:35:03 +00001375 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False );
nethercotec9f36922004-02-14 16:40:02 +00001376}
1377
njn734b8052007-11-01 04:40:37 +00001378static void* ms___builtin_vec_new ( ThreadId tid, SizeT szB )
fitzhardinge51f3ff12004-03-04 22:42:03 +00001379{
njne323a6b2010-07-01 02:35:03 +00001380 return alloc_and_record_block( tid, szB, VG_(clo_alignment), /*is_zeroed*/False );
njn734b8052007-11-01 04:40:37 +00001381}
1382
1383static void* ms_calloc ( ThreadId tid, SizeT m, SizeT szB )
1384{
njne323a6b2010-07-01 02:35:03 +00001385 return alloc_and_record_block( tid, m*szB, VG_(clo_alignment), /*is_zeroed*/True );
njn734b8052007-11-01 04:40:37 +00001386}
1387
1388static void *ms_memalign ( ThreadId tid, SizeT alignB, SizeT szB )
1389{
njne323a6b2010-07-01 02:35:03 +00001390 return alloc_and_record_block( tid, szB, alignB, False );
fitzhardinge51f3ff12004-03-04 22:42:03 +00001391}
1392
njnefc13c22009-02-23 06:44:51 +00001393static void ms_free ( ThreadId tid __attribute__((unused)), void* p )
nethercotec9f36922004-02-14 16:40:02 +00001394{
Elliott Hughesed398002017-06-21 14:41:24 -07001395 unrecord_block(p, /*maybe_snapshot*/True, /*exclude_first_entry*/True);
njne323a6b2010-07-01 02:35:03 +00001396 VG_(cli_free)(p);
nethercotec9f36922004-02-14 16:40:02 +00001397}
1398
njn51d827b2005-05-09 01:02:08 +00001399static void ms___builtin_delete ( ThreadId tid, void* p )
nethercotec9f36922004-02-14 16:40:02 +00001400{
Elliott Hughesed398002017-06-21 14:41:24 -07001401 unrecord_block(p, /*maybe_snapshot*/True, /*exclude_first_entry*/True);
njne323a6b2010-07-01 02:35:03 +00001402 VG_(cli_free)(p);
nethercotec9f36922004-02-14 16:40:02 +00001403}
1404
njn51d827b2005-05-09 01:02:08 +00001405static void ms___builtin_vec_delete ( ThreadId tid, void* p )
nethercotec9f36922004-02-14 16:40:02 +00001406{
Elliott Hughesed398002017-06-21 14:41:24 -07001407 unrecord_block(p, /*maybe_snapshot*/True, /*exclude_first_entry*/True);
njne323a6b2010-07-01 02:35:03 +00001408 VG_(cli_free)(p);
nethercotec9f36922004-02-14 16:40:02 +00001409}
1410
njn734b8052007-11-01 04:40:37 +00001411static void* ms_realloc ( ThreadId tid, void* p_old, SizeT new_szB )
nethercotec9f36922004-02-14 16:40:02 +00001412{
njne323a6b2010-07-01 02:35:03 +00001413 return realloc_block(tid, p_old, new_szB);
nethercotec9f36922004-02-14 16:40:02 +00001414}
1415
njnefc13c22009-02-23 06:44:51 +00001416static SizeT ms_malloc_usable_size ( ThreadId tid, void* p )
njn8b140de2009-02-17 04:31:18 +00001417{
1418 HP_Chunk* hc = VG_(HT_lookup)( malloc_list, (UWord)p );
1419
1420 return ( hc ? hc->req_szB + hc->slop_szB : 0 );
1421}
nethercotec9f36922004-02-14 16:40:02 +00001422
njn734b8052007-11-01 04:40:37 +00001423//------------------------------------------------------------//
njne323a6b2010-07-01 02:35:03 +00001424//--- Page handling ---//
1425//------------------------------------------------------------//
1426
1427static
1428void ms_record_page_mem ( Addr a, SizeT len )
1429{
1430 ThreadId tid = VG_(get_running_tid)();
1431 Addr end;
1432 tl_assert(VG_IS_PAGE_ALIGNED(len));
1433 tl_assert(len >= VKI_PAGE_SIZE);
1434 // Record the first N-1 pages as blocks, but don't do any snapshots.
1435 for (end = a + len - VKI_PAGE_SIZE; a < end; a += VKI_PAGE_SIZE) {
1436 record_block( tid, (void*)a, VKI_PAGE_SIZE, /*slop_szB*/0,
1437 /*exclude_first_entry*/False, /*maybe_snapshot*/False );
1438 }
1439 // Record the last page as a block, and maybe do a snapshot afterwards.
1440 record_block( tid, (void*)a, VKI_PAGE_SIZE, /*slop_szB*/0,
1441 /*exclude_first_entry*/False, /*maybe_snapshot*/True );
1442}
1443
1444static
1445void ms_unrecord_page_mem( Addr a, SizeT len )
1446{
1447 Addr end;
1448 tl_assert(VG_IS_PAGE_ALIGNED(len));
1449 tl_assert(len >= VKI_PAGE_SIZE);
Elliott Hughesa0664b92017-04-18 17:46:52 -07001450 // Unrecord the first page. This might be the peak, so do a snapshot.
Elliott Hughesed398002017-06-21 14:41:24 -07001451 unrecord_block((void*)a, /*maybe_snapshot*/True,
1452 /*exclude_first_entry*/False);
Elliott Hughesa0664b92017-04-18 17:46:52 -07001453 a += VKI_PAGE_SIZE;
1454 // Then unrecord the remaining pages, but without snapshots.
njne323a6b2010-07-01 02:35:03 +00001455 for (end = a + len - VKI_PAGE_SIZE; a < end; a += VKI_PAGE_SIZE) {
Elliott Hughesed398002017-06-21 14:41:24 -07001456 unrecord_block((void*)a, /*maybe_snapshot*/False,
1457 /*exclude_first_entry*/False);
njne323a6b2010-07-01 02:35:03 +00001458 }
njne323a6b2010-07-01 02:35:03 +00001459}
1460
1461//------------------------------------------------------------//
1462
1463static
1464void ms_new_mem_mmap ( Addr a, SizeT len,
1465 Bool rr, Bool ww, Bool xx, ULong di_handle )
1466{
1467 tl_assert(VG_IS_PAGE_ALIGNED(len));
1468 ms_record_page_mem(a, len);
1469}
1470
1471static
1472void ms_new_mem_startup( Addr a, SizeT len,
1473 Bool rr, Bool ww, Bool xx, ULong di_handle )
1474{
1475 // startup maps are always be page-sized, except the trampoline page is
1476 // marked by the core as only being the size of the trampoline itself,
1477 // which is something like 57 bytes. Round it up to page size.
1478 len = VG_PGROUNDUP(len);
1479 ms_record_page_mem(a, len);
1480}
1481
1482static
1483void ms_new_mem_brk ( Addr a, SizeT len, ThreadId tid )
1484{
philippee6a26cc2012-05-01 20:02:30 +00001485 // brk limit is not necessarily aligned on a page boundary.
1486 // If new memory being brk-ed implies to allocate a new page,
1487 // then call ms_record_page_mem with page aligned parameters
1488 // otherwise just ignore.
1489 Addr old_bottom_page = VG_PGROUNDDN(a - 1);
1490 Addr new_top_page = VG_PGROUNDDN(a + len - 1);
1491 if (old_bottom_page != new_top_page)
1492 ms_record_page_mem(VG_PGROUNDDN(a),
1493 (new_top_page - old_bottom_page));
njne323a6b2010-07-01 02:35:03 +00001494}
1495
1496static
1497void ms_copy_mem_remap( Addr from, Addr to, SizeT len)
1498{
1499 tl_assert(VG_IS_PAGE_ALIGNED(len));
1500 ms_unrecord_page_mem(from, len);
1501 ms_record_page_mem(to, len);
1502}
1503
1504static
1505void ms_die_mem_munmap( Addr a, SizeT len )
1506{
1507 tl_assert(VG_IS_PAGE_ALIGNED(len));
1508 ms_unrecord_page_mem(a, len);
1509}
1510
1511static
1512void ms_die_mem_brk( Addr a, SizeT len )
1513{
philippee6a26cc2012-05-01 20:02:30 +00001514 // Call ms_unrecord_page_mem only if one or more pages are de-allocated.
1515 // See ms_new_mem_brk for more details.
1516 Addr new_bottom_page = VG_PGROUNDDN(a - 1);
1517 Addr old_top_page = VG_PGROUNDDN(a + len - 1);
1518 if (old_top_page != new_bottom_page)
1519 ms_unrecord_page_mem(VG_PGROUNDDN(a),
1520 (old_top_page - new_bottom_page));
1521
njne323a6b2010-07-01 02:35:03 +00001522}
1523
1524//------------------------------------------------------------//
njn734b8052007-11-01 04:40:37 +00001525//--- Stacks ---//
1526//------------------------------------------------------------//
nethercotec9f36922004-02-14 16:40:02 +00001527
njn734b8052007-11-01 04:40:37 +00001528// We really want the inlining to occur...
1529#define INLINE inline __attribute__((always_inline))
nethercotec9f36922004-02-14 16:40:02 +00001530
njn734b8052007-11-01 04:40:37 +00001531static void update_stack_stats(SSizeT stack_szB_delta)
nethercotec9f36922004-02-14 16:40:02 +00001532{
njn734b8052007-11-01 04:40:37 +00001533 if (stack_szB_delta < 0) tl_assert(stacks_szB >= -stack_szB_delta);
1534 stacks_szB += stack_szB_delta;
nethercotec9f36922004-02-14 16:40:02 +00001535
njn734b8052007-11-01 04:40:37 +00001536 update_alloc_stats(stack_szB_delta);
nethercotec9f36922004-02-14 16:40:02 +00001537}
1538
floriane58e8a72012-10-20 19:57:16 +00001539static INLINE void new_mem_stack_2(SizeT len, const HChar* what)
nethercotec9f36922004-02-14 16:40:02 +00001540{
njn734b8052007-11-01 04:40:37 +00001541 if (have_started_executing_code) {
florian16eef852015-08-03 21:05:20 +00001542 VERB(3, "<<< new_mem_stack (%lu)\n", len);
njn734b8052007-11-01 04:40:37 +00001543 n_stack_allocs++;
1544 update_stack_stats(len);
1545 maybe_take_snapshot(Normal, what);
sewardj5ea0f392009-07-15 14:51:34 +00001546 VERB(3, ">>>\n");
nethercotec9f36922004-02-14 16:40:02 +00001547 }
nethercotec9f36922004-02-14 16:40:02 +00001548}
1549
floriane58e8a72012-10-20 19:57:16 +00001550static INLINE void die_mem_stack_2(SizeT len, const HChar* what)
nethercotec9f36922004-02-14 16:40:02 +00001551{
njn734b8052007-11-01 04:40:37 +00001552 if (have_started_executing_code) {
florian16eef852015-08-03 21:05:20 +00001553 VERB(3, "<<< die_mem_stack (-%lu)\n", len);
njn734b8052007-11-01 04:40:37 +00001554 n_stack_frees++;
1555 maybe_take_snapshot(Peak, "stkPEAK");
1556 update_stack_stats(-len);
1557 maybe_take_snapshot(Normal, what);
sewardj5ea0f392009-07-15 14:51:34 +00001558 VERB(3, ">>>\n");
nethercotec9f36922004-02-14 16:40:02 +00001559 }
nethercotec9f36922004-02-14 16:40:02 +00001560}
1561
njn734b8052007-11-01 04:40:37 +00001562static void new_mem_stack(Addr a, SizeT len)
nethercotec9f36922004-02-14 16:40:02 +00001563{
njnefc13c22009-02-23 06:44:51 +00001564 new_mem_stack_2(len, "stk-new");
njn734b8052007-11-01 04:40:37 +00001565}
nethercotec9f36922004-02-14 16:40:02 +00001566
njn734b8052007-11-01 04:40:37 +00001567static void die_mem_stack(Addr a, SizeT len)
1568{
njnefc13c22009-02-23 06:44:51 +00001569 die_mem_stack_2(len, "stk-die");
njn734b8052007-11-01 04:40:37 +00001570}
nethercotec9f36922004-02-14 16:40:02 +00001571
sewardj7cf4e6b2008-05-01 20:24:26 +00001572static void new_mem_stack_signal(Addr a, SizeT len, ThreadId tid)
nethercotec9f36922004-02-14 16:40:02 +00001573{
njnefc13c22009-02-23 06:44:51 +00001574 new_mem_stack_2(len, "sig-new");
nethercotec9f36922004-02-14 16:40:02 +00001575}
1576
nethercote8b5f40c2004-11-02 13:29:50 +00001577static void die_mem_stack_signal(Addr a, SizeT len)
nethercotec9f36922004-02-14 16:40:02 +00001578{
njnefc13c22009-02-23 06:44:51 +00001579 die_mem_stack_2(len, "sig-die");
nethercotec9f36922004-02-14 16:40:02 +00001580}
1581
njn734b8052007-11-01 04:40:37 +00001582
1583//------------------------------------------------------------//
1584//--- Client Requests ---//
1585//------------------------------------------------------------//
nethercotec9f36922004-02-14 16:40:02 +00001586
sewardj3b290482011-05-06 21:02:55 +00001587static void print_monitor_help ( void )
1588{
Elliott Hughesed398002017-06-21 14:41:24 -07001589 VG_(gdb_printf) (
1590"\n"
1591"massif monitor commands:\n"
1592" snapshot [<filename>]\n"
1593" detailed_snapshot [<filename>]\n"
1594" takes a snapshot (or a detailed snapshot)\n"
1595" and saves it in <filename>\n"
1596" default <filename> is massif.vgdb.out\n"
1597" all_snapshots [<filename>]\n"
1598" saves all snapshot(s) taken so far in <filename>\n"
1599" default <filename> is massif.vgdb.out\n"
1600" xtmemory [<filename>]\n"
1601" dump xtree memory profile in <filename> (default xtmemory.kcg)\n"
1602"\n");
sewardj3b290482011-05-06 21:02:55 +00001603}
1604
1605
1606/* Forward declaration.
1607 return True if request recognised, False otherwise */
florian19f91bb2012-11-10 22:29:54 +00001608static Bool handle_gdb_monitor_command (ThreadId tid, HChar *req);
njn51d827b2005-05-09 01:02:08 +00001609static Bool ms_handle_client_request ( ThreadId tid, UWord* argv, UWord* ret )
nethercotec9f36922004-02-14 16:40:02 +00001610{
1611 switch (argv[0]) {
1612 case VG_USERREQ__MALLOCLIKE_BLOCK: {
njn734b8052007-11-01 04:40:37 +00001613 void* p = (void*)argv[1];
1614 SizeT szB = argv[2];
njne323a6b2010-07-01 02:35:03 +00001615 record_block( tid, p, szB, /*slop_szB*/0, /*exclude_first_entry*/False,
1616 /*maybe_snapshot*/True );
njn734b8052007-11-01 04:40:37 +00001617 *ret = 0;
nethercotec9f36922004-02-14 16:40:02 +00001618 return True;
1619 }
bart91347382011-03-25 20:07:25 +00001620 case VG_USERREQ__RESIZEINPLACE_BLOCK: {
1621 void* p = (void*)argv[1];
1622 SizeT newSizeB = argv[3];
1623
Elliott Hughesed398002017-06-21 14:41:24 -07001624 unrecord_block(p, /*maybe_snapshot*/True, /*exclude_first_entry*/False);
bart91347382011-03-25 20:07:25 +00001625 record_block(tid, p, newSizeB, /*slop_szB*/0,
1626 /*exclude_first_entry*/False, /*maybe_snapshot*/True);
1627 return True;
1628 }
nethercotec9f36922004-02-14 16:40:02 +00001629 case VG_USERREQ__FREELIKE_BLOCK: {
njn734b8052007-11-01 04:40:37 +00001630 void* p = (void*)argv[1];
Elliott Hughesed398002017-06-21 14:41:24 -07001631 unrecord_block(p, /*maybe_snapshot*/True, /*exclude_first_entry*/False);
njn734b8052007-11-01 04:40:37 +00001632 *ret = 0;
nethercotec9f36922004-02-14 16:40:02 +00001633 return True;
1634 }
sewardj3b290482011-05-06 21:02:55 +00001635 case VG_USERREQ__GDB_MONITOR_COMMAND: {
florian19f91bb2012-11-10 22:29:54 +00001636 Bool handled = handle_gdb_monitor_command (tid, (HChar*)argv[1]);
sewardj3b290482011-05-06 21:02:55 +00001637 if (handled)
1638 *ret = 1;
1639 else
1640 *ret = 0;
1641 return handled;
1642 }
1643
nethercotec9f36922004-02-14 16:40:02 +00001644 default:
1645 *ret = 0;
1646 return False;
1647 }
1648}
1649
njn734b8052007-11-01 04:40:37 +00001650//------------------------------------------------------------//
1651//--- Instrumentation ---//
1652//------------------------------------------------------------//
nethercotec9f36922004-02-14 16:40:02 +00001653
njn1a2741a2007-11-26 21:59:04 +00001654static void add_counter_update(IRSB* sbOut, Int n)
1655{
1656 #if defined(VG_BIGENDIAN)
1657 # define END Iend_BE
1658 #elif defined(VG_LITTLEENDIAN)
1659 # define END Iend_LE
1660 #else
1661 # error "Unknown endianness"
1662 #endif
1663 // Add code to increment 'guest_instrs_executed' by 'n', like this:
1664 // WrTmp(t1, Load64(&guest_instrs_executed))
1665 // WrTmp(t2, Add64(RdTmp(t1), Const(n)))
1666 // Store(&guest_instrs_executed, t2)
1667 IRTemp t1 = newIRTemp(sbOut->tyenv, Ity_I64);
1668 IRTemp t2 = newIRTemp(sbOut->tyenv, Ity_I64);
1669 IRExpr* counter_addr = mkIRExpr_HWord( (HWord)&guest_instrs_executed );
1670
sewardjdb5907d2009-11-26 17:20:21 +00001671 IRStmt* st1 = IRStmt_WrTmp(t1, IRExpr_Load(END, Ity_I64, counter_addr));
njn1a2741a2007-11-26 21:59:04 +00001672 IRStmt* st2 =
1673 IRStmt_WrTmp(t2,
1674 IRExpr_Binop(Iop_Add64, IRExpr_RdTmp(t1),
1675 IRExpr_Const(IRConst_U64(n))));
sewardjdb5907d2009-11-26 17:20:21 +00001676 IRStmt* st3 = IRStmt_Store(END, counter_addr, IRExpr_RdTmp(t2));
njn1a2741a2007-11-26 21:59:04 +00001677
1678 addStmtToIRSB( sbOut, st1 );
1679 addStmtToIRSB( sbOut, st2 );
1680 addStmtToIRSB( sbOut, st3 );
1681}
1682
1683static IRSB* ms_instrument2( IRSB* sbIn )
1684{
1685 Int i, n = 0;
1686 IRSB* sbOut;
1687
1688 // We increment the instruction count in two places:
1689 // - just before any Ist_Exit statements;
1690 // - just before the IRSB's end.
1691 // In the former case, we zero 'n' and then continue instrumenting.
1692
1693 sbOut = deepCopyIRSBExceptStmts(sbIn);
1694
1695 for (i = 0; i < sbIn->stmts_used; i++) {
1696 IRStmt* st = sbIn->stmts[i];
1697
1698 if (!st || st->tag == Ist_NoOp) continue;
1699
1700 if (st->tag == Ist_IMark) {
1701 n++;
1702 } else if (st->tag == Ist_Exit) {
1703 if (n > 0) {
1704 // Add an increment before the Exit statement, then reset 'n'.
1705 add_counter_update(sbOut, n);
1706 n = 0;
1707 }
1708 }
1709 addStmtToIRSB( sbOut, st );
1710 }
1711
1712 if (n > 0) {
1713 // Add an increment before the SB end.
1714 add_counter_update(sbOut, n);
1715 }
1716 return sbOut;
1717}
1718
sewardj4ba057c2005-10-18 12:04:18 +00001719static
sewardj0b9d74a2006-12-24 02:24:11 +00001720IRSB* ms_instrument ( VgCallbackClosure* closure,
njn1a2741a2007-11-26 21:59:04 +00001721 IRSB* sbIn,
florian3c0c9472014-09-24 12:06:55 +00001722 const VexGuestLayout* layout,
1723 const VexGuestExtents* vge,
1724 const VexArchInfo* archinfo_host,
sewardj4ba057c2005-10-18 12:04:18 +00001725 IRType gWordTy, IRType hWordTy )
nethercotec9f36922004-02-14 16:40:02 +00001726{
njn734b8052007-11-01 04:40:37 +00001727 if (! have_started_executing_code) {
1728 // Do an initial sample to guarantee that we have at least one.
1729 // We use 'maybe_take_snapshot' instead of 'take_snapshot' to ensure
1730 // 'maybe_take_snapshot's internal static variables are initialised.
1731 have_started_executing_code = True;
1732 maybe_take_snapshot(Normal, "startup");
1733 }
njn1a2741a2007-11-26 21:59:04 +00001734
1735 if (clo_time_unit == TimeI) { return ms_instrument2(sbIn); }
1736 else if (clo_time_unit == TimeMS) { return sbIn; }
1737 else if (clo_time_unit == TimeB) { return sbIn; }
1738 else { tl_assert2(0, "bad --time-unit value"); }
nethercotec9f36922004-02-14 16:40:02 +00001739}
1740
nethercotec9f36922004-02-14 16:40:02 +00001741
njn734b8052007-11-01 04:40:37 +00001742//------------------------------------------------------------//
1743//--- Writing snapshots ---//
1744//------------------------------------------------------------//
nethercotec9f36922004-02-14 16:40:02 +00001745
Elliott Hughesed398002017-06-21 14:41:24 -07001746static void pp_snapshot(MsFile *fp, Snapshot* snapshot, Int snapshot_n)
nethercotec9f36922004-02-14 16:40:02 +00001747{
Elliott Hughesed398002017-06-21 14:41:24 -07001748 const Massif_Header header = (Massif_Header) {
1749 .snapshot_n = snapshot_n,
1750 .time = snapshot->time,
1751 .sz_B = snapshot->heap_szB,
1752 .extra_B = snapshot->heap_extra_szB,
1753 .stacks_B = snapshot->stacks_szB,
1754 .detailed = is_detailed_snapshot(snapshot),
1755 .peak = Peak == snapshot->kind,
1756 .top_node_desc = clo_pages_as_heap ?
1757 "(page allocation syscalls) mmap/mremap/brk, --alloc-fns, etc."
1758 : "(heap allocation functions) malloc/new/new[], --alloc-fns, etc.",
1759 .sig_threshold = clo_threshold
1760 };
nethercotec9f36922004-02-14 16:40:02 +00001761
njn734b8052007-11-01 04:40:37 +00001762 sanity_check_snapshot(snapshot);
nethercotec9f36922004-02-14 16:40:02 +00001763
Elliott Hughesed398002017-06-21 14:41:24 -07001764 VG_(XT_massif_print)(fp, snapshot->xt, &header, alloc_szB);
nethercotec9f36922004-02-14 16:40:02 +00001765}
1766
florian19f91bb2012-11-10 22:29:54 +00001767static void write_snapshots_to_file(const HChar* massif_out_file,
sewardj3b290482011-05-06 21:02:55 +00001768 Snapshot snapshots_array[],
1769 Int nr_elements)
nethercotec9f36922004-02-14 16:40:02 +00001770{
florian12d2eb52014-10-30 22:17:56 +00001771 Int i;
Elliott Hughesed398002017-06-21 14:41:24 -07001772 MsFile *fp;
nethercotec9f36922004-02-14 16:40:02 +00001773
Elliott Hughesed398002017-06-21 14:41:24 -07001774 fp = VG_(XT_massif_open)(massif_out_file,
1775 NULL,
1776 args_for_massif,
1777 TimeUnit_to_string(clo_time_unit));
1778 if (fp == NULL)
1779 return; // Error reported by VG_(XT_massif_open)
nethercotec9f36922004-02-14 16:40:02 +00001780
sewardj3b290482011-05-06 21:02:55 +00001781 for (i = 0; i < nr_elements; i++) {
1782 Snapshot* snapshot = & snapshots_array[i];
florian12d2eb52014-10-30 22:17:56 +00001783 pp_snapshot(fp, snapshot, i); // Detailed snapshot!
nethercotec9f36922004-02-14 16:40:02 +00001784 }
Elliott Hughesed398002017-06-21 14:41:24 -07001785 VG_(XT_massif_close) (fp);
nethercotec9f36922004-02-14 16:40:02 +00001786}
1787
sewardj3b290482011-05-06 21:02:55 +00001788static void write_snapshots_array_to_file(void)
1789{
1790 // Setup output filename. Nb: it's important to do this now, ie. as late
1791 // as possible. If we do it at start-up and the program forks and the
1792 // output file format string contains a %p (pid) specifier, both the
1793 // parent and child will incorrectly write to the same file; this
1794 // happened in 3.3.0.
florian19f91bb2012-11-10 22:29:54 +00001795 HChar* massif_out_file =
sewardj3b290482011-05-06 21:02:55 +00001796 VG_(expand_file_name)("--massif-out-file", clo_massif_out_file);
1797 write_snapshots_to_file (massif_out_file, snapshots, next_snapshot_i);
1798 VG_(free)(massif_out_file);
1799}
1800
florian19f91bb2012-11-10 22:29:54 +00001801static void handle_snapshot_monitor_command (const HChar *filename,
1802 Bool detailed)
sewardjd142f992011-05-17 17:15:07 +00001803{
1804 Snapshot snapshot;
1805
philippe27c9f0d2012-09-24 21:50:16 +00001806 if (!clo_pages_as_heap && !have_started_executing_code) {
1807 // See comments of variable have_started_executing_code.
1808 VG_(gdb_printf)
1809 ("error: cannot take snapshot before execution has started\n");
1810 return;
1811 }
1812
sewardjd142f992011-05-17 17:15:07 +00001813 clear_snapshot(&snapshot, /* do_sanity_check */ False);
1814 take_snapshot(&snapshot, Normal, get_time(), detailed);
philippe27c9f0d2012-09-24 21:50:16 +00001815 write_snapshots_to_file ((filename == NULL) ?
florian19f91bb2012-11-10 22:29:54 +00001816 "massif.vgdb.out" : filename,
sewardjd142f992011-05-17 17:15:07 +00001817 &snapshot,
1818 1);
1819 delete_snapshot(&snapshot);
1820}
1821
philippe868bfa22015-03-07 19:20:12 +00001822static void handle_all_snapshots_monitor_command (const HChar *filename)
1823{
1824 if (!clo_pages_as_heap && !have_started_executing_code) {
1825 // See comments of variable have_started_executing_code.
1826 VG_(gdb_printf)
1827 ("error: cannot take snapshot before execution has started\n");
1828 return;
1829 }
1830
1831 write_snapshots_to_file ((filename == NULL) ?
1832 "massif.vgdb.out" : filename,
1833 snapshots, next_snapshot_i);
1834}
1835
Elliott Hughesed398002017-06-21 14:41:24 -07001836static void xtmemory_report_next_block(XT_Allocs* xta, ExeContext** ec_alloc)
1837{
1838 const HP_Chunk* hc = VG_(HT_Next)(malloc_list);
1839 if (hc) {
1840 xta->nbytes = hc->req_szB;
1841 xta->nblocks = 1;
1842 *ec_alloc = VG_(XT_get_ec_from_xecu)(heap_xt, hc->where);
1843 } else
1844 xta->nblocks = 0;
1845}
1846static void ms_xtmemory_report ( const HChar* filename, Bool fini )
1847{
1848 // Make xtmemory_report_next_block ready to be called.
1849 VG_(HT_ResetIter)(malloc_list);
1850 VG_(XTMemory_report)(filename, fini, xtmemory_report_next_block,
1851 VG_(XT_filter_maybe_below_main));
1852 /* As massif already filters one top function, use as filter
1853 VG_(XT_filter_maybe_below_main). */
1854}
1855
florian19f91bb2012-11-10 22:29:54 +00001856static Bool handle_gdb_monitor_command (ThreadId tid, HChar *req)
sewardj3b290482011-05-06 21:02:55 +00001857{
florian19f91bb2012-11-10 22:29:54 +00001858 HChar* wcmd;
Elliott Hughesa0664b92017-04-18 17:46:52 -07001859 HChar s[VG_(strlen)(req) + 1]; /* copy for strtok_r */
florian19f91bb2012-11-10 22:29:54 +00001860 HChar *ssaveptr;
sewardj3b290482011-05-06 21:02:55 +00001861
1862 VG_(strcpy) (s, req);
1863
1864 wcmd = VG_(strtok_r) (s, " ", &ssaveptr);
Elliott Hughesed398002017-06-21 14:41:24 -07001865 switch (VG_(keyword_id) ("help snapshot detailed_snapshot all_snapshots"
1866 " xtmemory",
sewardj3b290482011-05-06 21:02:55 +00001867 wcmd, kwd_report_duplicated_matches)) {
1868 case -2: /* multiple matches */
1869 return True;
1870 case -1: /* not found */
1871 return False;
1872 case 0: /* help */
1873 print_monitor_help();
1874 return True;
sewardj30b3eca2011-06-28 08:20:39 +00001875 case 1: { /* snapshot */
florian19f91bb2012-11-10 22:29:54 +00001876 HChar* filename;
sewardjd142f992011-05-17 17:15:07 +00001877 filename = VG_(strtok_r) (NULL, " ", &ssaveptr);
1878 handle_snapshot_monitor_command (filename, False /* detailed */);
1879 return True;
1880 }
sewardj30b3eca2011-06-28 08:20:39 +00001881 case 2: { /* detailed_snapshot */
florian19f91bb2012-11-10 22:29:54 +00001882 HChar* filename;
sewardjd142f992011-05-17 17:15:07 +00001883 filename = VG_(strtok_r) (NULL, " ", &ssaveptr);
1884 handle_snapshot_monitor_command (filename, True /* detailed */);
sewardj3b290482011-05-06 21:02:55 +00001885 return True;
1886 }
philippe868bfa22015-03-07 19:20:12 +00001887 case 3: { /* all_snapshots */
1888 HChar* filename;
1889 filename = VG_(strtok_r) (NULL, " ", &ssaveptr);
1890 handle_all_snapshots_monitor_command (filename);
1891 return True;
1892 }
Elliott Hughesed398002017-06-21 14:41:24 -07001893 case 4: { /* xtmemory */
1894 HChar* filename;
1895 filename = VG_(strtok_r) (NULL, " ", &ssaveptr);
1896 ms_xtmemory_report (filename, False);
1897 return True;
1898 }
sewardj3b290482011-05-06 21:02:55 +00001899 default:
1900 tl_assert(0);
1901 return False;
1902 }
1903}
njn734b8052007-11-01 04:40:37 +00001904
philippef0663152013-12-19 19:10:20 +00001905static void ms_print_stats (void)
nethercotec9f36922004-02-14 16:40:02 +00001906{
philippef0663152013-12-19 19:10:20 +00001907#define STATS(format, args...) \
1908 VG_(dmsg)("Massif: " format, ##args)
nethercotec9f36922004-02-14 16:40:02 +00001909
sewardj2d9e8742009-08-07 15:46:56 +00001910 STATS("heap allocs: %u\n", n_heap_allocs);
1911 STATS("heap reallocs: %u\n", n_heap_reallocs);
1912 STATS("heap frees: %u\n", n_heap_frees);
1913 STATS("ignored heap allocs: %u\n", n_ignored_heap_allocs);
1914 STATS("ignored heap frees: %u\n", n_ignored_heap_frees);
1915 STATS("ignored heap reallocs: %u\n", n_ignored_heap_reallocs);
1916 STATS("stack allocs: %u\n", n_stack_allocs);
sewardj2d9e8742009-08-07 15:46:56 +00001917 STATS("skipped snapshots: %u\n", n_skipped_snapshots);
1918 STATS("real snapshots: %u\n", n_real_snapshots);
1919 STATS("detailed snapshots: %u\n", n_detailed_snapshots);
1920 STATS("peak snapshots: %u\n", n_peak_snapshots);
1921 STATS("cullings: %u\n", n_cullings);
philippef0663152013-12-19 19:10:20 +00001922#undef STATS
1923}
1924
Elliott Hughesed398002017-06-21 14:41:24 -07001925
philippef0663152013-12-19 19:10:20 +00001926//------------------------------------------------------------//
1927//--- Finalisation ---//
1928//------------------------------------------------------------//
1929
1930static void ms_fini(Int exit_status)
1931{
Elliott Hughesed398002017-06-21 14:41:24 -07001932 ms_xtmemory_report(VG_(clo_xtree_memory_file), True);
1933
philippef0663152013-12-19 19:10:20 +00001934 // Output.
1935 write_snapshots_array_to_file();
1936
philippef0663152013-12-19 19:10:20 +00001937 if (VG_(clo_stats))
1938 ms_print_stats();
nethercotec9f36922004-02-14 16:40:02 +00001939}
1940
njn734b8052007-11-01 04:40:37 +00001941
1942//------------------------------------------------------------//
1943//--- Initialisation ---//
1944//------------------------------------------------------------//
njn51d827b2005-05-09 01:02:08 +00001945
1946static void ms_post_clo_init(void)
1947{
njn734b8052007-11-01 04:40:37 +00001948 Int i;
florian19f91bb2012-11-10 22:29:54 +00001949 HChar* LD_PRELOAD_val;
Elliott Hughesed398002017-06-21 14:41:24 -07001950
1951 /* We will record execontext up to clo_depth + overestimate and
1952 we will store this as ec => we need to increase the backtrace size
1953 if smaller than what we will store. */
1954 if (VG_(clo_backtrace_size) < clo_depth + MAX_OVERESTIMATE)
1955 VG_(clo_backtrace_size) = clo_depth + MAX_OVERESTIMATE;
njn51d827b2005-05-09 01:02:08 +00001956
njn734b8052007-11-01 04:40:37 +00001957 // Check options.
njne323a6b2010-07-01 02:35:03 +00001958 if (clo_pages_as_heap) {
1959 if (clo_stacks) {
florian5b99e662014-11-29 14:41:32 +00001960 VG_(fmsg_bad_option)("--pages-as-heap=yes",
1961 "Cannot be used together with --stacks=yes");
njne323a6b2010-07-01 02:35:03 +00001962 }
1963 }
njn734b8052007-11-01 04:40:37 +00001964 if (!clo_heap) {
njne323a6b2010-07-01 02:35:03 +00001965 clo_pages_as_heap = False;
1966 }
1967
1968 // If --pages-as-heap=yes we don't want malloc replacement to occur. So we
1969 // disable vgpreload_massif-$PLATFORM.so by removing it from LD_PRELOAD (or
Elliott Hughesed398002017-06-21 14:41:24 -07001970 // platform-equivalent). This is a bit of a hack, but LD_PRELOAD is setup
1971 // well before tool initialisation, so this seems the best way to do it.
njne323a6b2010-07-01 02:35:03 +00001972 if (clo_pages_as_heap) {
Elliott Hughesed398002017-06-21 14:41:24 -07001973 HChar* s1;
1974 HChar* s2;
1975
njne323a6b2010-07-01 02:35:03 +00001976 clo_heap_admin = 0; // No heap admin on pages.
1977
florian19f91bb2012-11-10 22:29:54 +00001978 LD_PRELOAD_val = VG_(getenv)( VG_(LD_PRELOAD_var_name) );
njne323a6b2010-07-01 02:35:03 +00001979 tl_assert(LD_PRELOAD_val);
1980
Elliott Hughesed398002017-06-21 14:41:24 -07001981 VERB(2, "clo_pages_as_heap orig LD_PRELOAD '%s'\n", LD_PRELOAD_val);
1982
njne323a6b2010-07-01 02:35:03 +00001983 // Make sure the vgpreload_core-$PLATFORM entry is there, for sanity.
Elliott Hughesed398002017-06-21 14:41:24 -07001984 s1 = VG_(strstr)(LD_PRELOAD_val, "vgpreload_core");
1985 tl_assert(s1);
njne323a6b2010-07-01 02:35:03 +00001986
1987 // Now find the vgpreload_massif-$PLATFORM entry.
Elliott Hughesed398002017-06-21 14:41:24 -07001988 s1 = VG_(strstr)(LD_PRELOAD_val, "vgpreload_massif");
1989 tl_assert(s1);
1990 s2 = s1;
njne323a6b2010-07-01 02:35:03 +00001991
Elliott Hughesed398002017-06-21 14:41:24 -07001992 // Position s1 on the previous ':', which must be there because
njne323a6b2010-07-01 02:35:03 +00001993 // of the preceding vgpreload_core-$PLATFORM entry.
Elliott Hughesed398002017-06-21 14:41:24 -07001994 for (; *s1 != ':'; s1--)
1995 ;
njne323a6b2010-07-01 02:35:03 +00001996
Elliott Hughesed398002017-06-21 14:41:24 -07001997 // Position s2 on the next ':' or \0
1998 for (; *s2 != ':' && *s2 != '\0'; s2++)
1999 ;
2000
2001 // Move all characters from s2 to s1
2002 while ((*s1++ = *s2++))
2003 ;
2004
2005 VERB(2, "clo_pages_as_heap cleaned LD_PRELOAD '%s'\n", LD_PRELOAD_val);
njn734b8052007-11-01 04:40:37 +00002006 }
2007
njnf6b00762009-04-17 04:26:41 +00002008 // Print alloc-fns and ignore-fns, if necessary.
njn734b8052007-11-01 04:40:37 +00002009 if (VG_(clo_verbosity) > 1) {
sewardj5ea0f392009-07-15 14:51:34 +00002010 VERB(1, "alloc-fns:\n");
njn734b8052007-11-01 04:40:37 +00002011 for (i = 0; i < VG_(sizeXA)(alloc_fns); i++) {
florian19f91bb2012-11-10 22:29:54 +00002012 HChar** fn_ptr = VG_(indexXA)(alloc_fns, i);
sewardj5ea0f392009-07-15 14:51:34 +00002013 VERB(1, " %s\n", *fn_ptr);
njnf6b00762009-04-17 04:26:41 +00002014 }
2015
sewardj5ea0f392009-07-15 14:51:34 +00002016 VERB(1, "ignore-fns:\n");
njnf6b00762009-04-17 04:26:41 +00002017 if (0 == VG_(sizeXA)(ignore_fns)) {
sewardj5ea0f392009-07-15 14:51:34 +00002018 VERB(1, " <empty>\n");
njnf6b00762009-04-17 04:26:41 +00002019 }
2020 for (i = 0; i < VG_(sizeXA)(ignore_fns); i++) {
florian19f91bb2012-11-10 22:29:54 +00002021 HChar** fn_ptr = VG_(indexXA)(ignore_fns, i);
sewardj5ea0f392009-07-15 14:51:34 +00002022 VERB(1, " %d: %s\n", i, *fn_ptr);
njn734b8052007-11-01 04:40:37 +00002023 }
2024 }
2025
2026 // Events to track.
2027 if (clo_stacks) {
2028 VG_(track_new_mem_stack) ( new_mem_stack );
2029 VG_(track_die_mem_stack) ( die_mem_stack );
2030 VG_(track_new_mem_stack_signal) ( new_mem_stack_signal );
2031 VG_(track_die_mem_stack_signal) ( die_mem_stack_signal );
2032 }
2033
njne323a6b2010-07-01 02:35:03 +00002034 if (clo_pages_as_heap) {
2035 VG_(track_new_mem_startup) ( ms_new_mem_startup );
2036 VG_(track_new_mem_brk) ( ms_new_mem_brk );
2037 VG_(track_new_mem_mmap) ( ms_new_mem_mmap );
2038
2039 VG_(track_copy_mem_remap) ( ms_copy_mem_remap );
2040
2041 VG_(track_die_mem_brk) ( ms_die_mem_brk );
2042 VG_(track_die_mem_munmap) ( ms_die_mem_munmap );
2043 }
2044
njn734b8052007-11-01 04:40:37 +00002045 // Initialise snapshot array, and sanity-check it.
sewardj9c606bd2008-09-18 18:12:50 +00002046 snapshots = VG_(malloc)("ms.main.mpoci.1",
2047 sizeof(Snapshot) * clo_max_snapshots);
njn734b8052007-11-01 04:40:37 +00002048 // We don't want to do snapshot sanity checks here, because they're
2049 // currently uninitialised.
2050 for (i = 0; i < clo_max_snapshots; i++) {
2051 clear_snapshot( & snapshots[i], /*do_sanity_check*/False );
2052 }
2053 sanity_check_snapshots_array();
Elliott Hughesed398002017-06-21 14:41:24 -07002054
2055 if (VG_(clo_xtree_memory) == Vg_XTMemory_Full)
2056 // Activate full xtree memory profiling.
2057 // As massif already filters one top function, use as filter
2058 // VG_(XT_filter_maybe_below_main).
2059 VG_(XTMemory_Full_init)(VG_(XT_filter_maybe_below_main));
2060
njn51d827b2005-05-09 01:02:08 +00002061}
2062
tom151a6392005-11-11 12:30:36 +00002063static void ms_pre_clo_init(void)
njn734b8052007-11-01 04:40:37 +00002064{
njn51d827b2005-05-09 01:02:08 +00002065 VG_(details_name) ("Massif");
2066 VG_(details_version) (NULL);
njn1a2741a2007-11-26 21:59:04 +00002067 VG_(details_description) ("a heap profiler");
njn9a0cba42007-04-15 22:15:57 +00002068 VG_(details_copyright_author)(
Elliott Hughesed398002017-06-21 14:41:24 -07002069 "Copyright (C) 2003-2017, and GNU GPL'd, by Nicholas Nethercote");
njn51d827b2005-05-09 01:02:08 +00002070 VG_(details_bug_reports_to) (VG_BUGS_TO);
2071
sewardj1e0fff62011-01-10 15:01:03 +00002072 VG_(details_avg_translation_sizeB) ( 330 );
2073
sewardj8d47a612015-02-05 12:59:46 +00002074 VG_(clo_vex_control).iropt_register_updates_default
2075 = VG_(clo_px_file_backed)
philippe5b240c22012-08-14 22:28:31 +00002076 = VexRegUpdSpAtMemAccess; // overridable by the user.
2077
njnf6b00762009-04-17 04:26:41 +00002078 // Basic functions.
njn51d827b2005-05-09 01:02:08 +00002079 VG_(basic_tool_funcs) (ms_post_clo_init,
2080 ms_instrument,
2081 ms_fini);
2082
njnf6b00762009-04-17 04:26:41 +00002083 // Needs.
njn51d827b2005-05-09 01:02:08 +00002084 VG_(needs_libc_freeres)();
Elliott Hughesa0664b92017-04-18 17:46:52 -07002085 VG_(needs_cxx_freeres)();
njn51d827b2005-05-09 01:02:08 +00002086 VG_(needs_command_line_options)(ms_process_cmd_line_option,
2087 ms_print_usage,
2088 ms_print_debug_usage);
2089 VG_(needs_client_requests) (ms_handle_client_request);
njn734b8052007-11-01 04:40:37 +00002090 VG_(needs_sanity_checks) (ms_cheap_sanity_check,
2091 ms_expensive_sanity_check);
philippef0663152013-12-19 19:10:20 +00002092 VG_(needs_print_stats) (ms_print_stats);
njnfc51f8d2005-06-21 03:20:17 +00002093 VG_(needs_malloc_replacement) (ms_malloc,
njn51d827b2005-05-09 01:02:08 +00002094 ms___builtin_new,
2095 ms___builtin_vec_new,
2096 ms_memalign,
2097 ms_calloc,
2098 ms_free,
2099 ms___builtin_delete,
2100 ms___builtin_vec_delete,
2101 ms_realloc,
njn8b140de2009-02-17 04:31:18 +00002102 ms_malloc_usable_size,
njn51d827b2005-05-09 01:02:08 +00002103 0 );
2104
njnf6b00762009-04-17 04:26:41 +00002105 // HP_Chunks.
Elliott Hughesed398002017-06-21 14:41:24 -07002106 HP_chunk_poolalloc = VG_(newPA)
2107 (sizeof(HP_Chunk),
2108 1000,
2109 VG_(malloc),
2110 "massif MC_Chunk pool",
2111 VG_(free));
njn734b8052007-11-01 04:40:37 +00002112 malloc_list = VG_(HT_construct)( "Massif's malloc list" );
njn51d827b2005-05-09 01:02:08 +00002113
Elliott Hughesed398002017-06-21 14:41:24 -07002114 // Heap XTree
2115 heap_xt = VG_(XT_create)(VG_(malloc),
2116 "ms.xtrees",
2117 VG_(free),
2118 sizeof(SizeT),
2119 init_szB, add_szB, sub_szB,
2120 filter_IPs);
njn734b8052007-11-01 04:40:37 +00002121
njnf6b00762009-04-17 04:26:41 +00002122 // Initialise alloc_fns and ignore_fns.
njn734b8052007-11-01 04:40:37 +00002123 init_alloc_fns();
njnf6b00762009-04-17 04:26:41 +00002124 init_ignore_fns();
njn734b8052007-11-01 04:40:37 +00002125
2126 // Initialise args_for_massif.
sewardj9c606bd2008-09-18 18:12:50 +00002127 args_for_massif = VG_(newXA)(VG_(malloc), "ms.main.mprci.1",
2128 VG_(free), sizeof(HChar*));
njn51d827b2005-05-09 01:02:08 +00002129}
2130
sewardj45f4e7c2005-09-27 19:20:21 +00002131VG_DETERMINE_INTERFACE_VERSION(ms_pre_clo_init)
nethercotec9f36922004-02-14 16:40:02 +00002132
njn734b8052007-11-01 04:40:37 +00002133//--------------------------------------------------------------------//
2134//--- end ---//
2135//--------------------------------------------------------------------//