Duncan P. N. Exon Smith | ddc5a01 | 2014-02-17 23:22:49 +0000 | [diff] [blame] | 1 | //===- llvm-profdata.cpp - LLVM profile data tool -------------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // llvm-profdata merges .profdata files. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Nathan Slingerland | 991a399f | 2015-11-18 17:10:24 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/SmallSet.h" |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/SmallVector.h" |
Duncan P. N. Exon Smith | ddc5a01 | 2014-02-17 23:22:49 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/StringRef.h" |
Chandler Carruth | 1b27914 | 2015-01-14 11:23:27 +0000 | [diff] [blame] | 17 | #include "llvm/IR/LLVMContext.h" |
Justin Bogner | c0f3b72 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 18 | #include "llvm/ProfileData/InstrProfReader.h" |
Justin Bogner | 496d7f6 | 2014-03-21 17:46:22 +0000 | [diff] [blame] | 19 | #include "llvm/ProfileData/InstrProfWriter.h" |
Easwaran Raman | 4bf45e8 | 2016-02-04 23:34:31 +0000 | [diff] [blame] | 20 | #include "llvm/ProfileData/ProfileCommon.h" |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 21 | #include "llvm/ProfileData/SampleProfReader.h" |
| 22 | #include "llvm/ProfileData/SampleProfWriter.h" |
Duncan P. N. Exon Smith | ddc5a01 | 2014-02-17 23:22:49 +0000 | [diff] [blame] | 23 | #include "llvm/Support/CommandLine.h" |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 24 | #include "llvm/Support/Errc.h" |
Benjamin Kramer | 7259f14 | 2014-04-29 23:26:49 +0000 | [diff] [blame] | 25 | #include "llvm/Support/FileSystem.h" |
Justin Bogner | 5ecdfc1 | 2014-03-23 20:43:50 +0000 | [diff] [blame] | 26 | #include "llvm/Support/Format.h" |
Rui Ueyama | 0b9d56a | 2018-04-13 18:26:06 +0000 | [diff] [blame] | 27 | #include "llvm/Support/InitLLVM.h" |
Duncan P. N. Exon Smith | ddc5a01 | 2014-02-17 23:22:49 +0000 | [diff] [blame] | 28 | #include "llvm/Support/MemoryBuffer.h" |
Benjamin Kramer | df93f4b | 2015-03-23 18:07:13 +0000 | [diff] [blame] | 29 | #include "llvm/Support/Path.h" |
Jonas Devlieghere | 331449e | 2018-04-18 14:42:33 +0000 | [diff] [blame] | 30 | #include "llvm/Support/WithColor.h" |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 31 | #include "llvm/Support/ThreadPool.h" |
Duncan P. N. Exon Smith | ddc5a01 | 2014-02-17 23:22:49 +0000 | [diff] [blame] | 32 | #include "llvm/Support/raw_ostream.h" |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 33 | #include <algorithm> |
Duncan P. N. Exon Smith | ddc5a01 | 2014-02-17 23:22:49 +0000 | [diff] [blame] | 34 | |
| 35 | using namespace llvm; |
| 36 | |
Wei Mi | 93bc746 | 2018-06-11 22:40:43 +0000 | [diff] [blame] | 37 | enum ProfileFormat { |
| 38 | PF_None = 0, |
| 39 | PF_Text, |
| 40 | PF_Compact_Binary, |
| 41 | PF_GCC, |
Wei Mi | 7253cd8 | 2018-06-12 05:53:49 +0000 | [diff] [blame] | 42 | PF_Binary |
Wei Mi | 93bc746 | 2018-06-11 22:40:43 +0000 | [diff] [blame] | 43 | }; |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 44 | |
Jonas Devlieghere | 331449e | 2018-04-18 14:42:33 +0000 | [diff] [blame] | 45 | static void warn(Twine Message, std::string Whence = "", |
Vedant Kumar | ddb44a6 | 2017-11-17 21:18:32 +0000 | [diff] [blame] | 46 | std::string Hint = "") { |
Jonas Devlieghere | 331449e | 2018-04-18 14:42:33 +0000 | [diff] [blame] | 47 | WithColor::warning(); |
Justin Bogner | c0f3b72 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 48 | if (!Whence.empty()) |
| 49 | errs() << Whence << ": "; |
| 50 | errs() << Message << "\n"; |
Nathan Slingerland | 572e633 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 51 | if (!Hint.empty()) |
Jonas Devlieghere | 331449e | 2018-04-18 14:42:33 +0000 | [diff] [blame] | 52 | WithColor::note() << Hint << "\n"; |
Vedant Kumar | ddb44a6 | 2017-11-17 21:18:32 +0000 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | static void exitWithError(Twine Message, std::string Whence = "", |
| 56 | std::string Hint = "") { |
Jonas Devlieghere | 331449e | 2018-04-18 14:42:33 +0000 | [diff] [blame] | 57 | WithColor::error(); |
| 58 | if (!Whence.empty()) |
| 59 | errs() << Whence << ": "; |
| 60 | errs() << Message << "\n"; |
| 61 | if (!Hint.empty()) |
| 62 | WithColor::note() << Hint << "\n"; |
Duncan P. N. Exon Smith | ddc5a01 | 2014-02-17 23:22:49 +0000 | [diff] [blame] | 63 | ::exit(1); |
| 64 | } |
| 65 | |
Vedant Kumar | c77570e | 2016-05-19 03:54:45 +0000 | [diff] [blame] | 66 | static void exitWithError(Error E, StringRef Whence = "") { |
| 67 | if (E.isA<InstrProfError>()) { |
| 68 | handleAllErrors(std::move(E), [&](const InstrProfError &IPE) { |
| 69 | instrprof_error instrError = IPE.get(); |
| 70 | StringRef Hint = ""; |
| 71 | if (instrError == instrprof_error::unrecognized_format) { |
| 72 | // Hint for common error of forgetting -sample for sample profiles. |
| 73 | Hint = "Perhaps you forgot to use the -sample option?"; |
| 74 | } |
| 75 | exitWithError(IPE.message(), Whence, Hint); |
| 76 | }); |
Nathan Slingerland | 572e633 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 77 | } |
Vedant Kumar | c77570e | 2016-05-19 03:54:45 +0000 | [diff] [blame] | 78 | |
| 79 | exitWithError(toString(std::move(E)), Whence); |
| 80 | } |
| 81 | |
| 82 | static void exitWithErrorCode(std::error_code EC, StringRef Whence = "") { |
| 83 | exitWithError(EC.message(), Whence); |
Nathan Slingerland | 572e633 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 84 | } |
| 85 | |
Duncan P. N. Exon Smith | 4aee54e | 2015-06-16 00:43:04 +0000 | [diff] [blame] | 86 | namespace { |
Diego Novillo | 914ed19 | 2015-12-14 20:37:15 +0000 | [diff] [blame] | 87 | enum ProfileKinds { instr, sample }; |
Duncan P. N. Exon Smith | 4aee54e | 2015-06-16 00:43:04 +0000 | [diff] [blame] | 88 | } |
Justin Bogner | 695043f | 2014-03-19 02:20:46 +0000 | [diff] [blame] | 89 | |
Vedant Kumar | c77570e | 2016-05-19 03:54:45 +0000 | [diff] [blame] | 90 | static void handleMergeWriterError(Error E, StringRef WhenceFile = "", |
Nathan Slingerland | 0833ccb | 2015-11-17 22:08:53 +0000 | [diff] [blame] | 91 | StringRef WhenceFunction = "", |
Diego Novillo | 914ed19 | 2015-12-14 20:37:15 +0000 | [diff] [blame] | 92 | bool ShowHint = true) { |
Nathan Slingerland | 0833ccb | 2015-11-17 22:08:53 +0000 | [diff] [blame] | 93 | if (!WhenceFile.empty()) |
| 94 | errs() << WhenceFile << ": "; |
| 95 | if (!WhenceFunction.empty()) |
| 96 | errs() << WhenceFunction << ": "; |
Vedant Kumar | c77570e | 2016-05-19 03:54:45 +0000 | [diff] [blame] | 97 | |
| 98 | auto IPE = instrprof_error::success; |
| 99 | E = handleErrors(std::move(E), |
| 100 | [&IPE](std::unique_ptr<InstrProfError> E) -> Error { |
| 101 | IPE = E->get(); |
| 102 | return Error(std::move(E)); |
| 103 | }); |
| 104 | errs() << toString(std::move(E)) << "\n"; |
Nathan Slingerland | 0833ccb | 2015-11-17 22:08:53 +0000 | [diff] [blame] | 105 | |
| 106 | if (ShowHint) { |
| 107 | StringRef Hint = ""; |
Vedant Kumar | c77570e | 2016-05-19 03:54:45 +0000 | [diff] [blame] | 108 | if (IPE != instrprof_error::success) { |
| 109 | switch (IPE) { |
Nathan Slingerland | 3d2c6fc | 2015-11-17 23:37:09 +0000 | [diff] [blame] | 110 | case instrprof_error::hash_mismatch: |
| 111 | case instrprof_error::count_mismatch: |
| 112 | case instrprof_error::value_site_count_mismatch: |
Diego Novillo | 914ed19 | 2015-12-14 20:37:15 +0000 | [diff] [blame] | 113 | Hint = "Make sure that all profile data to be merged is generated " |
Nathan Slingerland | 0833ccb | 2015-11-17 22:08:53 +0000 | [diff] [blame] | 114 | "from the same binary."; |
Nathan Slingerland | 3d2c6fc | 2015-11-17 23:37:09 +0000 | [diff] [blame] | 115 | break; |
Nathan Slingerland | 9dcdf0d | 2015-11-18 00:52:45 +0000 | [diff] [blame] | 116 | default: |
| 117 | break; |
Nathan Slingerland | 0833ccb | 2015-11-17 22:08:53 +0000 | [diff] [blame] | 118 | } |
| 119 | } |
| 120 | |
| 121 | if (!Hint.empty()) |
| 122 | errs() << Hint << "\n"; |
| 123 | } |
| 124 | } |
| 125 | |
Richard Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 126 | namespace { |
| 127 | /// A remapper from original symbol names to new symbol names based on a file |
| 128 | /// containing a list of mappings from old name to new name. |
| 129 | class SymbolRemapper { |
| 130 | std::unique_ptr<MemoryBuffer> File; |
| 131 | DenseMap<StringRef, StringRef> RemappingTable; |
| 132 | |
| 133 | public: |
| 134 | /// Build a SymbolRemapper from a file containing a list of old/new symbols. |
| 135 | static std::unique_ptr<SymbolRemapper> create(StringRef InputFile) { |
| 136 | auto BufOrError = MemoryBuffer::getFileOrSTDIN(InputFile); |
| 137 | if (!BufOrError) |
| 138 | exitWithErrorCode(BufOrError.getError(), InputFile); |
| 139 | |
| 140 | auto Remapper = llvm::make_unique<SymbolRemapper>(); |
| 141 | Remapper->File = std::move(BufOrError.get()); |
| 142 | |
| 143 | for (line_iterator LineIt(*Remapper->File, /*SkipBlanks=*/true, '#'); |
| 144 | !LineIt.is_at_eof(); ++LineIt) { |
| 145 | std::pair<StringRef, StringRef> Parts = LineIt->split(' '); |
| 146 | if (Parts.first.empty() || Parts.second.empty() || |
| 147 | Parts.second.count(' ')) { |
| 148 | exitWithError("unexpected line in remapping file", |
| 149 | (InputFile + ":" + Twine(LineIt.line_number())).str(), |
| 150 | "expected 'old_symbol new_symbol'"); |
| 151 | } |
| 152 | Remapper->RemappingTable.insert(Parts); |
| 153 | } |
| 154 | return Remapper; |
| 155 | } |
| 156 | |
| 157 | /// Attempt to map the given old symbol into a new symbol. |
| 158 | /// |
| 159 | /// \return The new symbol, or \p Name if no such symbol was found. |
| 160 | StringRef operator()(StringRef Name) { |
| 161 | StringRef New = RemappingTable.lookup(Name); |
| 162 | return New.empty() ? Name : New; |
| 163 | } |
| 164 | }; |
| 165 | } |
| 166 | |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 167 | struct WeightedFile { |
Xinliang David Li | 30a3883 | 2016-07-20 22:24:52 +0000 | [diff] [blame] | 168 | std::string Filename; |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 169 | uint64_t Weight; |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 170 | }; |
| 171 | typedef SmallVector<WeightedFile, 5> WeightedFileVector; |
| 172 | |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 173 | /// Keep track of merged data and reported errors. |
| 174 | struct WriterContext { |
| 175 | std::mutex Lock; |
| 176 | InstrProfWriter Writer; |
| 177 | Error Err; |
Vedant Kumar | 0ff70a6 | 2017-11-17 02:58:23 +0000 | [diff] [blame] | 178 | std::string ErrWhence; |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 179 | std::mutex &ErrLock; |
| 180 | SmallSet<instrprof_error, 4> &WriterErrorCodes; |
| 181 | |
| 182 | WriterContext(bool IsSparse, std::mutex &ErrLock, |
| 183 | SmallSet<instrprof_error, 4> &WriterErrorCodes) |
| 184 | : Lock(), Writer(IsSparse), Err(Error::success()), ErrWhence(""), |
| 185 | ErrLock(ErrLock), WriterErrorCodes(WriterErrorCodes) {} |
| 186 | }; |
| 187 | |
Vedant Kumar | ddb44a6 | 2017-11-17 21:18:32 +0000 | [diff] [blame] | 188 | /// Determine whether an error is fatal for profile merging. |
| 189 | static bool isFatalError(instrprof_error IPE) { |
| 190 | switch (IPE) { |
| 191 | default: |
| 192 | return true; |
| 193 | case instrprof_error::success: |
| 194 | case instrprof_error::eof: |
| 195 | case instrprof_error::unknown_function: |
| 196 | case instrprof_error::hash_mismatch: |
| 197 | case instrprof_error::count_mismatch: |
| 198 | case instrprof_error::counter_overflow: |
| 199 | case instrprof_error::value_site_count_mismatch: |
| 200 | return false; |
| 201 | } |
| 202 | } |
| 203 | |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 204 | /// Load an input into a writer context. |
Richard Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 205 | static void loadInput(const WeightedFile &Input, SymbolRemapper *Remapper, |
| 206 | WriterContext *WC) { |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 207 | std::unique_lock<std::mutex> CtxGuard{WC->Lock}; |
| 208 | |
| 209 | // If there's a pending hard error, don't do more work. |
| 210 | if (WC->Err) |
| 211 | return; |
| 212 | |
Vedant Kumar | 0ff70a6 | 2017-11-17 02:58:23 +0000 | [diff] [blame] | 213 | // Copy the filename, because llvm::ThreadPool copied the input "const |
| 214 | // WeightedFile &" by value, making a reference to the filename within it |
| 215 | // invalid outside of this packaged task. |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 216 | WC->ErrWhence = Input.Filename; |
| 217 | |
| 218 | auto ReaderOrErr = InstrProfReader::create(Input.Filename); |
Rong Xu | c887230 | 2016-10-19 22:51:17 +0000 | [diff] [blame] | 219 | if (Error E = ReaderOrErr.takeError()) { |
| 220 | // Skip the empty profiles by returning sliently. |
| 221 | instrprof_error IPE = InstrProfError::take(std::move(E)); |
| 222 | if (IPE != instrprof_error::empty_raw_profile) |
| 223 | WC->Err = make_error<InstrProfError>(IPE); |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 224 | return; |
Rong Xu | c887230 | 2016-10-19 22:51:17 +0000 | [diff] [blame] | 225 | } |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 226 | |
| 227 | auto Reader = std::move(ReaderOrErr.get()); |
| 228 | bool IsIRProfile = Reader->isIRLevelProfile(); |
| 229 | if (WC->Writer.setIsIRLevelProfile(IsIRProfile)) { |
| 230 | 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 Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 237 | if (Remapper) |
| 238 | I.Name = (*Remapper)(I.Name); |
Rong Xu | fa327ae | 2016-10-19 23:31:59 +0000 | [diff] [blame] | 239 | const StringRef FuncName = I.Name; |
David Blaikie | cb16061 | 2017-07-10 03:04:59 +0000 | [diff] [blame] | 240 | 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 Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 247 | // 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 Xu | fa327ae | 2016-10-19 23:31:59 +0000 | [diff] [blame] | 252 | FuncName, firstTime); |
David Blaikie | cb16061 | 2017-07-10 03:04:59 +0000 | [diff] [blame] | 253 | }); |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 254 | } |
Vedant Kumar | ddb44a6 | 2017-11-17 21:18:32 +0000 | [diff] [blame] | 255 | 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 Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | /// Merge the \p Src writer context into \p Dst. |
| 265 | static void mergeWriterContexts(WriterContext *Dst, WriterContext *Src) { |
Vedant Kumar | 0ff70a6 | 2017-11-17 02:58:23 +0000 | [diff] [blame] | 266 | // 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 Blaikie | cb16061 | 2017-07-10 03:04:59 +0000 | [diff] [blame] | 271 | 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 Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 278 | Dst->Err = std::move(E); |
David Blaikie | cb16061 | 2017-07-10 03:04:59 +0000 | [diff] [blame] | 279 | }); |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 282 | static void mergeInstrProfile(const WeightedFileVector &Inputs, |
Richard Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 283 | SymbolRemapper *Remapper, |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 284 | StringRef OutputFilename, |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 285 | ProfileFormat OutputFormat, bool OutputSparse, |
| 286 | unsigned NumThreads) { |
Justin Bogner | e153fb3 | 2014-04-18 21:48:40 +0000 | [diff] [blame] | 287 | if (OutputFilename.compare("-") == 0) |
| 288 | exitWithError("Cannot write indexed profdata format to stdout."); |
Justin Bogner | efa9416 | 2014-03-12 22:00:57 +0000 | [diff] [blame] | 289 | |
Wei Mi | 7253cd8 | 2018-06-12 05:53:49 +0000 | [diff] [blame] | 290 | if (OutputFormat != PF_Binary && OutputFormat != PF_Compact_Binary && |
Wei Mi | 93bc746 | 2018-06-11 22:40:43 +0000 | [diff] [blame] | 291 | OutputFormat != PF_Text) |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 292 | exitWithError("Unknown format is specified."); |
| 293 | |
Rafael Espindola | 8c96862 | 2014-08-25 18:16:47 +0000 | [diff] [blame] | 294 | std::error_code EC; |
| 295 | raw_fd_ostream Output(OutputFilename.data(), EC, sys::fs::F_None); |
| 296 | if (EC) |
Nathan Slingerland | 572e633 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 297 | exitWithErrorCode(EC, OutputFilename); |
Justin Bogner | efa9416 | 2014-03-12 22:00:57 +0000 | [diff] [blame] | 298 | |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 299 | std::mutex ErrorLock; |
Vedant Kumar | c77570e | 2016-05-19 03:54:45 +0000 | [diff] [blame] | 300 | SmallSet<instrprof_error, 4> WriterErrorCodes; |
Justin Bogner | c0f3b72 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 301 | |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 302 | // If NumThreads is not specified, auto-detect a good default. |
| 303 | if (NumThreads == 0) |
Rafael Espindola | a72e2a9 | 2017-10-04 20:27:01 +0000 | [diff] [blame] | 304 | NumThreads = |
| 305 | std::min(hardware_concurrency(), unsigned((Inputs.size() + 1) / 2)); |
Rong Xu | c7d7fb0 | 2016-02-10 17:18:30 +0000 | [diff] [blame] | 306 | |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 307 | // 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 Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 315 | loadInput(Input, Remapper, Contexts[0].get()); |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 316 | } 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 Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 322 | Pool.async(loadInput, Input, Remapper, Contexts[Ctx].get()); |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 323 | Ctx = (Ctx + 1) % NumThreads; |
Nathan Slingerland | 0833ccb | 2015-11-17 22:08:53 +0000 | [diff] [blame] | 324 | } |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 325 | 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 Bogner | 4207c67 | 2014-03-12 20:14:17 +0000 | [diff] [blame] | 344 | } |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 345 | |
| 346 | // Handle deferred hard errors encountered during merging. |
Vedant Kumar | ddb44a6 | 2017-11-17 21:18:32 +0000 | [diff] [blame] | 347 | for (std::unique_ptr<WriterContext> &WC : Contexts) { |
| 348 | if (!WC->Err) |
| 349 | continue; |
| 350 | if (!WC->Err.isA<InstrProfError>()) |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 351 | exitWithError(std::move(WC->Err), WC->ErrWhence); |
| 352 | |
Vedant Kumar | ddb44a6 | 2017-11-17 21:18:32 +0000 | [diff] [blame] | 353 | instrprof_error IPE = InstrProfError::take(std::move(WC->Err)); |
| 354 | if (isFatalError(IPE)) |
| 355 | exitWithError(make_error<InstrProfError>(IPE), WC->ErrWhence); |
| 356 | else |
Jonas Devlieghere | 331449e | 2018-04-18 14:42:33 +0000 | [diff] [blame] | 357 | warn(toString(make_error<InstrProfError>(IPE)), |
Vedant Kumar | ddb44a6 | 2017-11-17 21:18:32 +0000 | [diff] [blame] | 358 | WC->ErrWhence); |
| 359 | } |
| 360 | |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 361 | InstrProfWriter &Writer = Contexts[0]->Writer; |
Vedant Kumar | b945463 | 2017-06-20 01:38:56 +0000 | [diff] [blame] | 362 | if (OutputFormat == PF_Text) { |
| 363 | if (Error E = Writer.writeText(Output)) |
| 364 | exitWithError(std::move(E)); |
| 365 | } else { |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 366 | Writer.write(Output); |
Vedant Kumar | b945463 | 2017-06-20 01:38:56 +0000 | [diff] [blame] | 367 | } |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 368 | } |
| 369 | |
Richard Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 370 | /// Make a copy of the given function samples with all symbol names remapped |
| 371 | /// by the provided symbol remapper. |
| 372 | static sampleprof::FunctionSamples |
| 373 | remapSamples(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 Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 401 | static sampleprof::SampleProfileFormat FormatMap[] = { |
Wei Mi | 93bc746 | 2018-06-11 22:40:43 +0000 | [diff] [blame] | 402 | sampleprof::SPF_None, sampleprof::SPF_Text, sampleprof::SPF_Compact_Binary, |
Wei Mi | 7253cd8 | 2018-06-12 05:53:49 +0000 | [diff] [blame] | 403 | sampleprof::SPF_GCC, sampleprof::SPF_Binary}; |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 404 | |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 405 | static void mergeSampleProfile(const WeightedFileVector &Inputs, |
Richard Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 406 | SymbolRemapper *Remapper, |
Benjamin Kramer | 0df4e22 | 2015-03-09 16:23:46 +0000 | [diff] [blame] | 407 | StringRef OutputFilename, |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 408 | ProfileFormat OutputFormat) { |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 409 | using namespace sampleprof; |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 410 | auto WriterOrErr = |
| 411 | SampleProfileWriter::create(OutputFilename, FormatMap[OutputFormat]); |
Diego Novillo | 2b6bd7a | 2014-11-03 00:51:45 +0000 | [diff] [blame] | 412 | if (std::error_code EC = WriterOrErr.getError()) |
Nathan Slingerland | 572e633 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 413 | exitWithErrorCode(EC, OutputFilename); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 414 | |
Diego Novillo | 2b6bd7a | 2014-11-03 00:51:45 +0000 | [diff] [blame] | 415 | auto Writer = std::move(WriterOrErr.get()); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 416 | StringMap<FunctionSamples> ProfileMap; |
Diego Novillo | 3bc8dc3 | 2015-10-08 19:40:37 +0000 | [diff] [blame] | 417 | SmallVector<std::unique_ptr<sampleprof::SampleProfileReader>, 5> Readers; |
Mehdi Amini | 8be7707 | 2016-04-14 21:59:01 +0000 | [diff] [blame] | 418 | LLVMContext Context; |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 419 | for (const auto &Input : Inputs) { |
Mehdi Amini | 8be7707 | 2016-04-14 21:59:01 +0000 | [diff] [blame] | 420 | auto ReaderOrErr = SampleProfileReader::create(Input.Filename, Context); |
Diego Novillo | 2b6bd7a | 2014-11-03 00:51:45 +0000 | [diff] [blame] | 421 | if (std::error_code EC = ReaderOrErr.getError()) |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 422 | exitWithErrorCode(EC, Input.Filename); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 423 | |
Diego Novillo | 3bc8dc3 | 2015-10-08 19:40:37 +0000 | [diff] [blame] | 424 | // 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 Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 430 | if (std::error_code EC = Reader->read()) |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 431 | exitWithErrorCode(EC, Input.Filename); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 432 | |
| 433 | StringMap<FunctionSamples> &Profiles = Reader->getProfiles(); |
| 434 | for (StringMap<FunctionSamples>::iterator I = Profiles.begin(), |
| 435 | E = Profiles.end(); |
| 436 | I != E; ++I) { |
Richard Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 437 | 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 Slingerland | fd56824 | 2015-12-16 21:45:43 +0000 | [diff] [blame] | 444 | if (Result != sampleprof_error::success) { |
| 445 | std::error_code EC = make_error_code(Result); |
Vedant Kumar | c77570e | 2016-05-19 03:54:45 +0000 | [diff] [blame] | 446 | handleMergeWriterError(errorCodeToError(EC), Input.Filename, FName); |
Nathan Slingerland | fd56824 | 2015-12-16 21:45:43 +0000 | [diff] [blame] | 447 | } |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 448 | } |
| 449 | } |
| 450 | Writer->write(ProfileMap); |
| 451 | } |
| 452 | |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 453 | static WeightedFile parseWeightedFile(const StringRef &WeightedFilename) { |
Vedant Kumar | 4333164 | 2016-06-06 23:43:56 +0000 | [diff] [blame] | 454 | StringRef WeightStr, FileName; |
| 455 | std::tie(WeightStr, FileName) = WeightedFilename.split(','); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 456 | |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 457 | uint64_t Weight; |
| 458 | if (WeightStr.getAsInteger(10, Weight) || Weight < 1) |
| 459 | exitWithError("Input weight must be a positive integer."); |
| 460 | |
Benjamin Kramer | d31d3eb | 2016-07-21 14:29:11 +0000 | [diff] [blame] | 461 | return {FileName, Weight}; |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 462 | } |
| 463 | |
Vedant Kumar | 1924040 | 2016-06-07 22:47:31 +0000 | [diff] [blame] | 464 | static std::unique_ptr<MemoryBuffer> |
| 465 | getInputFilenamesFileBuf(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 Li | 30a3883 | 2016-07-20 22:24:52 +0000 | [diff] [blame] | 476 | static void addWeightedInput(WeightedFileVector &WNI, const WeightedFile &WF) { |
| 477 | StringRef Filename = WF.Filename; |
| 478 | uint64_t Weight = WF.Weight; |
Benjamin Kramer | 3d6f513 | 2016-07-22 12:39:55 +0000 | [diff] [blame] | 479 | |
| 480 | // If it's STDIN just pass it on. |
| 481 | if (Filename == "-") { |
| 482 | WNI.push_back({Filename, Weight}); |
| 483 | return; |
| 484 | } |
| 485 | |
Xinliang David Li | 30a3883 | 2016-07-20 22:24:52 +0000 | [diff] [blame] | 486 | 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 Kramer | d31d3eb | 2016-07-21 14:29:11 +0000 | [diff] [blame] | 493 | WNI.push_back({Filename, Weight}); |
Xinliang David Li | 30a3883 | 2016-07-20 22:24:52 +0000 | [diff] [blame] | 494 | 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 Kumar | 1924040 | 2016-06-07 22:47:31 +0000 | [diff] [blame] | 510 | static 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 Li | 30a3883 | 2016-07-20 22:24:52 +0000 | [diff] [blame] | 525 | addWeightedInput(WFV, {SanitizedEntry, 1}); |
Vedant Kumar | 1924040 | 2016-06-07 22:47:31 +0000 | [diff] [blame] | 526 | else |
Xinliang David Li | 30a3883 | 2016-07-20 22:24:52 +0000 | [diff] [blame] | 527 | addWeightedInput(WFV, parseWeightedFile(SanitizedEntry)); |
Vedant Kumar | 1924040 | 2016-06-07 22:47:31 +0000 | [diff] [blame] | 528 | } |
| 529 | } |
| 530 | |
Nathan Slingerland | 824c3ec | 2015-12-15 17:37:09 +0000 | [diff] [blame] | 531 | static 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 Kumar | 1924040 | 2016-06-07 22:47:31 +0000 | [diff] [blame] | 536 | 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 Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 545 | 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 Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 549 | 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 Amini | 3ffe113 | 2016-10-08 19:41:06 +0000 | [diff] [blame] | 557 | clEnumVal(sample, "Sample profile"))); |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 558 | cl::opt<ProfileFormat> OutputFormat( |
Wei Mi | 7253cd8 | 2018-06-12 05:53:49 +0000 | [diff] [blame] | 559 | 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 Kumar | 0c94d7d | 2016-01-29 22:54:45 +0000 | [diff] [blame] | 566 | cl::opt<bool> OutputSparse("sparse", cl::init(false), |
| 567 | cl::desc("Generate a sparse profile (only meaningful for -instr)")); |
Vedant Kumar | d91d378 | 2016-07-19 01:17:20 +0000 | [diff] [blame] | 568 | 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 Kumar | 0c94d7d | 2016-01-29 22:54:45 +0000 | [diff] [blame] | 573 | |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 574 | cl::ParseCommandLineOptions(argc, argv, "LLVM profile data merger\n"); |
| 575 | |
Vedant Kumar | 1924040 | 2016-06-07 22:47:31 +0000 | [diff] [blame] | 576 | WeightedFileVector WeightedInputs; |
| 577 | for (StringRef Filename : InputFilenames) |
Xinliang David Li | 30a3883 | 2016-07-20 22:24:52 +0000 | [diff] [blame] | 578 | addWeightedInput(WeightedInputs, {Filename, 1}); |
Vedant Kumar | 1924040 | 2016-06-07 22:47:31 +0000 | [diff] [blame] | 579 | for (StringRef WeightedFilename : WeightedInputFilenames) |
Xinliang David Li | 30a3883 | 2016-07-20 22:24:52 +0000 | [diff] [blame] | 580 | addWeightedInput(WeightedInputs, parseWeightedFile(WeightedFilename)); |
Vedant Kumar | 1924040 | 2016-06-07 22:47:31 +0000 | [diff] [blame] | 581 | |
| 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 Carruth | 557c624 | 2016-06-04 03:08:01 +0000 | [diff] [blame] | 588 | exitWithError("No input files specified. See " + |
| 589 | sys::path::filename(argv[0]) + " -help"); |
| 590 | |
Vedant Kumar | 1924040 | 2016-06-07 22:47:31 +0000 | [diff] [blame] | 591 | if (DumpInputFileList) { |
| 592 | for (auto &WF : WeightedInputs) |
| 593 | outs() << WF.Weight << "," << WF.Filename << "\n"; |
| 594 | return 0; |
| 595 | } |
Vedant Kumar | ae73627 | 2016-06-04 00:36:28 +0000 | [diff] [blame] | 596 | |
Richard Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 597 | std::unique_ptr<SymbolRemapper> Remapper; |
| 598 | if (!RemappingFile.empty()) |
| 599 | Remapper = SymbolRemapper::create(RemappingFile); |
| 600 | |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 601 | if (ProfileKind == instr) |
Richard Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 602 | mergeInstrProfile(WeightedInputs, Remapper.get(), OutputFilename, |
| 603 | OutputFormat, OutputSparse, NumThreads); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 604 | else |
Richard Smith | 61be1ad | 2018-09-13 20:22:02 +0000 | [diff] [blame] | 605 | mergeSampleProfile(WeightedInputs, Remapper.get(), OutputFilename, |
| 606 | OutputFormat); |
Justin Bogner | 4207c67 | 2014-03-12 20:14:17 +0000 | [diff] [blame] | 607 | |
Justin Bogner | efa9416 | 2014-03-12 22:00:57 +0000 | [diff] [blame] | 608 | return 0; |
Justin Bogner | 4207c67 | 2014-03-12 20:14:17 +0000 | [diff] [blame] | 609 | } |
Justin Bogner | 695043f | 2014-03-19 02:20:46 +0000 | [diff] [blame] | 610 | |
Rong Xu | fbfbf06 | 2017-03-09 19:03:57 +0000 | [diff] [blame] | 611 | typedef 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 | |
| 621 | static void traverseAllValueSites(const InstrProfRecord &Func, uint32_t VK, |
| 622 | ValueSitesStats &Stats, raw_fd_ostream &OS, |
Rong Xu | 6f00c7b | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 623 | InstrProfSymtab *Symtab) { |
Rong Xu | fbfbf06 | 2017-03-09 19:03:57 +0000 | [diff] [blame] | 624 | 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 Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 636 | |
| 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 Xu | fbfbf06 | 2017-03-09 19:03:57 +0000 | [diff] [blame] | 643 | for (uint32_t V = 0; V < NV; V++) { |
Rong Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 644 | OS << "\t[ " << format("%2u", I) << ", "; |
Rong Xu | 6f00c7b | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 645 | if (Symtab == nullptr) |
Rong Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 646 | OS << format("%4u", VD[V].Value); |
Rong Xu | 6f00c7b | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 647 | else |
| 648 | OS << Symtab->getFuncName(VD[V].Value); |
Rong Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 649 | OS << ", " << format("%10" PRId64, VD[V].Count) << " ] (" |
| 650 | << format("%.2f%%", (VD[V].Count * 100.0 / SiteSum)) << ")\n"; |
Rong Xu | fbfbf06 | 2017-03-09 19:03:57 +0000 | [diff] [blame] | 651 | } |
| 652 | } |
| 653 | } |
| 654 | |
| 655 | static 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 Kramer | e5eb673 | 2016-06-17 20:41:14 +0000 | [diff] [blame] | 669 | static int showInstrProfile(const std::string &Filename, bool ShowCounts, |
Xinliang David Li | dcb98bd | 2017-07-11 20:30:43 +0000 | [diff] [blame] | 670 | uint32_t TopN, bool ShowIndirectCallTargets, |
| 671 | bool ShowMemOPSizes, bool ShowDetailedSummary, |
Easwaran Raman | fa283c3 | 2016-01-13 21:44:36 +0000 | [diff] [blame] | 672 | std::vector<uint32_t> DetailedSummaryCutoffs, |
Rong Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 673 | bool ShowAllFunctions, uint64_t ValueCutoff, |
| 674 | bool OnlyListBelow, const std::string &ShowFunction, |
| 675 | bool TextFormat, raw_fd_ostream &OS) { |
Diego Novillo | 2b6bd7a | 2014-11-03 00:51:45 +0000 | [diff] [blame] | 676 | auto ReaderOrErr = InstrProfReader::create(Filename); |
Benjamin Kramer | e5eb673 | 2016-06-17 20:41:14 +0000 | [diff] [blame] | 677 | std::vector<uint32_t> Cutoffs = std::move(DetailedSummaryCutoffs); |
| 678 | if (ShowDetailedSummary && Cutoffs.empty()) { |
Easwaran Raman | fa283c3 | 2016-01-13 21:44:36 +0000 | [diff] [blame] | 679 | Cutoffs = {800000, 900000, 950000, 990000, 999000, 999900, 999990}; |
| 680 | } |
Benjamin Kramer | e5eb673 | 2016-06-17 20:41:14 +0000 | [diff] [blame] | 681 | InstrProfSummaryBuilder Builder(std::move(Cutoffs)); |
Vedant Kumar | c77570e | 2016-05-19 03:54:45 +0000 | [diff] [blame] | 682 | if (Error E = ReaderOrErr.takeError()) |
| 683 | exitWithError(std::move(E), Filename); |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 684 | |
Diego Novillo | 2b6bd7a | 2014-11-03 00:51:45 +0000 | [diff] [blame] | 685 | auto Reader = std::move(ReaderOrErr.get()); |
Rong Xu | c7d7fb0 | 2016-02-10 17:18:30 +0000 | [diff] [blame] | 686 | bool IsIRInstr = Reader->isIRLevelProfile(); |
Easwaran Raman | fa283c3 | 2016-01-13 21:44:36 +0000 | [diff] [blame] | 687 | size_t ShownFunctions = 0; |
Rong Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 688 | size_t BelowCutoffFunctions = 0; |
Rong Xu | fbfbf06 | 2017-03-09 19:03:57 +0000 | [diff] [blame] | 689 | int NumVPKind = IPVK_Last - IPVK_First + 1; |
| 690 | std::vector<ValueSitesStats> VPStats(NumVPKind); |
Xinliang David Li | dcb98bd | 2017-07-11 20:30:43 +0000 | [diff] [blame] | 691 | |
| 692 | auto MinCmp = [](const std::pair<std::string, uint64_t> &v1, |
| 693 | const std::pair<std::string, uint64_t> &v2) { |
| 694 | return v1.second > v2.second; |
| 695 | }; |
| 696 | |
| 697 | std::priority_queue<std::pair<std::string, uint64_t>, |
| 698 | std::vector<std::pair<std::string, uint64_t>>, |
| 699 | decltype(MinCmp)> |
| 700 | HottestFuncs(MinCmp); |
| 701 | |
Rong Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 702 | if (!TextFormat && OnlyListBelow) { |
| 703 | OS << "The list of functions with the maximum counter less than " |
| 704 | << ValueCutoff << ":\n"; |
| 705 | } |
| 706 | |
Richard Smith | a11014c | 2018-08-24 01:34:45 +0000 | [diff] [blame] | 707 | // Add marker so that IR-level instrumentation round-trips properly. |
| 708 | if (TextFormat && IsIRInstr) |
| 709 | OS << ":ir\n"; |
| 710 | |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 711 | for (const auto &Func : *Reader) { |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 712 | bool Show = |
| 713 | ShowAllFunctions || (!ShowFunction.empty() && |
| 714 | Func.Name.find(ShowFunction) != Func.Name.npos); |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 715 | |
Richard Smith | a11014c | 2018-08-24 01:34:45 +0000 | [diff] [blame] | 716 | bool doTextFormatDump = (Show && TextFormat); |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 717 | |
| 718 | if (doTextFormatDump) { |
Xinliang David Li | cfbaf11 | 2015-12-20 06:22:13 +0000 | [diff] [blame] | 719 | InstrProfSymtab &Symtab = Reader->getSymtab(); |
David Blaikie | 450ef2a | 2017-07-06 19:00:12 +0000 | [diff] [blame] | 720 | InstrProfWriter::writeRecordInText(Func.Name, Func.Hash, Func, Symtab, |
| 721 | OS); |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 722 | continue; |
| 723 | } |
| 724 | |
Justin Bogner | 38ac7e9 | 2014-04-25 02:45:33 +0000 | [diff] [blame] | 725 | assert(Func.Counts.size() > 0 && "function missing entry counter"); |
Easwaran Raman | 17e7f119 | 2016-05-19 21:07:12 +0000 | [diff] [blame] | 726 | Builder.addRecord(Func); |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 727 | |
Rong Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 728 | uint64_t FuncMax = 0; |
| 729 | uint64_t FuncSum = 0; |
| 730 | for (size_t I = 0, E = Func.Counts.size(); I < E; ++I) { |
| 731 | FuncMax = std::max(FuncMax, Func.Counts[I]); |
| 732 | FuncSum += Func.Counts[I]; |
| 733 | } |
Rong Xu | 5f281ed | 2019-01-08 22:37:12 +0000 | [diff] [blame] | 734 | |
Rong Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 735 | if (FuncMax < ValueCutoff) { |
| 736 | ++BelowCutoffFunctions; |
| 737 | if (OnlyListBelow) { |
| 738 | OS << " " << Func.Name << ": (Max = " << FuncMax |
| 739 | << " Sum = " << FuncSum << ")\n"; |
| 740 | } |
| 741 | continue; |
| 742 | } else if (OnlyListBelow) |
| 743 | continue; |
| 744 | |
| 745 | if (TopN) { |
Xinliang David Li | dcb98bd | 2017-07-11 20:30:43 +0000 | [diff] [blame] | 746 | if (HottestFuncs.size() == TopN) { |
| 747 | if (HottestFuncs.top().second < FuncMax) { |
| 748 | HottestFuncs.pop(); |
| 749 | HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); |
| 750 | } |
| 751 | } else |
| 752 | HottestFuncs.emplace(std::make_pair(std::string(Func.Name), FuncMax)); |
| 753 | } |
| 754 | |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 755 | if (Show) { |
| 756 | if (!ShownFunctions) |
| 757 | OS << "Counters:\n"; |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 758 | |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 759 | ++ShownFunctions; |
| 760 | |
| 761 | OS << " " << Func.Name << ":\n" |
Justin Bogner | 5ecdfc1 | 2014-03-23 20:43:50 +0000 | [diff] [blame] | 762 | << " Hash: " << format("0x%016" PRIx64, Func.Hash) << "\n" |
Rong Xu | c7d7fb0 | 2016-02-10 17:18:30 +0000 | [diff] [blame] | 763 | << " Counters: " << Func.Counts.size() << "\n"; |
| 764 | if (!IsIRInstr) |
| 765 | OS << " Function count: " << Func.Counts[0] << "\n"; |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 766 | |
Justin Bogner | c96f87a | 2015-09-29 22:13:58 +0000 | [diff] [blame] | 767 | if (ShowIndirectCallTargets) |
Xinliang David Li | 61c7e68 | 2015-11-02 05:08:23 +0000 | [diff] [blame] | 768 | OS << " Indirect Call Site Count: " |
| 769 | << Func.getNumValueSites(IPVK_IndirectCallTarget) << "\n"; |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 770 | |
Rong Xu | 6f00c7b | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 771 | uint32_t NumMemOPCalls = Func.getNumValueSites(IPVK_MemOPSize); |
| 772 | if (ShowMemOPSizes && NumMemOPCalls > 0) |
| 773 | OS << " Number of Memory Intrinsics Calls: " << NumMemOPCalls |
| 774 | << "\n"; |
| 775 | |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 776 | if (ShowCounts) { |
| 777 | OS << " Block counts: ["; |
Rong Xu | c7d7fb0 | 2016-02-10 17:18:30 +0000 | [diff] [blame] | 778 | size_t Start = (IsIRInstr ? 0 : 1); |
| 779 | for (size_t I = Start, E = Func.Counts.size(); I < E; ++I) { |
| 780 | OS << (I == Start ? "" : ", ") << Func.Counts[I]; |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 781 | } |
| 782 | OS << "]\n"; |
| 783 | } |
Justin Bogner | c96f87a | 2015-09-29 22:13:58 +0000 | [diff] [blame] | 784 | |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 785 | if (ShowIndirectCallTargets) { |
Rong Xu | fbfbf06 | 2017-03-09 19:03:57 +0000 | [diff] [blame] | 786 | OS << " Indirect Target Results:\n"; |
| 787 | traverseAllValueSites(Func, IPVK_IndirectCallTarget, |
| 788 | VPStats[IPVK_IndirectCallTarget], OS, |
Rong Xu | 6f00c7b | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 789 | &(Reader->getSymtab())); |
| 790 | } |
| 791 | |
| 792 | if (ShowMemOPSizes && NumMemOPCalls > 0) { |
Teresa Johnson | 4c833e2 | 2017-05-24 17:55:25 +0000 | [diff] [blame] | 793 | OS << " Memory Intrinsic Size Results:\n"; |
Rong Xu | 6f00c7b | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 794 | traverseAllValueSites(Func, IPVK_MemOPSize, VPStats[IPVK_MemOPSize], OS, |
| 795 | nullptr); |
Justin Bogner | c96f87a | 2015-09-29 22:13:58 +0000 | [diff] [blame] | 796 | } |
| 797 | } |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 798 | } |
Justin Bogner | f5afb78 | 2014-03-23 20:55:53 +0000 | [diff] [blame] | 799 | if (Reader->hasError()) |
Vedant Kumar | c77570e | 2016-05-19 03:54:45 +0000 | [diff] [blame] | 800 | exitWithError(Reader->getError(), Filename); |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 801 | |
Richard Smith | a11014c | 2018-08-24 01:34:45 +0000 | [diff] [blame] | 802 | if (TextFormat) |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 803 | return 0; |
Easwaran Raman | 30c760d | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 804 | std::unique_ptr<ProfileSummary> PS(Builder.getSummary()); |
Adam Nemet | d90634b | 2017-11-14 16:59:18 +0000 | [diff] [blame] | 805 | OS << "Instrumentation level: " |
| 806 | << (Reader->isIRLevelProfile() ? "IR" : "Front-end") << "\n"; |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 807 | if (ShowAllFunctions || !ShowFunction.empty()) |
| 808 | OS << "Functions shown: " << ShownFunctions << "\n"; |
Easwaran Raman | 17e7f119 | 2016-05-19 21:07:12 +0000 | [diff] [blame] | 809 | OS << "Total functions: " << PS->getNumFunctions() << "\n"; |
Rong Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 810 | if (ValueCutoff > 0) { |
| 811 | OS << "Number of functions with maximum count (< " << ValueCutoff |
| 812 | << "): " << BelowCutoffFunctions << "\n"; |
| 813 | OS << "Number of functions with maximum count (>= " << ValueCutoff |
| 814 | << "): " << PS->getNumFunctions() - BelowCutoffFunctions << "\n"; |
| 815 | } |
Easwaran Raman | 17e7f119 | 2016-05-19 21:07:12 +0000 | [diff] [blame] | 816 | OS << "Maximum function count: " << PS->getMaxFunctionCount() << "\n"; |
Easwaran Raman | 30c760d | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 817 | OS << "Maximum internal block count: " << PS->getMaxInternalCount() << "\n"; |
Rong Xu | 6f00c7b | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 818 | |
Xinliang David Li | dcb98bd | 2017-07-11 20:30:43 +0000 | [diff] [blame] | 819 | if (TopN) { |
| 820 | std::vector<std::pair<std::string, uint64_t>> SortedHottestFuncs; |
| 821 | while (!HottestFuncs.empty()) { |
| 822 | SortedHottestFuncs.emplace_back(HottestFuncs.top()); |
| 823 | HottestFuncs.pop(); |
| 824 | } |
| 825 | OS << "Top " << TopN |
| 826 | << " functions with the largest internal block counts: \n"; |
| 827 | for (auto &hotfunc : llvm::reverse(SortedHottestFuncs)) |
| 828 | OS << " " << hotfunc.first << ", max count = " << hotfunc.second << "\n"; |
| 829 | } |
| 830 | |
Xinliang David Li | 1386ead | 2016-05-23 16:36:11 +0000 | [diff] [blame] | 831 | if (ShownFunctions && ShowIndirectCallTargets) { |
Rong Xu | fbfbf06 | 2017-03-09 19:03:57 +0000 | [diff] [blame] | 832 | OS << "Statistics for indirect call sites profile:\n"; |
| 833 | showValueSitesStats(OS, IPVK_IndirectCallTarget, |
| 834 | VPStats[IPVK_IndirectCallTarget]); |
Xinliang David Li | 1386ead | 2016-05-23 16:36:11 +0000 | [diff] [blame] | 835 | } |
Easwaran Raman | fa283c3 | 2016-01-13 21:44:36 +0000 | [diff] [blame] | 836 | |
Rong Xu | 6f00c7b | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 837 | if (ShownFunctions && ShowMemOPSizes) { |
| 838 | OS << "Statistics for memory intrinsic calls sizes profile:\n"; |
| 839 | showValueSitesStats(OS, IPVK_MemOPSize, VPStats[IPVK_MemOPSize]); |
| 840 | } |
| 841 | |
Easwaran Raman | fa283c3 | 2016-01-13 21:44:36 +0000 | [diff] [blame] | 842 | if (ShowDetailedSummary) { |
| 843 | OS << "Detailed summary:\n"; |
Easwaran Raman | 30c760d | 2016-05-19 21:53:28 +0000 | [diff] [blame] | 844 | OS << "Total number of blocks: " << PS->getNumCounts() << "\n"; |
Easwaran Raman | 17e7f119 | 2016-05-19 21:07:12 +0000 | [diff] [blame] | 845 | OS << "Total count: " << PS->getTotalCount() << "\n"; |
| 846 | for (auto Entry : PS->getDetailedSummary()) { |
Easwaran Raman | 233e7d3 | 2016-02-17 18:18:47 +0000 | [diff] [blame] | 847 | OS << Entry.NumCounts << " blocks with count >= " << Entry.MinCount |
Easwaran Raman | fa283c3 | 2016-01-13 21:44:36 +0000 | [diff] [blame] | 848 | << " account for " |
| 849 | << format("%0.6g", (float)Entry.Cutoff / ProfileSummary::Scale * 100) |
| 850 | << " percentage of the total counts.\n"; |
| 851 | } |
| 852 | } |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 853 | return 0; |
| 854 | } |
| 855 | |
Benjamin Kramer | e5eb673 | 2016-06-17 20:41:14 +0000 | [diff] [blame] | 856 | static int showSampleProfile(const std::string &Filename, bool ShowCounts, |
| 857 | bool ShowAllFunctions, |
| 858 | const std::string &ShowFunction, |
Benjamin Kramer | 0df4e22 | 2015-03-09 16:23:46 +0000 | [diff] [blame] | 859 | raw_fd_ostream &OS) { |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 860 | using namespace sampleprof; |
Mehdi Amini | 8be7707 | 2016-04-14 21:59:01 +0000 | [diff] [blame] | 861 | LLVMContext Context; |
| 862 | auto ReaderOrErr = SampleProfileReader::create(Filename, Context); |
Diego Novillo | 2b6bd7a | 2014-11-03 00:51:45 +0000 | [diff] [blame] | 863 | if (std::error_code EC = ReaderOrErr.getError()) |
Nathan Slingerland | 572e633 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 864 | exitWithErrorCode(EC, Filename); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 865 | |
Diego Novillo | 2b6bd7a | 2014-11-03 00:51:45 +0000 | [diff] [blame] | 866 | auto Reader = std::move(ReaderOrErr.get()); |
Diego Novillo | 1e5eaad | 2015-09-17 00:17:21 +0000 | [diff] [blame] | 867 | if (std::error_code EC = Reader->read()) |
Nathan Slingerland | 572e633 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 868 | exitWithErrorCode(EC, Filename); |
Diego Novillo | 1e5eaad | 2015-09-17 00:17:21 +0000 | [diff] [blame] | 869 | |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 870 | if (ShowAllFunctions || ShowFunction.empty()) |
| 871 | Reader->dump(OS); |
| 872 | else |
| 873 | Reader->dumpFunctionProfile(ShowFunction, OS); |
| 874 | |
| 875 | return 0; |
| 876 | } |
| 877 | |
Benjamin Kramer | 0df4e22 | 2015-03-09 16:23:46 +0000 | [diff] [blame] | 878 | static int show_main(int argc, const char *argv[]) { |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 879 | cl::opt<std::string> Filename(cl::Positional, cl::Required, |
| 880 | cl::desc("<profdata-file>")); |
| 881 | |
| 882 | cl::opt<bool> ShowCounts("counts", cl::init(false), |
| 883 | cl::desc("Show counter values for shown functions")); |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 884 | cl::opt<bool> TextFormat( |
| 885 | "text", cl::init(false), |
| 886 | cl::desc("Show instr profile data in text dump format")); |
Justin Bogner | c96f87a | 2015-09-29 22:13:58 +0000 | [diff] [blame] | 887 | cl::opt<bool> ShowIndirectCallTargets( |
| 888 | "ic-targets", cl::init(false), |
| 889 | cl::desc("Show indirect call site target values for shown functions")); |
Rong Xu | 6f00c7b | 2017-03-16 21:15:48 +0000 | [diff] [blame] | 890 | cl::opt<bool> ShowMemOPSizes( |
| 891 | "memop-sizes", cl::init(false), |
| 892 | cl::desc("Show the profiled sizes of the memory intrinsic calls " |
| 893 | "for shown functions")); |
Easwaran Raman | fa283c3 | 2016-01-13 21:44:36 +0000 | [diff] [blame] | 894 | cl::opt<bool> ShowDetailedSummary("detailed-summary", cl::init(false), |
| 895 | cl::desc("Show detailed profile summary")); |
| 896 | cl::list<uint32_t> DetailedSummaryCutoffs( |
| 897 | cl::CommaSeparated, "detailed-summary-cutoffs", |
| 898 | cl::desc( |
| 899 | "Cutoff percentages (times 10000) for generating detailed summary"), |
| 900 | cl::value_desc("800000,901000,999999")); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 901 | cl::opt<bool> ShowAllFunctions("all-functions", cl::init(false), |
| 902 | cl::desc("Details for every function")); |
| 903 | cl::opt<std::string> ShowFunction("function", |
| 904 | cl::desc("Details for matching functions")); |
| 905 | |
| 906 | cl::opt<std::string> OutputFilename("output", cl::value_desc("output"), |
| 907 | cl::init("-"), cl::desc("Output file")); |
| 908 | cl::alias OutputFilenameA("o", cl::desc("Alias for --output"), |
| 909 | cl::aliasopt(OutputFilename)); |
| 910 | cl::opt<ProfileKinds> ProfileKind( |
| 911 | cl::desc("Profile kind:"), cl::init(instr), |
| 912 | cl::values(clEnumVal(instr, "Instrumentation profile (default)"), |
Mehdi Amini | 3ffe113 | 2016-10-08 19:41:06 +0000 | [diff] [blame] | 913 | clEnumVal(sample, "Sample profile"))); |
Xinliang David Li | dcb98bd | 2017-07-11 20:30:43 +0000 | [diff] [blame] | 914 | cl::opt<uint32_t> TopNFunctions( |
| 915 | "topn", cl::init(0), |
| 916 | cl::desc("Show the list of functions with the largest internal counts")); |
Rong Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 917 | cl::opt<uint32_t> ValueCutoff( |
| 918 | "value-cutoff", cl::init(0), |
| 919 | cl::desc("Set the count value cutoff. Functions with the maximum count " |
| 920 | "less than this value will not be printed out. (Default is 0)")); |
| 921 | cl::opt<bool> OnlyListBelow( |
| 922 | "list-below-cutoff", cl::init(false), |
| 923 | cl::desc("Only output names of functions whose max count values are " |
| 924 | "below the cutoff value")); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 925 | cl::ParseCommandLineOptions(argc, argv, "LLVM profile data summary\n"); |
| 926 | |
| 927 | if (OutputFilename.empty()) |
| 928 | OutputFilename = "-"; |
| 929 | |
| 930 | std::error_code EC; |
| 931 | raw_fd_ostream OS(OutputFilename.data(), EC, sys::fs::F_Text); |
| 932 | if (EC) |
Xinliang David Li | 55f7833 | 2015-11-23 20:47:38 +0000 | [diff] [blame] | 933 | exitWithErrorCode(EC, OutputFilename); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 934 | |
| 935 | if (ShowAllFunctions && !ShowFunction.empty()) |
Jonas Devlieghere | 331449e | 2018-04-18 14:42:33 +0000 | [diff] [blame] | 936 | WithColor::warning() << "-function argument ignored: showing all functions\n"; |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 937 | |
Easwaran Raman | fa283c3 | 2016-01-13 21:44:36 +0000 | [diff] [blame] | 938 | std::vector<uint32_t> Cutoffs(DetailedSummaryCutoffs.begin(), |
| 939 | DetailedSummaryCutoffs.end()); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 940 | if (ProfileKind == instr) |
Xinliang David Li | dcb98bd | 2017-07-11 20:30:43 +0000 | [diff] [blame] | 941 | return showInstrProfile(Filename, ShowCounts, TopNFunctions, |
| 942 | ShowIndirectCallTargets, ShowMemOPSizes, |
| 943 | ShowDetailedSummary, DetailedSummaryCutoffs, |
Rong Xu | c445cab | 2019-01-08 22:41:48 +0000 | [diff] [blame] | 944 | ShowAllFunctions, ValueCutoff, OnlyListBelow, |
| 945 | ShowFunction, TextFormat, OS); |
Diego Novillo | 9657de5f | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 946 | else |
| 947 | return showSampleProfile(Filename, ShowCounts, ShowAllFunctions, |
| 948 | ShowFunction, OS); |
| 949 | } |
| 950 | |
Justin Bogner | 695043f | 2014-03-19 02:20:46 +0000 | [diff] [blame] | 951 | int main(int argc, const char *argv[]) { |
Rui Ueyama | 0b9d56a | 2018-04-13 18:26:06 +0000 | [diff] [blame] | 952 | InitLLVM X(argc, argv); |
Justin Bogner | 695043f | 2014-03-19 02:20:46 +0000 | [diff] [blame] | 953 | |
| 954 | StringRef ProgName(sys::path::filename(argv[0])); |
| 955 | if (argc > 1) { |
Craig Topper | 573faec | 2014-04-25 04:24:47 +0000 | [diff] [blame] | 956 | int (*func)(int, const char *[]) = nullptr; |
Justin Bogner | 695043f | 2014-03-19 02:20:46 +0000 | [diff] [blame] | 957 | |
| 958 | if (strcmp(argv[1], "merge") == 0) |
| 959 | func = merge_main; |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 960 | else if (strcmp(argv[1], "show") == 0) |
| 961 | func = show_main; |
Justin Bogner | 695043f | 2014-03-19 02:20:46 +0000 | [diff] [blame] | 962 | |
| 963 | if (func) { |
| 964 | std::string Invocation(ProgName.str() + " " + argv[1]); |
| 965 | argv[1] = Invocation.c_str(); |
| 966 | return func(argc - 1, argv + 1); |
| 967 | } |
| 968 | |
Diego Novillo | 914ed19 | 2015-12-14 20:37:15 +0000 | [diff] [blame] | 969 | if (strcmp(argv[1], "-h") == 0 || strcmp(argv[1], "-help") == 0 || |
Justin Bogner | 695043f | 2014-03-19 02:20:46 +0000 | [diff] [blame] | 970 | strcmp(argv[1], "--help") == 0) { |
| 971 | |
| 972 | errs() << "OVERVIEW: LLVM profile data tools\n\n" |
| 973 | << "USAGE: " << ProgName << " <command> [args...]\n" |
| 974 | << "USAGE: " << ProgName << " <command> -help\n\n" |
Justin Bogner | e1dd154 | 2016-08-03 23:10:51 +0000 | [diff] [blame] | 975 | << "See each individual command --help for more details.\n" |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 976 | << "Available commands: merge, show\n"; |
Justin Bogner | 695043f | 2014-03-19 02:20:46 +0000 | [diff] [blame] | 977 | return 0; |
| 978 | } |
| 979 | } |
| 980 | |
| 981 | if (argc < 2) |
| 982 | errs() << ProgName << ": No command specified!\n"; |
| 983 | else |
| 984 | errs() << ProgName << ": Unknown command!\n"; |
| 985 | |
Justin Bogner | 60bc906 | 2014-03-21 17:29:44 +0000 | [diff] [blame] | 986 | errs() << "USAGE: " << ProgName << " <merge|show> [args...]\n"; |
Justin Bogner | 695043f | 2014-03-19 02:20:46 +0000 | [diff] [blame] | 987 | return 1; |
| 988 | } |