Revert "[llvm-profdata] Add SaturatingAdd/SaturatingMultiply Helper Functions"
[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 inline support::endianness getHostEndianness() {
405   return sys::IsLittleEndianHost ? support::little : support::big;
406 }
407
408 /// This is the header of the data structure that defines the on-disk
409 /// layout of the value profile data of a particular kind for one function.
410 struct ValueProfRecord {
411   // The kind of the value profile record.
412   uint32_t Kind;
413   // The number of value profile sites. It is guaranteed to be non-zero;
414   // otherwise the record for this kind won't be emitted.
415   uint32_t NumValueSites;
416   // The first element of the array that stores the number of profiled
417   // values for each value site. The size of the array is NumValueSites.
418   // Since NumValueSites is greater than zero, there is at least one
419   // element in the array.
420   uint8_t SiteCountArray[1];
421
422   // The fake declaration is for documentation purpose only.
423   // Align the start of next field to be on 8 byte boundaries.
424   // uint8_t Padding[X];
425
426   // The array of value profile data. The size of the array is the sum
427   // of all elements in SiteCountArray[].
428   // InstrProfValueData ValueData[];
429
430   /// Return the \c ValueProfRecord header size including the padding bytes.
431   static uint32_t getHeaderSize(uint32_t NumValueSites);
432   /// Return the total size of the value profile record including the
433   /// header and the value data.
434   static uint32_t getSize(uint32_t NumValueSites, uint32_t NumValueData);
435   /// Return the total size of the value profile record including the
436   /// header and the value data.
437   uint32_t getSize() const { return getSize(NumValueSites, getNumValueData()); }
438   /// Use this method to advance to the next \c ValueProfRecord.
439   ValueProfRecord *getNext();
440   /// Return the pointer to the first value profile data.
441   InstrProfValueData *getValueData();
442   /// Return the number of value sites.
443   uint32_t getNumValueSites() const { return NumValueSites; }
444   /// Return the number of value data.
445   uint32_t getNumValueData() const;
446   /// Read data from this record and save it to Record.
447   void deserializeTo(InstrProfRecord &Record,
448                      InstrProfRecord::ValueMapType *VMap);
449   /// Extract data from \c Record and serialize into this instance.
450   void serializeFrom(const InstrProfRecord &Record, uint32_t ValueKind,
451                      uint32_t NumValueSites);
452   /// In-place byte swap:
453   /// Do byte swap for this instance. \c Old is the original order before
454   /// the swap, and \c New is the New byte order.
455   void swapBytes(support::endianness Old, support::endianness New);
456 };
457
458 /// Per-function header/control data structure for value profiling
459 /// data in indexed format.
460 struct ValueProfData {
461   // Total size in bytes including this field. It must be a multiple
462   // of sizeof(uint64_t).
463   uint32_t TotalSize;
464   // The number of value profile kinds that has value profile data.
465   // In this implementation, a value profile kind is considered to
466   // have profile data if the number of value profile sites for the
467   // kind is not zero. More aggressively, the implemnetation can
468   // choose to check the actual data value: if none of the value sites
469   // has any profiled values, the kind can be skipped.
470   uint32_t NumValueKinds;
471
472   // Following are a sequence of variable length records. The prefix/header
473   // of each record is defined by ValueProfRecord type. The number of
474   // records is NumValueKinds.
475   // ValueProfRecord Record_1;
476   // ValueProfRecord Record_N;
477
478   /// Return the total size in bytes of the on-disk value profile data
479   /// given the data stored in Record.
480   static uint32_t getSize(const InstrProfRecord &Record);
481   /// Return a pointer to \c ValueProfData instance ready to be streamed.
482   static std::unique_ptr<ValueProfData>
483   serializeFrom(const InstrProfRecord &Record);
484   /// Return a pointer to \c ValueProfileData instance ready to be read.
485   /// All data in the instance are properly byte swapped. The input
486   /// data is assumed to be in little endian order.
487   static ErrorOr<std::unique_ptr<ValueProfData>>
488   getValueProfData(const unsigned char *D, const unsigned char *const BufferEnd,
489                    support::endianness SrcDataEndianness);
490   /// Swap byte order from \c Endianness order to host byte order.
491   void swapBytesToHost(support::endianness Endianness);
492   /// Swap byte order from host byte order to \c Endianness order.
493   void swapBytesFromHost(support::endianness Endianness);
494   /// Return the total size of \c ValueProfileData.
495   uint32_t getSize() const { return TotalSize; }
496   /// Read data from this data and save it to \c Record.
497   void deserializeTo(InstrProfRecord &Record,
498                      InstrProfRecord::ValueMapType *VMap);
499   /// Return the first \c ValueProfRecord instance.
500   ValueProfRecord *getFirstValueProfRecord();
501 };
502
503 namespace IndexedInstrProf {
504
505 enum class HashT : uint32_t {
506   MD5,
507
508   Last = MD5
509 };
510
511 static inline uint64_t MD5Hash(StringRef Str) {
512   MD5 Hash;
513   Hash.update(Str);
514   llvm::MD5::MD5Result Result;
515   Hash.final(Result);
516   // Return the least significant 8 bytes. Our MD5 implementation returns the
517   // result in little endian, so we may need to swap bytes.
518   using namespace llvm::support;
519   return endian::read<uint64_t, little, unaligned>(Result);
520 }
521
522 static inline uint64_t ComputeHash(HashT Type, StringRef K) {
523   switch (Type) {
524   case HashT::MD5:
525     return IndexedInstrProf::MD5Hash(K);
526   }
527   llvm_unreachable("Unhandled hash type");
528 }
529
530 const uint64_t Magic = 0x8169666f72706cff; // "\xfflprofi\x81"
531 const uint64_t Version = 3;
532 const HashT HashType = HashT::MD5;
533
534 // This structure defines the file header of the LLVM profile
535 // data file in indexed-format.
536 struct Header {
537   uint64_t Magic;
538   uint64_t Version;
539   uint64_t MaxFunctionCount;
540   uint64_t HashType;
541   uint64_t HashOffset;
542 };
543
544 } // end namespace IndexedInstrProf
545
546 namespace RawInstrProf {
547
548 const uint64_t Version = 1;
549
550 // Magic number to detect file format and endianness.
551 // Use 255 at one end, since no UTF-8 file can use that character.  Avoid 0,
552 // so that utilities, like strings, don't grab it as a string.  129 is also
553 // invalid UTF-8, and high enough to be interesting.
554 // Use "lprofr" in the centre to stand for "LLVM Profile Raw", or "lprofR"
555 // for 32-bit platforms.
556 // The magic and version need to be kept in sync with
557 // projects/compiler-rt/lib/profile/InstrProfiling.c
558
559 template <class IntPtrT>
560 inline uint64_t getMagic();
561 template <>
562 inline uint64_t getMagic<uint64_t>() {
563   return uint64_t(255) << 56 | uint64_t('l') << 48 | uint64_t('p') << 40 |
564          uint64_t('r') << 32 | uint64_t('o') << 24 | uint64_t('f') << 16 |
565          uint64_t('r') << 8 | uint64_t(129);
566 }
567
568 template <>
569 inline uint64_t getMagic<uint32_t>() {
570   return uint64_t(255) << 56 | uint64_t('l') << 48 | uint64_t('p') << 40 |
571          uint64_t('r') << 32 | uint64_t('o') << 24 | uint64_t('f') << 16 |
572          uint64_t('R') << 8 | uint64_t(129);
573 }
574
575 // Per-function profile data header/control structure.
576 // The definition should match the structure defined in
577 // compiler-rt/lib/profile/InstrProfiling.h.
578 // It should also match the synthesized type in
579 // Transforms/Instrumentation/InstrProfiling.cpp:getOrCreateRegionCounters.
580 template <class IntPtrT> struct ProfileData {
581   #define INSTR_PROF_DATA(Type, LLVMType, Name, Init) Type Name;
582   #include "llvm/ProfileData/InstrProfData.inc"
583 };
584
585 // File header structure of the LLVM profile data in raw format.
586 // The definition should match the header referenced in
587 // compiler-rt/lib/profile/InstrProfilingFile.c  and
588 // InstrProfilingBuffer.c.
589 struct Header {
590   const uint64_t Magic;
591   const uint64_t Version;
592   const uint64_t DataSize;
593   const uint64_t CountersSize;
594   const uint64_t NamesSize;
595   const uint64_t CountersDelta;
596   const uint64_t NamesDelta;
597 };
598
599 }  // end namespace RawInstrProf
600
601 namespace coverage {
602
603 // Profile coverage map has the following layout:
604 // [CoverageMapFileHeader]
605 // [ArrayStart]
606 //  [CovMapFunctionRecord]
607 //  [CovMapFunctionRecord]
608 //  ...
609 // [ArrayEnd]
610 // [Encoded Region Mapping Data]
611 LLVM_PACKED_START
612 template <class IntPtrT> struct CovMapFunctionRecord {
613   #define COVMAP_FUNC_RECORD(Type, LLVMType, Name, Init) Type Name;
614   #include "llvm/ProfileData/InstrProfData.inc"
615 };
616 LLVM_PACKED_END
617
618 }
619
620 } // end namespace llvm
621
622 namespace std {
623 template <>
624 struct is_error_code_enum<llvm::instrprof_error> : std::true_type {};
625 }
626
627 #endif // LLVM_PROFILEDATA_INSTRPROF_H_