Minor refactor to make VP writing more efficient
[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) const;
265   inline void getValueForSite(InstrProfValueData Dest[], uint32_t ValueKind,
266                               uint32_t Site) const;
267   /// Reserve space for NumValueSites sites.
268   inline void reserveSites(uint32_t ValueKind, uint32_t NumValueSites);
269   /// Add ValueData for ValueKind at value Site.
270   inline void addValueData(uint32_t ValueKind, uint32_t Site,
271                            InstrProfValueData *VData, uint32_t N,
272                            ValueMapType *HashKeys);
273
274   /// Merge the counts in \p Other into this one.
275   inline instrprof_error merge(InstrProfRecord &Other);
276
277   /// Used by InstrProfWriter: update the value strings to commoned strings in
278   /// the writer instance.
279   inline void updateStrings(InstrProfStringTable *StrTab);
280
281   /// Clear value data entries
282   inline void clearValueData() {
283     for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind)
284       getValueSitesForKind(Kind).clear();
285   }
286
287 private:
288   std::vector<InstrProfValueSiteRecord> IndirectCallSites;
289   const std::vector<InstrProfValueSiteRecord> &
290   getValueSitesForKind(uint32_t ValueKind) const {
291     switch (ValueKind) {
292     case IPVK_IndirectCallTarget:
293       return IndirectCallSites;
294     default:
295       llvm_unreachable("Unknown value kind!");
296     }
297     return IndirectCallSites;
298   }
299
300   std::vector<InstrProfValueSiteRecord> &
301   getValueSitesForKind(uint32_t ValueKind) {
302     return const_cast<std::vector<InstrProfValueSiteRecord> &>(
303         const_cast<const InstrProfRecord *>(this)
304             ->getValueSitesForKind(ValueKind));
305   }
306
307   // Map indirect call target name hash to name string.
308   uint64_t remapValue(uint64_t Value, uint32_t ValueKind,
309                       ValueMapType *HashKeys) {
310     if (!HashKeys)
311       return Value;
312     switch (ValueKind) {
313     case IPVK_IndirectCallTarget: {
314       auto Result =
315           std::lower_bound(HashKeys->begin(), HashKeys->end(), Value,
316                            [](const std::pair<uint64_t, const char *> &LHS,
317                               uint64_t RHS) { return LHS.first < RHS; });
318       if (Result != HashKeys->end())
319         Value = (uint64_t)Result->second;
320       break;
321     }
322     }
323     return Value;
324   }
325
326   // Merge Value Profile data from Src record to this record for ValueKind.
327   instrprof_error mergeValueProfData(uint32_t ValueKind, InstrProfRecord &Src) {
328     uint32_t ThisNumValueSites = getNumValueSites(ValueKind);
329     uint32_t OtherNumValueSites = Src.getNumValueSites(ValueKind);
330     if (ThisNumValueSites != OtherNumValueSites)
331       return instrprof_error::value_site_count_mismatch;
332     std::vector<InstrProfValueSiteRecord> &ThisSiteRecords =
333         getValueSitesForKind(ValueKind);
334     std::vector<InstrProfValueSiteRecord> &OtherSiteRecords =
335         Src.getValueSitesForKind(ValueKind);
336     for (uint32_t I = 0; I < ThisNumValueSites; I++)
337       ThisSiteRecords[I].mergeValueData(OtherSiteRecords[I]);
338     return instrprof_error::success;
339   }
340 };
341
342 uint32_t InstrProfRecord::getNumValueKinds() const {
343   uint32_t NumValueKinds = 0;
344   for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind)
345     NumValueKinds += !(getValueSitesForKind(Kind).empty());
346   return NumValueKinds;
347 }
348
349 uint32_t InstrProfRecord::getNumValueData(uint32_t ValueKind) const {
350   uint32_t N = 0;
351   const std::vector<InstrProfValueSiteRecord> &SiteRecords =
352       getValueSitesForKind(ValueKind);
353   for (auto &SR : SiteRecords) {
354     N += SR.ValueData.size();
355   }
356   return N;
357 }
358
359 uint32_t InstrProfRecord::getNumValueSites(uint32_t ValueKind) const {
360   return getValueSitesForKind(ValueKind).size();
361 }
362
363 uint32_t InstrProfRecord::getNumValueDataForSite(uint32_t ValueKind,
364                                                  uint32_t Site) const {
365   return getValueSitesForKind(ValueKind)[Site].ValueData.size();
366 }
367
368 std::unique_ptr<InstrProfValueData[]>
369 InstrProfRecord::getValueForSite(uint32_t ValueKind, uint32_t Site) const {
370   uint32_t N = getNumValueDataForSite(ValueKind, Site);
371   if (N == 0)
372     return std::unique_ptr<InstrProfValueData[]>(nullptr);
373
374   auto VD = llvm::make_unique<InstrProfValueData[]>(N);
375   getValueForSite(VD.get(), ValueKind, Site);
376
377   return VD;
378 }
379 void InstrProfRecord::getValueForSite(InstrProfValueData Dest[],
380                                       uint32_t ValueKind, uint32_t Site) const {
381   uint32_t I = 0;
382   for (auto V : getValueSitesForKind(ValueKind)[Site].ValueData) {
383     Dest[I] = V;
384     I++;
385   }
386 }
387
388 void InstrProfRecord::addValueData(uint32_t ValueKind, uint32_t Site,
389                                    InstrProfValueData *VData, uint32_t N,
390                                    ValueMapType *HashKeys) {
391   for (uint32_t I = 0; I < N; I++) {
392     VData[I].Value = remapValue(VData[I].Value, ValueKind, HashKeys);
393   }
394   std::vector<InstrProfValueSiteRecord> &ValueSites =
395       getValueSitesForKind(ValueKind);
396   if (N == 0)
397     ValueSites.push_back(InstrProfValueSiteRecord());
398   else
399     ValueSites.emplace_back(VData, VData + N);
400 }
401
402 void InstrProfRecord::reserveSites(uint32_t ValueKind, uint32_t NumValueSites) {
403   std::vector<InstrProfValueSiteRecord> &ValueSites =
404       getValueSitesForKind(ValueKind);
405   ValueSites.reserve(NumValueSites);
406 }
407
408 void InstrProfRecord::updateStrings(InstrProfStringTable *StrTab) {
409   if (!StrTab)
410     return;
411
412   Name = StrTab->insertString(Name);
413   for (auto &VSite : IndirectCallSites)
414     for (auto &VData : VSite.ValueData)
415       VData.Value = (uint64_t)StrTab->insertString((const char *)VData.Value);
416 }
417
418 instrprof_error InstrProfRecord::merge(InstrProfRecord &Other) {
419   // If the number of counters doesn't match we either have bad data
420   // or a hash collision.
421   if (Counts.size() != Other.Counts.size())
422     return instrprof_error::count_mismatch;
423
424   for (size_t I = 0, E = Other.Counts.size(); I < E; ++I) {
425     if (Counts[I] + Other.Counts[I] < Counts[I])
426       return instrprof_error::counter_overflow;
427     Counts[I] += Other.Counts[I];
428   }
429
430   for (uint32_t Kind = IPVK_First; Kind <= IPVK_Last; ++Kind) {
431     instrprof_error result = mergeValueProfData(Kind, Other);
432     if (result != instrprof_error::success)
433       return result;
434   }
435
436   return instrprof_error::success;
437 }
438
439 inline support::endianness getHostEndianness() {
440   return sys::IsLittleEndianHost ? support::little : support::big;
441 }
442
443 /// This is the header of the data structure that defines the on-disk
444 /// layout of the value profile data of a particular kind for one function.
445 struct ValueProfRecord {
446   // The kind of the value profile record.
447   uint32_t Kind;
448   // The number of value profile sites. It is guaranteed to be non-zero;
449   // otherwise the record for this kind won't be emitted.
450   uint32_t NumValueSites;
451   // The first element of the array that stores the number of profiled
452   // values for each value site. The size of the array is NumValueSites.
453   // Since NumValueSites is greater than zero, there is at least one
454   // element in the array.
455   uint8_t SiteCountArray[1];
456
457   // The fake declaration is for documentation purpose only.
458   // Align the start of next field to be on 8 byte boundaries.
459   // uint8_t Padding[X];
460
461   // The array of value profile data. The size of the array is the sum
462   // of all elements in SiteCountArray[].
463   // InstrProfValueData ValueData[];
464
465   /// Return the \c ValueProfRecord header size including the padding bytes.
466   static uint32_t getHeaderSize(uint32_t NumValueSites);
467   /// Return the total size of the value profile record including the
468   /// header and the value data.
469   static uint32_t getSize(uint32_t NumValueSites, uint32_t NumValueData);
470   /// Return the total size of the value profile record including the
471   /// header and the value data.
472   uint32_t getSize() const { return getSize(NumValueSites, getNumValueData()); }
473   /// Use this method to advance to the next \c ValueProfRecord.
474   ValueProfRecord *getNext();
475   /// Return the pointer to the first value profile data.
476   InstrProfValueData *getValueData();
477   /// Return the number of value sites.
478   uint32_t getNumValueSites() const { return NumValueSites; }
479   /// Return the number of value data.
480   uint32_t getNumValueData() const;
481   /// Read data from this record and save it to Record.
482   void deserializeTo(InstrProfRecord &Record,
483                      InstrProfRecord::ValueMapType *VMap);
484   /// Extract data from \c Record and serialize into this instance.
485   void serializeFrom(const InstrProfRecord &Record, uint32_t ValueKind,
486                      uint32_t NumValueSites);
487   /// In-place byte swap:
488   /// Do byte swap for this instance. \c Old is the original order before
489   /// the swap, and \c New is the New byte order.
490   void swapBytes(support::endianness Old, support::endianness New);
491 };
492
493 /// Per-function header/control data structure for value profiling
494 /// data in indexed format.
495 struct ValueProfData {
496   // Total size in bytes including this field. It must be a multiple
497   // of sizeof(uint64_t).
498   uint32_t TotalSize;
499   // The number of value profile kinds that has value profile data.
500   // In this implementation, a value profile kind is considered to
501   // have profile data if the number of value profile sites for the
502   // kind is not zero. More aggressively, the implementation can
503   // choose to check the actual data value: if none of the value sites
504   // has any profiled values, the kind can be skipped.
505   uint32_t NumValueKinds;
506
507   // Following are a sequence of variable length records. The prefix/header
508   // of each record is defined by ValueProfRecord type. The number of
509   // records is NumValueKinds.
510   // ValueProfRecord Record_1;
511   // ValueProfRecord Record_N;
512
513   /// Return the total size in bytes of the on-disk value profile data
514   /// given the data stored in Record.
515   static uint32_t getSize(const InstrProfRecord &Record);
516   /// Return a pointer to \c ValueProfData instance ready to be streamed.
517   static std::unique_ptr<ValueProfData>
518   serializeFrom(const InstrProfRecord &Record);
519   /// Return a pointer to \c ValueProfileData instance ready to be read.
520   /// All data in the instance are properly byte swapped. The input
521   /// data is assumed to be in little endian order.
522   static ErrorOr<std::unique_ptr<ValueProfData>>
523   getValueProfData(const unsigned char *D, const unsigned char *const BufferEnd,
524                    support::endianness SrcDataEndianness);
525   /// Swap byte order from \c Endianness order to host byte order.
526   void swapBytesToHost(support::endianness Endianness);
527   /// Swap byte order from host byte order to \c Endianness order.
528   void swapBytesFromHost(support::endianness Endianness);
529   /// Return the total size of \c ValueProfileData.
530   uint32_t getSize() const { return TotalSize; }
531   /// Read data from this data and save it to \c Record.
532   void deserializeTo(InstrProfRecord &Record,
533                      InstrProfRecord::ValueMapType *VMap);
534   /// Return the first \c ValueProfRecord instance.
535   ValueProfRecord *getFirstValueProfRecord();
536 };
537
538 namespace IndexedInstrProf {
539
540 enum class HashT : uint32_t {
541   MD5,
542
543   Last = MD5
544 };
545
546 static inline uint64_t MD5Hash(StringRef Str) {
547   MD5 Hash;
548   Hash.update(Str);
549   llvm::MD5::MD5Result Result;
550   Hash.final(Result);
551   // Return the least significant 8 bytes. Our MD5 implementation returns the
552   // result in little endian, so we may need to swap bytes.
553   using namespace llvm::support;
554   return endian::read<uint64_t, little, unaligned>(Result);
555 }
556
557 static inline uint64_t ComputeHash(HashT Type, StringRef K) {
558   switch (Type) {
559   case HashT::MD5:
560     return IndexedInstrProf::MD5Hash(K);
561   }
562   llvm_unreachable("Unhandled hash type");
563 }
564
565 const uint64_t Magic = 0x8169666f72706cff; // "\xfflprofi\x81"
566 const uint64_t Version = 3;
567 const HashT HashType = HashT::MD5;
568
569 // This structure defines the file header of the LLVM profile
570 // data file in indexed-format.
571 struct Header {
572   uint64_t Magic;
573   uint64_t Version;
574   uint64_t MaxFunctionCount;
575   uint64_t HashType;
576   uint64_t HashOffset;
577 };
578
579 } // end namespace IndexedInstrProf
580
581 namespace RawInstrProf {
582
583 const uint64_t Version = INSTR_PROF_RAW_VERSION;
584
585 template <class IntPtrT> inline uint64_t getMagic();
586 template <> inline uint64_t getMagic<uint64_t>() {
587   return INSTR_PROF_RAW_MAGIC_64;
588 }
589
590 template <> inline uint64_t getMagic<uint32_t>() {
591   return INSTR_PROF_RAW_MAGIC_32;
592 }
593
594 // Per-function profile data header/control structure.
595 // The definition should match the structure defined in
596 // compiler-rt/lib/profile/InstrProfiling.h.
597 // It should also match the synthesized type in
598 // Transforms/Instrumentation/InstrProfiling.cpp:getOrCreateRegionCounters.
599 template <class IntPtrT> struct LLVM_ALIGNAS(8) ProfileData {
600   #define INSTR_PROF_DATA(Type, LLVMType, Name, Init) Type Name;
601   #include "llvm/ProfileData/InstrProfData.inc"
602 };
603
604 // File header structure of the LLVM profile data in raw format.
605 // The definition should match the header referenced in
606 // compiler-rt/lib/profile/InstrProfilingFile.c  and
607 // InstrProfilingBuffer.c.
608 struct Header {
609 #define INSTR_PROF_RAW_HEADER(Type, Name, Init) const Type Name;
610 #include "llvm/ProfileData/InstrProfData.inc"
611 };
612
613 }  // end namespace RawInstrProf
614
615 namespace coverage {
616
617 // Profile coverage map has the following layout:
618 // [CoverageMapFileHeader]
619 // [ArrayStart]
620 //  [CovMapFunctionRecord]
621 //  [CovMapFunctionRecord]
622 //  ...
623 // [ArrayEnd]
624 // [Encoded Region Mapping Data]
625 LLVM_PACKED_START
626 template <class IntPtrT> struct CovMapFunctionRecord {
627   #define COVMAP_FUNC_RECORD(Type, LLVMType, Name, Init) Type Name;
628   #include "llvm/ProfileData/InstrProfData.inc"
629 };
630 LLVM_PACKED_END
631
632 }
633
634 } // end namespace llvm
635
636 namespace std {
637 template <>
638 struct is_error_code_enum<llvm::instrprof_error> : std::true_type {};
639 }
640
641 #endif // LLVM_PROFILEDATA_INSTRPROF_H_