f0c89200f28c2b32c8e2820d20038410f31b162e
[oota-llvm.git] / include / llvm / ProfileData / InstrProf.h
1 //=-- InstrProf.h - Instrumented profiling format support ---------*- C++ -*-=//
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 // Instrumentation-based profiling data is generated by instrumented
11 // binaries through library functions in compiler-rt, and read by the clang
12 // frontend to feed PGO.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_PROFILEDATA_INSTRPROF_H_
17 #define LLVM_PROFILEDATA_INSTRPROF_H_
18
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/ADT/StringSet.h"
21 #include "llvm/ADT/STLExtras.h"
22 #include "llvm/IR/GlobalValue.h"
23 #include "llvm/ProfileData/InstrProfData.inc"
24 #include "llvm/Support/Endian.h"
25 #include "llvm/Support/ErrorHandling.h"
26 #include "llvm/Support/ErrorOr.h"
27 #include "llvm/Support/MD5.h"
28 #include <cstdint>
29 #include <list>
30 #include <system_error>
31 #include <vector>
32
33 namespace llvm {
34
35 class Function;
36 class GlobalVariable;
37 class Module;
38
39 /// Return the name of data section containing profile counter variables.
40 inline StringRef getInstrProfCountersSectionName(bool AddSegment) {
41   return AddSegment ? "__DATA," INSTR_PROF_CNTS_SECT_NAME_STR
42                     : INSTR_PROF_CNTS_SECT_NAME_STR;
43 }
44
45 /// Return the name of data section containing names of instrumented
46 /// functions.
47 inline StringRef getInstrProfNameSectionName(bool AddSegment) {
48   return AddSegment ? "__DATA," INSTR_PROF_NAME_SECT_NAME_STR
49                     : INSTR_PROF_NAME_SECT_NAME_STR;
50 }
51
52 /// Return the name of the data section containing per-function control
53 /// data.
54 inline StringRef getInstrProfDataSectionName(bool AddSegment) {
55   return AddSegment ? "__DATA," INSTR_PROF_DATA_SECT_NAME_STR
56                     : INSTR_PROF_DATA_SECT_NAME_STR;
57 }
58
59 /// Return the name profile runtime entry point to do value profiling
60 /// for a given site.
61 inline StringRef getInstrProfValueProfFuncName() {
62   return INSTR_PROF_VALUE_PROF_FUNC_STR;
63 }
64
65 /// Return the name of the section containing function coverage mapping
66 /// data.
67 inline StringRef getInstrProfCoverageSectionName(bool AddSegment) {
68   return AddSegment ? "__DATA,__llvm_covmap" : "__llvm_covmap";
69 }
70
71 /// Return the name prefix of variables containing instrumented function names.
72 inline StringRef getInstrProfNameVarPrefix() { return "__llvm_profile_name_"; }
73
74 /// Return the name prefix of variables containing per-function control data.
75 inline StringRef getInstrProfDataVarPrefix() { return "__llvm_profile_data_"; }
76
77 /// Return the name prefix of profile counter variables.
78 inline StringRef getInstrProfCountersVarPrefix() {
79   return "__llvm_profile_counters_";
80 }
81
82 /// Return the name prefix of the COMDAT group for instrumentation variables
83 /// associated with a COMDAT function.
84 inline StringRef getInstrProfComdatPrefix() { return "__llvm_profile_vars_"; }
85
86 /// Return the name of a covarage mapping variable (internal linkage)
87 /// for each instrumented source module. Such variables are allocated
88 /// in the __llvm_covmap section.
89 inline StringRef getCoverageMappingVarName() {
90   return "__llvm_coverage_mapping";
91 }
92
93 /// Return the name of function that registers all the per-function control
94 /// data at program startup time by calling __llvm_register_function. This
95 /// function has internal linkage and is called by  __llvm_profile_init
96 /// runtime method. This function is not generated for these platforms:
97 /// Darwin, Linux, and FreeBSD.
98 inline StringRef getInstrProfRegFuncsName() {
99   return "__llvm_profile_register_functions";
100 }
101
102 /// Return the name of the runtime interface that registers per-function control
103 /// data for one instrumented function.
104 inline StringRef getInstrProfRegFuncName() {
105   return "__llvm_profile_register_function";
106 }
107
108 /// Return the name of the runtime initialization method that is generated by
109 /// the compiler. The function calls __llvm_profile_register_functions and
110 /// __llvm_profile_override_default_filename functions if needed. This function
111 /// has internal linkage and invoked at startup time via init_array.
112 inline StringRef getInstrProfInitFuncName() { return "__llvm_profile_init"; }
113
114 /// Return the name of the hook variable defined in profile runtime library.
115 /// A reference to the variable causes the linker to link in the runtime
116 /// initialization module (which defines the hook variable).
117 inline StringRef getInstrProfRuntimeHookVarName() {
118   return "__llvm_profile_runtime";
119 }
120
121 /// Return the name of the compiler generated function that references the
122 /// runtime hook variable. The function is a weak global.
123 inline StringRef getInstrProfRuntimeHookVarUseFuncName() {
124   return "__llvm_profile_runtime_user";
125 }
126
127 /// Return the name of the profile runtime interface that overrides the default
128 /// profile data file name.
129 inline StringRef getInstrProfFileOverriderFuncName() {
130   return "__llvm_profile_override_default_filename";
131 }
132
133 /// Return the modified name for function \c F suitable to be
134 /// used the key for profile lookup.
135 std::string getPGOFuncName(const Function &F);
136
137 /// Return the modified name for a function suitable to be
138 /// used the key for profile lookup. The function's original
139 /// name is \c RawFuncName and has linkage of type \c Linkage.
140 /// The function is defined in module \c FileName.
141 std::string getPGOFuncName(StringRef RawFuncName,
142                            GlobalValue::LinkageTypes Linkage,
143                            StringRef FileName);
144
145 /// Create and return the global variable for function name used in PGO
146 /// instrumentation. \c FuncName is the name of the function returned
147 /// by \c getPGOFuncName call.
148 GlobalVariable *createPGOFuncNameVar(Function &F, StringRef FuncName);
149
150 /// Create and return the global variable for function name used in PGO
151 /// instrumentation.  /// \c FuncName is the name of the function
152 /// returned by \c getPGOFuncName call, \c M is the owning module,
153 /// and \c Linkage is the linkage of the instrumented function.
154 GlobalVariable *createPGOFuncNameVar(Module &M,
155                                      GlobalValue::LinkageTypes Linkage,
156                                      StringRef FuncName);
157
158 const std::error_category &instrprof_category();
159
160 enum class instrprof_error {
161   success = 0,
162   eof,
163   unrecognized_format,
164   bad_magic,
165   bad_header,
166   unsupported_version,
167   unsupported_hash_type,
168   too_large,
169   truncated,
170   malformed,
171   unknown_function,
172   hash_mismatch,
173   count_mismatch,
174   counter_overflow,
175   value_site_count_mismatch
176 };
177
178 inline std::error_code make_error_code(instrprof_error E) {
179   return std::error_code(static_cast<int>(E), instrprof_category());
180 }
181
182 enum InstrProfValueKind : uint32_t {
183 #define VALUE_PROF_KIND(Enumerator, Value) Enumerator = Value,
184 #include "llvm/ProfileData/InstrProfData.inc"
185 };
186
187 struct InstrProfStringTable {
188   // Set of string values in profiling data.
189   StringSet<> StringValueSet;
190   InstrProfStringTable() { StringValueSet.clear(); }
191   // Get a pointer to internal storage of a string in set
192   const char *getStringData(StringRef Str) {
193     auto Result = StringValueSet.find(Str);
194     return (Result == StringValueSet.end()) ? nullptr : Result->first().data();
195   }
196   // Insert a string to StringTable
197   const char *insertString(StringRef Str) {
198     auto Result = StringValueSet.insert(Str);
199     return Result.first->first().data();
200   }
201 };
202
203 struct InstrProfValueSiteRecord {
204   /// Value profiling data pairs at a given value site.
205   std::list<InstrProfValueData> ValueData;
206
207   InstrProfValueSiteRecord() { ValueData.clear(); }
208   template <class InputIterator>
209   InstrProfValueSiteRecord(InputIterator F, InputIterator L)
210       : ValueData(F, L) {}
211
212   /// Sort ValueData ascending by Value
213   void sortByTargetValues() {
214     ValueData.sort(
215         [](const InstrProfValueData &left, const InstrProfValueData &right) {
216           return left.Value < right.Value;
217         });
218   }
219
220   /// Merge data from another InstrProfValueSiteRecord
221   void mergeValueData(InstrProfValueSiteRecord &Input) {
222     this->sortByTargetValues();
223     Input.sortByTargetValues();
224     auto I = ValueData.begin();
225     auto IE = ValueData.end();
226     for (auto J = Input.ValueData.begin(), JE = Input.ValueData.end(); J != JE;
227          ++J) {
228       while (I != IE && I->Value < J->Value)
229         ++I;
230       if (I != IE && I->Value == J->Value) {
231         I->Count = SaturatingAdd(I->Count, J->Count);
232         ++I;
233         continue;
234       }
235       ValueData.insert(I, *J);
236     }
237   }
238 };
239
240 /// Profiling information for a single function.
241 struct InstrProfRecord {
242   InstrProfRecord() {}
243   InstrProfRecord(StringRef Name, uint64_t Hash, std::vector<uint64_t> Counts)
244       : Name(Name), Hash(Hash), Counts(std::move(Counts)) {}
245   StringRef Name;
246   uint64_t Hash;
247   std::vector<uint64_t> Counts;
248
249   typedef std::vector<std::pair<uint64_t, const char *>> ValueMapType;
250
251   /// Return the number of value profile kinds with non-zero number
252   /// of profile sites.
253   inline uint32_t getNumValueKinds() const;
254   /// Return the number of instrumented sites for ValueKind.
255   inline uint32_t getNumValueSites(uint32_t ValueKind) const;
256   /// Return the total number of ValueData for ValueKind.
257   inline uint32_t getNumValueData(uint32_t ValueKind) const;
258   /// Return the number of value data collected for ValueKind at profiling
259   /// site: Site.
260   inline uint32_t getNumValueDataForSite(uint32_t ValueKind,
261                                          uint32_t Site) const;
262   /// Return the array of profiled values at \p Site.
263   inline std::unique_ptr<InstrProfValueData[]>
264   getValueForSite(uint32_t ValueKind, uint32_t Site,
265                   uint64_t (*ValueMapper)(uint32_t, uint64_t) = 0) const;
266   inline void
267   getValueForSite(InstrProfValueData Dest[], uint32_t ValueKind, uint32_t Site,
268                   uint64_t (*ValueMapper)(uint32_t, uint64_t) = 0) const;
269   /// Reserve space for NumValueSites sites.
270   inline void reserveSites(uint32_t ValueKind, uint32_t NumValueSites);
271   /// Add ValueData for ValueKind at value Site.
272   inline void addValueData(uint32_t ValueKind, uint32_t Site,
273                            InstrProfValueData *VData, uint32_t N,
274                            ValueMapType *HashKeys);
275
276   /// Merge the counts in \p Other into this one.
277   inline instrprof_error merge(InstrProfRecord &Other);
278
279   /// Used by InstrProfWriter: update the value strings to commoned strings in
280   /// the writer instance.
281   inline void updateStrings(InstrProfStringTable *StrTab);
282
283   /// Clear value data entries
284   inline void clearValueData() {
285     for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind)
286       getValueSitesForKind(Kind).clear();
287   }
288
289 private:
290   std::vector<InstrProfValueSiteRecord> IndirectCallSites;
291   const std::vector<InstrProfValueSiteRecord> &
292   getValueSitesForKind(uint32_t ValueKind) const {
293     switch (ValueKind) {
294     case IPVK_IndirectCallTarget:
295       return IndirectCallSites;
296     default:
297       llvm_unreachable("Unknown value kind!");
298     }
299     return IndirectCallSites;
300   }
301
302   std::vector<InstrProfValueSiteRecord> &
303   getValueSitesForKind(uint32_t ValueKind) {
304     return const_cast<std::vector<InstrProfValueSiteRecord> &>(
305         const_cast<const InstrProfRecord *>(this)
306             ->getValueSitesForKind(ValueKind));
307   }
308
309   // Map indirect call target name hash to name string.
310   uint64_t remapValue(uint64_t Value, uint32_t ValueKind,
311                       ValueMapType *HashKeys) {
312     if (!HashKeys)
313       return Value;
314     switch (ValueKind) {
315     case IPVK_IndirectCallTarget: {
316       auto Result =
317           std::lower_bound(HashKeys->begin(), HashKeys->end(), Value,
318                            [](const std::pair<uint64_t, const char *> &LHS,
319                               uint64_t RHS) { return LHS.first < RHS; });
320       if (Result != HashKeys->end())
321         Value = (uint64_t)Result->second;
322       break;
323     }
324     }
325     return Value;
326   }
327
328   // Merge Value Profile data from Src record to this record for ValueKind.
329   instrprof_error mergeValueProfData(uint32_t ValueKind, InstrProfRecord &Src) {
330     uint32_t ThisNumValueSites = getNumValueSites(ValueKind);
331     uint32_t OtherNumValueSites = Src.getNumValueSites(ValueKind);
332     if (ThisNumValueSites != OtherNumValueSites)
333       return instrprof_error::value_site_count_mismatch;
334     std::vector<InstrProfValueSiteRecord> &ThisSiteRecords =
335         getValueSitesForKind(ValueKind);
336     std::vector<InstrProfValueSiteRecord> &OtherSiteRecords =
337         Src.getValueSitesForKind(ValueKind);
338     for (uint32_t I = 0; I < ThisNumValueSites; I++)
339       ThisSiteRecords[I].mergeValueData(OtherSiteRecords[I]);
340     return instrprof_error::success;
341   }
342 };
343
344 uint32_t InstrProfRecord::getNumValueKinds() const {
345   uint32_t NumValueKinds = 0;
346   for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind)
347     NumValueKinds += !(getValueSitesForKind(Kind).empty());
348   return NumValueKinds;
349 }
350
351 uint32_t InstrProfRecord::getNumValueData(uint32_t ValueKind) const {
352   uint32_t N = 0;
353   const std::vector<InstrProfValueSiteRecord> &SiteRecords =
354       getValueSitesForKind(ValueKind);
355   for (auto &SR : SiteRecords) {
356     N += SR.ValueData.size();
357   }
358   return N;
359 }
360
361 uint32_t InstrProfRecord::getNumValueSites(uint32_t ValueKind) const {
362   return getValueSitesForKind(ValueKind).size();
363 }
364
365 uint32_t InstrProfRecord::getNumValueDataForSite(uint32_t ValueKind,
366                                                  uint32_t Site) const {
367   return getValueSitesForKind(ValueKind)[Site].ValueData.size();
368 }
369
370 std::unique_ptr<InstrProfValueData[]> InstrProfRecord::getValueForSite(
371     uint32_t ValueKind, uint32_t Site,
372     uint64_t (*ValueMapper)(uint32_t, uint64_t)) const {
373   uint32_t N = getNumValueDataForSite(ValueKind, Site);
374   if (N == 0)
375     return std::unique_ptr<InstrProfValueData[]>(nullptr);
376
377   auto VD = llvm::make_unique<InstrProfValueData[]>(N);
378   getValueForSite(VD.get(), ValueKind, Site, ValueMapper);
379
380   return VD;
381 }
382
383 void InstrProfRecord::getValueForSite(InstrProfValueData Dest[],
384                                       uint32_t ValueKind, uint32_t Site,
385                                       uint64_t (*ValueMapper)(uint32_t,
386                                                               uint64_t)) const {
387   uint32_t I = 0;
388   for (auto V : getValueSitesForKind(ValueKind)[Site].ValueData) {
389     Dest[I].Value = ValueMapper ? ValueMapper(ValueKind, V.Value) : V.Value;
390     Dest[I].Count = V.Count;
391     I++;
392   }
393 }
394
395 void InstrProfRecord::addValueData(uint32_t ValueKind, uint32_t Site,
396                                    InstrProfValueData *VData, uint32_t N,
397                                    ValueMapType *HashKeys) {
398   for (uint32_t I = 0; I < N; I++) {
399     VData[I].Value = remapValue(VData[I].Value, ValueKind, HashKeys);
400   }
401   std::vector<InstrProfValueSiteRecord> &ValueSites =
402       getValueSitesForKind(ValueKind);
403   if (N == 0)
404     ValueSites.push_back(InstrProfValueSiteRecord());
405   else
406     ValueSites.emplace_back(VData, VData + N);
407 }
408
409 void InstrProfRecord::reserveSites(uint32_t ValueKind, uint32_t NumValueSites) {
410   std::vector<InstrProfValueSiteRecord> &ValueSites =
411       getValueSitesForKind(ValueKind);
412   ValueSites.reserve(NumValueSites);
413 }
414
415 void InstrProfRecord::updateStrings(InstrProfStringTable *StrTab) {
416   if (!StrTab)
417     return;
418
419   Name = StrTab->insertString(Name);
420   for (auto &VSite : IndirectCallSites)
421     for (auto &VData : VSite.ValueData)
422       VData.Value = (uint64_t)StrTab->insertString((const char *)VData.Value);
423 }
424
425 instrprof_error InstrProfRecord::merge(InstrProfRecord &Other) {
426   // If the number of counters doesn't match we either have bad data
427   // or a hash collision.
428   if (Counts.size() != Other.Counts.size())
429     return instrprof_error::count_mismatch;
430
431   for (size_t I = 0, E = Other.Counts.size(); I < E; ++I) {
432     if (Counts[I] + Other.Counts[I] < Counts[I])
433       return instrprof_error::counter_overflow;
434     Counts[I] += Other.Counts[I];
435   }
436
437   for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind) {
438     instrprof_error result = mergeValueProfData(Kind, Other);
439     if (result != instrprof_error::success)
440       return result;
441   }
442
443   return instrprof_error::success;
444 }
445
446 inline support::endianness getHostEndianness() {
447   return sys::IsLittleEndianHost ? support::little : support::big;
448 }
449
450 /// Return the \c ValueProfRecord header size including the padding bytes.
451 uint32_t getValueProfRecordHeaderSize(uint32_t NumValueSites);
452 /// Return the total size of the value profile record including the
453 /// header and the value data.
454 uint32_t getValueProfRecordSize(uint32_t NumValueSites, uint32_t NumValueData);
455
456 /// This is the header of the data structure that defines the on-disk
457 /// layout of the value profile data of a particular kind for one function.
458 typedef struct ValueProfRecord {
459   // The kind of the value profile record.
460   uint32_t Kind;
461   // The number of value profile sites. It is guaranteed to be non-zero;
462   // otherwise the record for this kind won't be emitted.
463   uint32_t NumValueSites;
464   // The first element of the array that stores the number of profiled
465   // values for each value site. The size of the array is NumValueSites.
466   // Since NumValueSites is greater than zero, there is at least one
467   // element in the array.
468   uint8_t SiteCountArray[1];
469
470   // The fake declaration is for documentation purpose only.
471   // Align the start of next field to be on 8 byte boundaries.
472   // uint8_t Padding[X];
473
474   // The array of value profile data. The size of the array is the sum
475   // of all elements in SiteCountArray[].
476   // InstrProfValueData ValueData[];
477
478   /// Return the total size of the value profile record including the
479   /// header and the value data.
480   uint32_t getSize() const {
481     return getValueProfRecordSize(NumValueSites, getNumValueData());
482   }
483   /// Use this method to advance to the next \c ValueProfRecord.
484   ValueProfRecord *getNext();
485   /// Return the pointer to the first value profile data.
486   InstrProfValueData *getValueData();
487   /// Return the number of value sites.
488   uint32_t getNumValueSites() const { return NumValueSites; }
489   /// Return the number of value data.
490   uint32_t getNumValueData() const;
491   /// Read data from this record and save it to Record.
492   void deserializeTo(InstrProfRecord &Record,
493                      InstrProfRecord::ValueMapType *VMap);
494   /// Extract data from \c Record and serialize into this instance.
495   void serializeFrom(const InstrProfRecord &Record, uint32_t ValueKind,
496                      uint32_t NumValueSites);
497   /// In-place byte swap:
498   /// Do byte swap for this instance. \c Old is the original order before
499   /// the swap, and \c New is the New byte order.
500   void swapBytes(support::endianness Old, support::endianness New);
501 } ValueProfRecord;
502
503 /// Per-function header/control data structure for value profiling
504 /// data in indexed format.
505 typedef struct ValueProfData {
506   // Total size in bytes including this field. It must be a multiple
507   // of sizeof(uint64_t).
508   uint32_t TotalSize;
509   // The number of value profile kinds that has value profile data.
510   // In this implementation, a value profile kind is considered to
511   // have profile data if the number of value profile sites for the
512   // kind is not zero. More aggressively, the implementation can
513   // choose to check the actual data value: if none of the value sites
514   // has any profiled values, the kind can be skipped.
515   uint32_t NumValueKinds;
516
517   // Following are a sequence of variable length records. The prefix/header
518   // of each record is defined by ValueProfRecord type. The number of
519   // records is NumValueKinds.
520   // ValueProfRecord Record_1;
521   // ValueProfRecord Record_N;
522
523   /// Return the total size in bytes of the on-disk value profile data
524   /// given the data stored in Record.
525   static uint32_t getSize(const InstrProfRecord &Record);
526   /// Return a pointer to \c ValueProfData instance ready to be streamed.
527   static std::unique_ptr<ValueProfData>
528   serializeFrom(const InstrProfRecord &Record);
529   /// Return a pointer to \c ValueProfileData instance ready to be read.
530   /// All data in the instance are properly byte swapped. The input
531   /// data is assumed to be in little endian order.
532   static ErrorOr<std::unique_ptr<ValueProfData>>
533   getValueProfData(const unsigned char *D, const unsigned char *const BufferEnd,
534                    support::endianness SrcDataEndianness);
535   /// Swap byte order from \c Endianness order to host byte order.
536   void swapBytesToHost(support::endianness Endianness);
537   /// Swap byte order from host byte order to \c Endianness order.
538   void swapBytesFromHost(support::endianness Endianness);
539   /// Return the total size of \c ValueProfileData.
540   uint32_t getSize() const { return TotalSize; }
541   /// Read data from this data and save it to \c Record.
542   void deserializeTo(InstrProfRecord &Record,
543                      InstrProfRecord::ValueMapType *VMap);
544   /// Return the first \c ValueProfRecord instance.
545   ValueProfRecord *getFirstValueProfRecord();
546 } ValueProfData;
547
548 /* The closure is designed to abstact away two types of value profile data:
549  *  - InstrProfRecord which is the primary data structure used to
550  *    represent profile data in host tools (reader, writer, and profile-use)
551  * - value profile runtime data structure suitable to be used by C
552  *    runtime library.
553  *
554  * Both sources of data need to serialize to disk/memory-buffer in common
555  * format: ValueProfData. The abstraction allows compiler-rt's raw profiler
556  * writer to share * the same code with indexed profile writer.
557  *
558  * For documentation of the member methods below, refer to corresponding methods
559  * in class InstrProfRecord.
560  */
561 typedef struct ValueProfRecordClosure {
562   void *Record;
563   uint32_t (*GetNumValueKinds)(void *Record);
564   uint32_t (*GetNumValueSites)(void *Record, uint32_t VKind);
565   uint32_t (*GetNumValueData)(void *Record, uint32_t VKind);
566   uint32_t (*GetNumValueDataForSite)(void *R, uint32_t VK, uint32_t S);
567
568   /* After extracting the value profile data from the value profile record,
569    * this method is used to map the in-memory value to on-disk value. If
570    * the method is null, value will be written out untranslated.
571    */
572   uint64_t (*RemapValueData)(uint32_t, uint64_t Value);
573   void (*GetValueForSite)(InstrProfValueData *Dst, void *R, uint32_t K,
574                           uint32_t S, uint64_t (*Mapper)(uint32_t, uint64_t));
575
576   ValueProfData *(*AllocateValueProfData)(size_t TotalSizeInBytes);
577 } ValueProfRecordClosure;
578
579 inline uint32_t getValueProfRecordHeaderSize(uint32_t NumValueSites) {
580   uint32_t Size = offsetof(ValueProfRecord, SiteCountArray) +
581                   sizeof(uint8_t) * NumValueSites;
582   // Round the size to multiple of 8 bytes.
583   Size = (Size + 7) & ~7;
584   return Size;
585 }
586
587 inline uint32_t getValueProfRecordSize(uint32_t NumValueSites,
588                                        uint32_t NumValueData) {
589   return getValueProfRecordHeaderSize(NumValueSites) +
590          sizeof(InstrProfValueData) * NumValueData;
591 }
592
593 namespace IndexedInstrProf {
594
595 enum class HashT : uint32_t {
596   MD5,
597
598   Last = MD5
599 };
600
601 static inline uint64_t MD5Hash(StringRef Str) {
602   MD5 Hash;
603   Hash.update(Str);
604   llvm::MD5::MD5Result Result;
605   Hash.final(Result);
606   // Return the least significant 8 bytes. Our MD5 implementation returns the
607   // result in little endian, so we may need to swap bytes.
608   using namespace llvm::support;
609   return endian::read<uint64_t, little, unaligned>(Result);
610 }
611
612 static inline uint64_t ComputeHash(HashT Type, StringRef K) {
613   switch (Type) {
614   case HashT::MD5:
615     return IndexedInstrProf::MD5Hash(K);
616   }
617   llvm_unreachable("Unhandled hash type");
618 }
619
620 const uint64_t Magic = 0x8169666f72706cff; // "\xfflprofi\x81"
621 const uint64_t Version = 3;
622 const HashT HashType = HashT::MD5;
623
624 // This structure defines the file header of the LLVM profile
625 // data file in indexed-format.
626 struct Header {
627   uint64_t Magic;
628   uint64_t Version;
629   uint64_t MaxFunctionCount;
630   uint64_t HashType;
631   uint64_t HashOffset;
632 };
633
634 } // end namespace IndexedInstrProf
635
636 namespace RawInstrProf {
637
638 const uint64_t Version = INSTR_PROF_RAW_VERSION;
639
640 template <class IntPtrT> inline uint64_t getMagic();
641 template <> inline uint64_t getMagic<uint64_t>() {
642   return INSTR_PROF_RAW_MAGIC_64;
643 }
644
645 template <> inline uint64_t getMagic<uint32_t>() {
646   return INSTR_PROF_RAW_MAGIC_32;
647 }
648
649 // Per-function profile data header/control structure.
650 // The definition should match the structure defined in
651 // compiler-rt/lib/profile/InstrProfiling.h.
652 // It should also match the synthesized type in
653 // Transforms/Instrumentation/InstrProfiling.cpp:getOrCreateRegionCounters.
654 template <class IntPtrT> struct LLVM_ALIGNAS(8) ProfileData {
655   #define INSTR_PROF_DATA(Type, LLVMType, Name, Init) Type Name;
656   #include "llvm/ProfileData/InstrProfData.inc"
657 };
658
659 // File header structure of the LLVM profile data in raw format.
660 // The definition should match the header referenced in
661 // compiler-rt/lib/profile/InstrProfilingFile.c  and
662 // InstrProfilingBuffer.c.
663 struct Header {
664 #define INSTR_PROF_RAW_HEADER(Type, Name, Init) const Type Name;
665 #include "llvm/ProfileData/InstrProfData.inc"
666 };
667
668 }  // end namespace RawInstrProf
669
670 namespace coverage {
671
672 // Profile coverage map has the following layout:
673 // [CoverageMapFileHeader]
674 // [ArrayStart]
675 //  [CovMapFunctionRecord]
676 //  [CovMapFunctionRecord]
677 //  ...
678 // [ArrayEnd]
679 // [Encoded Region Mapping Data]
680 LLVM_PACKED_START
681 template <class IntPtrT> struct CovMapFunctionRecord {
682   #define COVMAP_FUNC_RECORD(Type, LLVMType, Name, Init) Type Name;
683   #include "llvm/ProfileData/InstrProfData.inc"
684 };
685 LLVM_PACKED_END
686
687 }
688
689 } // end namespace llvm
690
691 namespace std {
692 template <>
693 struct is_error_code_enum<llvm::instrprof_error> : std::true_type {};
694 }
695
696 #endif // LLVM_PROFILEDATA_INSTRPROF_H_