1 //===- InstrProfWriter.cpp - Instrumented profiling writer ----------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file contains support for writing profiling data for clang's
10 // instrumentation based PGO and coverage.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm/ProfileData/InstrProfWriter.h"
15 #include "llvm/ADT/STLExtras.h"
16 #include "llvm/ADT/StringRef.h"
17 #include "llvm/IR/ProfileSummary.h"
18 #include "llvm/ProfileData/InstrProf.h"
19 #include "llvm/ProfileData/ProfileCommon.h"
20 #include "llvm/Support/Endian.h"
21 #include "llvm/Support/EndianStream.h"
22 #include "llvm/Support/Error.h"
23 #include "llvm/Support/MemoryBuffer.h"
24 #include "llvm/Support/OnDiskHashTable.h"
25 #include "llvm/Support/raw_ostream.h"
26 #include <algorithm>
27 #include <cstdint>
28 #include <memory>
29 #include <string>
30 #include <tuple>
31 #include <utility>
32 #include <vector>
33 
34 using namespace llvm;
35 
36 // A struct to define how the data stream should be patched. For Indexed
37 // profiling, only uint64_t data type is needed.
38 struct PatchItem {
39   uint64_t Pos; // Where to patch.
40   uint64_t *D;  // Pointer to an array of source data.
41   int N;        // Number of elements in \c D array.
42 };
43 
44 namespace llvm {
45 
46 // A wrapper class to abstract writer stream with support of bytes
47 // back patching.
48 class ProfOStream {
49 public:
50   ProfOStream(raw_fd_ostream &FD)
51       : IsFDOStream(true), OS(FD), LE(FD, support::little) {}
52   ProfOStream(raw_string_ostream &STR)
53       : IsFDOStream(false), OS(STR), LE(STR, support::little) {}
54 
55   uint64_t tell() { return OS.tell(); }
56   void write(uint64_t V) { LE.write<uint64_t>(V); }
57 
58   // \c patch can only be called when all data is written and flushed.
59   // For raw_string_ostream, the patch is done on the target string
60   // directly and it won't be reflected in the stream's internal buffer.
61   void patch(PatchItem *P, int NItems) {
62     using namespace support;
63 
64     if (IsFDOStream) {
65       raw_fd_ostream &FDOStream = static_cast<raw_fd_ostream &>(OS);
66       for (int K = 0; K < NItems; K++) {
67         FDOStream.seek(P[K].Pos);
68         for (int I = 0; I < P[K].N; I++)
69           write(P[K].D[I]);
70       }
71     } else {
72       raw_string_ostream &SOStream = static_cast<raw_string_ostream &>(OS);
73       std::string &Data = SOStream.str(); // with flush
74       for (int K = 0; K < NItems; K++) {
75         for (int I = 0; I < P[K].N; I++) {
76           uint64_t Bytes = endian::byte_swap<uint64_t, little>(P[K].D[I]);
77           Data.replace(P[K].Pos + I * sizeof(uint64_t), sizeof(uint64_t),
78                        (const char *)&Bytes, sizeof(uint64_t));
79         }
80       }
81     }
82   }
83 
84   // If \c OS is an instance of \c raw_fd_ostream, this field will be
85   // true. Otherwise, \c OS will be an raw_string_ostream.
86   bool IsFDOStream;
87   raw_ostream &OS;
88   support::endian::Writer LE;
89 };
90 
91 class InstrProfRecordWriterTrait {
92 public:
93   using key_type = StringRef;
94   using key_type_ref = StringRef;
95 
96   using data_type = const InstrProfWriter::ProfilingData *const;
97   using data_type_ref = const InstrProfWriter::ProfilingData *const;
98 
99   using hash_value_type = uint64_t;
100   using offset_type = uint64_t;
101 
102   support::endianness ValueProfDataEndianness = support::little;
103   InstrProfSummaryBuilder *SummaryBuilder;
104   InstrProfSummaryBuilder *CSSummaryBuilder;
105 
106   InstrProfRecordWriterTrait() = default;
107 
108   static hash_value_type ComputeHash(key_type_ref K) {
109     return IndexedInstrProf::ComputeHash(K);
110   }
111 
112   static std::pair<offset_type, offset_type>
113   EmitKeyDataLength(raw_ostream &Out, key_type_ref K, data_type_ref V) {
114     using namespace support;
115 
116     endian::Writer LE(Out, little);
117 
118     offset_type N = K.size();
119     LE.write<offset_type>(N);
120 
121     offset_type M = 0;
122     for (const auto &ProfileData : *V) {
123       const InstrProfRecord &ProfRecord = ProfileData.second;
124       M += sizeof(uint64_t); // The function hash
125       M += sizeof(uint64_t); // The size of the Counts vector
126       M += ProfRecord.Counts.size() * sizeof(uint64_t);
127 
128       // Value data
129       M += ValueProfData::getSize(ProfileData.second);
130     }
131     LE.write<offset_type>(M);
132 
133     return std::make_pair(N, M);
134   }
135 
136   void EmitKey(raw_ostream &Out, key_type_ref K, offset_type N) {
137     Out.write(K.data(), N);
138   }
139 
140   void EmitData(raw_ostream &Out, key_type_ref, data_type_ref V, offset_type) {
141     using namespace support;
142 
143     endian::Writer LE(Out, little);
144     for (const auto &ProfileData : *V) {
145       const InstrProfRecord &ProfRecord = ProfileData.second;
146       if (NamedInstrProfRecord::hasCSFlagInHash(ProfileData.first))
147         CSSummaryBuilder->addRecord(ProfRecord);
148       else
149         SummaryBuilder->addRecord(ProfRecord);
150 
151       LE.write<uint64_t>(ProfileData.first); // Function hash
152       LE.write<uint64_t>(ProfRecord.Counts.size());
153       for (uint64_t I : ProfRecord.Counts)
154         LE.write<uint64_t>(I);
155 
156       // Write value data
157       std::unique_ptr<ValueProfData> VDataPtr =
158           ValueProfData::serializeFrom(ProfileData.second);
159       uint32_t S = VDataPtr->getSize();
160       VDataPtr->swapBytesFromHost(ValueProfDataEndianness);
161       Out.write((const char *)VDataPtr.get(), S);
162     }
163   }
164 };
165 
166 } // end namespace llvm
167 
168 InstrProfWriter::InstrProfWriter(bool Sparse)
169     : Sparse(Sparse), InfoObj(new InstrProfRecordWriterTrait()) {}
170 
171 InstrProfWriter::~InstrProfWriter() { delete InfoObj; }
172 
173 // Internal interface for testing purpose only.
174 void InstrProfWriter::setValueProfDataEndianness(
175     support::endianness Endianness) {
176   InfoObj->ValueProfDataEndianness = Endianness;
177 }
178 
179 void InstrProfWriter::setOutputSparse(bool Sparse) {
180   this->Sparse = Sparse;
181 }
182 
183 void InstrProfWriter::addRecord(NamedInstrProfRecord &&I, uint64_t Weight,
184                                 function_ref<void(Error)> Warn) {
185   auto Name = I.Name;
186   auto Hash = I.Hash;
187   addRecord(Name, Hash, std::move(I), Weight, Warn);
188 }
189 
190 void InstrProfWriter::addRecord(StringRef Name, uint64_t Hash,
191                                 InstrProfRecord &&I, uint64_t Weight,
192                                 function_ref<void(Error)> Warn) {
193   auto &ProfileDataMap = FunctionData[Name];
194 
195   bool NewFunc;
196   ProfilingData::iterator Where;
197   std::tie(Where, NewFunc) =
198       ProfileDataMap.insert(std::make_pair(Hash, InstrProfRecord()));
199   InstrProfRecord &Dest = Where->second;
200 
201   auto MapWarn = [&](instrprof_error E) {
202     Warn(make_error<InstrProfError>(E));
203   };
204 
205   if (NewFunc) {
206     // We've never seen a function with this name and hash, add it.
207     Dest = std::move(I);
208     if (Weight > 1)
209       Dest.scale(Weight, MapWarn);
210   } else {
211     // We're updating a function we've seen before.
212     Dest.merge(I, Weight, MapWarn);
213   }
214 
215   Dest.sortValueData();
216 }
217 
218 void InstrProfWriter::mergeRecordsFromWriter(InstrProfWriter &&IPW,
219                                              function_ref<void(Error)> Warn) {
220   for (auto &I : IPW.FunctionData)
221     for (auto &Func : I.getValue())
222       addRecord(I.getKey(), Func.first, std::move(Func.second), 1, Warn);
223 }
224 
225 bool InstrProfWriter::shouldEncodeData(const ProfilingData &PD) {
226   if (!Sparse)
227     return true;
228   for (const auto &Func : PD) {
229     const InstrProfRecord &IPR = Func.second;
230     if (llvm::any_of(IPR.Counts, [](uint64_t Count) { return Count > 0; }))
231       return true;
232   }
233   return false;
234 }
235 
236 static void setSummary(IndexedInstrProf::Summary *TheSummary,
237                        ProfileSummary &PS) {
238   using namespace IndexedInstrProf;
239 
240   std::vector<ProfileSummaryEntry> &Res = PS.getDetailedSummary();
241   TheSummary->NumSummaryFields = Summary::NumKinds;
242   TheSummary->NumCutoffEntries = Res.size();
243   TheSummary->set(Summary::MaxFunctionCount, PS.getMaxFunctionCount());
244   TheSummary->set(Summary::MaxBlockCount, PS.getMaxCount());
245   TheSummary->set(Summary::MaxInternalBlockCount, PS.getMaxInternalCount());
246   TheSummary->set(Summary::TotalBlockCount, PS.getTotalCount());
247   TheSummary->set(Summary::TotalNumBlocks, PS.getNumCounts());
248   TheSummary->set(Summary::TotalNumFunctions, PS.getNumFunctions());
249   for (unsigned I = 0; I < Res.size(); I++)
250     TheSummary->setEntry(I, Res[I]);
251 }
252 
253 void InstrProfWriter::writeImpl(ProfOStream &OS) {
254   using namespace IndexedInstrProf;
255 
256   OnDiskChainedHashTableGenerator<InstrProfRecordWriterTrait> Generator;
257 
258   InstrProfSummaryBuilder ISB(ProfileSummaryBuilder::DefaultCutoffs);
259   InfoObj->SummaryBuilder = &ISB;
260   InstrProfSummaryBuilder CSISB(ProfileSummaryBuilder::DefaultCutoffs);
261   InfoObj->CSSummaryBuilder = &CSISB;
262 
263   // Populate the hash table generator.
264   for (const auto &I : FunctionData)
265     if (shouldEncodeData(I.getValue()))
266       Generator.insert(I.getKey(), &I.getValue());
267   // Write the header.
268   IndexedInstrProf::Header Header;
269   Header.Magic = IndexedInstrProf::Magic;
270   Header.Version = IndexedInstrProf::ProfVersion::CurrentVersion;
271   if (ProfileKind == PF_IRLevel)
272     Header.Version |= VARIANT_MASK_IR_PROF;
273   if (ProfileKind == PF_IRLevelWithCS) {
274     Header.Version |= VARIANT_MASK_IR_PROF;
275     Header.Version |= VARIANT_MASK_CSIR_PROF;
276   }
277   Header.Unused = 0;
278   Header.HashType = static_cast<uint64_t>(IndexedInstrProf::HashType);
279   Header.HashOffset = 0;
280   int N = sizeof(IndexedInstrProf::Header) / sizeof(uint64_t);
281 
282   // Only write out all the fields except 'HashOffset'. We need
283   // to remember the offset of that field to allow back patching
284   // later.
285   for (int I = 0; I < N - 1; I++)
286     OS.write(reinterpret_cast<uint64_t *>(&Header)[I]);
287 
288   // Save the location of Header.HashOffset field in \c OS.
289   uint64_t HashTableStartFieldOffset = OS.tell();
290   // Reserve the space for HashOffset field.
291   OS.write(0);
292 
293   // Reserve space to write profile summary data.
294   uint32_t NumEntries = ProfileSummaryBuilder::DefaultCutoffs.size();
295   uint32_t SummarySize = Summary::getSize(Summary::NumKinds, NumEntries);
296   // Remember the summary offset.
297   uint64_t SummaryOffset = OS.tell();
298   for (unsigned I = 0; I < SummarySize / sizeof(uint64_t); I++)
299     OS.write(0);
300   uint64_t CSSummaryOffset = 0;
301   uint64_t CSSummarySize = 0;
302   if (ProfileKind == PF_IRLevelWithCS) {
303     CSSummaryOffset = OS.tell();
304     CSSummarySize = SummarySize / sizeof(uint64_t);
305     for (unsigned I = 0; I < CSSummarySize; I++)
306       OS.write(0);
307   }
308 
309   // Write the hash table.
310   uint64_t HashTableStart = Generator.Emit(OS.OS, *InfoObj);
311 
312   // Allocate space for data to be serialized out.
313   std::unique_ptr<IndexedInstrProf::Summary> TheSummary =
314       IndexedInstrProf::allocSummary(SummarySize);
315   // Compute the Summary and copy the data to the data
316   // structure to be serialized out (to disk or buffer).
317   std::unique_ptr<ProfileSummary> PS = ISB.getSummary();
318   setSummary(TheSummary.get(), *PS);
319   InfoObj->SummaryBuilder = nullptr;
320 
321   // For Context Sensitive summary.
322   std::unique_ptr<IndexedInstrProf::Summary> TheCSSummary = nullptr;
323   if (ProfileKind == PF_IRLevelWithCS) {
324     TheCSSummary = IndexedInstrProf::allocSummary(SummarySize);
325     std::unique_ptr<ProfileSummary> CSPS = CSISB.getSummary();
326     setSummary(TheCSSummary.get(), *CSPS);
327   }
328   InfoObj->CSSummaryBuilder = nullptr;
329 
330   // Now do the final patch:
331   PatchItem PatchItems[] = {
332       // Patch the Header.HashOffset field.
333       {HashTableStartFieldOffset, &HashTableStart, 1},
334       // Patch the summary data.
335       {SummaryOffset, reinterpret_cast<uint64_t *>(TheSummary.get()),
336        (int)(SummarySize / sizeof(uint64_t))},
337       {CSSummaryOffset, reinterpret_cast<uint64_t *>(TheCSSummary.get()),
338        (int)CSSummarySize}};
339 
340   OS.patch(PatchItems, sizeof(PatchItems) / sizeof(*PatchItems));
341 }
342 
343 void InstrProfWriter::write(raw_fd_ostream &OS) {
344   // Write the hash table.
345   ProfOStream POS(OS);
346   writeImpl(POS);
347 }
348 
349 std::unique_ptr<MemoryBuffer> InstrProfWriter::writeBuffer() {
350   std::string Data;
351   raw_string_ostream OS(Data);
352   ProfOStream POS(OS);
353   // Write the hash table.
354   writeImpl(POS);
355   // Return this in an aligned memory buffer.
356   return MemoryBuffer::getMemBufferCopy(Data);
357 }
358 
359 static const char *ValueProfKindStr[] = {
360 #define VALUE_PROF_KIND(Enumerator, Value) #Enumerator,
361 #include "llvm/ProfileData/InstrProfData.inc"
362 };
363 
364 void InstrProfWriter::writeRecordInText(StringRef Name, uint64_t Hash,
365                                         const InstrProfRecord &Func,
366                                         InstrProfSymtab &Symtab,
367                                         raw_fd_ostream &OS) {
368   OS << Name << "\n";
369   OS << "# Func Hash:\n" << Hash << "\n";
370   OS << "# Num Counters:\n" << Func.Counts.size() << "\n";
371   OS << "# Counter Values:\n";
372   for (uint64_t Count : Func.Counts)
373     OS << Count << "\n";
374 
375   uint32_t NumValueKinds = Func.getNumValueKinds();
376   if (!NumValueKinds) {
377     OS << "\n";
378     return;
379   }
380 
381   OS << "# Num Value Kinds:\n" << Func.getNumValueKinds() << "\n";
382   for (uint32_t VK = 0; VK < IPVK_Last + 1; VK++) {
383     uint32_t NS = Func.getNumValueSites(VK);
384     if (!NS)
385       continue;
386     OS << "# ValueKind = " << ValueProfKindStr[VK] << ":\n" << VK << "\n";
387     OS << "# NumValueSites:\n" << NS << "\n";
388     for (uint32_t S = 0; S < NS; S++) {
389       uint32_t ND = Func.getNumValueDataForSite(VK, S);
390       OS << ND << "\n";
391       std::unique_ptr<InstrProfValueData[]> VD = Func.getValueForSite(VK, S);
392       for (uint32_t I = 0; I < ND; I++) {
393         if (VK == IPVK_IndirectCallTarget)
394           OS << Symtab.getFuncNameOrExternalSymbol(VD[I].Value) << ":"
395              << VD[I].Count << "\n";
396         else
397           OS << VD[I].Value << ":" << VD[I].Count << "\n";
398       }
399     }
400   }
401 
402   OS << "\n";
403 }
404 
405 Error InstrProfWriter::writeText(raw_fd_ostream &OS) {
406   if (ProfileKind == PF_IRLevel)
407     OS << "# IR level Instrumentation Flag\n:ir\n";
408   else if (ProfileKind == PF_IRLevelWithCS)
409     OS << "# CSIR level Instrumentation Flag\n:csir\n";
410   InstrProfSymtab Symtab;
411 
412   using FuncPair = detail::DenseMapPair<uint64_t, InstrProfRecord>;
413   using RecordType = std::pair<StringRef, FuncPair>;
414   SmallVector<RecordType, 4> OrderedFuncData;
415 
416   for (const auto &I : FunctionData) {
417     if (shouldEncodeData(I.getValue())) {
418       if (Error E = Symtab.addFuncName(I.getKey()))
419         return E;
420       for (const auto &Func : I.getValue())
421         OrderedFuncData.push_back(std::make_pair(I.getKey(), Func));
422     }
423   }
424 
425   llvm::sort(OrderedFuncData, [](const RecordType &A, const RecordType &B) {
426     return std::tie(A.first, A.second.first) <
427            std::tie(B.first, B.second.first);
428   });
429 
430   for (const auto &record : OrderedFuncData) {
431     const StringRef &Name = record.first;
432     const FuncPair &Func = record.second;
433     writeRecordInText(Name, Func.first, Func.second, Symtab, OS);
434   }
435 
436   return Error::success();
437 }
438