blob: 027f0f78c54616af0fa480642d091dfc07b82fae [file] [log] [blame]
Justin Bognerf8d79192014-03-21 17:24:48 +00001//=-- 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 Lie413f1a2015-12-31 07:57:16 +000015#include "llvm/ProfileData/InstrProf.h"
Xinliang David Li0c677872016-01-04 21:31:09 +000016#include "llvm/ADT/StringExtras.h"
Xinliang David Li441959d2015-11-09 00:01:22 +000017#include "llvm/IR/Constants.h"
18#include "llvm/IR/Function.h"
Xinliang David Li441959d2015-11-09 00:01:22 +000019#include "llvm/IR/GlobalVariable.h"
Xinliang David Lie413f1a2015-12-31 07:57:16 +000020#include "llvm/IR/Module.h"
21#include "llvm/Support/Compression.h"
Justin Bognerf8d79192014-03-21 17:24:48 +000022#include "llvm/Support/ErrorHandling.h"
Xinliang David Lie413f1a2015-12-31 07:57:16 +000023#include "llvm/Support/LEB128.h"
Chris Bieneman1efe8012014-09-19 23:19:24 +000024#include "llvm/Support/ManagedStatic.h"
Justin Bognerf8d79192014-03-21 17:24:48 +000025
26using namespace llvm;
27
28namespace {
Rafael Espindola25188c92014-06-12 01:45:43 +000029class InstrProfErrorCategoryType : public std::error_category {
Rafael Espindolaf5d07fa2014-06-10 21:26:47 +000030 const char *name() const LLVM_NOEXCEPT override { return "llvm.instrprof"; }
Justin Bognerf8d79192014-03-21 17:24:48 +000031 std::string message(int IE) const override {
Rafael Espindola92512e82014-06-03 05:12:33 +000032 instrprof_error E = static_cast<instrprof_error>(IE);
Justin Bognerf8d79192014-03-21 17:24:48 +000033 switch (E) {
34 case instrprof_error::success:
35 return "Success";
36 case instrprof_error::eof:
37 return "End of File";
Nathan Slingerland4f823662015-11-13 03:47:58 +000038 case instrprof_error::unrecognized_format:
39 return "Unrecognized instrumentation profile encoding format";
Justin Bognerf8d79192014-03-21 17:24:48 +000040 case instrprof_error::bad_magic:
Nathan Slingerland4f823662015-11-13 03:47:58 +000041 return "Invalid instrumentation profile data (bad magic)";
Duncan P. N. Exon Smith531bb482014-03-21 20:42:28 +000042 case instrprof_error::bad_header:
Nathan Slingerland4f823662015-11-13 03:47:58 +000043 return "Invalid instrumentation profile data (file header is corrupt)";
Justin Bognerf8d79192014-03-21 17:24:48 +000044 case instrprof_error::unsupported_version:
Nathan Slingerland4f823662015-11-13 03:47:58 +000045 return "Unsupported instrumentation profile format version";
Justin Bognerb7aa2632014-04-18 21:48:40 +000046 case instrprof_error::unsupported_hash_type:
Nathan Slingerland4f823662015-11-13 03:47:58 +000047 return "Unsupported instrumentation profile hash type";
Justin Bognerf8d79192014-03-21 17:24:48 +000048 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 Slingerland4f823662015-11-13 03:47:58 +000053 return "Malformed instrumentation profile data";
Justin Bognerf8d79192014-03-21 17:24:48 +000054 case instrprof_error::unknown_function:
55 return "No profile data available for function";
Justin Bognerb9bd7f82014-03-21 17:46:22 +000056 case instrprof_error::hash_mismatch:
Nathan Slingerlande6e30d52015-11-17 22:08:53 +000057 return "Function control flow change detected (hash mismatch)";
Justin Bognerb9bd7f82014-03-21 17:46:22 +000058 case instrprof_error::count_mismatch:
Nathan Slingerlande6e30d52015-11-17 22:08:53 +000059 return "Function basic block count change detected (counter mismatch)";
Justin Bognerb9bd7f82014-03-21 17:46:22 +000060 case instrprof_error::counter_overflow:
61 return "Counter overflow";
Justin Bogner9e9a0572015-09-29 22:13:58 +000062 case instrprof_error::value_site_count_mismatch:
Nathan Slingerlande6e30d52015-11-17 22:08:53 +000063 return "Function value site count change detected (counter mismatch)";
Justin Bognerf8d79192014-03-21 17:24:48 +000064 }
65 llvm_unreachable("A value of instrprof_error has no message.");
66 }
Justin Bognerf8d79192014-03-21 17:24:48 +000067};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000068}
Justin Bognerf8d79192014-03-21 17:24:48 +000069
Chris Bieneman1efe8012014-09-19 23:19:24 +000070static ManagedStatic<InstrProfErrorCategoryType> ErrorCategory;
71
Rafael Espindola25188c92014-06-12 01:45:43 +000072const std::error_category &llvm::instrprof_category() {
Chris Bieneman1efe8012014-09-19 23:19:24 +000073 return *ErrorCategory;
Justin Bognerf8d79192014-03-21 17:24:48 +000074}
Xinliang David Li441959d2015-11-09 00:01:22 +000075
76namespace llvm {
77
78std::string getPGOFuncName(StringRef RawFuncName,
79 GlobalValue::LinkageTypes Linkage,
Xinliang David Lia86545b2015-12-11 20:23:22 +000080 StringRef FileName,
81 uint64_t Version LLVM_ATTRIBUTE_UNUSED) {
Xinliang David Li441959d2015-11-09 00:01:22 +000082
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 Lia86545b2015-12-11 20:23:22 +000096 FuncName = FuncName.insert(0, "<unknown>:");
Xinliang David Li441959d2015-11-09 00:01:22 +000097 else
Xinliang David Lia86545b2015-12-11 20:23:22 +000098 FuncName = FuncName.insert(0, FileName.str() + ":");
Xinliang David Li441959d2015-11-09 00:01:22 +000099 }
100 return FuncName;
101}
102
Xinliang David Li307902e2015-12-05 05:16:36 +0000103std::string getPGOFuncName(const Function &F, uint64_t Version) {
104 return getPGOFuncName(F.getName(), F.getLinkage(), F.getParent()->getName(),
105 Version);
Xinliang David Li441959d2015-11-09 00:01:22 +0000106}
107
Xinliang David Li4ec40142015-12-15 19:44:45 +0000108StringRef 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 Lid1bab962015-12-12 17:28:03 +0000117// \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.
119static 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 Li441959d2015-11-09 00:01:22 +0000137GlobalVariable *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 Lid1bab962015-12-12 17:28:03 +0000155 getPGOFuncNameVarName(FuncName, Linkage));
Xinliang David Li441959d2015-11-09 00:01:22 +0000156
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
164GlobalVariable *createPGOFuncNameVar(Function &F, StringRef FuncName) {
165 return createPGOFuncNameVar(*F.getParent(), F.getLinkage(), FuncName);
166}
Xinliang David Liee415892015-11-10 00:24:45 +0000167
Xinliang David Lie413f1a2015-12-31 07:57:16 +0000168int collectPGOFuncNameStrings(const std::vector<std::string> &NameStrs,
169 bool doCompression, std::string &Result) {
170 uint8_t Header[16], *P = Header;
Xinliang David Li0c677872016-01-04 21:31:09 +0000171 std::string UncompressedNameStrings =
172 join(NameStrs.begin(), NameStrs.end(), StringRef(" "));
Xinliang David Li13ea29b2016-01-04 20:26:05 +0000173
Xinliang David Lie413f1a2015-12-31 07:57:16 +0000174 unsigned EncLen = encodeULEB128(UncompressedNameStrings.length(), P);
175 P += EncLen;
Xinliang David Li120fe2e2016-01-04 22:01:02 +0000176
177 auto WriteStringToResult = [&](size_t CompressedLen,
178 const std::string &InputStr) {
179 EncLen = encodeULEB128(CompressedLen, P);
Xinliang David Lie413f1a2015-12-31 07:57:16 +0000180 P += EncLen;
Xinliang David Li120fe2e2016-01-04 22:01:02 +0000181 char *HeaderStr = reinterpret_cast<char *>(&Header[0]);
182 unsigned HeaderLen = P - &Header[0];
183 Result.append(HeaderStr, HeaderLen);
184 Result += InputStr;
Xinliang David Lie413f1a2015-12-31 07:57:16 +0000185 return 0;
Xinliang David Li120fe2e2016-01-04 22:01:02 +0000186 };
187
188 if (!doCompression)
189 return WriteStringToResult(0, UncompressedNameStrings);
190
Xinliang David Lie413f1a2015-12-31 07:57:16 +0000191 SmallVector<char, 128> CompressedNameStrings;
192 zlib::Status Success =
193 zlib::compress(StringRef(UncompressedNameStrings), CompressedNameStrings,
194 zlib::BestSizeCompression);
Xinliang David Li120fe2e2016-01-04 22:01:02 +0000195
Xinliang David Lie413f1a2015-12-31 07:57:16 +0000196 if (Success != zlib::StatusOK)
197 return 1;
Xinliang David Li120fe2e2016-01-04 22:01:02 +0000198
199 return WriteStringToResult(
200 CompressedNameStrings.size(),
201 std::string(CompressedNameStrings.data(), CompressedNameStrings.size()));
Xinliang David Lie413f1a2015-12-31 07:57:16 +0000202}
203
Xinliang David Li37c1fa02016-01-03 04:38:13 +0000204StringRef 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 Lie413f1a2015-12-31 07:57:16 +0000211int collectPGOFuncNameStrings(const std::vector<GlobalVariable *> &NameVars,
212 std::string &Result) {
213 std::vector<std::string> NameStrs;
214 for (auto *NameVar : NameVars) {
Xinliang David Li37c1fa02016-01-03 04:38:13 +0000215 NameStrs.push_back(getPGOFuncNameInitializer(NameVar));
Xinliang David Lie413f1a2015-12-31 07:57:16 +0000216 }
217 return collectPGOFuncNameStrings(NameStrs, zlib::isAvailable(), Result);
218}
219
220int 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 Li204efe22016-01-04 22:09:26 +0000248 SmallVector<StringRef, 0> Names;
249 NameStrings.split(Names, ' ');
250 for (StringRef &Name : Names)
Xinliang David Lie413f1a2015-12-31 07:57:16 +0000251 Symtab.addFuncName(Name);
Xinliang David Lie413f1a2015-12-31 07:57:16 +0000252
253 while (P < EndP && *P == 0)
254 P++;
255 }
256 Symtab.finalizeSymtab();
257 return 0;
258}
259
Xinliang David Li5c24da52015-12-20 05:15:45 +0000260instrprof_error
261InstrProfValueSiteRecord::mergeValueData(InstrProfValueSiteRecord &Input,
262 uint64_t Weight) {
263 this->sortByTargetValues();
264 Input.sortByTargetValues();
265 auto I = ValueData.begin();
266 auto IE = ValueData.end();
267 instrprof_error Result = instrprof_error::success;
268 for (auto J = Input.ValueData.begin(), JE = Input.ValueData.end(); J != JE;
269 ++J) {
270 while (I != IE && I->Value < J->Value)
271 ++I;
272 if (I != IE && I->Value == J->Value) {
273 uint64_t JCount = J->Count;
274 bool Overflowed;
275 if (Weight > 1) {
276 JCount = SaturatingMultiply(JCount, Weight, &Overflowed);
277 if (Overflowed)
278 Result = instrprof_error::counter_overflow;
279 }
280 I->Count = SaturatingAdd(I->Count, JCount, &Overflowed);
281 if (Overflowed)
282 Result = instrprof_error::counter_overflow;
283 ++I;
284 continue;
285 }
286 ValueData.insert(I, *J);
287 }
288 return Result;
289}
290
Xinliang David Li020f22d2015-12-18 23:06:37 +0000291// Merge Value Profile data from Src record to this record for ValueKind.
292// Scale merged value counts by \p Weight.
293instrprof_error InstrProfRecord::mergeValueProfData(uint32_t ValueKind,
294 InstrProfRecord &Src,
295 uint64_t Weight) {
296 uint32_t ThisNumValueSites = getNumValueSites(ValueKind);
297 uint32_t OtherNumValueSites = Src.getNumValueSites(ValueKind);
298 if (ThisNumValueSites != OtherNumValueSites)
299 return instrprof_error::value_site_count_mismatch;
300 std::vector<InstrProfValueSiteRecord> &ThisSiteRecords =
301 getValueSitesForKind(ValueKind);
302 std::vector<InstrProfValueSiteRecord> &OtherSiteRecords =
303 Src.getValueSitesForKind(ValueKind);
304 instrprof_error Result = instrprof_error::success;
305 for (uint32_t I = 0; I < ThisNumValueSites; I++)
306 MergeResult(Result,
307 ThisSiteRecords[I].mergeValueData(OtherSiteRecords[I], Weight));
308 return Result;
309}
310
311instrprof_error InstrProfRecord::merge(InstrProfRecord &Other,
312 uint64_t Weight) {
313 // If the number of counters doesn't match we either have bad data
314 // or a hash collision.
315 if (Counts.size() != Other.Counts.size())
316 return instrprof_error::count_mismatch;
317
318 instrprof_error Result = instrprof_error::success;
319
320 for (size_t I = 0, E = Other.Counts.size(); I < E; ++I) {
321 bool Overflowed;
322 uint64_t OtherCount = Other.Counts[I];
323 if (Weight > 1) {
324 OtherCount = SaturatingMultiply(OtherCount, Weight, &Overflowed);
325 if (Overflowed)
326 Result = instrprof_error::counter_overflow;
327 }
328 Counts[I] = SaturatingAdd(Counts[I], OtherCount, &Overflowed);
329 if (Overflowed)
330 Result = instrprof_error::counter_overflow;
331 }
332
333 for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind)
334 MergeResult(Result, mergeValueProfData(Kind, Other, Weight));
335
336 return Result;
337}
Xinliang David Lia716cc52015-12-20 06:22:13 +0000338
Xinliang David Li020f22d2015-12-18 23:06:37 +0000339// Map indirect call target name hash to name string.
340uint64_t InstrProfRecord::remapValue(uint64_t Value, uint32_t ValueKind,
Xinliang David Lia716cc52015-12-20 06:22:13 +0000341 ValueMapType *ValueMap) {
342 if (!ValueMap)
Xinliang David Li020f22d2015-12-18 23:06:37 +0000343 return Value;
344 switch (ValueKind) {
345 case IPVK_IndirectCallTarget: {
346 auto Result =
Xinliang David Lia716cc52015-12-20 06:22:13 +0000347 std::lower_bound(ValueMap->begin(), ValueMap->end(), Value,
348 [](const std::pair<uint64_t, uint64_t> &LHS,
Xinliang David Li020f22d2015-12-18 23:06:37 +0000349 uint64_t RHS) { return LHS.first < RHS; });
Xinliang David Lia716cc52015-12-20 06:22:13 +0000350 if (Result != ValueMap->end())
Xinliang David Li020f22d2015-12-18 23:06:37 +0000351 Value = (uint64_t)Result->second;
352 break;
353 }
354 }
355 return Value;
356}
357
Xinliang David Li020f22d2015-12-18 23:06:37 +0000358void InstrProfRecord::addValueData(uint32_t ValueKind, uint32_t Site,
359 InstrProfValueData *VData, uint32_t N,
Xinliang David Lia716cc52015-12-20 06:22:13 +0000360 ValueMapType *ValueMap) {
Xinliang David Li020f22d2015-12-18 23:06:37 +0000361 for (uint32_t I = 0; I < N; I++) {
Xinliang David Lia716cc52015-12-20 06:22:13 +0000362 VData[I].Value = remapValue(VData[I].Value, ValueKind, ValueMap);
Xinliang David Li020f22d2015-12-18 23:06:37 +0000363 }
364 std::vector<InstrProfValueSiteRecord> &ValueSites =
365 getValueSitesForKind(ValueKind);
366 if (N == 0)
367 ValueSites.push_back(InstrProfValueSiteRecord());
368 else
369 ValueSites.emplace_back(VData, VData + N);
370}
371
Xinliang David Lib75544a2015-11-28 19:07:09 +0000372#define INSTR_PROF_COMMON_API_IMPL
373#include "llvm/ProfileData/InstrProfData.inc"
Xinliang David Liee415892015-11-10 00:24:45 +0000374
Xinliang David Li020f22d2015-12-18 23:06:37 +0000375/*!
Xinliang David Lib75544a2015-11-28 19:07:09 +0000376 * \brief ValueProfRecordClosure Interface implementation for InstrProfRecord
Xinliang David Lied966772015-11-25 23:31:18 +0000377 * class. These C wrappers are used as adaptors so that C++ code can be
378 * invoked as callbacks.
379 */
Xinliang David Lif47cf552015-11-25 06:23:38 +0000380uint32_t getNumValueKindsInstrProf(const void *Record) {
381 return reinterpret_cast<const InstrProfRecord *>(Record)->getNumValueKinds();
382}
383
384uint32_t getNumValueSitesInstrProf(const void *Record, uint32_t VKind) {
385 return reinterpret_cast<const InstrProfRecord *>(Record)
386 ->getNumValueSites(VKind);
387}
388
389uint32_t getNumValueDataInstrProf(const void *Record, uint32_t VKind) {
390 return reinterpret_cast<const InstrProfRecord *>(Record)
391 ->getNumValueData(VKind);
392}
393
394uint32_t getNumValueDataForSiteInstrProf(const void *R, uint32_t VK,
395 uint32_t S) {
396 return reinterpret_cast<const InstrProfRecord *>(R)
397 ->getNumValueDataForSite(VK, S);
398}
399
400void getValueForSiteInstrProf(const void *R, InstrProfValueData *Dst,
401 uint32_t K, uint32_t S,
402 uint64_t (*Mapper)(uint32_t, uint64_t)) {
Xinliang David Lia716cc52015-12-20 06:22:13 +0000403 return reinterpret_cast<const InstrProfRecord *>(R)->getValueForSite(
404 Dst, K, S, Mapper);
Xinliang David Lie8092312015-11-25 19:13:00 +0000405}
406
Xinliang David Lif47cf552015-11-25 06:23:38 +0000407ValueProfData *allocValueProfDataInstrProf(size_t TotalSizeInBytes) {
Xinliang David Li38b9a322015-12-15 21:57:08 +0000408 ValueProfData *VD =
409 (ValueProfData *)(new (::operator new(TotalSizeInBytes)) ValueProfData());
410 memset(VD, 0, TotalSizeInBytes);
411 return VD;
Xinliang David Lif47cf552015-11-25 06:23:38 +0000412}
413
414static ValueProfRecordClosure InstrProfRecordClosure = {
415 0,
416 getNumValueKindsInstrProf,
417 getNumValueSitesInstrProf,
418 getNumValueDataInstrProf,
419 getNumValueDataForSiteInstrProf,
Xinliang David Lia716cc52015-12-20 06:22:13 +0000420 0,
Xinliang David Lif47cf552015-11-25 06:23:38 +0000421 getValueForSiteInstrProf,
Xinliang David Li38b9a322015-12-15 21:57:08 +0000422 allocValueProfDataInstrProf};
Xinliang David Lif47cf552015-11-25 06:23:38 +0000423
Xinliang David Lie8092312015-11-25 19:13:00 +0000424// Wrapper implementation using the closure mechanism.
Xinliang David Lif47cf552015-11-25 06:23:38 +0000425uint32_t ValueProfData::getSize(const InstrProfRecord &Record) {
426 InstrProfRecordClosure.Record = &Record;
427 return getValueProfDataSize(&InstrProfRecordClosure);
428}
429
Xinliang David Lie8092312015-11-25 19:13:00 +0000430// Wrapper implementation using the closure mechanism.
Xinliang David Lif47cf552015-11-25 06:23:38 +0000431std::unique_ptr<ValueProfData>
432ValueProfData::serializeFrom(const InstrProfRecord &Record) {
433 InstrProfRecordClosure.Record = &Record;
434
435 std::unique_ptr<ValueProfData> VPD(
Xinliang David Li0e6a36e2015-12-01 19:47:32 +0000436 serializeValueProfDataFrom(&InstrProfRecordClosure, nullptr));
Xinliang David Lif47cf552015-11-25 06:23:38 +0000437 return VPD;
438}
439
Xinliang David Lie8092312015-11-25 19:13:00 +0000440void ValueProfRecord::deserializeTo(InstrProfRecord &Record,
441 InstrProfRecord::ValueMapType *VMap) {
442 Record.reserveSites(Kind, NumValueSites);
443
444 InstrProfValueData *ValueData = getValueProfRecordValueData(this);
445 for (uint64_t VSite = 0; VSite < NumValueSites; ++VSite) {
446 uint8_t ValueDataCount = this->SiteCountArray[VSite];
447 Record.addValueData(Kind, VSite, ValueData, ValueDataCount, VMap);
448 ValueData += ValueDataCount;
449 }
450}
Xinliang David Lied966772015-11-25 23:31:18 +0000451
Xinliang David Lie8092312015-11-25 19:13:00 +0000452// For writing/serializing, Old is the host endianness, and New is
453// byte order intended on disk. For Reading/deserialization, Old
454// is the on-disk source endianness, and New is the host endianness.
455void ValueProfRecord::swapBytes(support::endianness Old,
456 support::endianness New) {
457 using namespace support;
458 if (Old == New)
459 return;
460
461 if (getHostEndianness() != Old) {
462 sys::swapByteOrder<uint32_t>(NumValueSites);
463 sys::swapByteOrder<uint32_t>(Kind);
464 }
465 uint32_t ND = getValueProfRecordNumValueData(this);
466 InstrProfValueData *VD = getValueProfRecordValueData(this);
467
468 // No need to swap byte array: SiteCountArrray.
469 for (uint32_t I = 0; I < ND; I++) {
470 sys::swapByteOrder<uint64_t>(VD[I].Value);
471 sys::swapByteOrder<uint64_t>(VD[I].Count);
472 }
473 if (getHostEndianness() == Old) {
474 sys::swapByteOrder<uint32_t>(NumValueSites);
475 sys::swapByteOrder<uint32_t>(Kind);
476 }
477}
478
479void ValueProfData::deserializeTo(InstrProfRecord &Record,
480 InstrProfRecord::ValueMapType *VMap) {
481 if (NumValueKinds == 0)
482 return;
483
484 ValueProfRecord *VR = getFirstValueProfRecord(this);
485 for (uint32_t K = 0; K < NumValueKinds; K++) {
486 VR->deserializeTo(Record, VMap);
487 VR = getValueProfRecordNext(VR);
488 }
489}
490
491template <class T>
492static T swapToHostOrder(const unsigned char *&D, support::endianness Orig) {
493 using namespace support;
494 if (Orig == little)
495 return endian::readNext<T, little, unaligned>(D);
496 else
497 return endian::readNext<T, big, unaligned>(D);
498}
499
500static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) {
501 return std::unique_ptr<ValueProfData>(new (::operator new(TotalSize))
502 ValueProfData());
503}
504
Xinliang David Li8e32f4d2015-11-28 04:56:07 +0000505instrprof_error ValueProfData::checkIntegrity() {
506 if (NumValueKinds > IPVK_Last + 1)
507 return instrprof_error::malformed;
508 // Total size needs to be mulltiple of quadword size.
509 if (TotalSize % sizeof(uint64_t))
510 return instrprof_error::malformed;
511
512 ValueProfRecord *VR = getFirstValueProfRecord(this);
513 for (uint32_t K = 0; K < this->NumValueKinds; K++) {
514 if (VR->Kind > IPVK_Last)
515 return instrprof_error::malformed;
516 VR = getValueProfRecordNext(VR);
517 if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize)
518 return instrprof_error::malformed;
519 }
520 return instrprof_error::success;
521}
522
Xinliang David Liee415892015-11-10 00:24:45 +0000523ErrorOr<std::unique_ptr<ValueProfData>>
524ValueProfData::getValueProfData(const unsigned char *D,
525 const unsigned char *const BufferEnd,
526 support::endianness Endianness) {
527 using namespace support;
528 if (D + sizeof(ValueProfData) > BufferEnd)
529 return instrprof_error::truncated;
530
Xinliang David Lib8c3ad12015-11-17 03:47:21 +0000531 const unsigned char *Header = D;
532 uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness);
Xinliang David Liee415892015-11-10 00:24:45 +0000533 if (D + TotalSize > BufferEnd)
534 return instrprof_error::too_large;
Xinliang David Liee415892015-11-10 00:24:45 +0000535
Xinliang David Lif47cf552015-11-25 06:23:38 +0000536 std::unique_ptr<ValueProfData> VPD = allocValueProfData(TotalSize);
Xinliang David Liee415892015-11-10 00:24:45 +0000537 memcpy(VPD.get(), D, TotalSize);
538 // Byte swap.
539 VPD->swapBytesToHost(Endianness);
540
Xinliang David Li8e32f4d2015-11-28 04:56:07 +0000541 instrprof_error EC = VPD->checkIntegrity();
542 if (EC != instrprof_error::success)
543 return EC;
Xinliang David Liee415892015-11-10 00:24:45 +0000544
Xinliang David Liee415892015-11-10 00:24:45 +0000545 return std::move(VPD);
546}
547
548void ValueProfData::swapBytesToHost(support::endianness Endianness) {
549 using namespace support;
550 if (Endianness == getHostEndianness())
551 return;
552
553 sys::swapByteOrder<uint32_t>(TotalSize);
554 sys::swapByteOrder<uint32_t>(NumValueKinds);
555
Xinliang David Lif47cf552015-11-25 06:23:38 +0000556 ValueProfRecord *VR = getFirstValueProfRecord(this);
Xinliang David Liee415892015-11-10 00:24:45 +0000557 for (uint32_t K = 0; K < NumValueKinds; K++) {
558 VR->swapBytes(Endianness, getHostEndianness());
Xinliang David Liac5b8602015-11-25 04:29:24 +0000559 VR = getValueProfRecordNext(VR);
Xinliang David Liee415892015-11-10 00:24:45 +0000560 }
561}
562
563void ValueProfData::swapBytesFromHost(support::endianness Endianness) {
564 using namespace support;
565 if (Endianness == getHostEndianness())
566 return;
567
Xinliang David Lif47cf552015-11-25 06:23:38 +0000568 ValueProfRecord *VR = getFirstValueProfRecord(this);
Xinliang David Liee415892015-11-10 00:24:45 +0000569 for (uint32_t K = 0; K < NumValueKinds; K++) {
Xinliang David Liac5b8602015-11-25 04:29:24 +0000570 ValueProfRecord *NVR = getValueProfRecordNext(VR);
Xinliang David Liee415892015-11-10 00:24:45 +0000571 VR->swapBytes(getHostEndianness(), Endianness);
572 VR = NVR;
573 }
574 sys::swapByteOrder<uint32_t>(TotalSize);
575 sys::swapByteOrder<uint32_t>(NumValueKinds);
576}
Xinliang David Lie8092312015-11-25 19:13:00 +0000577
Xinliang David Liee415892015-11-10 00:24:45 +0000578}