1 //===- SampleProfWriter.h - Write LLVM sample profile data ------*- C++ -*-===// 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 definitions needed for writing sample profiles. 10 // 11 //===----------------------------------------------------------------------===// 12 #ifndef LLVM_PROFILEDATA_SAMPLEPROFWRITER_H 13 #define LLVM_PROFILEDATA_SAMPLEPROFWRITER_H 14 15 #include "llvm/ADT/MapVector.h" 16 #include "llvm/ADT/StringMap.h" 17 #include "llvm/ADT/StringRef.h" 18 #include "llvm/ADT/StringSet.h" 19 #include "llvm/IR/ProfileSummary.h" 20 #include "llvm/ProfileData/SampleProf.h" 21 #include "llvm/Support/ErrorOr.h" 22 #include "llvm/Support/raw_ostream.h" 23 #include <algorithm> 24 #include <cstdint> 25 #include <memory> 26 #include <set> 27 #include <system_error> 28 #include <unordered_set> 29 30 namespace llvm { 31 namespace sampleprof { 32 33 enum SectionLayout { 34 DefaultLayout, 35 // The layout splits profile with context information from profile without 36 // context information. When Thinlto is enabled, ThinLTO postlink phase only 37 // has to load profile with context information and can skip the other part. 38 CtxSplitLayout, 39 NumOfLayout, 40 }; 41 42 /// Sample-based profile writer. Base class. 43 class SampleProfileWriter { 44 public: 45 virtual ~SampleProfileWriter() = default; 46 47 /// Write sample profiles in \p S. 48 /// 49 /// \returns status code of the file update operation. 50 virtual std::error_code writeSample(const FunctionSamples &S) = 0; 51 52 /// Write all the sample profiles in the given map of samples. 53 /// 54 /// \returns status code of the file update operation. 55 virtual std::error_code write(const SampleProfileMap &ProfileMap); 56 57 raw_ostream &getOutputStream() { return *OutputStream; } 58 59 /// Profile writer factory. 60 /// 61 /// Create a new file writer based on the value of \p Format. 62 static ErrorOr<std::unique_ptr<SampleProfileWriter>> 63 create(StringRef Filename, SampleProfileFormat Format); 64 65 /// Create a new stream writer based on the value of \p Format. 66 /// For testing. 67 static ErrorOr<std::unique_ptr<SampleProfileWriter>> 68 create(std::unique_ptr<raw_ostream> &OS, SampleProfileFormat Format); 69 70 virtual void setProfileSymbolList(ProfileSymbolList *PSL) {} 71 virtual void setToCompressAllSections() {} 72 virtual void setUseMD5() {} 73 virtual void setPartialProfile() {} 74 virtual void resetSecLayout(SectionLayout SL) {} 75 76 protected: 77 SampleProfileWriter(std::unique_ptr<raw_ostream> &OS) 78 : OutputStream(std::move(OS)) {} 79 80 /// Write a file header for the profile file. 81 virtual std::error_code writeHeader(const SampleProfileMap &ProfileMap) = 0; 82 83 // Write function profiles to the profile file. 84 virtual std::error_code writeFuncProfiles(const SampleProfileMap &ProfileMap); 85 86 /// Output stream where to emit the profile to. 87 std::unique_ptr<raw_ostream> OutputStream; 88 89 /// Profile summary. 90 std::unique_ptr<ProfileSummary> Summary; 91 92 /// Compute summary for this profile. 93 void computeSummary(const SampleProfileMap &ProfileMap); 94 95 /// Profile format. 96 SampleProfileFormat Format = SPF_None; 97 }; 98 99 /// Sample-based profile writer (text format). 100 class SampleProfileWriterText : public SampleProfileWriter { 101 public: 102 std::error_code writeSample(const FunctionSamples &S) override; 103 104 protected: 105 SampleProfileWriterText(std::unique_ptr<raw_ostream> &OS) 106 : SampleProfileWriter(OS), Indent(0) {} 107 108 std::error_code writeHeader(const SampleProfileMap &ProfileMap) override { 109 return sampleprof_error::success; 110 } 111 112 private: 113 /// Indent level to use when writing. 114 /// 115 /// This is used when printing inlined callees. 116 unsigned Indent; 117 118 friend ErrorOr<std::unique_ptr<SampleProfileWriter>> 119 SampleProfileWriter::create(std::unique_ptr<raw_ostream> &OS, 120 SampleProfileFormat Format); 121 }; 122 123 /// Sample-based profile writer (binary format). 124 class SampleProfileWriterBinary : public SampleProfileWriter { 125 public: 126 SampleProfileWriterBinary(std::unique_ptr<raw_ostream> &OS) 127 : SampleProfileWriter(OS) {} 128 129 virtual std::error_code writeSample(const FunctionSamples &S) override; 130 131 protected: 132 virtual MapVector<StringRef, uint32_t> &getNameTable() { return NameTable; } 133 virtual std::error_code writeMagicIdent(SampleProfileFormat Format); 134 virtual std::error_code writeNameTable(); 135 virtual std::error_code 136 writeHeader(const SampleProfileMap &ProfileMap) override; 137 std::error_code writeSummary(); 138 virtual std::error_code writeContextIdx(const SampleContext &Context); 139 std::error_code writeNameIdx(StringRef FName); 140 std::error_code writeBody(const FunctionSamples &S); 141 inline void stablizeNameTable(MapVector<StringRef, uint32_t> &NameTable, 142 std::set<StringRef> &V); 143 144 MapVector<StringRef, uint32_t> NameTable; 145 146 void addName(StringRef FName); 147 virtual void addContext(const SampleContext &Context); 148 void addNames(const FunctionSamples &S); 149 150 private: 151 friend ErrorOr<std::unique_ptr<SampleProfileWriter>> 152 SampleProfileWriter::create(std::unique_ptr<raw_ostream> &OS, 153 SampleProfileFormat Format); 154 }; 155 156 class SampleProfileWriterRawBinary : public SampleProfileWriterBinary { 157 using SampleProfileWriterBinary::SampleProfileWriterBinary; 158 }; 159 160 const std::array<SmallVector<SecHdrTableEntry, 8>, NumOfLayout> 161 ExtBinaryHdrLayoutTable = { 162 // Note that SecFuncOffsetTable section is written after SecLBRProfile 163 // in the profile, but is put before SecLBRProfile in SectionHdrLayout. 164 // This is because sample reader follows the order in SectionHdrLayout 165 // to read each section. To read function profiles on demand, sample 166 // reader need to get the offset of each function profile first. 167 // 168 // DefaultLayout 169 SmallVector<SecHdrTableEntry, 8>({{SecProfSummary, 0, 0, 0, 0}, 170 {SecNameTable, 0, 0, 0, 0}, 171 {SecCSNameTable, 0, 0, 0, 0}, 172 {SecFuncOffsetTable, 0, 0, 0, 0}, 173 {SecLBRProfile, 0, 0, 0, 0}, 174 {SecProfileSymbolList, 0, 0, 0, 0}, 175 {SecFuncMetadata, 0, 0, 0, 0}}), 176 // CtxSplitLayout 177 SmallVector<SecHdrTableEntry, 8>({{SecProfSummary, 0, 0, 0, 0}, 178 {SecNameTable, 0, 0, 0, 0}, 179 // profile with context 180 // for next two sections 181 {SecFuncOffsetTable, 0, 0, 0, 0}, 182 {SecLBRProfile, 0, 0, 0, 0}, 183 // profile without context 184 // for next two sections 185 {SecFuncOffsetTable, 0, 0, 0, 0}, 186 {SecLBRProfile, 0, 0, 0, 0}, 187 {SecProfileSymbolList, 0, 0, 0, 0}, 188 {SecFuncMetadata, 0, 0, 0, 0}}), 189 }; 190 191 class SampleProfileWriterExtBinaryBase : public SampleProfileWriterBinary { 192 using SampleProfileWriterBinary::SampleProfileWriterBinary; 193 public: 194 virtual std::error_code write(const SampleProfileMap &ProfileMap) override; 195 196 virtual void setToCompressAllSections() override; 197 void setToCompressSection(SecType Type); 198 virtual std::error_code writeSample(const FunctionSamples &S) override; 199 200 // Set to use MD5 to represent string in NameTable. 201 virtual void setUseMD5() override { 202 UseMD5 = true; 203 addSectionFlag(SecNameTable, SecNameTableFlags::SecFlagMD5Name); 204 // MD5 will be stored as plain uint64_t instead of variable-length 205 // quantity format in NameTable section. 206 addSectionFlag(SecNameTable, SecNameTableFlags::SecFlagFixedLengthMD5); 207 } 208 209 // Set the profile to be partial. It means the profile is for 210 // common/shared code. The common profile is usually merged from 211 // profiles collected from running other targets. 212 virtual void setPartialProfile() override { 213 addSectionFlag(SecProfSummary, SecProfSummaryFlags::SecFlagPartial); 214 } 215 216 virtual void setProfileSymbolList(ProfileSymbolList *PSL) override { 217 ProfSymList = PSL; 218 }; 219 220 virtual void resetSecLayout(SectionLayout SL) override { 221 verifySecLayout(SL); 222 #ifndef NDEBUG 223 // Make sure resetSecLayout is called before any flag setting. 224 for (auto &Entry : SectionHdrLayout) { 225 assert(Entry.Flags == 0 && 226 "resetSecLayout has to be called before any flag setting"); 227 } 228 #endif 229 SecLayout = SL; 230 SectionHdrLayout = ExtBinaryHdrLayoutTable[SL]; 231 } 232 233 protected: 234 uint64_t markSectionStart(SecType Type, uint32_t LayoutIdx); 235 std::error_code addNewSection(SecType Sec, uint32_t LayoutIdx, 236 uint64_t SectionStart); 237 template <class SecFlagType> 238 void addSectionFlag(SecType Type, SecFlagType Flag) { 239 for (auto &Entry : SectionHdrLayout) { 240 if (Entry.Type == Type) 241 addSecFlag(Entry, Flag); 242 } 243 } 244 template <class SecFlagType> 245 void addSectionFlag(uint32_t SectionIdx, SecFlagType Flag) { 246 addSecFlag(SectionHdrLayout[SectionIdx], Flag); 247 } 248 249 virtual void addContext(const SampleContext &Context) override; 250 251 // placeholder for subclasses to dispatch their own section writers. 252 virtual std::error_code writeCustomSection(SecType Type) = 0; 253 // Verify the SecLayout is supported by the format. 254 virtual void verifySecLayout(SectionLayout SL) = 0; 255 256 // specify the order to write sections. 257 virtual std::error_code writeSections(const SampleProfileMap &ProfileMap) = 0; 258 259 // Dispatch section writer for each section. \p LayoutIdx is the sequence 260 // number indicating where the section is located in SectionHdrLayout. 261 virtual std::error_code writeOneSection(SecType Type, uint32_t LayoutIdx, 262 const SampleProfileMap &ProfileMap); 263 264 // Helper function to write name table. 265 virtual std::error_code writeNameTable() override; 266 virtual std::error_code 267 writeContextIdx(const SampleContext &Context) override; 268 std::error_code writeCSNameIdx(const SampleContext &Context); 269 std::error_code writeCSNameTableSection(); 270 271 std::error_code writeFuncMetadata(const SampleProfileMap &Profiles); 272 std::error_code writeFuncMetadata(const FunctionSamples &Profile); 273 274 // Functions to write various kinds of sections. 275 std::error_code writeNameTableSection(const SampleProfileMap &ProfileMap); 276 std::error_code writeFuncOffsetTable(); 277 std::error_code writeProfileSymbolListSection(); 278 279 SectionLayout SecLayout = DefaultLayout; 280 // Specifiy the order of sections in section header table. Note 281 // the order of sections in SecHdrTable may be different that the 282 // order in SectionHdrLayout. sample Reader will follow the order 283 // in SectionHdrLayout to read each section. 284 SmallVector<SecHdrTableEntry, 8> SectionHdrLayout = 285 ExtBinaryHdrLayoutTable[DefaultLayout]; 286 287 // Save the start of SecLBRProfile so we can compute the offset to the 288 // start of SecLBRProfile for each Function's Profile and will keep it 289 // in FuncOffsetTable. 290 uint64_t SecLBRProfileStart = 0; 291 292 private: 293 void allocSecHdrTable(); 294 std::error_code writeSecHdrTable(); 295 virtual std::error_code 296 writeHeader(const SampleProfileMap &ProfileMap) override; 297 std::error_code compressAndOutput(); 298 299 // We will swap the raw_ostream held by LocalBufStream and that 300 // held by OutputStream if we try to add a section which needs 301 // compression. After the swap, all the data written to output 302 // will be temporarily buffered into the underlying raw_string_ostream 303 // originally held by LocalBufStream. After the data writing for the 304 // section is completed, compress the data in the local buffer, 305 // swap the raw_ostream back and write the compressed data to the 306 // real output. 307 std::unique_ptr<raw_ostream> LocalBufStream; 308 // The location where the output stream starts. 309 uint64_t FileStart; 310 // The location in the output stream where the SecHdrTable should be 311 // written to. 312 uint64_t SecHdrTableOffset; 313 // The table contains SecHdrTableEntry entries in order of how they are 314 // populated in the writer. It may be different from the order in 315 // SectionHdrLayout which specifies the sequence in which sections will 316 // be read. 317 std::vector<SecHdrTableEntry> SecHdrTable; 318 319 // FuncOffsetTable maps function context to its profile offset in 320 // SecLBRProfile section. It is used to load function profile on demand. 321 MapVector<SampleContext, uint64_t> FuncOffsetTable; 322 // Whether to use MD5 to represent string. 323 bool UseMD5 = false; 324 325 /// CSNameTable maps function context to its offset in SecCSNameTable section. 326 /// The offset will be used everywhere where the context is referenced. 327 MapVector<SampleContext, uint32_t> CSNameTable; 328 329 ProfileSymbolList *ProfSymList = nullptr; 330 }; 331 332 class SampleProfileWriterExtBinary : public SampleProfileWriterExtBinaryBase { 333 public: 334 SampleProfileWriterExtBinary(std::unique_ptr<raw_ostream> &OS) 335 : SampleProfileWriterExtBinaryBase(OS) {} 336 337 private: 338 std::error_code writeDefaultLayout(const SampleProfileMap &ProfileMap); 339 std::error_code writeCtxSplitLayout(const SampleProfileMap &ProfileMap); 340 341 virtual std::error_code 342 writeSections(const SampleProfileMap &ProfileMap) override; 343 344 virtual std::error_code writeCustomSection(SecType Type) override { 345 return sampleprof_error::success; 346 }; 347 348 virtual void verifySecLayout(SectionLayout SL) override { 349 assert((SL == DefaultLayout || SL == CtxSplitLayout) && 350 "Unsupported layout"); 351 } 352 }; 353 354 // CompactBinary is a compact format of binary profile which both reduces 355 // the profile size and the load time needed when compiling. It has two 356 // major difference with Binary format. 357 // 1. It represents all the strings in name table using md5 hash. 358 // 2. It saves a function offset table which maps function name index to 359 // the offset of its function profile to the start of the binary profile, 360 // so by using the function offset table, for those function profiles which 361 // will not be needed when compiling a module, the profile reader does't 362 // have to read them and it saves compile time if the profile size is huge. 363 // The layout of the compact format is shown as follows: 364 // 365 // Part1: Profile header, the same as binary format, containing magic 366 // number, version, summary, name table... 367 // Part2: Function Offset Table Offset, which saves the position of 368 // Part4. 369 // Part3: Function profile collection 370 // function1 profile start 371 // .... 372 // function2 profile start 373 // .... 374 // function3 profile start 375 // .... 376 // ...... 377 // Part4: Function Offset Table 378 // function1 name index --> function1 profile start 379 // function2 name index --> function2 profile start 380 // function3 name index --> function3 profile start 381 // 382 // We need Part2 because profile reader can use it to find out and read 383 // function offset table without reading Part3 first. 384 class SampleProfileWriterCompactBinary : public SampleProfileWriterBinary { 385 using SampleProfileWriterBinary::SampleProfileWriterBinary; 386 387 public: 388 virtual std::error_code writeSample(const FunctionSamples &S) override; 389 virtual std::error_code write(const SampleProfileMap &ProfileMap) override; 390 391 protected: 392 /// The table mapping from function name to the offset of its FunctionSample 393 /// towards profile start. 394 MapVector<StringRef, uint64_t> FuncOffsetTable; 395 /// The offset of the slot to be filled with the offset of FuncOffsetTable 396 /// towards profile start. 397 uint64_t TableOffset; 398 virtual std::error_code writeNameTable() override; 399 virtual std::error_code 400 writeHeader(const SampleProfileMap &ProfileMap) override; 401 std::error_code writeFuncOffsetTable(); 402 }; 403 404 } // end namespace sampleprof 405 } // end namespace llvm 406 407 #endif // LLVM_PROFILEDATA_SAMPLEPROFWRITER_H 408