blob: 86cd76c9a208c65ef6b459d48fdf59291cad1787 [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 Li441959d2015-11-09 00:01:22 +000015#include "llvm/IR/Constants.h"
16#include "llvm/IR/Function.h"
17#include "llvm/IR/Module.h"
18#include "llvm/IR/GlobalVariable.h"
Justin Bognerf8d79192014-03-21 17:24:48 +000019#include "llvm/ProfileData/InstrProf.h"
20#include "llvm/Support/ErrorHandling.h"
Chris Bieneman1efe8012014-09-19 23:19:24 +000021#include "llvm/Support/ManagedStatic.h"
Justin Bognerf8d79192014-03-21 17:24:48 +000022
23using namespace llvm;
24
25namespace {
Rafael Espindola25188c92014-06-12 01:45:43 +000026class InstrProfErrorCategoryType : public std::error_category {
Rafael Espindolaf5d07fa2014-06-10 21:26:47 +000027 const char *name() const LLVM_NOEXCEPT override { return "llvm.instrprof"; }
Justin Bognerf8d79192014-03-21 17:24:48 +000028 std::string message(int IE) const override {
Rafael Espindola92512e82014-06-03 05:12:33 +000029 instrprof_error E = static_cast<instrprof_error>(IE);
Justin Bognerf8d79192014-03-21 17:24:48 +000030 switch (E) {
31 case instrprof_error::success:
32 return "Success";
33 case instrprof_error::eof:
34 return "End of File";
Nathan Slingerland4f823662015-11-13 03:47:58 +000035 case instrprof_error::unrecognized_format:
36 return "Unrecognized instrumentation profile encoding format";
Justin Bognerf8d79192014-03-21 17:24:48 +000037 case instrprof_error::bad_magic:
Nathan Slingerland4f823662015-11-13 03:47:58 +000038 return "Invalid instrumentation profile data (bad magic)";
Duncan P. N. Exon Smith531bb482014-03-21 20:42:28 +000039 case instrprof_error::bad_header:
Nathan Slingerland4f823662015-11-13 03:47:58 +000040 return "Invalid instrumentation profile data (file header is corrupt)";
Justin Bognerf8d79192014-03-21 17:24:48 +000041 case instrprof_error::unsupported_version:
Nathan Slingerland4f823662015-11-13 03:47:58 +000042 return "Unsupported instrumentation profile format version";
Justin Bognerb7aa2632014-04-18 21:48:40 +000043 case instrprof_error::unsupported_hash_type:
Nathan Slingerland4f823662015-11-13 03:47:58 +000044 return "Unsupported instrumentation profile hash type";
Justin Bognerf8d79192014-03-21 17:24:48 +000045 case instrprof_error::too_large:
46 return "Too much profile data";
47 case instrprof_error::truncated:
48 return "Truncated profile data";
49 case instrprof_error::malformed:
Nathan Slingerland4f823662015-11-13 03:47:58 +000050 return "Malformed instrumentation profile data";
Justin Bognerf8d79192014-03-21 17:24:48 +000051 case instrprof_error::unknown_function:
52 return "No profile data available for function";
Justin Bognerb9bd7f82014-03-21 17:46:22 +000053 case instrprof_error::hash_mismatch:
Nathan Slingerlande6e30d52015-11-17 22:08:53 +000054 return "Function control flow change detected (hash mismatch)";
Justin Bognerb9bd7f82014-03-21 17:46:22 +000055 case instrprof_error::count_mismatch:
Nathan Slingerlande6e30d52015-11-17 22:08:53 +000056 return "Function basic block count change detected (counter mismatch)";
Justin Bognerb9bd7f82014-03-21 17:46:22 +000057 case instrprof_error::counter_overflow:
58 return "Counter overflow";
Justin Bogner9e9a0572015-09-29 22:13:58 +000059 case instrprof_error::value_site_count_mismatch:
Nathan Slingerlande6e30d52015-11-17 22:08:53 +000060 return "Function value site count change detected (counter mismatch)";
Justin Bognerf8d79192014-03-21 17:24:48 +000061 }
62 llvm_unreachable("A value of instrprof_error has no message.");
63 }
Justin Bognerf8d79192014-03-21 17:24:48 +000064};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000065}
Justin Bognerf8d79192014-03-21 17:24:48 +000066
Chris Bieneman1efe8012014-09-19 23:19:24 +000067static ManagedStatic<InstrProfErrorCategoryType> ErrorCategory;
68
Rafael Espindola25188c92014-06-12 01:45:43 +000069const std::error_category &llvm::instrprof_category() {
Chris Bieneman1efe8012014-09-19 23:19:24 +000070 return *ErrorCategory;
Justin Bognerf8d79192014-03-21 17:24:48 +000071}
Xinliang David Li441959d2015-11-09 00:01:22 +000072
73namespace llvm {
74
75std::string getPGOFuncName(StringRef RawFuncName,
76 GlobalValue::LinkageTypes Linkage,
77 StringRef FileName) {
78
79 // Function names may be prefixed with a binary '1' to indicate
80 // that the backend should not modify the symbols due to any platform
81 // naming convention. Do not include that '1' in the PGO profile name.
82 if (RawFuncName[0] == '\1')
83 RawFuncName = RawFuncName.substr(1);
84
85 std::string FuncName = RawFuncName;
86 if (llvm::GlobalValue::isLocalLinkage(Linkage)) {
87 // For local symbols, prepend the main file name to distinguish them.
88 // Do not include the full path in the file name since there's no guarantee
89 // that it will stay the same, e.g., if the files are checked out from
90 // version control in different locations.
91 if (FileName.empty())
92 FuncName = FuncName.insert(0, "<unknown>:");
93 else
94 FuncName = FuncName.insert(0, FileName.str() + ":");
95 }
96 return FuncName;
97}
98
99std::string getPGOFuncName(const Function &F) {
100 return getPGOFuncName(F.getName(), F.getLinkage(), F.getParent()->getName());
101}
102
103GlobalVariable *createPGOFuncNameVar(Module &M,
104 GlobalValue::LinkageTypes Linkage,
105 StringRef FuncName) {
106
107 // We generally want to match the function's linkage, but available_externally
108 // and extern_weak both have the wrong semantics, and anything that doesn't
109 // need to link across compilation units doesn't need to be visible at all.
110 if (Linkage == GlobalValue::ExternalWeakLinkage)
111 Linkage = GlobalValue::LinkOnceAnyLinkage;
112 else if (Linkage == GlobalValue::AvailableExternallyLinkage)
113 Linkage = GlobalValue::LinkOnceODRLinkage;
114 else if (Linkage == GlobalValue::InternalLinkage ||
115 Linkage == GlobalValue::ExternalLinkage)
116 Linkage = GlobalValue::PrivateLinkage;
117
118 auto *Value = ConstantDataArray::getString(M.getContext(), FuncName, false);
119 auto FuncNameVar =
120 new GlobalVariable(M, Value->getType(), true, Linkage, Value,
121 Twine(getInstrProfNameVarPrefix()) + FuncName);
122
123 // Hide the symbol so that we correctly get a copy for each executable.
124 if (!GlobalValue::isLocalLinkage(FuncNameVar->getLinkage()))
125 FuncNameVar->setVisibility(GlobalValue::HiddenVisibility);
126
127 return FuncNameVar;
128}
129
130GlobalVariable *createPGOFuncNameVar(Function &F, StringRef FuncName) {
131 return createPGOFuncNameVar(*F.getParent(), F.getLinkage(), FuncName);
132}
Xinliang David Liee415892015-11-10 00:24:45 +0000133
Xinliang David Lif47cf552015-11-25 06:23:38 +0000134/// Return the total size in bytes of the on-disk value profile data
135/// given the data stored in Record.
136uint32_t getValueProfDataSize(ValueProfRecordClosure *Closure) {
137 uint32_t Kind;
Xinliang David Liee415892015-11-10 00:24:45 +0000138 uint32_t TotalSize = sizeof(ValueProfData);
Xinliang David Lif47cf552015-11-25 06:23:38 +0000139 const void *Record = Closure->Record;
140 uint32_t NumValueKinds = Closure->GetNumValueKinds(Record);
Xinliang David Liee415892015-11-10 00:24:45 +0000141 if (NumValueKinds == 0)
142 return TotalSize;
143
Xinliang David Lif47cf552015-11-25 06:23:38 +0000144 for (Kind = IPVK_First; Kind <= IPVK_Last; Kind++) {
145 uint32_t NumValueSites = Closure->GetNumValueSites(Record, Kind);
Xinliang David Liee415892015-11-10 00:24:45 +0000146 if (!NumValueSites)
147 continue;
Xinliang David Lif47cf552015-11-25 06:23:38 +0000148 TotalSize += getValueProfRecordSize(NumValueSites,
149 Closure->GetNumValueData(Record, Kind));
Xinliang David Liee415892015-11-10 00:24:45 +0000150 }
151 return TotalSize;
152}
153
Xinliang David Lie8092312015-11-25 19:13:00 +0000154// Extract data from \c Closure and serialize into \c This instance.
155void serializeValueProfRecordFrom(ValueProfRecord *This,
156 ValueProfRecordClosure *Closure,
157 uint32_t ValueKind, uint32_t NumValueSites) {
158 uint32_t S;
159 const void *Record = Closure->Record;
160 This->Kind = ValueKind;
161 This->NumValueSites = NumValueSites;
162 InstrProfValueData *DstVD = getValueProfRecordValueData(This);
Xinliang David Liee415892015-11-10 00:24:45 +0000163
Xinliang David Lie8092312015-11-25 19:13:00 +0000164 for (S = 0; S < NumValueSites; S++) {
165 uint32_t ND = Closure->GetNumValueDataForSite(Record, ValueKind, S);
166 This->SiteCountArray[S] = ND;
167 Closure->GetValueForSite(Record, DstVD, ValueKind, S,
168 Closure->RemapValueData);
169 DstVD += ND;
Xinliang David Liee415892015-11-10 00:24:45 +0000170 }
171}
172
Xinliang David Lif47cf552015-11-25 06:23:38 +0000173ValueProfData *serializeValueProfDataFrom(ValueProfRecordClosure *Closure) {
174 uint32_t TotalSize = getValueProfDataSize(Closure);
Xinliang David Li4d1bef32015-11-11 19:31:53 +0000175
Xinliang David Lif47cf552015-11-25 06:23:38 +0000176 ValueProfData *VPD = Closure->AllocValueProfData(TotalSize);
Xinliang David Liee415892015-11-10 00:24:45 +0000177
178 VPD->TotalSize = TotalSize;
Xinliang David Lif47cf552015-11-25 06:23:38 +0000179 VPD->NumValueKinds = Closure->GetNumValueKinds(Closure->Record);
180 ValueProfRecord *VR = getFirstValueProfRecord(VPD);
Xinliang David Liee415892015-11-10 00:24:45 +0000181 for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; Kind++) {
Xinliang David Lif47cf552015-11-25 06:23:38 +0000182 uint32_t NumValueSites = Closure->GetNumValueSites(Closure->Record, Kind);
Xinliang David Liee415892015-11-10 00:24:45 +0000183 if (!NumValueSites)
184 continue;
Xinliang David Lif47cf552015-11-25 06:23:38 +0000185 serializeValueProfRecordFrom(VR, Closure, Kind, NumValueSites);
Xinliang David Liac5b8602015-11-25 04:29:24 +0000186 VR = getValueProfRecordNext(VR);
Xinliang David Liee415892015-11-10 00:24:45 +0000187 }
188 return VPD;
189}
190
Xinliang David Lied966772015-11-25 23:31:18 +0000191/*! \brief ValueProfRecordClosure Interface implementation for InstrProfRecord
192 * class. These C wrappers are used as adaptors so that C++ code can be
193 * invoked as callbacks.
194 */
Xinliang David Lif47cf552015-11-25 06:23:38 +0000195uint32_t getNumValueKindsInstrProf(const void *Record) {
196 return reinterpret_cast<const InstrProfRecord *>(Record)->getNumValueKinds();
197}
198
199uint32_t getNumValueSitesInstrProf(const void *Record, uint32_t VKind) {
200 return reinterpret_cast<const InstrProfRecord *>(Record)
201 ->getNumValueSites(VKind);
202}
203
204uint32_t getNumValueDataInstrProf(const void *Record, uint32_t VKind) {
205 return reinterpret_cast<const InstrProfRecord *>(Record)
206 ->getNumValueData(VKind);
207}
208
209uint32_t getNumValueDataForSiteInstrProf(const void *R, uint32_t VK,
210 uint32_t S) {
211 return reinterpret_cast<const InstrProfRecord *>(R)
212 ->getNumValueDataForSite(VK, S);
213}
214
215void getValueForSiteInstrProf(const void *R, InstrProfValueData *Dst,
216 uint32_t K, uint32_t S,
217 uint64_t (*Mapper)(uint32_t, uint64_t)) {
218 return reinterpret_cast<const InstrProfRecord *>(R)
219 ->getValueForSite(Dst, K, S, Mapper);
220}
221
Xinliang David Lie8092312015-11-25 19:13:00 +0000222uint64_t stringToHash(uint32_t ValueKind, uint64_t Value) {
223 switch (ValueKind) {
224 case IPVK_IndirectCallTarget:
225 return IndexedInstrProf::ComputeHash(IndexedInstrProf::HashType,
226 (const char *)Value);
227 break;
228 default:
229 llvm_unreachable("value kind not handled !");
230 }
231 return Value;
232}
233
Xinliang David Lif47cf552015-11-25 06:23:38 +0000234ValueProfData *allocValueProfDataInstrProf(size_t TotalSizeInBytes) {
235 return (ValueProfData *)(new (::operator new(TotalSizeInBytes))
236 ValueProfData());
237}
238
239static ValueProfRecordClosure InstrProfRecordClosure = {
240 0,
241 getNumValueKindsInstrProf,
242 getNumValueSitesInstrProf,
243 getNumValueDataInstrProf,
244 getNumValueDataForSiteInstrProf,
245 stringToHash,
246 getValueForSiteInstrProf,
Xinliang David Lie8092312015-11-25 19:13:00 +0000247 allocValueProfDataInstrProf
248};
Xinliang David Lif47cf552015-11-25 06:23:38 +0000249
Xinliang David Lie8092312015-11-25 19:13:00 +0000250// Wrapper implementation using the closure mechanism.
Xinliang David Lif47cf552015-11-25 06:23:38 +0000251uint32_t ValueProfData::getSize(const InstrProfRecord &Record) {
252 InstrProfRecordClosure.Record = &Record;
253 return getValueProfDataSize(&InstrProfRecordClosure);
254}
255
Xinliang David Lie8092312015-11-25 19:13:00 +0000256// Wrapper implementation using the closure mechanism.
Xinliang David Lif47cf552015-11-25 06:23:38 +0000257std::unique_ptr<ValueProfData>
258ValueProfData::serializeFrom(const InstrProfRecord &Record) {
259 InstrProfRecordClosure.Record = &Record;
260
261 std::unique_ptr<ValueProfData> VPD(
262 serializeValueProfDataFrom(&InstrProfRecordClosure));
263 return VPD;
264}
265
Xinliang David Lied966772015-11-25 23:31:18 +0000266/* The value profiler runtime library stores the value profile data
267 * for a given function in NumValueSites and Nodes. This is the
268 * method to initialize the RuntimeRecord with the runtime data to
269 * pre-compute the information needed to efficiently implement
270 * ValueProfRecordClosure's callback interfaces.
271 */
272void initializeValueProfRuntimeRecord(ValueProfRuntimeRecord *RuntimeRecord,
273 uint16_t *NumValueSites,
274 ValueProfNode **Nodes) {
275 unsigned I, J, S = 0, NumValueKinds = 0;
276 RuntimeRecord->NumValueSites = NumValueSites;
277 RuntimeRecord->Nodes = Nodes;
278 for (I = 0; I <= IPVK_Last; I++) {
279 uint16_t N = NumValueSites[I];
280 if (!N) {
281 RuntimeRecord->SiteCountArray[I] = 0;
282 continue;
283 }
284 NumValueKinds++;
285 RuntimeRecord->SiteCountArray[I] = (uint8_t *)calloc(N, 1);
286 RuntimeRecord->NodesKind[I] = &RuntimeRecord->Nodes[S];
287 for (J = 0; J < N; J++) {
288 uint8_t C = 0;
289 ValueProfNode *Site = RuntimeRecord->Nodes[S + J];
290 while (Site) {
291 C++;
292 Site = Site->Next;
293 }
294 if (C > UCHAR_MAX)
295 C = UCHAR_MAX;
296 RuntimeRecord->SiteCountArray[I][J] = C;
297 }
298 S += N;
299 }
300 RuntimeRecord->NumValueKinds = NumValueKinds;
301}
302
303void finalizeValueProfRuntimeRecord(ValueProfRuntimeRecord *RuntimeRecord) {
304 unsigned I;
305 for (I = 0; I <= IPVK_Last; I++) {
306 if (RuntimeRecord->SiteCountArray[I])
307 free(RuntimeRecord->SiteCountArray[I]);
308 }
309}
310
311/* ValueProfRecordClosure Interface implementation for
312 * ValueProfDataRuntimeRecord. */
313uint32_t getNumValueKindsRT(const void *R) {
314 return ((const ValueProfRuntimeRecord *)R)->NumValueKinds;
315}
316
317uint32_t getNumValueSitesRT(const void *R, uint32_t VK) {
318 return ((const ValueProfRuntimeRecord *)R)->NumValueSites[VK];
319}
320
321uint32_t getNumValueDataForSiteRT(const void *R, uint32_t VK, uint32_t S) {
322 const ValueProfRuntimeRecord *Record = (const ValueProfRuntimeRecord *)R;
323 return Record->SiteCountArray[VK][S];
324}
325
326uint32_t getNumValueDataRT(const void *R, uint32_t VK) {
327 unsigned I, S = 0;
328 const ValueProfRuntimeRecord *Record = (const ValueProfRuntimeRecord *)R;
329 if (Record->SiteCountArray[VK] == 0)
330 return 0;
331 for (I = 0; I < Record->NumValueSites[VK]; I++)
332 S += Record->SiteCountArray[VK][I];
333 return S;
334}
335
336void getValueForSiteRT(const void *R, InstrProfValueData *Dst, uint32_t VK,
337 uint32_t S, uint64_t (*Mapper)(uint32_t, uint64_t)) {
338 unsigned I, N = 0;
339 const ValueProfRuntimeRecord *Record = (const ValueProfRuntimeRecord *)R;
340 N = getNumValueDataForSiteRT(R, VK, S);
341 ValueProfNode *VNode = Record->NodesKind[VK][S];
342 for (I = 0; I < N; I++) {
343 Dst[I] = VNode->VData;
344 VNode = VNode->Next;
345 }
346}
347
348ValueProfData *allocValueProfDataRT(size_t TotalSizeInBytes) {
349 return (ValueProfData *)calloc(TotalSizeInBytes, 1);
350}
351
352static ValueProfRecordClosure RTRecordClosure = {0,
353 getNumValueKindsRT,
354 getNumValueSitesRT,
355 getNumValueDataRT,
356 getNumValueDataForSiteRT,
357 0,
358 getValueForSiteRT,
359 allocValueProfDataRT};
360
361/* Return the size of ValueProfData structure to store data
362 * recorded in the runtime record.
363 */
364uint32_t getValueProfDataSizeRT(const ValueProfRuntimeRecord *Record) {
365 RTRecordClosure.Record = Record;
366 return getValueProfDataSize(&RTRecordClosure);
367}
368
369/* Return a ValueProfData instance that stores the data collected
370 from runtime. */
371ValueProfData *
372serializeValueProfDataFromRT(const ValueProfRuntimeRecord *Record) {
373 RTRecordClosure.Record = Record;
374 return serializeValueProfDataFrom(&RTRecordClosure);
375}
376
377
378
379
Xinliang David Lie8092312015-11-25 19:13:00 +0000380void ValueProfRecord::deserializeTo(InstrProfRecord &Record,
381 InstrProfRecord::ValueMapType *VMap) {
382 Record.reserveSites(Kind, NumValueSites);
383
384 InstrProfValueData *ValueData = getValueProfRecordValueData(this);
385 for (uint64_t VSite = 0; VSite < NumValueSites; ++VSite) {
386 uint8_t ValueDataCount = this->SiteCountArray[VSite];
387 Record.addValueData(Kind, VSite, ValueData, ValueDataCount, VMap);
388 ValueData += ValueDataCount;
389 }
390}
Xinliang David Lied966772015-11-25 23:31:18 +0000391
Xinliang David Lie8092312015-11-25 19:13:00 +0000392// For writing/serializing, Old is the host endianness, and New is
393// byte order intended on disk. For Reading/deserialization, Old
394// is the on-disk source endianness, and New is the host endianness.
395void ValueProfRecord::swapBytes(support::endianness Old,
396 support::endianness New) {
397 using namespace support;
398 if (Old == New)
399 return;
400
401 if (getHostEndianness() != Old) {
402 sys::swapByteOrder<uint32_t>(NumValueSites);
403 sys::swapByteOrder<uint32_t>(Kind);
404 }
405 uint32_t ND = getValueProfRecordNumValueData(this);
406 InstrProfValueData *VD = getValueProfRecordValueData(this);
407
408 // No need to swap byte array: SiteCountArrray.
409 for (uint32_t I = 0; I < ND; I++) {
410 sys::swapByteOrder<uint64_t>(VD[I].Value);
411 sys::swapByteOrder<uint64_t>(VD[I].Count);
412 }
413 if (getHostEndianness() == Old) {
414 sys::swapByteOrder<uint32_t>(NumValueSites);
415 sys::swapByteOrder<uint32_t>(Kind);
416 }
417}
418
419void ValueProfData::deserializeTo(InstrProfRecord &Record,
420 InstrProfRecord::ValueMapType *VMap) {
421 if (NumValueKinds == 0)
422 return;
423
424 ValueProfRecord *VR = getFirstValueProfRecord(this);
425 for (uint32_t K = 0; K < NumValueKinds; K++) {
426 VR->deserializeTo(Record, VMap);
427 VR = getValueProfRecordNext(VR);
428 }
429}
430
431template <class T>
432static T swapToHostOrder(const unsigned char *&D, support::endianness Orig) {
433 using namespace support;
434 if (Orig == little)
435 return endian::readNext<T, little, unaligned>(D);
436 else
437 return endian::readNext<T, big, unaligned>(D);
438}
439
440static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) {
441 return std::unique_ptr<ValueProfData>(new (::operator new(TotalSize))
442 ValueProfData());
443}
444
Xinliang David Liee415892015-11-10 00:24:45 +0000445ErrorOr<std::unique_ptr<ValueProfData>>
446ValueProfData::getValueProfData(const unsigned char *D,
447 const unsigned char *const BufferEnd,
448 support::endianness Endianness) {
449 using namespace support;
450 if (D + sizeof(ValueProfData) > BufferEnd)
451 return instrprof_error::truncated;
452
Xinliang David Lib8c3ad12015-11-17 03:47:21 +0000453 const unsigned char *Header = D;
454 uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness);
455 uint32_t NumValueKinds = swapToHostOrder<uint32_t>(Header, Endianness);
Xinliang David Liee415892015-11-10 00:24:45 +0000456
457 if (D + TotalSize > BufferEnd)
458 return instrprof_error::too_large;
459 if (NumValueKinds > IPVK_Last + 1)
460 return instrprof_error::malformed;
461 // Total size needs to be mulltiple of quadword size.
462 if (TotalSize % sizeof(uint64_t))
463 return instrprof_error::malformed;
464
Xinliang David Lif47cf552015-11-25 06:23:38 +0000465 std::unique_ptr<ValueProfData> VPD = allocValueProfData(TotalSize);
Xinliang David Li4d1bef32015-11-11 19:31:53 +0000466
Xinliang David Liee415892015-11-10 00:24:45 +0000467 memcpy(VPD.get(), D, TotalSize);
468 // Byte swap.
469 VPD->swapBytesToHost(Endianness);
470
Xinliang David Liac5b8602015-11-25 04:29:24 +0000471 // Data integrity check:
Xinliang David Lif47cf552015-11-25 06:23:38 +0000472 ValueProfRecord *VR = getFirstValueProfRecord(VPD.get());
Xinliang David Liee415892015-11-10 00:24:45 +0000473 for (uint32_t K = 0; K < VPD->NumValueKinds; K++) {
474 if (VR->Kind > IPVK_Last)
475 return instrprof_error::malformed;
Xinliang David Liac5b8602015-11-25 04:29:24 +0000476 VR = getValueProfRecordNext(VR);
Aaron Ballman470b5f12015-11-11 14:57:28 +0000477 if ((char *)VR - (char *)VPD.get() > (ptrdiff_t)TotalSize)
Xinliang David Liee415892015-11-10 00:24:45 +0000478 return instrprof_error::malformed;
479 }
480
Xinliang David Liee415892015-11-10 00:24:45 +0000481 return std::move(VPD);
482}
483
484void ValueProfData::swapBytesToHost(support::endianness Endianness) {
485 using namespace support;
486 if (Endianness == getHostEndianness())
487 return;
488
489 sys::swapByteOrder<uint32_t>(TotalSize);
490 sys::swapByteOrder<uint32_t>(NumValueKinds);
491
Xinliang David Lif47cf552015-11-25 06:23:38 +0000492 ValueProfRecord *VR = getFirstValueProfRecord(this);
Xinliang David Liee415892015-11-10 00:24:45 +0000493 for (uint32_t K = 0; K < NumValueKinds; K++) {
494 VR->swapBytes(Endianness, getHostEndianness());
Xinliang David Liac5b8602015-11-25 04:29:24 +0000495 VR = getValueProfRecordNext(VR);
Xinliang David Liee415892015-11-10 00:24:45 +0000496 }
497}
498
499void ValueProfData::swapBytesFromHost(support::endianness Endianness) {
500 using namespace support;
501 if (Endianness == getHostEndianness())
502 return;
503
Xinliang David Lif47cf552015-11-25 06:23:38 +0000504 ValueProfRecord *VR = getFirstValueProfRecord(this);
Xinliang David Liee415892015-11-10 00:24:45 +0000505 for (uint32_t K = 0; K < NumValueKinds; K++) {
Xinliang David Liac5b8602015-11-25 04:29:24 +0000506 ValueProfRecord *NVR = getValueProfRecordNext(VR);
Xinliang David Liee415892015-11-10 00:24:45 +0000507 VR->swapBytes(getHostEndianness(), Endianness);
508 VR = NVR;
509 }
510 sys::swapByteOrder<uint32_t>(TotalSize);
511 sys::swapByteOrder<uint32_t>(NumValueKinds);
512}
Xinliang David Lie8092312015-11-25 19:13:00 +0000513
Xinliang David Liee415892015-11-10 00:24:45 +0000514}