Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 1 | //=-- InstrProf.cpp - Instrumented profiling format support -----------------=// |
| 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 | // This file contains support for clang's instrumentation based PGO and |
| 11 | // coverage. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 15 | #include "llvm/ProfileData/InstrProf.h" |
Xinliang David Li | 0c67787 | 2016-01-04 21:31:09 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/StringExtras.h" |
Xinliang David Li | 441959d | 2015-11-09 00:01:22 +0000 | [diff] [blame] | 17 | #include "llvm/IR/Constants.h" |
| 18 | #include "llvm/IR/Function.h" |
Xinliang David Li | 441959d | 2015-11-09 00:01:22 +0000 | [diff] [blame] | 19 | #include "llvm/IR/GlobalVariable.h" |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 20 | #include "llvm/IR/Module.h" |
| 21 | #include "llvm/Support/Compression.h" |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 22 | #include "llvm/Support/ErrorHandling.h" |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 23 | #include "llvm/Support/LEB128.h" |
Chris Bieneman | 1efe801 | 2014-09-19 23:19:24 +0000 | [diff] [blame] | 24 | #include "llvm/Support/ManagedStatic.h" |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 25 | |
| 26 | using namespace llvm; |
| 27 | |
| 28 | namespace { |
Rafael Espindola | 25188c9 | 2014-06-12 01:45:43 +0000 | [diff] [blame] | 29 | class InstrProfErrorCategoryType : public std::error_category { |
Rafael Espindola | f5d07fa | 2014-06-10 21:26:47 +0000 | [diff] [blame] | 30 | const char *name() const LLVM_NOEXCEPT override { return "llvm.instrprof"; } |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 31 | std::string message(int IE) const override { |
Rafael Espindola | 92512e8 | 2014-06-03 05:12:33 +0000 | [diff] [blame] | 32 | instrprof_error E = static_cast<instrprof_error>(IE); |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 33 | switch (E) { |
| 34 | case instrprof_error::success: |
| 35 | return "Success"; |
| 36 | case instrprof_error::eof: |
| 37 | return "End of File"; |
Nathan Slingerland | 4f82366 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 38 | case instrprof_error::unrecognized_format: |
| 39 | return "Unrecognized instrumentation profile encoding format"; |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 40 | case instrprof_error::bad_magic: |
Nathan Slingerland | 4f82366 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 41 | return "Invalid instrumentation profile data (bad magic)"; |
Duncan P. N. Exon Smith | 531bb48 | 2014-03-21 20:42:28 +0000 | [diff] [blame] | 42 | case instrprof_error::bad_header: |
Nathan Slingerland | 4f82366 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 43 | return "Invalid instrumentation profile data (file header is corrupt)"; |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 44 | case instrprof_error::unsupported_version: |
Nathan Slingerland | 4f82366 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 45 | return "Unsupported instrumentation profile format version"; |
Justin Bogner | b7aa263 | 2014-04-18 21:48:40 +0000 | [diff] [blame] | 46 | case instrprof_error::unsupported_hash_type: |
Nathan Slingerland | 4f82366 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 47 | return "Unsupported instrumentation profile hash type"; |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 48 | case instrprof_error::too_large: |
| 49 | return "Too much profile data"; |
| 50 | case instrprof_error::truncated: |
| 51 | return "Truncated profile data"; |
| 52 | case instrprof_error::malformed: |
Nathan Slingerland | 4f82366 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 53 | return "Malformed instrumentation profile data"; |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 54 | case instrprof_error::unknown_function: |
| 55 | return "No profile data available for function"; |
Justin Bogner | b9bd7f8 | 2014-03-21 17:46:22 +0000 | [diff] [blame] | 56 | case instrprof_error::hash_mismatch: |
Nathan Slingerland | e6e30d5 | 2015-11-17 22:08:53 +0000 | [diff] [blame] | 57 | return "Function control flow change detected (hash mismatch)"; |
Justin Bogner | b9bd7f8 | 2014-03-21 17:46:22 +0000 | [diff] [blame] | 58 | case instrprof_error::count_mismatch: |
Nathan Slingerland | e6e30d5 | 2015-11-17 22:08:53 +0000 | [diff] [blame] | 59 | return "Function basic block count change detected (counter mismatch)"; |
Justin Bogner | b9bd7f8 | 2014-03-21 17:46:22 +0000 | [diff] [blame] | 60 | case instrprof_error::counter_overflow: |
| 61 | return "Counter overflow"; |
Justin Bogner | 9e9a057 | 2015-09-29 22:13:58 +0000 | [diff] [blame] | 62 | case instrprof_error::value_site_count_mismatch: |
Nathan Slingerland | e6e30d5 | 2015-11-17 22:08:53 +0000 | [diff] [blame] | 63 | return "Function value site count change detected (counter mismatch)"; |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 64 | } |
| 65 | llvm_unreachable("A value of instrprof_error has no message."); |
| 66 | } |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 67 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 68 | } |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 69 | |
Chris Bieneman | 1efe801 | 2014-09-19 23:19:24 +0000 | [diff] [blame] | 70 | static ManagedStatic<InstrProfErrorCategoryType> ErrorCategory; |
| 71 | |
Rafael Espindola | 25188c9 | 2014-06-12 01:45:43 +0000 | [diff] [blame] | 72 | const std::error_category &llvm::instrprof_category() { |
Chris Bieneman | 1efe801 | 2014-09-19 23:19:24 +0000 | [diff] [blame] | 73 | return *ErrorCategory; |
Justin Bogner | f8d7919 | 2014-03-21 17:24:48 +0000 | [diff] [blame] | 74 | } |
Xinliang David Li | 441959d | 2015-11-09 00:01:22 +0000 | [diff] [blame] | 75 | |
| 76 | namespace llvm { |
| 77 | |
| 78 | std::string getPGOFuncName(StringRef RawFuncName, |
| 79 | GlobalValue::LinkageTypes Linkage, |
Xinliang David Li | a86545b | 2015-12-11 20:23:22 +0000 | [diff] [blame] | 80 | StringRef FileName, |
| 81 | uint64_t Version LLVM_ATTRIBUTE_UNUSED) { |
Xinliang David Li | 441959d | 2015-11-09 00:01:22 +0000 | [diff] [blame] | 82 | |
| 83 | // Function names may be prefixed with a binary '1' to indicate |
| 84 | // that the backend should not modify the symbols due to any platform |
| 85 | // naming convention. Do not include that '1' in the PGO profile name. |
| 86 | if (RawFuncName[0] == '\1') |
| 87 | RawFuncName = RawFuncName.substr(1); |
| 88 | |
| 89 | std::string FuncName = RawFuncName; |
| 90 | if (llvm::GlobalValue::isLocalLinkage(Linkage)) { |
| 91 | // For local symbols, prepend the main file name to distinguish them. |
| 92 | // Do not include the full path in the file name since there's no guarantee |
| 93 | // that it will stay the same, e.g., if the files are checked out from |
| 94 | // version control in different locations. |
| 95 | if (FileName.empty()) |
Xinliang David Li | a86545b | 2015-12-11 20:23:22 +0000 | [diff] [blame] | 96 | FuncName = FuncName.insert(0, "<unknown>:"); |
Xinliang David Li | 441959d | 2015-11-09 00:01:22 +0000 | [diff] [blame] | 97 | else |
Xinliang David Li | a86545b | 2015-12-11 20:23:22 +0000 | [diff] [blame] | 98 | FuncName = FuncName.insert(0, FileName.str() + ":"); |
Xinliang David Li | 441959d | 2015-11-09 00:01:22 +0000 | [diff] [blame] | 99 | } |
| 100 | return FuncName; |
| 101 | } |
| 102 | |
Xinliang David Li | 307902e | 2015-12-05 05:16:36 +0000 | [diff] [blame] | 103 | std::string getPGOFuncName(const Function &F, uint64_t Version) { |
| 104 | return getPGOFuncName(F.getName(), F.getLinkage(), F.getParent()->getName(), |
| 105 | Version); |
Xinliang David Li | 441959d | 2015-11-09 00:01:22 +0000 | [diff] [blame] | 106 | } |
| 107 | |
Xinliang David Li | 4ec4014 | 2015-12-15 19:44:45 +0000 | [diff] [blame] | 108 | StringRef getFuncNameWithoutPrefix(StringRef PGOFuncName, StringRef FileName) { |
| 109 | if (FileName.empty()) |
| 110 | return PGOFuncName; |
| 111 | // Drop the file name including ':'. See also getPGOFuncName. |
| 112 | if (PGOFuncName.startswith(FileName)) |
| 113 | PGOFuncName = PGOFuncName.drop_front(FileName.size() + 1); |
| 114 | return PGOFuncName; |
| 115 | } |
| 116 | |
Xinliang David Li | d1bab96 | 2015-12-12 17:28:03 +0000 | [diff] [blame] | 117 | // \p FuncName is the string used as profile lookup key for the function. A |
| 118 | // symbol is created to hold the name. Return the legalized symbol name. |
| 119 | static std::string getPGOFuncNameVarName(StringRef FuncName, |
| 120 | GlobalValue::LinkageTypes Linkage) { |
| 121 | std::string VarName = getInstrProfNameVarPrefix(); |
| 122 | VarName += FuncName; |
| 123 | |
| 124 | if (!GlobalValue::isLocalLinkage(Linkage)) |
| 125 | return VarName; |
| 126 | |
| 127 | // Now fix up illegal chars in local VarName that may upset the assembler. |
| 128 | const char *InvalidChars = "-:<>\"'"; |
| 129 | size_t found = VarName.find_first_of(InvalidChars); |
| 130 | while (found != std::string::npos) { |
| 131 | VarName[found] = '_'; |
| 132 | found = VarName.find_first_of(InvalidChars, found + 1); |
| 133 | } |
| 134 | return VarName; |
| 135 | } |
| 136 | |
Xinliang David Li | 441959d | 2015-11-09 00:01:22 +0000 | [diff] [blame] | 137 | GlobalVariable *createPGOFuncNameVar(Module &M, |
| 138 | GlobalValue::LinkageTypes Linkage, |
| 139 | StringRef FuncName) { |
| 140 | |
| 141 | // We generally want to match the function's linkage, but available_externally |
| 142 | // and extern_weak both have the wrong semantics, and anything that doesn't |
| 143 | // need to link across compilation units doesn't need to be visible at all. |
| 144 | if (Linkage == GlobalValue::ExternalWeakLinkage) |
| 145 | Linkage = GlobalValue::LinkOnceAnyLinkage; |
| 146 | else if (Linkage == GlobalValue::AvailableExternallyLinkage) |
| 147 | Linkage = GlobalValue::LinkOnceODRLinkage; |
| 148 | else if (Linkage == GlobalValue::InternalLinkage || |
| 149 | Linkage == GlobalValue::ExternalLinkage) |
| 150 | Linkage = GlobalValue::PrivateLinkage; |
| 151 | |
| 152 | auto *Value = ConstantDataArray::getString(M.getContext(), FuncName, false); |
| 153 | auto FuncNameVar = |
| 154 | new GlobalVariable(M, Value->getType(), true, Linkage, Value, |
Xinliang David Li | d1bab96 | 2015-12-12 17:28:03 +0000 | [diff] [blame] | 155 | getPGOFuncNameVarName(FuncName, Linkage)); |
Xinliang David Li | 441959d | 2015-11-09 00:01:22 +0000 | [diff] [blame] | 156 | |
| 157 | // Hide the symbol so that we correctly get a copy for each executable. |
| 158 | if (!GlobalValue::isLocalLinkage(FuncNameVar->getLinkage())) |
| 159 | FuncNameVar->setVisibility(GlobalValue::HiddenVisibility); |
| 160 | |
| 161 | return FuncNameVar; |
| 162 | } |
| 163 | |
| 164 | GlobalVariable *createPGOFuncNameVar(Function &F, StringRef FuncName) { |
| 165 | return createPGOFuncNameVar(*F.getParent(), F.getLinkage(), FuncName); |
| 166 | } |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 167 | |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 168 | int collectPGOFuncNameStrings(const std::vector<std::string> &NameStrs, |
| 169 | bool doCompression, std::string &Result) { |
| 170 | uint8_t Header[16], *P = Header; |
Xinliang David Li | 0c67787 | 2016-01-04 21:31:09 +0000 | [diff] [blame] | 171 | std::string UncompressedNameStrings = |
| 172 | join(NameStrs.begin(), NameStrs.end(), StringRef(" ")); |
Xinliang David Li | 13ea29b | 2016-01-04 20:26:05 +0000 | [diff] [blame] | 173 | |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 174 | unsigned EncLen = encodeULEB128(UncompressedNameStrings.length(), P); |
| 175 | P += EncLen; |
Xinliang David Li | 120fe2e | 2016-01-04 22:01:02 +0000 | [diff] [blame] | 176 | |
| 177 | auto WriteStringToResult = [&](size_t CompressedLen, |
| 178 | const std::string &InputStr) { |
| 179 | EncLen = encodeULEB128(CompressedLen, P); |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 180 | P += EncLen; |
Xinliang David Li | 120fe2e | 2016-01-04 22:01:02 +0000 | [diff] [blame] | 181 | char *HeaderStr = reinterpret_cast<char *>(&Header[0]); |
| 182 | unsigned HeaderLen = P - &Header[0]; |
| 183 | Result.append(HeaderStr, HeaderLen); |
| 184 | Result += InputStr; |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 185 | return 0; |
Xinliang David Li | 120fe2e | 2016-01-04 22:01:02 +0000 | [diff] [blame] | 186 | }; |
| 187 | |
| 188 | if (!doCompression) |
| 189 | return WriteStringToResult(0, UncompressedNameStrings); |
| 190 | |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 191 | SmallVector<char, 128> CompressedNameStrings; |
| 192 | zlib::Status Success = |
| 193 | zlib::compress(StringRef(UncompressedNameStrings), CompressedNameStrings, |
| 194 | zlib::BestSizeCompression); |
Xinliang David Li | 120fe2e | 2016-01-04 22:01:02 +0000 | [diff] [blame] | 195 | |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 196 | if (Success != zlib::StatusOK) |
| 197 | return 1; |
Xinliang David Li | 120fe2e | 2016-01-04 22:01:02 +0000 | [diff] [blame] | 198 | |
| 199 | return WriteStringToResult( |
| 200 | CompressedNameStrings.size(), |
| 201 | std::string(CompressedNameStrings.data(), CompressedNameStrings.size())); |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 202 | } |
| 203 | |
Xinliang David Li | 37c1fa0 | 2016-01-03 04:38:13 +0000 | [diff] [blame] | 204 | StringRef getPGOFuncNameInitializer(GlobalVariable *NameVar) { |
| 205 | auto *Arr = cast<ConstantDataArray>(NameVar->getInitializer()); |
| 206 | StringRef NameStr = |
| 207 | Arr->isCString() ? Arr->getAsCString() : Arr->getAsString(); |
| 208 | return NameStr; |
| 209 | } |
| 210 | |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 211 | int collectPGOFuncNameStrings(const std::vector<GlobalVariable *> &NameVars, |
| 212 | std::string &Result) { |
| 213 | std::vector<std::string> NameStrs; |
| 214 | for (auto *NameVar : NameVars) { |
Xinliang David Li | 37c1fa0 | 2016-01-03 04:38:13 +0000 | [diff] [blame] | 215 | NameStrs.push_back(getPGOFuncNameInitializer(NameVar)); |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 216 | } |
| 217 | return collectPGOFuncNameStrings(NameStrs, zlib::isAvailable(), Result); |
| 218 | } |
| 219 | |
| 220 | int readPGOFuncNameStrings(StringRef NameStrings, InstrProfSymtab &Symtab) { |
| 221 | const uint8_t *P = reinterpret_cast<const uint8_t *>(NameStrings.data()); |
| 222 | const uint8_t *EndP = reinterpret_cast<const uint8_t *>(NameStrings.data() + |
| 223 | NameStrings.size()); |
| 224 | while (P < EndP) { |
| 225 | uint32_t N; |
| 226 | uint64_t UncompressedSize = decodeULEB128(P, &N); |
| 227 | P += N; |
| 228 | uint64_t CompressedSize = decodeULEB128(P, &N); |
| 229 | P += N; |
| 230 | bool isCompressed = (CompressedSize != 0); |
| 231 | SmallString<128> UncompressedNameStrings; |
| 232 | StringRef NameStrings; |
| 233 | if (isCompressed) { |
| 234 | StringRef CompressedNameStrings(reinterpret_cast<const char *>(P), |
| 235 | CompressedSize); |
| 236 | if (zlib::uncompress(CompressedNameStrings, UncompressedNameStrings, |
| 237 | UncompressedSize) != zlib::StatusOK) |
| 238 | return 1; |
| 239 | P += CompressedSize; |
| 240 | NameStrings = StringRef(UncompressedNameStrings.data(), |
| 241 | UncompressedNameStrings.size()); |
| 242 | } else { |
| 243 | NameStrings = |
| 244 | StringRef(reinterpret_cast<const char *>(P), UncompressedSize); |
| 245 | P += UncompressedSize; |
| 246 | } |
| 247 | // Now parse the name strings. |
Xinliang David Li | 204efe2 | 2016-01-04 22:09:26 +0000 | [diff] [blame] | 248 | SmallVector<StringRef, 0> Names; |
| 249 | NameStrings.split(Names, ' '); |
| 250 | for (StringRef &Name : Names) |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 251 | Symtab.addFuncName(Name); |
Xinliang David Li | e413f1a | 2015-12-31 07:57:16 +0000 | [diff] [blame] | 252 | |
| 253 | while (P < EndP && *P == 0) |
| 254 | P++; |
| 255 | } |
| 256 | Symtab.finalizeSymtab(); |
| 257 | return 0; |
| 258 | } |
| 259 | |
Xinliang David Li | 51dc04c | 2016-01-08 03:49:59 +0000 | [diff] [blame] | 260 | instrprof_error InstrProfValueSiteRecord::merge(InstrProfValueSiteRecord &Input, |
| 261 | uint64_t Weight) { |
Xinliang David Li | 5c24da5 | 2015-12-20 05:15:45 +0000 | [diff] [blame] | 262 | this->sortByTargetValues(); |
| 263 | Input.sortByTargetValues(); |
| 264 | auto I = ValueData.begin(); |
| 265 | auto IE = ValueData.end(); |
| 266 | instrprof_error Result = instrprof_error::success; |
| 267 | for (auto J = Input.ValueData.begin(), JE = Input.ValueData.end(); J != JE; |
| 268 | ++J) { |
| 269 | while (I != IE && I->Value < J->Value) |
| 270 | ++I; |
| 271 | if (I != IE && I->Value == J->Value) { |
Xinliang David Li | 5c24da5 | 2015-12-20 05:15:45 +0000 | [diff] [blame] | 272 | bool Overflowed; |
Nathan Slingerland | 7bee316 | 2016-01-12 22:34:00 +0000 | [diff] [blame] | 273 | I->Count = SaturatingMultiplyAdd(J->Count, Weight, I->Count, &Overflowed); |
Xinliang David Li | 5c24da5 | 2015-12-20 05:15:45 +0000 | [diff] [blame] | 274 | if (Overflowed) |
| 275 | Result = instrprof_error::counter_overflow; |
| 276 | ++I; |
| 277 | continue; |
| 278 | } |
| 279 | ValueData.insert(I, *J); |
| 280 | } |
| 281 | return Result; |
| 282 | } |
| 283 | |
Xinliang David Li | 51dc04c | 2016-01-08 03:49:59 +0000 | [diff] [blame] | 284 | instrprof_error InstrProfValueSiteRecord::scale(uint64_t Weight) { |
| 285 | instrprof_error Result = instrprof_error::success; |
| 286 | for (auto I = ValueData.begin(), IE = ValueData.end(); I != IE; ++I) { |
| 287 | bool Overflowed; |
| 288 | I->Count = SaturatingMultiply(I->Count, Weight, &Overflowed); |
| 289 | if (Overflowed) |
| 290 | Result = instrprof_error::counter_overflow; |
| 291 | } |
| 292 | return Result; |
| 293 | } |
| 294 | |
Xinliang David Li | 020f22d | 2015-12-18 23:06:37 +0000 | [diff] [blame] | 295 | // Merge Value Profile data from Src record to this record for ValueKind. |
| 296 | // Scale merged value counts by \p Weight. |
| 297 | instrprof_error InstrProfRecord::mergeValueProfData(uint32_t ValueKind, |
| 298 | InstrProfRecord &Src, |
| 299 | uint64_t Weight) { |
| 300 | uint32_t ThisNumValueSites = getNumValueSites(ValueKind); |
| 301 | uint32_t OtherNumValueSites = Src.getNumValueSites(ValueKind); |
| 302 | if (ThisNumValueSites != OtherNumValueSites) |
| 303 | return instrprof_error::value_site_count_mismatch; |
| 304 | std::vector<InstrProfValueSiteRecord> &ThisSiteRecords = |
| 305 | getValueSitesForKind(ValueKind); |
| 306 | std::vector<InstrProfValueSiteRecord> &OtherSiteRecords = |
| 307 | Src.getValueSitesForKind(ValueKind); |
| 308 | instrprof_error Result = instrprof_error::success; |
| 309 | for (uint32_t I = 0; I < ThisNumValueSites; I++) |
Xinliang David Li | 51dc04c | 2016-01-08 03:49:59 +0000 | [diff] [blame] | 310 | MergeResult(Result, ThisSiteRecords[I].merge(OtherSiteRecords[I], Weight)); |
Xinliang David Li | 020f22d | 2015-12-18 23:06:37 +0000 | [diff] [blame] | 311 | return Result; |
| 312 | } |
| 313 | |
| 314 | instrprof_error InstrProfRecord::merge(InstrProfRecord &Other, |
| 315 | uint64_t Weight) { |
| 316 | // If the number of counters doesn't match we either have bad data |
| 317 | // or a hash collision. |
| 318 | if (Counts.size() != Other.Counts.size()) |
| 319 | return instrprof_error::count_mismatch; |
| 320 | |
| 321 | instrprof_error Result = instrprof_error::success; |
| 322 | |
| 323 | for (size_t I = 0, E = Other.Counts.size(); I < E; ++I) { |
| 324 | bool Overflowed; |
Nathan Slingerland | 7bee316 | 2016-01-12 22:34:00 +0000 | [diff] [blame] | 325 | Counts[I] = |
| 326 | SaturatingMultiplyAdd(Other.Counts[I], Weight, Counts[I], &Overflowed); |
Xinliang David Li | 020f22d | 2015-12-18 23:06:37 +0000 | [diff] [blame] | 327 | if (Overflowed) |
| 328 | Result = instrprof_error::counter_overflow; |
| 329 | } |
| 330 | |
| 331 | for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind) |
| 332 | MergeResult(Result, mergeValueProfData(Kind, Other, Weight)); |
| 333 | |
| 334 | return Result; |
| 335 | } |
Xinliang David Li | a716cc5 | 2015-12-20 06:22:13 +0000 | [diff] [blame] | 336 | |
Xinliang David Li | 51dc04c | 2016-01-08 03:49:59 +0000 | [diff] [blame] | 337 | instrprof_error InstrProfRecord::scaleValueProfData(uint32_t ValueKind, |
| 338 | uint64_t Weight) { |
| 339 | uint32_t ThisNumValueSites = getNumValueSites(ValueKind); |
| 340 | std::vector<InstrProfValueSiteRecord> &ThisSiteRecords = |
| 341 | getValueSitesForKind(ValueKind); |
| 342 | instrprof_error Result = instrprof_error::success; |
| 343 | for (uint32_t I = 0; I < ThisNumValueSites; I++) |
| 344 | MergeResult(Result, ThisSiteRecords[I].scale(Weight)); |
| 345 | return Result; |
| 346 | } |
| 347 | |
| 348 | instrprof_error InstrProfRecord::scale(uint64_t Weight) { |
| 349 | instrprof_error Result = instrprof_error::success; |
| 350 | for (auto &Count : this->Counts) { |
| 351 | bool Overflowed; |
| 352 | Count = SaturatingMultiply(Count, Weight, &Overflowed); |
| 353 | if (Overflowed && Result == instrprof_error::success) { |
| 354 | Result = instrprof_error::counter_overflow; |
| 355 | } |
| 356 | } |
| 357 | for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind) |
| 358 | MergeResult(Result, scaleValueProfData(Kind, Weight)); |
| 359 | |
| 360 | return Result; |
| 361 | } |
| 362 | |
Xinliang David Li | 020f22d | 2015-12-18 23:06:37 +0000 | [diff] [blame] | 363 | // Map indirect call target name hash to name string. |
| 364 | uint64_t InstrProfRecord::remapValue(uint64_t Value, uint32_t ValueKind, |
Xinliang David Li | a716cc5 | 2015-12-20 06:22:13 +0000 | [diff] [blame] | 365 | ValueMapType *ValueMap) { |
| 366 | if (!ValueMap) |
Xinliang David Li | 020f22d | 2015-12-18 23:06:37 +0000 | [diff] [blame] | 367 | return Value; |
| 368 | switch (ValueKind) { |
| 369 | case IPVK_IndirectCallTarget: { |
| 370 | auto Result = |
Xinliang David Li | a716cc5 | 2015-12-20 06:22:13 +0000 | [diff] [blame] | 371 | std::lower_bound(ValueMap->begin(), ValueMap->end(), Value, |
| 372 | [](const std::pair<uint64_t, uint64_t> &LHS, |
Xinliang David Li | 020f22d | 2015-12-18 23:06:37 +0000 | [diff] [blame] | 373 | uint64_t RHS) { return LHS.first < RHS; }); |
Xinliang David Li | a716cc5 | 2015-12-20 06:22:13 +0000 | [diff] [blame] | 374 | if (Result != ValueMap->end()) |
Xinliang David Li | 020f22d | 2015-12-18 23:06:37 +0000 | [diff] [blame] | 375 | Value = (uint64_t)Result->second; |
| 376 | break; |
| 377 | } |
| 378 | } |
| 379 | return Value; |
| 380 | } |
| 381 | |
Xinliang David Li | 020f22d | 2015-12-18 23:06:37 +0000 | [diff] [blame] | 382 | void InstrProfRecord::addValueData(uint32_t ValueKind, uint32_t Site, |
| 383 | InstrProfValueData *VData, uint32_t N, |
Xinliang David Li | a716cc5 | 2015-12-20 06:22:13 +0000 | [diff] [blame] | 384 | ValueMapType *ValueMap) { |
Xinliang David Li | 020f22d | 2015-12-18 23:06:37 +0000 | [diff] [blame] | 385 | for (uint32_t I = 0; I < N; I++) { |
Xinliang David Li | a716cc5 | 2015-12-20 06:22:13 +0000 | [diff] [blame] | 386 | VData[I].Value = remapValue(VData[I].Value, ValueKind, ValueMap); |
Xinliang David Li | 020f22d | 2015-12-18 23:06:37 +0000 | [diff] [blame] | 387 | } |
| 388 | std::vector<InstrProfValueSiteRecord> &ValueSites = |
| 389 | getValueSitesForKind(ValueKind); |
| 390 | if (N == 0) |
| 391 | ValueSites.push_back(InstrProfValueSiteRecord()); |
| 392 | else |
| 393 | ValueSites.emplace_back(VData, VData + N); |
| 394 | } |
| 395 | |
Xinliang David Li | b75544a | 2015-11-28 19:07:09 +0000 | [diff] [blame] | 396 | #define INSTR_PROF_COMMON_API_IMPL |
| 397 | #include "llvm/ProfileData/InstrProfData.inc" |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 398 | |
Xinliang David Li | 020f22d | 2015-12-18 23:06:37 +0000 | [diff] [blame] | 399 | /*! |
Xinliang David Li | b75544a | 2015-11-28 19:07:09 +0000 | [diff] [blame] | 400 | * \brief ValueProfRecordClosure Interface implementation for InstrProfRecord |
Xinliang David Li | ed96677 | 2015-11-25 23:31:18 +0000 | [diff] [blame] | 401 | * class. These C wrappers are used as adaptors so that C++ code can be |
| 402 | * invoked as callbacks. |
| 403 | */ |
Xinliang David Li | f47cf55 | 2015-11-25 06:23:38 +0000 | [diff] [blame] | 404 | uint32_t getNumValueKindsInstrProf(const void *Record) { |
| 405 | return reinterpret_cast<const InstrProfRecord *>(Record)->getNumValueKinds(); |
| 406 | } |
| 407 | |
| 408 | uint32_t getNumValueSitesInstrProf(const void *Record, uint32_t VKind) { |
| 409 | return reinterpret_cast<const InstrProfRecord *>(Record) |
| 410 | ->getNumValueSites(VKind); |
| 411 | } |
| 412 | |
| 413 | uint32_t getNumValueDataInstrProf(const void *Record, uint32_t VKind) { |
| 414 | return reinterpret_cast<const InstrProfRecord *>(Record) |
| 415 | ->getNumValueData(VKind); |
| 416 | } |
| 417 | |
| 418 | uint32_t getNumValueDataForSiteInstrProf(const void *R, uint32_t VK, |
| 419 | uint32_t S) { |
| 420 | return reinterpret_cast<const InstrProfRecord *>(R) |
| 421 | ->getNumValueDataForSite(VK, S); |
| 422 | } |
| 423 | |
| 424 | void getValueForSiteInstrProf(const void *R, InstrProfValueData *Dst, |
| 425 | uint32_t K, uint32_t S, |
| 426 | uint64_t (*Mapper)(uint32_t, uint64_t)) { |
Xinliang David Li | a716cc5 | 2015-12-20 06:22:13 +0000 | [diff] [blame] | 427 | return reinterpret_cast<const InstrProfRecord *>(R)->getValueForSite( |
| 428 | Dst, K, S, Mapper); |
Xinliang David Li | e809231 | 2015-11-25 19:13:00 +0000 | [diff] [blame] | 429 | } |
| 430 | |
Xinliang David Li | f47cf55 | 2015-11-25 06:23:38 +0000 | [diff] [blame] | 431 | ValueProfData *allocValueProfDataInstrProf(size_t TotalSizeInBytes) { |
Xinliang David Li | 38b9a32 | 2015-12-15 21:57:08 +0000 | [diff] [blame] | 432 | ValueProfData *VD = |
| 433 | (ValueProfData *)(new (::operator new(TotalSizeInBytes)) ValueProfData()); |
| 434 | memset(VD, 0, TotalSizeInBytes); |
| 435 | return VD; |
Xinliang David Li | f47cf55 | 2015-11-25 06:23:38 +0000 | [diff] [blame] | 436 | } |
| 437 | |
| 438 | static ValueProfRecordClosure InstrProfRecordClosure = { |
| 439 | 0, |
| 440 | getNumValueKindsInstrProf, |
| 441 | getNumValueSitesInstrProf, |
| 442 | getNumValueDataInstrProf, |
| 443 | getNumValueDataForSiteInstrProf, |
Xinliang David Li | a716cc5 | 2015-12-20 06:22:13 +0000 | [diff] [blame] | 444 | 0, |
Xinliang David Li | f47cf55 | 2015-11-25 06:23:38 +0000 | [diff] [blame] | 445 | getValueForSiteInstrProf, |
Xinliang David Li | 38b9a32 | 2015-12-15 21:57:08 +0000 | [diff] [blame] | 446 | allocValueProfDataInstrProf}; |
Xinliang David Li | f47cf55 | 2015-11-25 06:23:38 +0000 | [diff] [blame] | 447 | |
Xinliang David Li | e809231 | 2015-11-25 19:13:00 +0000 | [diff] [blame] | 448 | // Wrapper implementation using the closure mechanism. |
Xinliang David Li | f47cf55 | 2015-11-25 06:23:38 +0000 | [diff] [blame] | 449 | uint32_t ValueProfData::getSize(const InstrProfRecord &Record) { |
| 450 | InstrProfRecordClosure.Record = &Record; |
| 451 | return getValueProfDataSize(&InstrProfRecordClosure); |
| 452 | } |
| 453 | |
Xinliang David Li | e809231 | 2015-11-25 19:13:00 +0000 | [diff] [blame] | 454 | // Wrapper implementation using the closure mechanism. |
Xinliang David Li | f47cf55 | 2015-11-25 06:23:38 +0000 | [diff] [blame] | 455 | std::unique_ptr<ValueProfData> |
| 456 | ValueProfData::serializeFrom(const InstrProfRecord &Record) { |
| 457 | InstrProfRecordClosure.Record = &Record; |
| 458 | |
| 459 | std::unique_ptr<ValueProfData> VPD( |
Xinliang David Li | 0e6a36e | 2015-12-01 19:47:32 +0000 | [diff] [blame] | 460 | serializeValueProfDataFrom(&InstrProfRecordClosure, nullptr)); |
Xinliang David Li | f47cf55 | 2015-11-25 06:23:38 +0000 | [diff] [blame] | 461 | return VPD; |
| 462 | } |
| 463 | |
Xinliang David Li | e809231 | 2015-11-25 19:13:00 +0000 | [diff] [blame] | 464 | void ValueProfRecord::deserializeTo(InstrProfRecord &Record, |
| 465 | InstrProfRecord::ValueMapType *VMap) { |
| 466 | Record.reserveSites(Kind, NumValueSites); |
| 467 | |
| 468 | InstrProfValueData *ValueData = getValueProfRecordValueData(this); |
| 469 | for (uint64_t VSite = 0; VSite < NumValueSites; ++VSite) { |
| 470 | uint8_t ValueDataCount = this->SiteCountArray[VSite]; |
| 471 | Record.addValueData(Kind, VSite, ValueData, ValueDataCount, VMap); |
| 472 | ValueData += ValueDataCount; |
| 473 | } |
| 474 | } |
Xinliang David Li | ed96677 | 2015-11-25 23:31:18 +0000 | [diff] [blame] | 475 | |
Xinliang David Li | e809231 | 2015-11-25 19:13:00 +0000 | [diff] [blame] | 476 | // For writing/serializing, Old is the host endianness, and New is |
| 477 | // byte order intended on disk. For Reading/deserialization, Old |
| 478 | // is the on-disk source endianness, and New is the host endianness. |
| 479 | void ValueProfRecord::swapBytes(support::endianness Old, |
| 480 | support::endianness New) { |
| 481 | using namespace support; |
| 482 | if (Old == New) |
| 483 | return; |
| 484 | |
| 485 | if (getHostEndianness() != Old) { |
| 486 | sys::swapByteOrder<uint32_t>(NumValueSites); |
| 487 | sys::swapByteOrder<uint32_t>(Kind); |
| 488 | } |
| 489 | uint32_t ND = getValueProfRecordNumValueData(this); |
| 490 | InstrProfValueData *VD = getValueProfRecordValueData(this); |
| 491 | |
| 492 | // No need to swap byte array: SiteCountArrray. |
| 493 | for (uint32_t I = 0; I < ND; I++) { |
| 494 | sys::swapByteOrder<uint64_t>(VD[I].Value); |
| 495 | sys::swapByteOrder<uint64_t>(VD[I].Count); |
| 496 | } |
| 497 | if (getHostEndianness() == Old) { |
| 498 | sys::swapByteOrder<uint32_t>(NumValueSites); |
| 499 | sys::swapByteOrder<uint32_t>(Kind); |
| 500 | } |
| 501 | } |
| 502 | |
| 503 | void ValueProfData::deserializeTo(InstrProfRecord &Record, |
| 504 | InstrProfRecord::ValueMapType *VMap) { |
| 505 | if (NumValueKinds == 0) |
| 506 | return; |
| 507 | |
| 508 | ValueProfRecord *VR = getFirstValueProfRecord(this); |
| 509 | for (uint32_t K = 0; K < NumValueKinds; K++) { |
| 510 | VR->deserializeTo(Record, VMap); |
| 511 | VR = getValueProfRecordNext(VR); |
| 512 | } |
| 513 | } |
| 514 | |
| 515 | template <class T> |
| 516 | static T swapToHostOrder(const unsigned char *&D, support::endianness Orig) { |
| 517 | using namespace support; |
| 518 | if (Orig == little) |
| 519 | return endian::readNext<T, little, unaligned>(D); |
| 520 | else |
| 521 | return endian::readNext<T, big, unaligned>(D); |
| 522 | } |
| 523 | |
| 524 | static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) { |
| 525 | return std::unique_ptr<ValueProfData>(new (::operator new(TotalSize)) |
| 526 | ValueProfData()); |
| 527 | } |
| 528 | |
Xinliang David Li | 8e32f4d | 2015-11-28 04:56:07 +0000 | [diff] [blame] | 529 | instrprof_error ValueProfData::checkIntegrity() { |
| 530 | if (NumValueKinds > IPVK_Last + 1) |
| 531 | return instrprof_error::malformed; |
| 532 | // Total size needs to be mulltiple of quadword size. |
| 533 | if (TotalSize % sizeof(uint64_t)) |
| 534 | return instrprof_error::malformed; |
| 535 | |
| 536 | ValueProfRecord *VR = getFirstValueProfRecord(this); |
| 537 | for (uint32_t K = 0; K < this->NumValueKinds; K++) { |
| 538 | if (VR->Kind > IPVK_Last) |
| 539 | return instrprof_error::malformed; |
| 540 | VR = getValueProfRecordNext(VR); |
| 541 | if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize) |
| 542 | return instrprof_error::malformed; |
| 543 | } |
| 544 | return instrprof_error::success; |
| 545 | } |
| 546 | |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 547 | ErrorOr<std::unique_ptr<ValueProfData>> |
| 548 | ValueProfData::getValueProfData(const unsigned char *D, |
| 549 | const unsigned char *const BufferEnd, |
| 550 | support::endianness Endianness) { |
| 551 | using namespace support; |
| 552 | if (D + sizeof(ValueProfData) > BufferEnd) |
| 553 | return instrprof_error::truncated; |
| 554 | |
Xinliang David Li | b8c3ad1 | 2015-11-17 03:47:21 +0000 | [diff] [blame] | 555 | const unsigned char *Header = D; |
| 556 | uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness); |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 557 | if (D + TotalSize > BufferEnd) |
| 558 | return instrprof_error::too_large; |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 559 | |
Xinliang David Li | f47cf55 | 2015-11-25 06:23:38 +0000 | [diff] [blame] | 560 | std::unique_ptr<ValueProfData> VPD = allocValueProfData(TotalSize); |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 561 | memcpy(VPD.get(), D, TotalSize); |
| 562 | // Byte swap. |
| 563 | VPD->swapBytesToHost(Endianness); |
| 564 | |
Xinliang David Li | 8e32f4d | 2015-11-28 04:56:07 +0000 | [diff] [blame] | 565 | instrprof_error EC = VPD->checkIntegrity(); |
| 566 | if (EC != instrprof_error::success) |
| 567 | return EC; |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 568 | |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 569 | return std::move(VPD); |
| 570 | } |
| 571 | |
| 572 | void ValueProfData::swapBytesToHost(support::endianness Endianness) { |
| 573 | using namespace support; |
| 574 | if (Endianness == getHostEndianness()) |
| 575 | return; |
| 576 | |
| 577 | sys::swapByteOrder<uint32_t>(TotalSize); |
| 578 | sys::swapByteOrder<uint32_t>(NumValueKinds); |
| 579 | |
Xinliang David Li | f47cf55 | 2015-11-25 06:23:38 +0000 | [diff] [blame] | 580 | ValueProfRecord *VR = getFirstValueProfRecord(this); |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 581 | for (uint32_t K = 0; K < NumValueKinds; K++) { |
| 582 | VR->swapBytes(Endianness, getHostEndianness()); |
Xinliang David Li | ac5b860 | 2015-11-25 04:29:24 +0000 | [diff] [blame] | 583 | VR = getValueProfRecordNext(VR); |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 584 | } |
| 585 | } |
| 586 | |
| 587 | void ValueProfData::swapBytesFromHost(support::endianness Endianness) { |
| 588 | using namespace support; |
| 589 | if (Endianness == getHostEndianness()) |
| 590 | return; |
| 591 | |
Xinliang David Li | f47cf55 | 2015-11-25 06:23:38 +0000 | [diff] [blame] | 592 | ValueProfRecord *VR = getFirstValueProfRecord(this); |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 593 | for (uint32_t K = 0; K < NumValueKinds; K++) { |
Xinliang David Li | ac5b860 | 2015-11-25 04:29:24 +0000 | [diff] [blame] | 594 | ValueProfRecord *NVR = getValueProfRecordNext(VR); |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 595 | VR->swapBytes(getHostEndianness(), Endianness); |
| 596 | VR = NVR; |
| 597 | } |
| 598 | sys::swapByteOrder<uint32_t>(TotalSize); |
| 599 | sys::swapByteOrder<uint32_t>(NumValueKinds); |
| 600 | } |
Xinliang David Li | e809231 | 2015-11-25 19:13:00 +0000 | [diff] [blame] | 601 | |
Xinliang David Li | 565b301 | 2016-01-14 22:10:49 +0000 | [diff] [blame^] | 602 | // The argument to this method is a vector of cutoff percentages and the return |
| 603 | // value is a vector of (Cutoff, MinBlockCount, NumBlocks) triplets. |
| 604 | void ProfileSummary::computeDetailedSummary() { |
| 605 | if (DetailedSummaryCutoffs.empty()) |
| 606 | return; |
| 607 | auto Iter = CountFrequencies.begin(); |
| 608 | auto End = CountFrequencies.end(); |
| 609 | std::sort(DetailedSummaryCutoffs.begin(), DetailedSummaryCutoffs.end()); |
| 610 | |
| 611 | uint32_t BlocksSeen = 0; |
| 612 | uint64_t CurrSum = 0, Count; |
| 613 | |
| 614 | for (uint32_t Cutoff : DetailedSummaryCutoffs) { |
| 615 | assert(Cutoff <= 999999); |
| 616 | APInt Temp(128, TotalCount); |
| 617 | APInt N(128, Cutoff); |
| 618 | APInt D(128, ProfileSummary::Scale); |
| 619 | Temp *= N; |
| 620 | Temp = Temp.sdiv(D); |
| 621 | uint64_t DesiredCount = Temp.getZExtValue(); |
| 622 | assert(DesiredCount <= TotalCount); |
| 623 | while (CurrSum < DesiredCount && Iter != End) { |
| 624 | Count = Iter->first; |
| 625 | uint32_t Freq = Iter->second; |
| 626 | CurrSum += (Count * Freq); |
| 627 | BlocksSeen += Freq; |
| 628 | Iter++; |
| 629 | } |
| 630 | assert(CurrSum >= DesiredCount); |
| 631 | ProfileSummaryEntry PSE = {Cutoff, Count, BlocksSeen}; |
| 632 | DetailedSummary.push_back(PSE); |
| 633 | } |
| 634 | return; |
| 635 | } |
| 636 | |
Xinliang David Li | ee41589 | 2015-11-10 00:24:45 +0000 | [diff] [blame] | 637 | } |