[PGO] Improve Indexed Profile Reader efficiency
[oota-llvm.git] / lib / ProfileData / InstrProfWriter.cpp
1 //=-- InstrProfWriter.cpp - Instrumented profiling writer -------------------=//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains support for writing profiling data for clang's
11 // instrumentation based PGO and coverage.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/ProfileData/InstrProfWriter.h"
16 #include "llvm/ADT/StringExtras.h"
17 #include "llvm/Support/EndianStream.h"
18 #include "llvm/Support/OnDiskHashTable.h"
19 #include <tuple>
20
21 using namespace llvm;
22
23 namespace {
24 static support::endianness ValueProfDataEndianness = support::little;
25
26 class InstrProfRecordTrait {
27 public:
28   typedef StringRef key_type;
29   typedef StringRef key_type_ref;
30
31   typedef const InstrProfWriter::ProfilingData *const data_type;
32   typedef const InstrProfWriter::ProfilingData *const data_type_ref;
33
34   typedef uint64_t hash_value_type;
35   typedef uint64_t offset_type;
36
37   static hash_value_type ComputeHash(key_type_ref K) {
38     return IndexedInstrProf::ComputeHash(K);
39   }
40
41   static std::pair<offset_type, offset_type>
42   EmitKeyDataLength(raw_ostream &Out, key_type_ref K, data_type_ref V) {
43     using namespace llvm::support;
44     endian::Writer<little> LE(Out);
45
46     offset_type N = K.size();
47     LE.write<offset_type>(N);
48
49     offset_type M = 0;
50     for (const auto &ProfileData : *V) {
51       const InstrProfRecord &ProfRecord = ProfileData.second;
52       M += sizeof(uint64_t); // The function hash
53       M += sizeof(uint64_t); // The size of the Counts vector
54       M += ProfRecord.Counts.size() * sizeof(uint64_t);
55
56       // Value data
57       M += ValueProfData::getSize(ProfileData.second);
58     }
59     LE.write<offset_type>(M);
60
61     return std::make_pair(N, M);
62   }
63
64   static void EmitKey(raw_ostream &Out, key_type_ref K, offset_type N){
65     Out.write(K.data(), N);
66   }
67
68   static void EmitData(raw_ostream &Out, key_type_ref, data_type_ref V,
69                        offset_type) {
70     using namespace llvm::support;
71     endian::Writer<little> LE(Out);
72     for (const auto &ProfileData : *V) {
73       const InstrProfRecord &ProfRecord = ProfileData.second;
74
75       LE.write<uint64_t>(ProfileData.first); // Function hash
76       LE.write<uint64_t>(ProfRecord.Counts.size());
77       for (uint64_t I : ProfRecord.Counts)
78         LE.write<uint64_t>(I);
79
80       // Write value data
81       std::unique_ptr<ValueProfData> VDataPtr =
82           ValueProfData::serializeFrom(ProfileData.second);
83       uint32_t S = VDataPtr->getSize();
84       VDataPtr->swapBytesFromHost(ValueProfDataEndianness);
85       Out.write((const char *)VDataPtr.get(), S);
86     }
87   }
88 };
89 }
90
91 // Internal interface for testing purpose only.
92 void InstrProfWriter::setValueProfDataEndianness(
93     support::endianness Endianness) {
94   ValueProfDataEndianness = Endianness;
95 }
96
97 std::error_code InstrProfWriter::addRecord(InstrProfRecord &&I,
98                                            uint64_t Weight) {
99   auto &ProfileDataMap = FunctionData[I.Name];
100
101   bool NewFunc;
102   ProfilingData::iterator Where;
103   std::tie(Where, NewFunc) =
104       ProfileDataMap.insert(std::make_pair(I.Hash, InstrProfRecord()));
105   InstrProfRecord &Dest = Where->second;
106
107   instrprof_error Result;
108   if (NewFunc) {
109     // We've never seen a function with this name and hash, add it.
110     Dest = std::move(I);
111     Result = instrprof_error::success;
112     if (Weight > 1) {
113       for (auto &Count : Dest.Counts) {
114         bool Overflowed;
115         Count = SaturatingMultiply(Count, Weight, &Overflowed);
116         if (Overflowed && Result == instrprof_error::success) {
117           Result = instrprof_error::counter_overflow;
118         }
119       }
120     }
121   } else {
122     // We're updating a function we've seen before.
123     Result = Dest.merge(I, Weight);
124   }
125
126   // We keep track of the max function count as we go for simplicity.
127   // Update this statistic no matter the result of the merge.
128   if (Dest.Counts[0] > MaxFunctionCount)
129     MaxFunctionCount = Dest.Counts[0];
130
131   return Result;
132 }
133
134 std::pair<uint64_t, uint64_t> InstrProfWriter::writeImpl(raw_ostream &OS) {
135   OnDiskChainedHashTableGenerator<InstrProfRecordTrait> Generator;
136
137   // Populate the hash table generator.
138   for (const auto &I : FunctionData)
139     Generator.insert(I.getKey(), &I.getValue());
140
141   using namespace llvm::support;
142   endian::Writer<little> LE(OS);
143
144   // Write the header.
145   IndexedInstrProf::Header Header;
146   Header.Magic = IndexedInstrProf::Magic;
147   Header.Version = IndexedInstrProf::Version;
148   Header.MaxFunctionCount = MaxFunctionCount;
149   Header.HashType = static_cast<uint64_t>(IndexedInstrProf::HashType);
150   Header.HashOffset = 0;
151   int N = sizeof(IndexedInstrProf::Header) / sizeof(uint64_t);
152
153   // Only write out all the fields execpt 'HashOffset'. We need
154   // to remember the offset of that field to allow back patching
155   // later.
156   for (int I = 0; I < N - 1; I++)
157     LE.write<uint64_t>(reinterpret_cast<uint64_t *>(&Header)[I]);
158
159   // Save a space to write the hash table start location.
160   uint64_t HashTableStartLoc = OS.tell();
161   // Reserve the space for HashOffset field.
162   LE.write<uint64_t>(0);
163   // Write the hash table.
164   uint64_t HashTableStart = Generator.Emit(OS);
165
166   return std::make_pair(HashTableStartLoc, HashTableStart);
167 }
168
169 void InstrProfWriter::write(raw_fd_ostream &OS) {
170   // Write the hash table.
171   auto TableStart = writeImpl(OS);
172
173   // Go back and fill in the hash table start.
174   using namespace support;
175   OS.seek(TableStart.first);
176   // Now patch the HashOffset field previously reserved.
177   endian::Writer<little>(OS).write<uint64_t>(TableStart.second);
178 }
179
180 static const char *ValueProfKindStr[] = {
181 #define VALUE_PROF_KIND(Enumerator, Value) #Enumerator,
182 #include "llvm/ProfileData/InstrProfData.inc"
183 };
184
185 void InstrProfWriter::writeRecordInText(const InstrProfRecord &Func,
186                                         InstrProfSymtab &Symtab,
187                                         raw_fd_ostream &OS) {
188   OS << Func.Name << "\n";
189   OS << "# Func Hash:\n" << Func.Hash << "\n";
190   OS << "# Num Counters:\n" << Func.Counts.size() << "\n";
191   OS << "# Counter Values:\n";
192   for (uint64_t Count : Func.Counts)
193     OS << Count << "\n";
194
195   uint32_t NumValueKinds = Func.getNumValueKinds();
196   if (!NumValueKinds) {
197     OS << "\n";
198     return;
199   }
200
201   OS << "# Num Value Kinds:\n" << Func.getNumValueKinds() << "\n";
202   for (uint32_t VK = 0; VK < IPVK_Last + 1; VK++) {
203     uint32_t NS = Func.getNumValueSites(VK);
204     if (!NS)
205       continue;
206     OS << "# ValueKind = " << ValueProfKindStr[VK] << ":\n" << VK << "\n";
207     OS << "# NumValueSites:\n" << NS << "\n";
208     for (uint32_t S = 0; S < NS; S++) {
209       uint32_t ND = Func.getNumValueDataForSite(VK, S);
210       OS << ND << "\n";
211       std::unique_ptr<InstrProfValueData[]> VD = Func.getValueForSite(VK, S);
212       for (uint32_t I = 0; I < ND; I++) {
213         if (VK == IPVK_IndirectCallTarget)
214           OS << Symtab.getFuncName(VD[I].Value) << ":" << VD[I].Count << "\n";
215         else
216           OS << VD[I].Value << ":" << VD[I].Count << "\n";
217       }
218     }
219   }
220
221   OS << "\n";
222 }
223
224 void InstrProfWriter::writeText(raw_fd_ostream &OS) {
225   InstrProfSymtab Symtab;
226   for (const auto &I : FunctionData)
227     Symtab.addFuncName(I.getKey());
228   Symtab.finalizeSymtab();
229
230   for (const auto &I : FunctionData)
231     for (const auto &Func : I.getValue())
232       writeRecordInText(Func.second, Symtab, OS);
233 }
234
235 std::unique_ptr<MemoryBuffer> InstrProfWriter::writeBuffer() {
236   std::string Data;
237   llvm::raw_string_ostream OS(Data);
238   // Write the hash table.
239   auto TableStart = writeImpl(OS);
240   OS.flush();
241
242   // Go back and fill in the hash table start.
243   using namespace support;
244   uint64_t Bytes = endian::byte_swap<uint64_t, little>(TableStart.second);
245   Data.replace(TableStart.first, sizeof(uint64_t), (const char *)&Bytes,
246                sizeof(uint64_t));
247
248   // Return this in an aligned memory buffer.
249   return MemoryBuffer::getMemBufferCopy(Data);
250 }