blob: 818f8137e44939d8e2284ed3783140b45978384a [file] [log] [blame]
Duncan P. N. Exon Smith846a6272014-02-17 23:22:49 +00001//===- llvm-profdata.cpp - LLVM profile data tool -------------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Duncan P. N. Exon Smith846a6272014-02-17 23:22:49 +00006//
7//===----------------------------------------------------------------------===//
8//
9// llvm-profdata merges .profdata files.
10//
11//===----------------------------------------------------------------------===//
12
Nathan Slingerlandc21a44d2015-11-18 17:10:24 +000013#include "llvm/ADT/SmallSet.h"
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +000014#include "llvm/ADT/SmallVector.h"
Duncan P. N. Exon Smith846a6272014-02-17 23:22:49 +000015#include "llvm/ADT/StringRef.h"
Chandler Carruthd9903882015-01-14 11:23:27 +000016#include "llvm/IR/LLVMContext.h"
Justin Bognerf8d79192014-03-21 17:24:48 +000017#include "llvm/ProfileData/InstrProfReader.h"
Justin Bognerb9bd7f82014-03-21 17:46:22 +000018#include "llvm/ProfileData/InstrProfWriter.h"
Easwaran Ramand68aae22016-02-04 23:34:31 +000019#include "llvm/ProfileData/ProfileCommon.h"
Diego Novillod5336ae2014-11-01 00:56:55 +000020#include "llvm/ProfileData/SampleProfReader.h"
21#include "llvm/ProfileData/SampleProfWriter.h"
Duncan P. N. Exon Smith846a6272014-02-17 23:22:49 +000022#include "llvm/Support/CommandLine.h"
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +000023#include "llvm/Support/Errc.h"
Benjamin Kramerd59664f2014-04-29 23:26:49 +000024#include "llvm/Support/FileSystem.h"
Justin Bogner423380f2014-03-23 20:43:50 +000025#include "llvm/Support/Format.h"
Rui Ueyama197194b2018-04-13 18:26:06 +000026#include "llvm/Support/InitLLVM.h"
Duncan P. N. Exon Smith846a6272014-02-17 23:22:49 +000027#include "llvm/Support/MemoryBuffer.h"
Benjamin Kramer16132e62015-03-23 18:07:13 +000028#include "llvm/Support/Path.h"
Vedant Kumare3a0bf52016-07-19 01:17:20 +000029#include "llvm/Support/ThreadPool.h"
Fangrui Songef598752019-02-21 07:42:31 +000030#include "llvm/Support/WithColor.h"
Duncan P. N. Exon Smith846a6272014-02-17 23:22:49 +000031#include "llvm/Support/raw_ostream.h"
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +000032#include <algorithm>
Duncan P. N. Exon Smith846a6272014-02-17 23:22:49 +000033
34using namespace llvm;
35
Wei Mia0c08572018-06-11 22:40:43 +000036enum ProfileFormat {
37 PF_None = 0,
38 PF_Text,
39 PF_Compact_Binary,
40 PF_GCC,
Wei Mid9be2c72018-06-12 05:53:49 +000041 PF_Binary
Wei Mia0c08572018-06-11 22:40:43 +000042};
Xinliang David Li6f7c19a2015-11-23 20:47:38 +000043
Jonas Devliegheree46b7562018-04-18 14:42:33 +000044static void warn(Twine Message, std::string Whence = "",
Vedant Kumar188efda2017-11-17 21:18:32 +000045 std::string Hint = "") {
Jonas Devliegheree46b7562018-04-18 14:42:33 +000046 WithColor::warning();
Justin Bognerf8d79192014-03-21 17:24:48 +000047 if (!Whence.empty())
48 errs() << Whence << ": ";
49 errs() << Message << "\n";
Nathan Slingerland4f823662015-11-13 03:47:58 +000050 if (!Hint.empty())
Jonas Devliegheree46b7562018-04-18 14:42:33 +000051 WithColor::note() << Hint << "\n";
Vedant Kumar188efda2017-11-17 21:18:32 +000052}
53
54static void exitWithError(Twine Message, std::string Whence = "",
55 std::string Hint = "") {
Jonas Devliegheree46b7562018-04-18 14:42:33 +000056 WithColor::error();
57 if (!Whence.empty())
58 errs() << Whence << ": ";
59 errs() << Message << "\n";
60 if (!Hint.empty())
61 WithColor::note() << Hint << "\n";
Duncan P. N. Exon Smith846a6272014-02-17 23:22:49 +000062 ::exit(1);
63}
64
Vedant Kumar9152fd12016-05-19 03:54:45 +000065static void exitWithError(Error E, StringRef Whence = "") {
66 if (E.isA<InstrProfError>()) {
67 handleAllErrors(std::move(E), [&](const InstrProfError &IPE) {
68 instrprof_error instrError = IPE.get();
69 StringRef Hint = "";
70 if (instrError == instrprof_error::unrecognized_format) {
71 // Hint for common error of forgetting -sample for sample profiles.
72 Hint = "Perhaps you forgot to use the -sample option?";
73 }
74 exitWithError(IPE.message(), Whence, Hint);
75 });
Nathan Slingerland4f823662015-11-13 03:47:58 +000076 }
Vedant Kumar9152fd12016-05-19 03:54:45 +000077
78 exitWithError(toString(std::move(E)), Whence);
79}
80
81static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") {
82 exitWithError(EC.message(), Whence);
Nathan Slingerland4f823662015-11-13 03:47:58 +000083}
84
Duncan P. N. Exon Smith02b6fa92015-06-16 00:43:04 +000085namespace {
Diego Novillod3babdb2015-12-14 20:37:15 +000086enum ProfileKinds { instr, sample };
Duncan P. N. Exon Smith02b6fa92015-06-16 00:43:04 +000087}
Justin Bogner618bcea2014-03-19 02:20:46 +000088
Vedant Kumar9152fd12016-05-19 03:54:45 +000089static void handleMergeWriterError(Error E, StringRef WhenceFile = "",
Nathan Slingerlande6e30d52015-11-17 22:08:53 +000090 StringRef WhenceFunction = "",
Diego Novillod3babdb2015-12-14 20:37:15 +000091 bool ShowHint = true) {
Nathan Slingerlande6e30d52015-11-17 22:08:53 +000092 if (!WhenceFile.empty())
93 errs() << WhenceFile << ": ";
94 if (!WhenceFunction.empty())
95 errs() << WhenceFunction << ": ";
Vedant Kumar9152fd12016-05-19 03:54:45 +000096
97 auto IPE = instrprof_error::success;
98 E = handleErrors(std::move(E),
99 [&IPE](std::unique_ptr<InstrProfError> E) -> Error {
100 IPE = E->get();
101 return Error(std::move(E));
102 });
103 errs() << toString(std::move(E)) << "\n";
Nathan Slingerlande6e30d52015-11-17 22:08:53 +0000104
105 if (ShowHint) {
106 StringRef Hint = "";
Vedant Kumar9152fd12016-05-19 03:54:45 +0000107 if (IPE != instrprof_error::success) {
108 switch (IPE) {
Nathan Slingerland11c938d12015-11-17 23:37:09 +0000109 case instrprof_error::hash_mismatch:
110 case instrprof_error::count_mismatch:
111 case instrprof_error::value_site_count_mismatch:
Diego Novillod3babdb2015-12-14 20:37:15 +0000112 Hint = "Make sure that all profile data to be merged is generated "
Nathan Slingerlande6e30d52015-11-17 22:08:53 +0000113 "from the same binary.";
Nathan Slingerland11c938d12015-11-17 23:37:09 +0000114 break;
Nathan Slingerlandb2d95f02015-11-18 00:52:45 +0000115 default:
116 break;
Nathan Slingerlande6e30d52015-11-17 22:08:53 +0000117 }
118 }
119
120 if (!Hint.empty())
121 errs() << Hint << "\n";
122 }
123}
124
Richard Smith3164fcf2018-09-13 20:22:02 +0000125namespace {
126/// A remapper from original symbol names to new symbol names based on a file
127/// containing a list of mappings from old name to new name.
128class SymbolRemapper {
129 std::unique_ptr<MemoryBuffer> File;
130 DenseMap<StringRef, StringRef> RemappingTable;
131
132public:
133 /// Build a SymbolRemapper from a file containing a list of old/new symbols.
134 static std::unique_ptr<SymbolRemapper> create(StringRef InputFile) {
135 auto BufOrError = MemoryBuffer::getFileOrSTDIN(InputFile);
136 if (!BufOrError)
137 exitWithErrorCode(BufOrError.getError(), InputFile);
138
139 auto Remapper = llvm::make_unique<SymbolRemapper>();
140 Remapper->File = std::move(BufOrError.get());
141
142 for (line_iterator LineIt(*Remapper->File, /*SkipBlanks=*/true, '#');
143 !LineIt.is_at_eof(); ++LineIt) {
144 std::pair<StringRef, StringRef> Parts = LineIt->split(' ');
145 if (Parts.first.empty() || Parts.second.empty() ||
146 Parts.second.count(' ')) {
147 exitWithError("unexpected line in remapping file",
148 (InputFile + ":" + Twine(LineIt.line_number())).str(),
149 "expected 'old_symbol new_symbol'");
150 }
151 Remapper->RemappingTable.insert(Parts);
152 }
153 return Remapper;
154 }
155
156 /// Attempt to map the given old symbol into a new symbol.
157 ///
158 /// \return The new symbol, or \p Name if no such symbol was found.
159 StringRef operator()(StringRef Name) {
160 StringRef New = RemappingTable.lookup(Name);
161 return New.empty() ? Name : New;
162 }
163};
164}
165
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000166struct WeightedFile {
Xinliang David Li9a1bfcf2016-07-20 22:24:52 +0000167 std::string Filename;
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000168 uint64_t Weight;
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000169};
170typedef SmallVector<WeightedFile, 5> WeightedFileVector;
171
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000172/// Keep track of merged data and reported errors.
173struct WriterContext {
174 std::mutex Lock;
175 InstrProfWriter Writer;
176 Error Err;
Vedant Kumarfaaa42a2017-11-17 02:58:23 +0000177 std::string ErrWhence;
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000178 std::mutex &ErrLock;
179 SmallSet<instrprof_error, 4> &WriterErrorCodes;
180
181 WriterContext(bool IsSparse, std::mutex &ErrLock,
182 SmallSet<instrprof_error, 4> &WriterErrorCodes)
183 : Lock(), Writer(IsSparse), Err(Error::success()), ErrWhence(""),
184 ErrLock(ErrLock), WriterErrorCodes(WriterErrorCodes) {}
185};
186
Vedant Kumar188efda2017-11-17 21:18:32 +0000187/// Determine whether an error is fatal for profile merging.
188static bool isFatalError(instrprof_error IPE) {
189 switch (IPE) {
190 default:
191 return true;
192 case instrprof_error::success:
193 case instrprof_error::eof:
194 case instrprof_error::unknown_function:
195 case instrprof_error::hash_mismatch:
196 case instrprof_error::count_mismatch:
197 case instrprof_error::counter_overflow:
198 case instrprof_error::value_site_count_mismatch:
199 return false;
200 }
201}
202
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000203/// Load an input into a writer context.
Richard Smith3164fcf2018-09-13 20:22:02 +0000204static void loadInput(const WeightedFile &Input, SymbolRemapper *Remapper,
205 WriterContext *WC) {
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000206 std::unique_lock<std::mutex> CtxGuard{WC->Lock};
207
208 // If there's a pending hard error, don't do more work.
209 if (WC->Err)
210 return;
211
Vedant Kumarfaaa42a2017-11-17 02:58:23 +0000212 // Copy the filename, because llvm::ThreadPool copied the input "const
213 // WeightedFile &" by value, making a reference to the filename within it
214 // invalid outside of this packaged task.
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000215 WC->ErrWhence = Input.Filename;
216
217 auto ReaderOrErr = InstrProfReader::create(Input.Filename);
Rong Xu2c684cf2016-10-19 22:51:17 +0000218 if (Error E = ReaderOrErr.takeError()) {
219 // Skip the empty profiles by returning sliently.
220 instrprof_error IPE = InstrProfError::take(std::move(E));
221 if (IPE != instrprof_error::empty_raw_profile)
222 WC->Err = make_error<InstrProfError>(IPE);
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000223 return;
Rong Xu2c684cf2016-10-19 22:51:17 +0000224 }
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000225
226 auto Reader = std::move(ReaderOrErr.get());
227 bool IsIRProfile = Reader->isIRLevelProfile();
Rong Xua6ff69f2019-02-28 19:55:07 +0000228 bool HasCSIRProfile = Reader->hasCSIRLevelProfile();
229 if (WC->Writer.setIsIRLevelProfile(IsIRProfile, HasCSIRProfile)) {
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000230 WC->Err = make_error<StringError>(
231 "Merge IR generated profile with Clang generated profile.",
232 std::error_code());
233 return;
234 }
235
236 for (auto &I : *Reader) {
Richard Smith3164fcf2018-09-13 20:22:02 +0000237 if (Remapper)
238 I.Name = (*Remapper)(I.Name);
Rong Xufe90d862016-10-19 23:31:59 +0000239 const StringRef FuncName = I.Name;
David Blaikie98cce002017-07-10 03:04:59 +0000240 bool Reported = false;
241 WC->Writer.addRecord(std::move(I), Input.Weight, [&](Error E) {
242 if (Reported) {
243 consumeError(std::move(E));
244 return;
245 }
246 Reported = true;
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000247 // Only show hint the first time an error occurs.
248 instrprof_error IPE = InstrProfError::take(std::move(E));
249 std::unique_lock<std::mutex> ErrGuard{WC->ErrLock};
250 bool firstTime = WC->WriterErrorCodes.insert(IPE).second;
251 handleMergeWriterError(make_error<InstrProfError>(IPE), Input.Filename,
Rong Xufe90d862016-10-19 23:31:59 +0000252 FuncName, firstTime);
David Blaikie98cce002017-07-10 03:04:59 +0000253 });
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000254 }
Vedant Kumar188efda2017-11-17 21:18:32 +0000255 if (Reader->hasError()) {
256 if (Error E = Reader->getError()) {
257 instrprof_error IPE = InstrProfError::take(std::move(E));
258 if (isFatalError(IPE))
259 WC->Err = make_error<InstrProfError>(IPE);
260 }
261 }
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000262}
263
264/// Merge the \p Src writer context into \p Dst.
265static void mergeWriterContexts(WriterContext *Dst, WriterContext *Src) {
Vedant Kumarfaaa42a2017-11-17 02:58:23 +0000266 // If we've already seen a hard error, continuing with the merge would
267 // clobber it.
268 if (Dst->Err || Src->Err)
269 return;
270
David Blaikie98cce002017-07-10 03:04:59 +0000271 bool Reported = false;
272 Dst->Writer.mergeRecordsFromWriter(std::move(Src->Writer), [&](Error E) {
273 if (Reported) {
274 consumeError(std::move(E));
275 return;
276 }
277 Reported = true;
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000278 Dst->Err = std::move(E);
David Blaikie98cce002017-07-10 03:04:59 +0000279 });
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000280}
281
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000282static void mergeInstrProfile(const WeightedFileVector &Inputs,
Richard Smith3164fcf2018-09-13 20:22:02 +0000283 SymbolRemapper *Remapper,
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000284 StringRef OutputFilename,
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000285 ProfileFormat OutputFormat, bool OutputSparse,
286 unsigned NumThreads) {
Justin Bognerb7aa2632014-04-18 21:48:40 +0000287 if (OutputFilename.compare("-") == 0)
288 exitWithError("Cannot write indexed profdata format to stdout.");
Justin Bognerec49f982014-03-12 22:00:57 +0000289
Wei Mid9be2c72018-06-12 05:53:49 +0000290 if (OutputFormat != PF_Binary && OutputFormat != PF_Compact_Binary &&
Wei Mia0c08572018-06-11 22:40:43 +0000291 OutputFormat != PF_Text)
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000292 exitWithError("Unknown format is specified.");
293
Rafael Espindola3fd1e992014-08-25 18:16:47 +0000294 std::error_code EC;
295 raw_fd_ostream Output(OutputFilename.data(), EC, sys::fs::F_None);
296 if (EC)
Nathan Slingerland4f823662015-11-13 03:47:58 +0000297 exitWithErrorCode(EC, OutputFilename);
Justin Bognerec49f982014-03-12 22:00:57 +0000298
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000299 std::mutex ErrorLock;
Vedant Kumar9152fd12016-05-19 03:54:45 +0000300 SmallSet<instrprof_error, 4> WriterErrorCodes;
Justin Bognerf8d79192014-03-21 17:24:48 +0000301
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000302 // If NumThreads is not specified, auto-detect a good default.
303 if (NumThreads == 0)
Rafael Espindola8c0ff952017-10-04 20:27:01 +0000304 NumThreads =
305 std::min(hardware_concurrency(), unsigned((Inputs.size() + 1) / 2));
Rong Xu33c76c02016-02-10 17:18:30 +0000306
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000307 // Initialize the writer contexts.
308 SmallVector<std::unique_ptr<WriterContext>, 4> Contexts;
309 for (unsigned I = 0; I < NumThreads; ++I)
310 Contexts.emplace_back(llvm::make_unique<WriterContext>(
311 OutputSparse, ErrorLock, WriterErrorCodes));
312
313 if (NumThreads == 1) {
314 for (const auto &Input : Inputs)
Richard Smith3164fcf2018-09-13 20:22:02 +0000315 loadInput(Input, Remapper, Contexts[0].get());
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000316 } else {
317 ThreadPool Pool(NumThreads);
318
319 // Load the inputs in parallel (N/NumThreads serial steps).
320 unsigned Ctx = 0;
321 for (const auto &Input : Inputs) {
Richard Smith3164fcf2018-09-13 20:22:02 +0000322 Pool.async(loadInput, Input, Remapper, Contexts[Ctx].get());
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000323 Ctx = (Ctx + 1) % NumThreads;
Nathan Slingerlande6e30d52015-11-17 22:08:53 +0000324 }
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000325 Pool.wait();
326
327 // Merge the writer contexts together (~ lg(NumThreads) serial steps).
328 unsigned Mid = Contexts.size() / 2;
329 unsigned End = Contexts.size();
330 assert(Mid > 0 && "Expected more than one context");
331 do {
332 for (unsigned I = 0; I < Mid; ++I)
333 Pool.async(mergeWriterContexts, Contexts[I].get(),
334 Contexts[I + Mid].get());
335 Pool.wait();
336 if (End & 1) {
337 Pool.async(mergeWriterContexts, Contexts[0].get(),
338 Contexts[End - 1].get());
339 Pool.wait();
340 }
341 End = Mid;
342 Mid /= 2;
343 } while (Mid > 0);
Justin Bognerbfee8d42014-03-12 20:14:17 +0000344 }
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000345
346 // Handle deferred hard errors encountered during merging.
Vedant Kumar188efda2017-11-17 21:18:32 +0000347 for (std::unique_ptr<WriterContext> &WC : Contexts) {
348 if (!WC->Err)
349 continue;
350 if (!WC->Err.isA<InstrProfError>())
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000351 exitWithError(std::move(WC->Err), WC->ErrWhence);
352
Vedant Kumar188efda2017-11-17 21:18:32 +0000353 instrprof_error IPE = InstrProfError::take(std::move(WC->Err));
354 if (isFatalError(IPE))
355 exitWithError(make_error<InstrProfError>(IPE), WC->ErrWhence);
356 else
Jonas Devliegheree46b7562018-04-18 14:42:33 +0000357 warn(toString(make_error<InstrProfError>(IPE)),
Vedant Kumar188efda2017-11-17 21:18:32 +0000358 WC->ErrWhence);
359 }
360
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000361 InstrProfWriter &Writer = Contexts[0]->Writer;
Vedant Kumarb5794ca2017-06-20 01:38:56 +0000362 if (OutputFormat == PF_Text) {
363 if (Error E = Writer.writeText(Output))
364 exitWithError(std::move(E));
365 } else {
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000366 Writer.write(Output);
Vedant Kumarb5794ca2017-06-20 01:38:56 +0000367 }
Diego Novillod5336ae2014-11-01 00:56:55 +0000368}
369
Richard Smith3164fcf2018-09-13 20:22:02 +0000370/// Make a copy of the given function samples with all symbol names remapped
371/// by the provided symbol remapper.
372static sampleprof::FunctionSamples
373remapSamples(const sampleprof::FunctionSamples &Samples,
374 SymbolRemapper &Remapper, sampleprof_error &Error) {
375 sampleprof::FunctionSamples Result;
376 Result.setName(Remapper(Samples.getName()));
377 Result.addTotalSamples(Samples.getTotalSamples());
378 Result.addHeadSamples(Samples.getHeadSamples());
379 for (const auto &BodySample : Samples.getBodySamples()) {
380 Result.addBodySamples(BodySample.first.LineOffset,
381 BodySample.first.Discriminator,
382 BodySample.second.getSamples());
383 for (const auto &Target : BodySample.second.getCallTargets()) {
384 Result.addCalledTargetSamples(BodySample.first.LineOffset,
385 BodySample.first.Discriminator,
386 Remapper(Target.first()), Target.second);
387 }
388 }
389 for (const auto &CallsiteSamples : Samples.getCallsiteSamples()) {
390 sampleprof::FunctionSamplesMap &Target =
391 Result.functionSamplesAt(CallsiteSamples.first);
392 for (const auto &Callsite : CallsiteSamples.second) {
393 sampleprof::FunctionSamples Remapped =
394 remapSamples(Callsite.second, Remapper, Error);
395 MergeResult(Error, Target[Remapped.getName()].merge(Remapped));
396 }
397 }
398 return Result;
399}
400
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000401static sampleprof::SampleProfileFormat FormatMap[] = {
Wei Mia0c08572018-06-11 22:40:43 +0000402 sampleprof::SPF_None, sampleprof::SPF_Text, sampleprof::SPF_Compact_Binary,
Wei Mid9be2c72018-06-12 05:53:49 +0000403 sampleprof::SPF_GCC, sampleprof::SPF_Binary};
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000404
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000405static void mergeSampleProfile(const WeightedFileVector &Inputs,
Richard Smith3164fcf2018-09-13 20:22:02 +0000406 SymbolRemapper *Remapper,
Benjamin Kramerf044d3f2015-03-09 16:23:46 +0000407 StringRef OutputFilename,
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000408 ProfileFormat OutputFormat) {
Diego Novillod5336ae2014-11-01 00:56:55 +0000409 using namespace sampleprof;
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000410 auto WriterOrErr =
411 SampleProfileWriter::create(OutputFilename, FormatMap[OutputFormat]);
Diego Novillofcd55602014-11-03 00:51:45 +0000412 if (std::error_code EC = WriterOrErr.getError())
Nathan Slingerland4f823662015-11-13 03:47:58 +0000413 exitWithErrorCode(EC, OutputFilename);
Diego Novillod5336ae2014-11-01 00:56:55 +0000414
Diego Novillofcd55602014-11-03 00:51:45 +0000415 auto Writer = std::move(WriterOrErr.get());
Diego Novillod5336ae2014-11-01 00:56:55 +0000416 StringMap<FunctionSamples> ProfileMap;
Diego Novilloaae1ed82015-10-08 19:40:37 +0000417 SmallVector<std::unique_ptr<sampleprof::SampleProfileReader>, 5> Readers;
Mehdi Amini03b42e42016-04-14 21:59:01 +0000418 LLVMContext Context;
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000419 for (const auto &Input : Inputs) {
Mehdi Amini03b42e42016-04-14 21:59:01 +0000420 auto ReaderOrErr = SampleProfileReader::create(Input.Filename, Context);
Diego Novillofcd55602014-11-03 00:51:45 +0000421 if (std::error_code EC = ReaderOrErr.getError())
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000422 exitWithErrorCode(EC, Input.Filename);
Diego Novillod5336ae2014-11-01 00:56:55 +0000423
Diego Novilloaae1ed82015-10-08 19:40:37 +0000424 // We need to keep the readers around until after all the files are
425 // read so that we do not lose the function names stored in each
426 // reader's memory. The function names are needed to write out the
427 // merged profile map.
428 Readers.push_back(std::move(ReaderOrErr.get()));
429 const auto Reader = Readers.back().get();
Diego Novillod5336ae2014-11-01 00:56:55 +0000430 if (std::error_code EC = Reader->read())
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000431 exitWithErrorCode(EC, Input.Filename);
Diego Novillod5336ae2014-11-01 00:56:55 +0000432
433 StringMap<FunctionSamples> &Profiles = Reader->getProfiles();
434 for (StringMap<FunctionSamples>::iterator I = Profiles.begin(),
435 E = Profiles.end();
436 I != E; ++I) {
Richard Smith3164fcf2018-09-13 20:22:02 +0000437 sampleprof_error Result = sampleprof_error::success;
438 FunctionSamples Remapped =
439 Remapper ? remapSamples(I->second, *Remapper, Result)
440 : FunctionSamples();
441 FunctionSamples &Samples = Remapper ? Remapped : I->second;
442 StringRef FName = Samples.getName();
443 MergeResult(Result, ProfileMap[FName].merge(Samples, Input.Weight));
Nathan Slingerland48dd0802015-12-16 21:45:43 +0000444 if (Result != sampleprof_error::success) {
445 std::error_code EC = make_error_code(Result);
Vedant Kumar9152fd12016-05-19 03:54:45 +0000446 handleMergeWriterError(errorCodeToError(EC), Input.Filename, FName);
Nathan Slingerland48dd0802015-12-16 21:45:43 +0000447 }
Diego Novillod5336ae2014-11-01 00:56:55 +0000448 }
449 }
450 Writer->write(ProfileMap);
451}
452
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000453static WeightedFile parseWeightedFile(const StringRef &WeightedFilename) {
Vedant Kumar8d0e8612016-06-06 23:43:56 +0000454 StringRef WeightStr, FileName;
455 std::tie(WeightStr, FileName) = WeightedFilename.split(',');
Diego Novillod5336ae2014-11-01 00:56:55 +0000456
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000457 uint64_t Weight;
458 if (WeightStr.getAsInteger(10, Weight) || Weight < 1)
459 exitWithError("Input weight must be a positive integer.");
460
Benjamin Kramer929e7db2016-07-21 14:29:11 +0000461 return {FileName, Weight};
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000462}
463
Vedant Kumarcef43602016-06-07 22:47:31 +0000464static std::unique_ptr<MemoryBuffer>
465getInputFilenamesFileBuf(const StringRef &InputFilenamesFile) {
466 if (InputFilenamesFile == "")
467 return {};
468
469 auto BufOrError = MemoryBuffer::getFileOrSTDIN(InputFilenamesFile);
470 if (!BufOrError)
471 exitWithErrorCode(BufOrError.getError(), InputFilenamesFile);
472
473 return std::move(*BufOrError);
474}
475
Xinliang David Li9a1bfcf2016-07-20 22:24:52 +0000476static void addWeightedInput(WeightedFileVector &WNI, const WeightedFile &WF) {
477 StringRef Filename = WF.Filename;
478 uint64_t Weight = WF.Weight;
Benjamin Kramera81f4722016-07-22 12:39:55 +0000479
480 // If it's STDIN just pass it on.
481 if (Filename == "-") {
482 WNI.push_back({Filename, Weight});
483 return;
484 }
485
Xinliang David Li9a1bfcf2016-07-20 22:24:52 +0000486 llvm::sys::fs::file_status Status;
487 llvm::sys::fs::status(Filename, Status);
488 if (!llvm::sys::fs::exists(Status))
489 exitWithErrorCode(make_error_code(errc::no_such_file_or_directory),
490 Filename);
491 // If it's a source file, collect it.
492 if (llvm::sys::fs::is_regular_file(Status)) {
Benjamin Kramer929e7db2016-07-21 14:29:11 +0000493 WNI.push_back({Filename, Weight});
Xinliang David Li9a1bfcf2016-07-20 22:24:52 +0000494 return;
495 }
496
497 if (llvm::sys::fs::is_directory(Status)) {
498 std::error_code EC;
499 for (llvm::sys::fs::recursive_directory_iterator F(Filename, EC), E;
500 F != E && !EC; F.increment(EC)) {
501 if (llvm::sys::fs::is_regular_file(F->path())) {
502 addWeightedInput(WNI, {F->path(), Weight});
503 }
504 }
505 if (EC)
506 exitWithErrorCode(EC, Filename);
507 }
508}
509
Vedant Kumarcef43602016-06-07 22:47:31 +0000510static void parseInputFilenamesFile(MemoryBuffer *Buffer,
511 WeightedFileVector &WFV) {
512 if (!Buffer)
513 return;
514
515 SmallVector<StringRef, 8> Entries;
516 StringRef Data = Buffer->getBuffer();
517 Data.split(Entries, '\n', /*MaxSplit=*/-1, /*KeepEmpty=*/false);
518 for (const StringRef &FileWeightEntry : Entries) {
519 StringRef SanitizedEntry = FileWeightEntry.trim(" \t\v\f\r");
520 // Skip comments.
521 if (SanitizedEntry.startswith("#"))
522 continue;
523 // If there's no comma, it's an unweighted profile.
524 else if (SanitizedEntry.find(',') == StringRef::npos)
Xinliang David Li9a1bfcf2016-07-20 22:24:52 +0000525 addWeightedInput(WFV, {SanitizedEntry, 1});
Vedant Kumarcef43602016-06-07 22:47:31 +0000526 else
Xinliang David Li9a1bfcf2016-07-20 22:24:52 +0000527 addWeightedInput(WFV, parseWeightedFile(SanitizedEntry));
Vedant Kumarcef43602016-06-07 22:47:31 +0000528 }
529}
530
Nathan Slingerland7f5b47d2015-12-15 17:37:09 +0000531static int merge_main(int argc, const char *argv[]) {
532 cl::list<std::string> InputFilenames(cl::Positional,
533 cl::desc("<filename...>"));
534 cl::list<std::string> WeightedInputFilenames("weighted-input",
535 cl::desc("<weight>,<filename>"));
Vedant Kumarcef43602016-06-07 22:47:31 +0000536 cl::opt<std::string> InputFilenamesFile(
537 "input-files", cl::init(""),
538 cl::desc("Path to file containing newline-separated "
539 "[<weight>,]<filename> entries"));
540 cl::alias InputFilenamesFileA("f", cl::desc("Alias for --input-files"),
541 cl::aliasopt(InputFilenamesFile));
542 cl::opt<bool> DumpInputFileList(
543 "dump-input-file-list", cl::init(false), cl::Hidden,
544 cl::desc("Dump the list of input files and their weights, then exit"));
Richard Smith3164fcf2018-09-13 20:22:02 +0000545 cl::opt<std::string> RemappingFile("remapping-file", cl::value_desc("file"),
546 cl::desc("Symbol remapping file"));
547 cl::alias RemappingFileA("r", cl::desc("Alias for --remapping-file"),
548 cl::aliasopt(RemappingFile));
Diego Novillod5336ae2014-11-01 00:56:55 +0000549 cl::opt<std::string> OutputFilename("output", cl::value_desc("output"),
550 cl::init("-"), cl::Required,
551 cl::desc("Output file"));
552 cl::alias OutputFilenameA("o", cl::desc("Alias for --output"),
553 cl::aliasopt(OutputFilename));
554 cl::opt<ProfileKinds> ProfileKind(
555 cl::desc("Profile kind:"), cl::init(instr),
556 cl::values(clEnumVal(instr, "Instrumentation profile (default)"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000557 clEnumVal(sample, "Sample profile")));
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000558 cl::opt<ProfileFormat> OutputFormat(
Wei Mid9be2c72018-06-12 05:53:49 +0000559 cl::desc("Format of output profile"), cl::init(PF_Binary),
560 cl::values(clEnumValN(PF_Binary, "binary", "Binary encoding (default)"),
561 clEnumValN(PF_Compact_Binary, "compbinary",
562 "Compact binary encoding"),
563 clEnumValN(PF_Text, "text", "Text encoding"),
564 clEnumValN(PF_GCC, "gcc",
565 "GCC encoding (only meaningful for -sample)")));
Vedant Kumar00dab222016-01-29 22:54:45 +0000566 cl::opt<bool> OutputSparse("sparse", cl::init(false),
567 cl::desc("Generate a sparse profile (only meaningful for -instr)"));
Vedant Kumare3a0bf52016-07-19 01:17:20 +0000568 cl::opt<unsigned> NumThreads(
569 "num-threads", cl::init(0),
570 cl::desc("Number of merge threads to use (default: autodetect)"));
571 cl::alias NumThreadsA("j", cl::desc("Alias for --num-threads"),
572 cl::aliasopt(NumThreads));
Vedant Kumar00dab222016-01-29 22:54:45 +0000573
Diego Novillod5336ae2014-11-01 00:56:55 +0000574 cl::ParseCommandLineOptions(argc, argv, "LLVM profile data merger\n");
575
Vedant Kumarcef43602016-06-07 22:47:31 +0000576 WeightedFileVector WeightedInputs;
577 for (StringRef Filename : InputFilenames)
Xinliang David Li9a1bfcf2016-07-20 22:24:52 +0000578 addWeightedInput(WeightedInputs, {Filename, 1});
Vedant Kumarcef43602016-06-07 22:47:31 +0000579 for (StringRef WeightedFilename : WeightedInputFilenames)
Xinliang David Li9a1bfcf2016-07-20 22:24:52 +0000580 addWeightedInput(WeightedInputs, parseWeightedFile(WeightedFilename));
Vedant Kumarcef43602016-06-07 22:47:31 +0000581
582 // Make sure that the file buffer stays alive for the duration of the
583 // weighted input vector's lifetime.
584 auto Buffer = getInputFilenamesFileBuf(InputFilenamesFile);
585 parseInputFilenamesFile(Buffer.get(), WeightedInputs);
586
587 if (WeightedInputs.empty())
Chandler Carruth0c30f892016-06-04 03:08:01 +0000588 exitWithError("No input files specified. See " +
589 sys::path::filename(argv[0]) + " -help");
590
Vedant Kumarcef43602016-06-07 22:47:31 +0000591 if (DumpInputFileList) {
592 for (auto &WF : WeightedInputs)
593 outs() << WF.Weight << "," << WF.Filename << "\n";
594 return 0;
595 }
Vedant Kumarf771a052016-06-04 00:36:28 +0000596
Richard Smith3164fcf2018-09-13 20:22:02 +0000597 std::unique_ptr<SymbolRemapper> Remapper;
598 if (!RemappingFile.empty())
599 Remapper = SymbolRemapper::create(RemappingFile);
600
Diego Novillod5336ae2014-11-01 00:56:55 +0000601 if (ProfileKind == instr)
Richard Smith3164fcf2018-09-13 20:22:02 +0000602 mergeInstrProfile(WeightedInputs, Remapper.get(), OutputFilename,
603 OutputFormat, OutputSparse, NumThreads);
Diego Novillod5336ae2014-11-01 00:56:55 +0000604 else
Richard Smith3164fcf2018-09-13 20:22:02 +0000605 mergeSampleProfile(WeightedInputs, Remapper.get(), OutputFilename,
606 OutputFormat);
Justin Bognerbfee8d42014-03-12 20:14:17 +0000607
Justin Bognerec49f982014-03-12 22:00:57 +0000608 return 0;
Justin Bognerbfee8d42014-03-12 20:14:17 +0000609}
Justin Bogner618bcea2014-03-19 02:20:46 +0000610
Rong Xu0cf1f562017-03-09 19:03:57 +0000611typedef struct ValueSitesStats {
612 ValueSitesStats()
613 : TotalNumValueSites(0), TotalNumValueSitesWithValueProfile(0),
614 TotalNumValues(0) {}
615 uint64_t TotalNumValueSites;
616 uint64_t TotalNumValueSitesWithValueProfile;
617 uint64_t TotalNumValues;
618 std::vector<unsigned> ValueSitesHistogram;
619} ValueSitesStats;
620
621static void traverseAllValueSites(const InstrProfRecord &Func, uint32_t VK,
622 ValueSitesStats &Stats, raw_fd_ostream &OS,
Rong Xu60faea12017-03-16 21:15:48 +0000623 InstrProfSymtab *Symtab) {
Rong Xu0cf1f562017-03-09 19:03:57 +0000624 uint32_t NS = Func.getNumValueSites(VK);
625 Stats.TotalNumValueSites += NS;
626 for (size_t I = 0; I < NS; ++I) {
627 uint32_t NV = Func.getNumValueDataForSite(VK, I);
628 std::unique_ptr<InstrProfValueData[]> VD = Func.getValueForSite(VK, I);
629 Stats.TotalNumValues += NV;
630 if (NV) {
631 Stats.TotalNumValueSitesWithValueProfile++;
632 if (NV > Stats.ValueSitesHistogram.size())
633 Stats.ValueSitesHistogram.resize(NV, 0);
634 Stats.ValueSitesHistogram[NV - 1]++;
635 }
Rong Xu52aa2242019-01-08 22:41:48 +0000636
637 uint64_t SiteSum = 0;
638 for (uint32_t V = 0; V < NV; V++)
639 SiteSum += VD[V].Count;
640 if (SiteSum == 0)
641 SiteSum = 1;
642
Rong Xu0cf1f562017-03-09 19:03:57 +0000643 for (uint32_t V = 0; V < NV; V++) {
Rong Xu52aa2242019-01-08 22:41:48 +0000644 OS << "\t[ " << format("%2u", I) << ", ";
Rong Xu60faea12017-03-16 21:15:48 +0000645 if (Symtab == nullptr)
Petar Jovanovic40a7f632019-02-05 18:09:28 +0000646 OS << format("%4" PRIu64, VD[V].Value);
Rong Xu60faea12017-03-16 21:15:48 +0000647 else
648 OS << Symtab->getFuncName(VD[V].Value);
Rong Xu52aa2242019-01-08 22:41:48 +0000649 OS << ", " << format("%10" PRId64, VD[V].Count) << " ] ("
650 << format("%.2f%%", (VD[V].Count * 100.0 / SiteSum)) << ")\n";
Rong Xu0cf1f562017-03-09 19:03:57 +0000651 }
652 }
653}
654
655static void showValueSitesStats(raw_fd_ostream &OS, uint32_t VK,
656 ValueSitesStats &Stats) {
657 OS << " Total number of sites: " << Stats.TotalNumValueSites << "\n";
658 OS << " Total number of sites with values: "
659 << Stats.TotalNumValueSitesWithValueProfile << "\n";
660 OS << " Total number of profiled values: " << Stats.TotalNumValues << "\n";
661
662 OS << " Value sites histogram:\n\tNumTargets, SiteCount\n";
663 for (unsigned I = 0; I < Stats.ValueSitesHistogram.size(); I++) {
664 if (Stats.ValueSitesHistogram[I] > 0)
665 OS << "\t" << I + 1 << ", " << Stats.ValueSitesHistogram[I] << "\n";
666 }
667}
668
Benjamin Kramer1afc1de2016-06-17 20:41:14 +0000669static int showInstrProfile(const std::string &Filename, bool ShowCounts,
Xinliang David Li801b5312017-07-11 20:30:43 +0000670 uint32_t TopN, bool ShowIndirectCallTargets,
671 bool ShowMemOPSizes, bool ShowDetailedSummary,
Easwaran Raman183ebbe2016-01-13 21:44:36 +0000672 std::vector<uint32_t> DetailedSummaryCutoffs,
Rong Xua6ff69f2019-02-28 19:55:07 +0000673 bool ShowAllFunctions, bool ShowCS,
674 uint64_t ValueCutoff, bool OnlyListBelow,
675 const std::string &ShowFunction, bool TextFormat,
676 raw_fd_ostream &OS) {
Diego Novillofcd55602014-11-03 00:51:45 +0000677 auto ReaderOrErr = InstrProfReader::create(Filename);
Benjamin Kramer1afc1de2016-06-17 20:41:14 +0000678 std::vector<uint32_t> Cutoffs = std::move(DetailedSummaryCutoffs);
679 if (ShowDetailedSummary && Cutoffs.empty()) {
Easwaran Raman183ebbe2016-01-13 21:44:36 +0000680 Cutoffs = {800000, 900000, 950000, 990000, 999000, 999900, 999990};
681 }
Benjamin Kramer1afc1de2016-06-17 20:41:14 +0000682 InstrProfSummaryBuilder Builder(std::move(Cutoffs));
Vedant Kumar9152fd12016-05-19 03:54:45 +0000683 if (Error E = ReaderOrErr.takeError())
684 exitWithError(std::move(E), Filename);
Justin Bogner9af28ef2014-03-21 17:29:44 +0000685
Diego Novillofcd55602014-11-03 00:51:45 +0000686 auto Reader = std::move(ReaderOrErr.get());
Rong Xu33c76c02016-02-10 17:18:30 +0000687 bool IsIRInstr = Reader->isIRLevelProfile();
Easwaran Raman183ebbe2016-01-13 21:44:36 +0000688 size_t ShownFunctions = 0;
Rong Xu52aa2242019-01-08 22:41:48 +0000689 size_t BelowCutoffFunctions = 0;
Rong Xu0cf1f562017-03-09 19:03:57 +0000690 int NumVPKind = IPVK_Last - IPVK_First + 1;
691 std::vector<ValueSitesStats> VPStats(NumVPKind);
Xinliang David Li801b5312017-07-11 20:30:43 +0000692
693 auto MinCmp = [](const std::pair<std::string, uint64_t> &v1,
694 const std::pair<std::string, uint64_t> &v2) {
695 return v1.second > v2.second;
696 };
697
698 std::priority_queue<std::pair<std::string, uint64_t>,
699 std::vector<std::pair<std::string, uint64_t>>,
700 decltype(MinCmp)>
701 HottestFuncs(MinCmp);
702
Rong Xu52aa2242019-01-08 22:41:48 +0000703 if (!TextFormat && OnlyListBelow) {
704 OS << "The list of functions with the maximum counter less than "
705 << ValueCutoff << ":\n";
706 }
707
Richard Smithc6ba9ca2018-08-24 01:34:45 +0000708 // Add marker so that IR-level instrumentation round-trips properly.
709 if (TextFormat && IsIRInstr)
710 OS << ":ir\n";
711
Justin Bogner9af28ef2014-03-21 17:29:44 +0000712 for (const auto &Func : *Reader) {
Rong Xua6ff69f2019-02-28 19:55:07 +0000713 if (Reader->isIRLevelProfile()) {
714 bool FuncIsCS = NamedInstrProfRecord::hasCSFlagInHash(Func.Hash);
715 if (FuncIsCS != ShowCS)
716 continue;
717 }
Diego Novillod5336ae2014-11-01 00:56:55 +0000718 bool Show =
719 ShowAllFunctions || (!ShowFunction.empty() &&
720 Func.Name.find(ShowFunction) != Func.Name.npos);
Justin Bogner9af28ef2014-03-21 17:29:44 +0000721
Richard Smithc6ba9ca2018-08-24 01:34:45 +0000722 bool doTextFormatDump = (Show && TextFormat);
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000723
724 if (doTextFormatDump) {
Xinliang David Lia716cc52015-12-20 06:22:13 +0000725 InstrProfSymtab &Symtab = Reader->getSymtab();
David Blaikiecf9d52c2017-07-06 19:00:12 +0000726 InstrProfWriter::writeRecordInText(Func.Name, Func.Hash, Func, Symtab,
727 OS);
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000728 continue;
729 }
730
Justin Bognerb59d7c72014-04-25 02:45:33 +0000731 assert(Func.Counts.size() > 0 && "function missing entry counter");
Easwaran Ramane5a17e32016-05-19 21:07:12 +0000732 Builder.addRecord(Func);
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000733
Rong Xu52aa2242019-01-08 22:41:48 +0000734 uint64_t FuncMax = 0;
735 uint64_t FuncSum = 0;
736 for (size_t I = 0, E = Func.Counts.size(); I < E; ++I) {
737 FuncMax = std::max(FuncMax, Func.Counts[I]);
738 FuncSum += Func.Counts[I];
739 }
Rong Xu7162e162019-01-08 22:37:12 +0000740
Rong Xu52aa2242019-01-08 22:41:48 +0000741 if (FuncMax < ValueCutoff) {
742 ++BelowCutoffFunctions;
743 if (OnlyListBelow) {
744 OS << " " << Func.Name << ": (Max = " << FuncMax
745 << " Sum = " << FuncSum << ")\n";
746 }
747 continue;
748 } else if (OnlyListBelow)
749 continue;
750
751 if (TopN) {
Xinliang David Li801b5312017-07-11 20:30:43 +0000752 if (HottestFuncs.size() == TopN) {
753 if (HottestFuncs.top().second < FuncMax) {
754 HottestFuncs.pop();
755 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax));
756 }
757 } else
758 HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax));
759 }
760
Justin Bogner9af28ef2014-03-21 17:29:44 +0000761 if (Show) {
762 if (!ShownFunctions)
763 OS << "Counters:\n";
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000764
Justin Bogner9af28ef2014-03-21 17:29:44 +0000765 ++ShownFunctions;
766
767 OS << " " << Func.Name << ":\n"
Justin Bogner423380f2014-03-23 20:43:50 +0000768 << " Hash: " << format("0x%016" PRIx64, Func.Hash) << "\n"
Rong Xu33c76c02016-02-10 17:18:30 +0000769 << " Counters: " << Func.Counts.size() << "\n";
770 if (!IsIRInstr)
771 OS << " Function count: " << Func.Counts[0] << "\n";
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000772
Justin Bogner9e9a0572015-09-29 22:13:58 +0000773 if (ShowIndirectCallTargets)
Xinliang David Li2004f002015-11-02 05:08:23 +0000774 OS << " Indirect Call Site Count: "
775 << Func.getNumValueSites(IPVK_IndirectCallTarget) << "\n";
Justin Bogner9af28ef2014-03-21 17:29:44 +0000776
Rong Xu60faea12017-03-16 21:15:48 +0000777 uint32_t NumMemOPCalls = Func.getNumValueSites(IPVK_MemOPSize);
778 if (ShowMemOPSizes && NumMemOPCalls > 0)
779 OS << " Number of Memory Intrinsics Calls: " << NumMemOPCalls
780 << "\n";
781
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000782 if (ShowCounts) {
783 OS << " Block counts: [";
Rong Xu33c76c02016-02-10 17:18:30 +0000784 size_t Start = (IsIRInstr ? 0 : 1);
785 for (size_t I = Start, E = Func.Counts.size(); I < E; ++I) {
786 OS << (I == Start ? "" : ", ") << Func.Counts[I];
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000787 }
788 OS << "]\n";
789 }
Justin Bogner9e9a0572015-09-29 22:13:58 +0000790
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000791 if (ShowIndirectCallTargets) {
Rong Xu0cf1f562017-03-09 19:03:57 +0000792 OS << " Indirect Target Results:\n";
793 traverseAllValueSites(Func, IPVK_IndirectCallTarget,
794 VPStats[IPVK_IndirectCallTarget], OS,
Rong Xu60faea12017-03-16 21:15:48 +0000795 &(Reader->getSymtab()));
796 }
797
798 if (ShowMemOPSizes && NumMemOPCalls > 0) {
Teresa Johnsoncd2aa0d2017-05-24 17:55:25 +0000799 OS << " Memory Intrinsic Size Results:\n";
Rong Xu60faea12017-03-16 21:15:48 +0000800 traverseAllValueSites(Func, IPVK_MemOPSize, VPStats[IPVK_MemOPSize], OS,
801 nullptr);
Justin Bogner9e9a0572015-09-29 22:13:58 +0000802 }
803 }
Justin Bogner9af28ef2014-03-21 17:29:44 +0000804 }
Justin Bognerdb1225d2014-03-23 20:55:53 +0000805 if (Reader->hasError())
Vedant Kumar9152fd12016-05-19 03:54:45 +0000806 exitWithError(Reader->getError(), Filename);
Justin Bogner9af28ef2014-03-21 17:29:44 +0000807
Richard Smithc6ba9ca2018-08-24 01:34:45 +0000808 if (TextFormat)
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000809 return 0;
Easwaran Raman7cefdb82016-05-19 21:53:28 +0000810 std::unique_ptr<ProfileSummary> PS(Builder.getSummary());
Adam Nemet1142b2d2017-11-14 16:59:18 +0000811 OS << "Instrumentation level: "
812 << (Reader->isIRLevelProfile() ? "IR" : "Front-end") << "\n";
Justin Bogner9af28ef2014-03-21 17:29:44 +0000813 if (ShowAllFunctions || !ShowFunction.empty())
814 OS << "Functions shown: " << ShownFunctions << "\n";
Easwaran Ramane5a17e32016-05-19 21:07:12 +0000815 OS << "Total functions: " << PS->getNumFunctions() << "\n";
Rong Xu52aa2242019-01-08 22:41:48 +0000816 if (ValueCutoff > 0) {
817 OS << "Number of functions with maximum count (< " << ValueCutoff
818 << "): " << BelowCutoffFunctions << "\n";
819 OS << "Number of functions with maximum count (>= " << ValueCutoff
820 << "): " << PS->getNumFunctions() - BelowCutoffFunctions << "\n";
821 }
Easwaran Ramane5a17e32016-05-19 21:07:12 +0000822 OS << "Maximum function count: " << PS->getMaxFunctionCount() << "\n";
Easwaran Raman7cefdb82016-05-19 21:53:28 +0000823 OS << "Maximum internal block count: " << PS->getMaxInternalCount() << "\n";
Rong Xu60faea12017-03-16 21:15:48 +0000824
Xinliang David Li801b5312017-07-11 20:30:43 +0000825 if (TopN) {
826 std::vector<std::pair<std::string, uint64_t>> SortedHottestFuncs;
827 while (!HottestFuncs.empty()) {
828 SortedHottestFuncs.emplace_back(HottestFuncs.top());
829 HottestFuncs.pop();
830 }
831 OS << "Top " << TopN
832 << " functions with the largest internal block counts: \n";
833 for (auto &hotfunc : llvm::reverse(SortedHottestFuncs))
834 OS << " " << hotfunc.first << ", max count = " << hotfunc.second << "\n";
835 }
836
Xinliang David Li872362c2016-05-23 16:36:11 +0000837 if (ShownFunctions && ShowIndirectCallTargets) {
Rong Xu0cf1f562017-03-09 19:03:57 +0000838 OS << "Statistics for indirect call sites profile:\n";
839 showValueSitesStats(OS, IPVK_IndirectCallTarget,
840 VPStats[IPVK_IndirectCallTarget]);
Xinliang David Li872362c2016-05-23 16:36:11 +0000841 }
Easwaran Raman183ebbe2016-01-13 21:44:36 +0000842
Rong Xu60faea12017-03-16 21:15:48 +0000843 if (ShownFunctions && ShowMemOPSizes) {
844 OS << "Statistics for memory intrinsic calls sizes profile:\n";
845 showValueSitesStats(OS, IPVK_MemOPSize, VPStats[IPVK_MemOPSize]);
846 }
847
Easwaran Raman183ebbe2016-01-13 21:44:36 +0000848 if (ShowDetailedSummary) {
849 OS << "Detailed summary:\n";
Easwaran Raman7cefdb82016-05-19 21:53:28 +0000850 OS << "Total number of blocks: " << PS->getNumCounts() << "\n";
Easwaran Ramane5a17e32016-05-19 21:07:12 +0000851 OS << "Total count: " << PS->getTotalCount() << "\n";
852 for (auto Entry : PS->getDetailedSummary()) {
Easwaran Raman43095702016-02-17 18:18:47 +0000853 OS << Entry.NumCounts << " blocks with count >= " << Entry.MinCount
Easwaran Raman183ebbe2016-01-13 21:44:36 +0000854 << " account for "
855 << format("%0.6g", (float)Entry.Cutoff / ProfileSummary::Scale * 100)
856 << " percentage of the total counts.\n";
857 }
858 }
Justin Bogner9af28ef2014-03-21 17:29:44 +0000859 return 0;
860}
861
Benjamin Kramer1afc1de2016-06-17 20:41:14 +0000862static int showSampleProfile(const std::string &Filename, bool ShowCounts,
863 bool ShowAllFunctions,
864 const std::string &ShowFunction,
Benjamin Kramerf044d3f2015-03-09 16:23:46 +0000865 raw_fd_ostream &OS) {
Diego Novillod5336ae2014-11-01 00:56:55 +0000866 using namespace sampleprof;
Mehdi Amini03b42e42016-04-14 21:59:01 +0000867 LLVMContext Context;
868 auto ReaderOrErr = SampleProfileReader::create(Filename, Context);
Diego Novillofcd55602014-11-03 00:51:45 +0000869 if (std::error_code EC = ReaderOrErr.getError())
Nathan Slingerland4f823662015-11-13 03:47:58 +0000870 exitWithErrorCode(EC, Filename);
Diego Novillod5336ae2014-11-01 00:56:55 +0000871
Diego Novillofcd55602014-11-03 00:51:45 +0000872 auto Reader = std::move(ReaderOrErr.get());
Diego Novilloc6d032a2015-09-17 00:17:21 +0000873 if (std::error_code EC = Reader->read())
Nathan Slingerland4f823662015-11-13 03:47:58 +0000874 exitWithErrorCode(EC, Filename);
Diego Novilloc6d032a2015-09-17 00:17:21 +0000875
Diego Novillod5336ae2014-11-01 00:56:55 +0000876 if (ShowAllFunctions || ShowFunction.empty())
877 Reader->dump(OS);
878 else
879 Reader->dumpFunctionProfile(ShowFunction, OS);
880
881 return 0;
882}
883
Benjamin Kramerf044d3f2015-03-09 16:23:46 +0000884static int show_main(int argc, const char *argv[]) {
Diego Novillod5336ae2014-11-01 00:56:55 +0000885 cl::opt<std::string> Filename(cl::Positional, cl::Required,
886 cl::desc("<profdata-file>"));
887
888 cl::opt<bool> ShowCounts("counts", cl::init(false),
889 cl::desc("Show counter values for shown functions"));
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000890 cl::opt<bool> TextFormat(
891 "text", cl::init(false),
892 cl::desc("Show instr profile data in text dump format"));
Justin Bogner9e9a0572015-09-29 22:13:58 +0000893 cl::opt<bool> ShowIndirectCallTargets(
894 "ic-targets", cl::init(false),
895 cl::desc("Show indirect call site target values for shown functions"));
Rong Xu60faea12017-03-16 21:15:48 +0000896 cl::opt<bool> ShowMemOPSizes(
897 "memop-sizes", cl::init(false),
898 cl::desc("Show the profiled sizes of the memory intrinsic calls "
899 "for shown functions"));
Easwaran Raman183ebbe2016-01-13 21:44:36 +0000900 cl::opt<bool> ShowDetailedSummary("detailed-summary", cl::init(false),
901 cl::desc("Show detailed profile summary"));
902 cl::list<uint32_t> DetailedSummaryCutoffs(
903 cl::CommaSeparated, "detailed-summary-cutoffs",
904 cl::desc(
905 "Cutoff percentages (times 10000) for generating detailed summary"),
906 cl::value_desc("800000,901000,999999"));
Diego Novillod5336ae2014-11-01 00:56:55 +0000907 cl::opt<bool> ShowAllFunctions("all-functions", cl::init(false),
908 cl::desc("Details for every function"));
Rong Xua6ff69f2019-02-28 19:55:07 +0000909 cl::opt<bool> ShowCS("showcs", cl::init(false),
910 cl::desc("Show context sensitive counts"));
Diego Novillod5336ae2014-11-01 00:56:55 +0000911 cl::opt<std::string> ShowFunction("function",
912 cl::desc("Details for matching functions"));
913
914 cl::opt<std::string> OutputFilename("output", cl::value_desc("output"),
915 cl::init("-"), cl::desc("Output file"));
916 cl::alias OutputFilenameA("o", cl::desc("Alias for --output"),
917 cl::aliasopt(OutputFilename));
918 cl::opt<ProfileKinds> ProfileKind(
919 cl::desc("Profile kind:"), cl::init(instr),
920 cl::values(clEnumVal(instr, "Instrumentation profile (default)"),
Mehdi Amini732afdd2016-10-08 19:41:06 +0000921 clEnumVal(sample, "Sample profile")));
Xinliang David Li801b5312017-07-11 20:30:43 +0000922 cl::opt<uint32_t> TopNFunctions(
923 "topn", cl::init(0),
924 cl::desc("Show the list of functions with the largest internal counts"));
Rong Xu52aa2242019-01-08 22:41:48 +0000925 cl::opt<uint32_t> ValueCutoff(
926 "value-cutoff", cl::init(0),
927 cl::desc("Set the count value cutoff. Functions with the maximum count "
928 "less than this value will not be printed out. (Default is 0)"));
929 cl::opt<bool> OnlyListBelow(
930 "list-below-cutoff", cl::init(false),
931 cl::desc("Only output names of functions whose max count values are "
932 "below the cutoff value"));
Diego Novillod5336ae2014-11-01 00:56:55 +0000933 cl::ParseCommandLineOptions(argc, argv, "LLVM profile data summary\n");
934
935 if (OutputFilename.empty())
936 OutputFilename = "-";
937
938 std::error_code EC;
939 raw_fd_ostream OS(OutputFilename.data(), EC, sys::fs::F_Text);
940 if (EC)
Xinliang David Li6f7c19a2015-11-23 20:47:38 +0000941 exitWithErrorCode(EC, OutputFilename);
Diego Novillod5336ae2014-11-01 00:56:55 +0000942
943 if (ShowAllFunctions && !ShowFunction.empty())
Jonas Devliegheree46b7562018-04-18 14:42:33 +0000944 WithColor::warning() << "-function argument ignored: showing all functions\n";
Diego Novillod5336ae2014-11-01 00:56:55 +0000945
Easwaran Raman183ebbe2016-01-13 21:44:36 +0000946 std::vector<uint32_t> Cutoffs(DetailedSummaryCutoffs.begin(),
947 DetailedSummaryCutoffs.end());
Diego Novillod5336ae2014-11-01 00:56:55 +0000948 if (ProfileKind == instr)
Xinliang David Li801b5312017-07-11 20:30:43 +0000949 return showInstrProfile(Filename, ShowCounts, TopNFunctions,
950 ShowIndirectCallTargets, ShowMemOPSizes,
951 ShowDetailedSummary, DetailedSummaryCutoffs,
Rong Xua6ff69f2019-02-28 19:55:07 +0000952 ShowAllFunctions, ShowCS, ValueCutoff,
953 OnlyListBelow, ShowFunction, TextFormat, OS);
Diego Novillod5336ae2014-11-01 00:56:55 +0000954 else
955 return showSampleProfile(Filename, ShowCounts, ShowAllFunctions,
956 ShowFunction, OS);
957}
958
Justin Bogner618bcea2014-03-19 02:20:46 +0000959int main(int argc, const char *argv[]) {
Rui Ueyama197194b2018-04-13 18:26:06 +0000960 InitLLVM X(argc, argv);
Justin Bogner618bcea2014-03-19 02:20:46 +0000961
962 StringRef ProgName(sys::path::filename(argv[0]));
963 if (argc > 1) {
Craig Toppere6cb63e2014-04-25 04:24:47 +0000964 int (*func)(int, const char *[]) = nullptr;
Justin Bogner618bcea2014-03-19 02:20:46 +0000965
966 if (strcmp(argv[1], "merge") == 0)
967 func = merge_main;
Justin Bogner9af28ef2014-03-21 17:29:44 +0000968 else if (strcmp(argv[1], "show") == 0)
969 func = show_main;
Justin Bogner618bcea2014-03-19 02:20:46 +0000970
971 if (func) {
972 std::string Invocation(ProgName.str() + " " + argv[1]);
973 argv[1] = Invocation.c_str();
974 return func(argc - 1, argv + 1);
975 }
976
Diego Novillod3babdb2015-12-14 20:37:15 +0000977 if (strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "-help") == 0 ||
Justin Bogner618bcea2014-03-19 02:20:46 +0000978 strcmp(argv[1], "--help") == 0) {
979
980 errs() << "OVERVIEW: LLVM profile data tools\n\n"
981 << "USAGE: " << ProgName << " <command> [args...]\n"
982 << "USAGE: " << ProgName << " <command> -help\n\n"
Justin Bogner253eb172016-08-03 23:10:51 +0000983 << "See each individual command --help for more details.\n"
Justin Bogner9af28ef2014-03-21 17:29:44 +0000984 << "Available commands: merge, show\n";
Justin Bogner618bcea2014-03-19 02:20:46 +0000985 return 0;
986 }
987 }
988
989 if (argc < 2)
990 errs() << ProgName << ": No command specified!\n";
991 else
992 errs() << ProgName << ": Unknown command!\n";
993
Justin Bogner9af28ef2014-03-21 17:29:44 +0000994 errs() << "USAGE: " << ProgName << " <merge|show> [args...]\n";
Justin Bogner618bcea2014-03-19 02:20:46 +0000995 return 1;
996}