1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
|
/*
* Copyright 2014-2016 Milian Wolff <mail@milianw.de>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* @file heaptrack_print.cpp
*
* @brief Evaluate and print the collected heaptrack data.
*/
#include <boost/program_options.hpp>
#include "analyze/accumulatedtracedata.h"
#include <future>
#include <iomanip>
#include <iostream>
#include "util/config.h"
using namespace std;
namespace po = boost::program_options;
namespace {
/**
* Merged allocation information by instruction pointer outside of alloc funcs
*/
struct MergedAllocation : public AllocationData
{
// individual backtraces
std::vector<Allocation> traces;
// location
IpIndex ipIndex;
};
class formatBytes
{
public:
formatBytes(int64_t bytes)
: m_bytes(bytes)
{
}
friend ostream& operator<<(ostream& out, const formatBytes data);
private:
int64_t m_bytes;
};
ostream& operator<<(ostream& out, const formatBytes data)
{
if (data.m_bytes < 0) {
// handle negative values
return out << '-' << formatBytes(-data.m_bytes);
}
if (data.m_bytes < 1000) {
// no fancy formatting for plain byte values, esp. no .00 factions
return out << data.m_bytes << 'B';
}
static const auto units = {"B", "KB", "MB", "GB", "TB"};
auto unit = units.begin();
size_t i = 0;
double bytes = data.m_bytes;
while (i < units.size() - 1 && bytes > 1000.) {
bytes /= 1000.;
++i;
++unit;
}
return out << fixed << setprecision(2) << bytes << *unit;
}
struct Printer final : public AccumulatedTraceData
{
void finalize()
{
filterAllocations();
mergedAllocations = mergeAllocations(allocations);
}
void mergeAllocation(vector<MergedAllocation>* mergedAllocations, const Allocation& allocation) const
{
const auto trace = findTrace(allocation.traceIndex);
const auto traceIp = findIp(trace.ipIndex);
auto it = lower_bound(mergedAllocations->begin(), mergedAllocations->end(), traceIp,
[this](const MergedAllocation& allocation, const InstructionPointer traceIp) -> bool {
// Compare meta data without taking the instruction pointer address into account.
// This is useful since sometimes, esp. when we lack debug symbols, the same
// function allocates memory at different IP addresses which is pretty useless
// information most of the time
// TODO: make this configurable, but on-by-default
const auto allocationIp = findIp(allocation.ipIndex);
return allocationIp.compareWithoutAddress(traceIp);
});
if (it == mergedAllocations->end() || !findIp(it->ipIndex).equalWithoutAddress(traceIp)) {
MergedAllocation merged;
merged.ipIndex = trace.ipIndex;
it = mergedAllocations->insert(it, merged);
}
it->traces.push_back(allocation);
}
// merge allocations so that different traces that point to the same
// instruction pointer at the end where the allocation function is
// called are combined
vector<MergedAllocation> mergeAllocations(const vector<Allocation>& allocations) const
{
// TODO: merge deeper traces, i.e. A,B,C,D and A,B,C,F
// should be merged to A,B,C: D & F
// currently the below will only merge it to: A: B,C,D & B,C,F
vector<MergedAllocation> ret;
ret.reserve(allocations.size());
for (const Allocation& allocation : allocations) {
if (allocation.traceIndex) {
mergeAllocation(&ret, allocation);
}
}
for (MergedAllocation& merged : ret) {
for (const Allocation& allocation : merged.traces) {
merged += allocation;
}
}
return ret;
}
void filterAllocations()
{
if (filterBtFunction.empty()) {
return;
}
allocations.erase(remove_if(allocations.begin(), allocations.end(),
[&](const Allocation& allocation) -> bool {
auto node = findTrace(allocation.traceIndex);
while (node.ipIndex) {
const auto& ip = findIp(node.ipIndex);
if (isStopIndex(ip.frame.functionIndex)) {
break;
}
auto matchFunction = [this](const Frame& frame) {
return stringify(frame.functionIndex).find(filterBtFunction) != string::npos;
};
if (matchFunction(ip.frame)) {
return false;
}
for (const auto& inlined : ip.inlined) {
if (matchFunction(inlined)) {
return false;
}
}
node = findTrace(node.parentIndex);
};
return true;
}),
allocations.end());
}
void printIndent(ostream& out, size_t indent, const char* indentString = " ") const
{
while (indent--) {
out << indentString;
}
}
void printIp(const IpIndex ip, ostream& out, const size_t indent = 0) const
{
printIp(findIp(ip), out, indent);
}
void printIp(const InstructionPointer& ip, ostream& out, const size_t indent = 0, bool flameGraph = false) const
{
printIndent(out, indent);
if (ip.frame.functionIndex) {
out << prettyFunction(stringify(ip.frame.functionIndex));
} else {
out << "0x" << hex << ip.instructionPointer << dec;
}
if (flameGraph) {
// only print the file name but nothing else
auto printFile = [this, &out](FileIndex fileIndex) {
const auto& file = stringify(fileIndex);
auto idx = file.find_last_of('/') + 1;
out << " (" << file.substr(idx) << ")";
};
if (ip.frame.fileIndex) {
printFile(ip.frame.fileIndex);
}
out << ';';
for (const auto& inlined : ip.inlined) {
out << prettyFunction(stringify(inlined.functionIndex));
printFile(inlined.fileIndex);
out << ';';
}
return;
}
out << '\n';
printIndent(out, indent + 1);
if (ip.frame.fileIndex) {
out << "at " << stringify(ip.frame.fileIndex) << ':' << ip.frame.line << '\n';
printIndent(out, indent + 1);
}
if (ip.moduleIndex) {
out << "in " << stringify(ip.moduleIndex);
} else {
out << "in ??";
}
out << '\n';
for (const auto& inlined : ip.inlined) {
printIndent(out, indent);
out << prettyFunction(stringify(inlined.functionIndex)) << '\n';
printIndent(out, indent + 1);
out << "at " << stringify(inlined.fileIndex) << ':' << inlined.line << '\n';
}
}
void printBacktrace(const TraceIndex traceIndex, ostream& out, const size_t indent = 0,
bool skipFirst = false) const
{
if (!traceIndex) {
out << " ??";
return;
}
printBacktrace(findTrace(traceIndex), out, indent, skipFirst);
}
void printBacktrace(TraceNode node, ostream& out, const size_t indent = 0, bool skipFirst = false) const
{
while (node.ipIndex) {
const auto& ip = findIp(node.ipIndex);
if (!skipFirst) {
printIp(ip, out, indent);
}
skipFirst = false;
if (isStopIndex(ip.frame.functionIndex)) {
break;
}
node = findTrace(node.parentIndex);
};
}
/**
* recursive top-down printer in the format
*
* func1;func2 (file);func2 (file);
*/
void printFlamegraph(TraceNode node, ostream& out) const
{
if (!node.ipIndex) {
return;
}
const auto& ip = findIp(node.ipIndex);
if (!isStopIndex(ip.frame.functionIndex)) {
printFlamegraph(findTrace(node.parentIndex), out);
}
printIp(ip, out, 0, true);
}
template <typename T, typename LabelPrinter, typename SubLabelPrinter>
void printAllocations(T AllocationData::Stats::*member, LabelPrinter label, SubLabelPrinter sublabel)
{
if (mergeBacktraces) {
printMerged(member, label, sublabel);
} else {
printUnmerged(member, label);
}
}
template <typename T, typename LabelPrinter, typename SubLabelPrinter>
void printMerged(T AllocationData::Stats::*member, LabelPrinter label, SubLabelPrinter sublabel)
{
auto sortOrder = [member](const AllocationData& l, const AllocationData& r) {
return std::abs(l.getDisplay()->*member) > std::abs(r.getDisplay()->*member);
};
sort(mergedAllocations.begin(), mergedAllocations.end(), sortOrder);
for (size_t i = 0; i < min(peakLimit, mergedAllocations.size()); ++i) {
auto& allocation = mergedAllocations[i];
if (!(allocation.getDisplay()->*member)) {
break;
}
label(allocation);
printIp(allocation.ipIndex, cout);
sort(allocation.traces.begin(), allocation.traces.end(), sortOrder);
int64_t handled = 0;
for (size_t j = 0; j < min(subPeakLimit, allocation.traces.size()); ++j) {
const auto& trace = allocation.traces[j];
if (!(trace.getDisplay()->*member)) {
break;
}
sublabel(trace);
handled += trace.getDisplay()->*member;
printBacktrace(trace.traceIndex, cout, 2, true);
}
if (allocation.traces.size() > subPeakLimit) {
cout << " and ";
if (member == &AllocationData::Stats::allocations) {
cout << (allocation.getDisplay()->*member - handled);
} else {
cout << formatBytes(allocation.getDisplay()->*member - handled);
}
cout << " from " << (allocation.traces.size() - subPeakLimit) << " other places\n";
}
cout << '\n';
}
}
template <typename T, typename LabelPrinter>
void printUnmerged(T AllocationData::Stats::*member, LabelPrinter label)
{
sort(allocations.begin(), allocations.end(),
[member](const Allocation& l, const Allocation& r) { return std::abs(l.getDisplay()->*member) > std::abs(r.getDisplay()->*member); });
for (size_t i = 0; i < min(peakLimit, allocations.size()); ++i) {
const auto& allocation = allocations[i];
if (!(allocation.getDisplay()->*member)) {
break;
}
label(allocation);
printBacktrace(allocation.traceIndex, cout, 1);
cout << '\n';
}
cout << endl;
}
void writeMassifHeader(const char* command)
{
// write massif header
massifOut << "desc: heaptrack\n"
<< "cmd: " << command << '\n'
<< "time_unit: s\n";
}
void writeMassifSnapshot(size_t timeStamp, bool isLast)
{
if (!lastMassifPeak) {
lastMassifPeak = totalCost.getDisplay()->leaked;
massifAllocations = allocations;
}
massifOut << "#-----------\n"
<< "snapshot=" << massifSnapshotId << '\n'
<< "#-----------\n"
<< "time=" << (0.001 * timeStamp) << '\n'
<< "mem_heap_B=" << lastMassifPeak << '\n'
<< "mem_heap_extra_B=0\n"
<< "mem_stacks_B=0\n";
if (massifDetailedFreq && (isLast || !(massifSnapshotId % massifDetailedFreq))) {
massifOut << "heap_tree=detailed\n";
const size_t threshold = double(lastMassifPeak) * massifThreshold * 0.01;
writeMassifBacktrace(massifAllocations, lastMassifPeak, threshold, IpIndex());
} else {
massifOut << "heap_tree=empty\n";
}
++massifSnapshotId;
lastMassifPeak = 0;
}
void writeMassifBacktrace(const vector<Allocation>& allocations, size_t heapSize, size_t threshold,
const IpIndex& location, size_t depth = 0)
{
int64_t skippedLeaked = 0;
size_t numAllocs = 0;
size_t skipped = 0;
auto mergedAllocations = mergeAllocations(allocations);
sort(mergedAllocations.begin(), mergedAllocations.end(),
[](const MergedAllocation& l, const MergedAllocation& r) { return l.getDisplay()->leaked > r.getDisplay()->leaked; });
const auto ip = findIp(location);
// skip anything below main
const bool shouldStop = isStopIndex(ip.frame.functionIndex);
if (!shouldStop) {
for (auto& merged : mergedAllocations) {
if (merged.getDisplay()->leaked < 0) {
// list is sorted, so we can bail out now - these entries are
// uninteresting for massif
break;
}
// skip items below threshold
if (static_cast<size_t>(merged.getDisplay()->leaked) >= threshold) {
++numAllocs;
// skip the first level of the backtrace, otherwise we'd endlessly
// recurse
for (auto& alloc : merged.traces) {
alloc.traceIndex = findTrace(alloc.traceIndex).parentIndex;
}
} else {
++skipped;
skippedLeaked += merged.getDisplay()->leaked;
}
}
}
// TODO: write inlined frames out to massif files
printIndent(massifOut, depth, " ");
massifOut << 'n' << (numAllocs + (skipped ? 1 : 0)) << ": " << heapSize;
if (!depth) {
massifOut << " (heap allocation functions) malloc/new/new[], "
"--alloc-fns, etc.\n";
} else {
massifOut << " 0x" << hex << ip.instructionPointer << dec << ": ";
if (ip.frame.functionIndex) {
massifOut << stringify(ip.frame.functionIndex);
} else {
massifOut << "???";
}
massifOut << " (";
if (ip.frame.fileIndex) {
massifOut << stringify(ip.frame.fileIndex) << ':' << ip.frame.line;
} else if (ip.moduleIndex) {
massifOut << stringify(ip.moduleIndex);
} else {
massifOut << "???";
}
massifOut << ")\n";
}
auto writeSkipped = [&] {
if (skipped) {
printIndent(massifOut, depth, " ");
massifOut << " n0: " << skippedLeaked << " in " << skipped << " places, all below massif's threshold ("
<< massifThreshold << ")\n";
skipped = 0;
}
};
if (!shouldStop) {
for (const auto& merged : mergedAllocations) {
if (merged.getDisplay()->leaked > 0 && static_cast<size_t>(merged.getDisplay()->leaked) >= threshold) {
if (skippedLeaked > merged.getDisplay()->leaked) {
// manually inject this entry to keep the output sorted
writeSkipped();
}
writeMassifBacktrace(merged.traces, merged.getDisplay()->leaked, threshold, merged.ipIndex, depth + 1);
}
}
writeSkipped();
}
}
void handleTotalCostUpdate()
{
}
void handleAllocation(const AllocationInfo& info, const AllocationIndex /*index*/) override
{
if (printHistogram) {
++sizeHistogram[info.size];
}
if (totalCost.getDisplay()->leaked > 0 && static_cast<size_t>(totalCost.getDisplay()->leaked) > lastMassifPeak && massifOut.is_open()) {
massifAllocations = allocations;
lastMassifPeak = totalCost.getDisplay()->leaked;
}
}
void handleTimeStamp(int64_t /*oldStamp*/, int64_t newStamp) override
{
if (massifOut.is_open()) {
writeMassifSnapshot(newStamp, newStamp == totalTime);
}
}
void handleDebuggee(const char* command) override
{
cout << "Debuggee command was: " << command << endl;
if (massifOut.is_open()) {
writeMassifHeader(command);
}
}
bool printHistogram = false;
bool mergeBacktraces = true;
vector<MergedAllocation> mergedAllocations;
std::map<uint64_t, uint64_t> sizeHistogram;
uint64_t massifSnapshotId = 0;
uint64_t lastMassifPeak = 0;
vector<Allocation> massifAllocations;
ofstream massifOut;
double massifThreshold = 1;
uint64_t massifDetailedFreq = 1;
string filterBtFunction;
size_t peakLimit = 10;
size_t subPeakLimit = 5;
};
}
int main(int argc, char** argv)
{
po::options_description desc("Options", 120, 60);
desc.add_options()("file,f", po::value<string>(), "The heaptrack data file to print.")(
"diff,d", po::value<string>()->default_value({}), "Find the differences to this file.")(
"shorten-templates,t", po::value<bool>()->default_value(true)->implicit_value(true),
"Shorten template identifiers.")("merge-backtraces,m",
po::value<bool>()->default_value(true)->implicit_value(true),
"Merge backtraces.\nNOTE: the merged peak consumption is not correct.")(
"print-peaks,p", po::value<bool>()->default_value(true)->implicit_value(true),
"Print backtraces to top allocators, sorted by peak consumption.")(
"print-allocators,a", po::value<bool>()->default_value(true)->implicit_value(true),
"Print backtraces to top allocators, sorted by number of calls to "
"allocation functions.")("print-temporary,T", po::value<bool>()->default_value(true)->implicit_value(true),
"Print backtraces to top allocators, sorted by number of temporary "
"allocations.")("print-leaks,l",
po::value<bool>()->default_value(false)->implicit_value(true),
"Print backtraces to leaked memory allocations.")(
"print-overall-allocated,o", po::value<bool>()->default_value(false)->implicit_value(true),
"Print top overall allocators, ignoring memory frees.")(
"peak-limit,n", po::value<size_t>()->default_value(10)->implicit_value(10),
"Limit the number of reported peaks.")("sub-peak-limit,s",
po::value<size_t>()->default_value(5)->implicit_value(5),
"Limit the number of reported backtraces of merged peak locations.")(
"print-histogram,H", po::value<string>()->default_value(string()),
"Path to output file where an allocation size histogram will be written "
"to.")("print-flamegraph,F", po::value<string>()->default_value(string()),
"Path to output file where a flame-graph compatible stack file will be "
"written to.\n"
"To visualize the resulting file, use flamegraph.pl from "
"https://github.com/brendangregg/FlameGraph:\n"
" heaptrack_print heaptrack.someapp.PID.gz -F stacks.txt\n"
" # optionally pass --reverse to flamegraph.pl\n"
" flamegraph.pl --title \"heaptrack: allocations\" --colors mem \\\n"
" --countname allocations < stacks.txt > heaptrack.someapp.PID.svg\n"
" [firefox|chromium] heaptrack.someapp.PID.svg\n")(
"print-massif,M", po::value<string>()->default_value(string()),
"Path to output file where a massif compatible data file will be written "
"to.")("massif-threshold", po::value<double>()->default_value(1.),
"Percentage of current memory usage, below which allocations are "
"aggregated into a 'below threshold' entry.\n"
"This is only used in the massif output file so far.\n")(
"massif-detailed-freq", po::value<size_t>()->default_value(2),
"Frequency of detailed snapshots in the massif output file. Increase "
"this to reduce the file size.\n"
"You can set the value to zero to disable detailed snapshots.\n")(
"filter-bt-function", po::value<string>()->default_value(string()),
"Only print allocations where the backtrace contains the given "
"function.")("help,h", "Show this help message.")("version,v", "Displays version information.");
po::positional_options_description p;
p.add("file", -1);
po::variables_map vm;
try {
po::store(po::command_line_parser(argc, argv).options(desc).positional(p).run(), vm);
if (vm.count("help")) {
cout << "heaptrack_print - analyze heaptrack data files.\n"
<< "\n"
<< "heaptrack is a heap memory profiler which records information\n"
<< "about calls to heap allocation functions such as malloc, "
"operator new etc. pp.\n"
<< "This print utility can then be used to analyze the generated "
"data files.\n\n"
<< desc << endl;
return 0;
} else if (vm.count("version")) {
cout << "heaptrack_print " << HEAPTRACK_VERSION_STRING << endl;
return 0;
}
po::notify(vm);
} catch (const po::error& error) {
cerr << "ERROR: " << error.what() << endl << endl << desc << endl;
return 1;
}
if (!vm.count("file")) {
// NOTE: stay backwards compatible to old boost 1.41 available in RHEL 6
// otherwise, we could simplify this by setting the file option
// as ->required() using the new 1.42 boost API
cerr << "ERROR: the option '--file' is required but missing\n\n" << desc << endl;
return 1;
}
Printer data;
const auto inputFile = vm["file"].as<string>();
const auto diffFile = vm["diff"].as<string>();
data.shortenTemplates = vm["shorten-templates"].as<bool>();
data.mergeBacktraces = vm["merge-backtraces"].as<bool>();
data.filterBtFunction = vm["filter-bt-function"].as<string>();
data.peakLimit = vm["peak-limit"].as<size_t>();
data.subPeakLimit = vm["sub-peak-limit"].as<size_t>();
const string printHistogram = vm["print-histogram"].as<string>();
data.printHistogram = !printHistogram.empty();
const string printFlamegraph = vm["print-flamegraph"].as<string>();
const string printMassif = vm["print-massif"].as<string>();
if (!printMassif.empty()) {
data.massifOut.open(printMassif, ios_base::out);
if (!data.massifOut.is_open()) {
cerr << "Failed to open massif output file \"" << printMassif << "\"." << endl;
return 1;
}
data.massifThreshold = vm["massif-threshold"].as<double>();
data.massifDetailedFreq = vm["massif-detailed-freq"].as<size_t>();
}
const bool printLeaks = vm["print-leaks"].as<bool>();
const bool printOverallAlloc = vm["print-overall-allocated"].as<bool>();
const bool printPeaks = vm["print-peaks"].as<bool>();
const bool printAllocs = vm["print-allocators"].as<bool>();
const bool printTemporary = vm["print-temporary"].as<bool>();
cout << "reading file \"" << inputFile << "\" - please wait, this might take some time..." << endl;
if (!diffFile.empty()) {
cout << "reading diff file \"" << diffFile << "\" - please wait, this might take some time..." << endl;
Printer diffData;
auto diffRead = async(launch::async, [&diffData, diffFile]() { return diffData.read(diffFile); });
if (!data.read(inputFile) || !diffRead.get()) {
return 1;
}
data.diff(diffData);
} else if (!data.read(inputFile)) {
return 1;
}
data.finalize();
cout << "finished reading file, now analyzing data:\n" << endl;
if (printAllocs) {
// sort by amount of allocations
cout << "MOST CALLS TO ALLOCATION FUNCTIONS\n";
data.printAllocations(&AllocationData::Stats::allocations,
[](const AllocationData& data) {
cout << data.getDisplay()->allocations << " calls to allocation functions with "
<< formatBytes(data.getDisplay()->peak) << " peak consumption from\n";
},
[](const AllocationData& data) {
cout << data.getDisplay()->allocations << " calls with " << formatBytes(data.getDisplay()->peak)
<< " peak consumption from:\n";
});
cout << endl;
}
if (printOverallAlloc) {
cout << "MOST BYTES ALLOCATED OVER TIME (ignoring deallocations)\n";
data.printAllocations(&AllocationData::Stats::allocated,
[](const AllocationData& data) {
cout << formatBytes(data.getDisplay()->allocated) << " allocated over " << data.getDisplay()->allocations
<< " calls from\n";
},
[](const AllocationData& data) {
cout << formatBytes(data.getDisplay()->allocated) << " allocated over " << data.getDisplay()->allocations
<< " calls from:\n";
});
cout << endl;
}
if (printPeaks) {
cout << "PEAK MEMORY CONSUMERS\n";
data.printAllocations(&AllocationData::Stats::peak,
[](const AllocationData& data) {
cout << formatBytes(data.getDisplay()->peak) << " peak memory consumed over " << data.getDisplay()->allocations
<< " calls from\n";
},
[](const AllocationData& data) {
cout << formatBytes(data.getDisplay()->peak) << " consumed over " << data.getDisplay()->allocations
<< " calls from:\n";
});
cout << endl;
}
if (printLeaks) {
// sort by amount of leaks
cout << "MEMORY LEAKS\n";
data.printAllocations(&AllocationData::Stats::leaked,
[](const AllocationData& data) {
cout << formatBytes(data.getDisplay()->leaked) << " leaked over " << data.getDisplay()->allocations
<< " calls from\n";
},
[](const AllocationData& data) {
cout << formatBytes(data.getDisplay()->leaked) << " leaked over " << data.getDisplay()->allocations
<< " calls from:\n";
});
cout << endl;
}
if (printTemporary) {
// sort by amount of temporary allocations
cout << "MOST TEMPORARY ALLOCATIONS\n";
data.printAllocations(&AllocationData::Stats::temporary,
[](const AllocationData& data) {
cout << data.getDisplay()->temporary << " temporary allocations of " << data.getDisplay()->allocations
<< " allocations in total (" << fixed << setprecision(2)
<< (float(data.getDisplay()->temporary) * 100.f / data.getDisplay()->allocations) << "%) from\n";
},
[](const AllocationData& data) {
cout << data.getDisplay()->temporary << " temporary allocations of " << data.getDisplay()->allocations
<< " allocations in total (" << fixed << setprecision(2)
<< (float(data.getDisplay()->temporary) * 100.f / data.getDisplay()->allocations) << "%) from:\n";
});
cout << endl;
}
const double totalTimeS = 0.001 * data.totalTime;
cout << "total runtime: " << fixed << totalTimeS << "s.\n"
<< "bytes allocated in total (ignoring deallocations): " << formatBytes(data.totalCost.getDisplay()->allocated) << " ("
<< formatBytes(data.totalCost.getDisplay()->allocated / totalTimeS) << "/s)" << '\n'
<< "calls to allocation functions: " << data.totalCost.getDisplay()->allocations << " ("
<< int64_t(data.totalCost.getDisplay()->allocations / totalTimeS) << "/s)\n"
<< "temporary memory allocations: " << data.totalCost.getDisplay()->temporary << " ("
<< int64_t(data.totalCost.getDisplay()->temporary / totalTimeS) << "/s)\n"
<< "peak heap memory consumption: " << formatBytes(data.totalCost.getDisplay()->peak) << '\n'
<< "peak RSS (including heaptrack overhead): " << formatBytes(data.peakRSS * 1024) << '\n'
<< "total memory leaked: " << formatBytes(data.totalCost.getDisplay()->leaked) << '\n';
if (!printHistogram.empty()) {
ofstream histogram(printHistogram, ios_base::out);
if (!histogram.is_open()) {
cerr << "Failed to open histogram output file \"" << printHistogram << "\"." << endl;
} else {
for (auto entry : data.sizeHistogram) {
histogram << entry.first << '\t' << entry.second << '\n';
}
}
}
if (!printFlamegraph.empty()) {
ofstream flamegraph(printFlamegraph, ios_base::out);
if (!flamegraph.is_open()) {
cerr << "Failed to open flamegraph output file \"" << printFlamegraph << "\"." << endl;
} else {
for (const auto& allocation : data.allocations) {
if (!allocation.traceIndex) {
flamegraph << "??";
} else {
data.printFlamegraph(data.findTrace(allocation.traceIndex), flamegraph);
}
flamegraph << ' ' << allocation.getDisplay()->allocations << '\n';
}
}
}
return 0;
}
|