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