1 //===- SampleProfWriter.cpp - Write LLVM sample profile data --------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file implements the class that writes LLVM sample profiles. It
11 // supports two file formats: text and binary. The textual representation
12 // is useful for debugging and testing purposes. The binary representation
13 // is more compact, resulting in smaller file sizes. However, they can
14 // both be used interchangeably.
16 // See lib/ProfileData/SampleProfReader.cpp for documentation on each of the
19 //===----------------------------------------------------------------------===//
21 #include "llvm/ProfileData/SampleProfWriter.h"
22 #include "llvm/ADT/StringRef.h"
23 #include "llvm/ProfileData/ProfileCommon.h"
24 #include "llvm/ProfileData/SampleProf.h"
25 #include "llvm/Support/Endian.h"
26 #include "llvm/Support/EndianStream.h"
27 #include "llvm/Support/ErrorOr.h"
28 #include "llvm/Support/FileSystem.h"
29 #include "llvm/Support/LEB128.h"
30 #include "llvm/Support/MD5.h"
31 #include "llvm/Support/raw_ostream.h"
36 #include <system_error>
41 using namespace sampleprof
;
44 SampleProfileWriter::write(const StringMap
<FunctionSamples
> &ProfileMap
) {
45 if (std::error_code EC
= writeHeader(ProfileMap
))
48 // Sort the ProfileMap by total samples.
49 typedef std::pair
<StringRef
, const FunctionSamples
*> NameFunctionSamples
;
50 std::vector
<NameFunctionSamples
> V
;
51 for (const auto &I
: ProfileMap
)
52 V
.push_back(std::make_pair(I
.getKey(), &I
.second
));
56 [](const NameFunctionSamples
&A
, const NameFunctionSamples
&B
) {
57 if (A
.second
->getTotalSamples() == B
.second
->getTotalSamples())
58 return A
.first
> B
.first
;
59 return A
.second
->getTotalSamples() > B
.second
->getTotalSamples();
62 for (const auto &I
: V
) {
63 if (std::error_code EC
= write(*I
.second
))
66 return sampleprof_error::success
;
69 std::error_code
SampleProfileWriterCompactBinary::write(
70 const StringMap
<FunctionSamples
> &ProfileMap
) {
71 if (std::error_code EC
= SampleProfileWriter::write(ProfileMap
))
73 if (std::error_code EC
= writeFuncOffsetTable())
75 return sampleprof_error::success
;
78 /// Write samples to a text file.
80 /// Note: it may be tempting to implement this in terms of
81 /// FunctionSamples::print(). Please don't. The dump functionality is intended
82 /// for debugging and has no specified form.
84 /// The format used here is more structured and deliberate because
85 /// it needs to be parsed by the SampleProfileReaderText class.
86 std::error_code
SampleProfileWriterText::write(const FunctionSamples
&S
) {
87 auto &OS
= *OutputStream
;
88 OS
<< S
.getName() << ":" << S
.getTotalSamples();
90 OS
<< ":" << S
.getHeadSamples();
93 SampleSorter
<LineLocation
, SampleRecord
> SortedSamples(S
.getBodySamples());
94 for (const auto &I
: SortedSamples
.get()) {
95 LineLocation Loc
= I
->first
;
96 const SampleRecord
&Sample
= I
->second
;
97 OS
.indent(Indent
+ 1);
98 if (Loc
.Discriminator
== 0)
99 OS
<< Loc
.LineOffset
<< ": ";
101 OS
<< Loc
.LineOffset
<< "." << Loc
.Discriminator
<< ": ";
103 OS
<< Sample
.getSamples();
105 for (const auto &J
: Sample
.getCallTargets())
106 OS
<< " " << J
.first() << ":" << J
.second
;
110 SampleSorter
<LineLocation
, FunctionSamplesMap
> SortedCallsiteSamples(
111 S
.getCallsiteSamples());
113 for (const auto &I
: SortedCallsiteSamples
.get())
114 for (const auto &FS
: I
->second
) {
115 LineLocation Loc
= I
->first
;
116 const FunctionSamples
&CalleeSamples
= FS
.second
;
118 if (Loc
.Discriminator
== 0)
119 OS
<< Loc
.LineOffset
<< ": ";
121 OS
<< Loc
.LineOffset
<< "." << Loc
.Discriminator
<< ": ";
122 if (std::error_code EC
= write(CalleeSamples
))
127 return sampleprof_error::success
;
130 std::error_code
SampleProfileWriterBinary::writeNameIdx(StringRef FName
) {
131 const auto &ret
= NameTable
.find(FName
);
132 if (ret
== NameTable
.end())
133 return sampleprof_error::truncated_name_table
;
134 encodeULEB128(ret
->second
, *OutputStream
);
135 return sampleprof_error::success
;
138 void SampleProfileWriterBinary::addName(StringRef FName
) {
139 NameTable
.insert(std::make_pair(FName
, 0));
142 void SampleProfileWriterBinary::addNames(const FunctionSamples
&S
) {
143 // Add all the names in indirect call targets.
144 for (const auto &I
: S
.getBodySamples()) {
145 const SampleRecord
&Sample
= I
.second
;
146 for (const auto &J
: Sample
.getCallTargets())
150 // Recursively add all the names for inlined callsites.
151 for (const auto &J
: S
.getCallsiteSamples())
152 for (const auto &FS
: J
.second
) {
153 const FunctionSamples
&CalleeSamples
= FS
.second
;
154 addName(CalleeSamples
.getName());
155 addNames(CalleeSamples
);
159 void SampleProfileWriterBinary::stablizeNameTable(std::set
<StringRef
> &V
) {
160 // Sort the names to make NameTable deterministic.
161 for (const auto &I
: NameTable
)
164 for (const StringRef
&N
: V
)
168 std::error_code
SampleProfileWriterRawBinary::writeNameTable() {
169 auto &OS
= *OutputStream
;
170 std::set
<StringRef
> V
;
171 stablizeNameTable(V
);
173 // Write out the name table.
174 encodeULEB128(NameTable
.size(), OS
);
177 encodeULEB128(0, OS
);
179 return sampleprof_error::success
;
182 std::error_code
SampleProfileWriterCompactBinary::writeFuncOffsetTable() {
183 auto &OS
= *OutputStream
;
185 // Fill the slot remembered by TableOffset with the offset of FuncOffsetTable.
186 auto &OFS
= static_cast<raw_fd_ostream
&>(OS
);
187 uint64_t FuncOffsetTableStart
= OS
.tell();
188 if (OFS
.seek(TableOffset
) == (uint64_t)-1)
189 return sampleprof_error::ostream_seek_unsupported
;
190 support::endian::Writer
Writer(*OutputStream
, support::little
);
191 Writer
.write(FuncOffsetTableStart
);
192 if (OFS
.seek(FuncOffsetTableStart
) == (uint64_t)-1)
193 return sampleprof_error::ostream_seek_unsupported
;
195 // Write out the table size.
196 encodeULEB128(FuncOffsetTable
.size(), OS
);
198 // Write out FuncOffsetTable.
199 for (auto entry
: FuncOffsetTable
) {
200 writeNameIdx(entry
.first
);
201 encodeULEB128(entry
.second
, OS
);
203 return sampleprof_error::success
;
206 std::error_code
SampleProfileWriterCompactBinary::writeNameTable() {
207 auto &OS
= *OutputStream
;
208 std::set
<StringRef
> V
;
209 stablizeNameTable(V
);
211 // Write out the name table.
212 encodeULEB128(NameTable
.size(), OS
);
214 encodeULEB128(MD5Hash(N
), OS
);
216 return sampleprof_error::success
;
219 std::error_code
SampleProfileWriterRawBinary::writeMagicIdent() {
220 auto &OS
= *OutputStream
;
221 // Write file magic identifier.
222 encodeULEB128(SPMagic(), OS
);
223 encodeULEB128(SPVersion(), OS
);
224 return sampleprof_error::success
;
227 std::error_code
SampleProfileWriterCompactBinary::writeMagicIdent() {
228 auto &OS
= *OutputStream
;
229 // Write file magic identifier.
230 encodeULEB128(SPMagic(SPF_Compact_Binary
), OS
);
231 encodeULEB128(SPVersion(), OS
);
232 return sampleprof_error::success
;
235 std::error_code
SampleProfileWriterBinary::writeHeader(
236 const StringMap
<FunctionSamples
> &ProfileMap
) {
239 computeSummary(ProfileMap
);
240 if (auto EC
= writeSummary())
243 // Generate the name table for all the functions referenced in the profile.
244 for (const auto &I
: ProfileMap
) {
250 return sampleprof_error::success
;
253 std::error_code
SampleProfileWriterCompactBinary::writeHeader(
254 const StringMap
<FunctionSamples
> &ProfileMap
) {
255 support::endian::Writer
Writer(*OutputStream
, support::little
);
256 if (auto EC
= SampleProfileWriterBinary::writeHeader(ProfileMap
))
259 // Reserve a slot for the offset of function offset table. The slot will
260 // be populated with the offset of FuncOffsetTable later.
261 TableOffset
= OutputStream
->tell();
262 Writer
.write(static_cast<uint64_t>(-2));
263 return sampleprof_error::success
;
266 std::error_code
SampleProfileWriterBinary::writeSummary() {
267 auto &OS
= *OutputStream
;
268 encodeULEB128(Summary
->getTotalCount(), OS
);
269 encodeULEB128(Summary
->getMaxCount(), OS
);
270 encodeULEB128(Summary
->getMaxFunctionCount(), OS
);
271 encodeULEB128(Summary
->getNumCounts(), OS
);
272 encodeULEB128(Summary
->getNumFunctions(), OS
);
273 std::vector
<ProfileSummaryEntry
> &Entries
= Summary
->getDetailedSummary();
274 encodeULEB128(Entries
.size(), OS
);
275 for (auto Entry
: Entries
) {
276 encodeULEB128(Entry
.Cutoff
, OS
);
277 encodeULEB128(Entry
.MinCount
, OS
);
278 encodeULEB128(Entry
.NumCounts
, OS
);
280 return sampleprof_error::success
;
282 std::error_code
SampleProfileWriterBinary::writeBody(const FunctionSamples
&S
) {
283 auto &OS
= *OutputStream
;
285 if (std::error_code EC
= writeNameIdx(S
.getName()))
288 encodeULEB128(S
.getTotalSamples(), OS
);
290 // Emit all the body samples.
291 encodeULEB128(S
.getBodySamples().size(), OS
);
292 for (const auto &I
: S
.getBodySamples()) {
293 LineLocation Loc
= I
.first
;
294 const SampleRecord
&Sample
= I
.second
;
295 encodeULEB128(Loc
.LineOffset
, OS
);
296 encodeULEB128(Loc
.Discriminator
, OS
);
297 encodeULEB128(Sample
.getSamples(), OS
);
298 encodeULEB128(Sample
.getCallTargets().size(), OS
);
299 for (const auto &J
: Sample
.getCallTargets()) {
300 StringRef Callee
= J
.first();
301 uint64_t CalleeSamples
= J
.second
;
302 if (std::error_code EC
= writeNameIdx(Callee
))
304 encodeULEB128(CalleeSamples
, OS
);
308 // Recursively emit all the callsite samples.
309 uint64_t NumCallsites
= 0;
310 for (const auto &J
: S
.getCallsiteSamples())
311 NumCallsites
+= J
.second
.size();
312 encodeULEB128(NumCallsites
, OS
);
313 for (const auto &J
: S
.getCallsiteSamples())
314 for (const auto &FS
: J
.second
) {
315 LineLocation Loc
= J
.first
;
316 const FunctionSamples
&CalleeSamples
= FS
.second
;
317 encodeULEB128(Loc
.LineOffset
, OS
);
318 encodeULEB128(Loc
.Discriminator
, OS
);
319 if (std::error_code EC
= writeBody(CalleeSamples
))
323 return sampleprof_error::success
;
326 /// Write samples of a top-level function to a binary file.
328 /// \returns true if the samples were written successfully, false otherwise.
329 std::error_code
SampleProfileWriterBinary::write(const FunctionSamples
&S
) {
330 encodeULEB128(S
.getHeadSamples(), *OutputStream
);
335 SampleProfileWriterCompactBinary::write(const FunctionSamples
&S
) {
336 uint64_t Offset
= OutputStream
->tell();
337 StringRef Name
= S
.getName();
338 FuncOffsetTable
[Name
] = Offset
;
339 encodeULEB128(S
.getHeadSamples(), *OutputStream
);
343 /// Create a sample profile file writer based on the specified format.
345 /// \param Filename The file to create.
347 /// \param Format Encoding format for the profile file.
349 /// \returns an error code indicating the status of the created writer.
350 ErrorOr
<std::unique_ptr
<SampleProfileWriter
>>
351 SampleProfileWriter::create(StringRef Filename
, SampleProfileFormat Format
) {
353 std::unique_ptr
<raw_ostream
> OS
;
354 if (Format
== SPF_Binary
|| Format
== SPF_Compact_Binary
)
355 OS
.reset(new raw_fd_ostream(Filename
, EC
, sys::fs::F_None
));
357 OS
.reset(new raw_fd_ostream(Filename
, EC
, sys::fs::F_Text
));
361 return create(OS
, Format
);
364 /// Create a sample profile stream writer based on the specified format.
366 /// \param OS The output stream to store the profile data to.
368 /// \param Format Encoding format for the profile file.
370 /// \returns an error code indicating the status of the created writer.
371 ErrorOr
<std::unique_ptr
<SampleProfileWriter
>>
372 SampleProfileWriter::create(std::unique_ptr
<raw_ostream
> &OS
,
373 SampleProfileFormat Format
) {
375 std::unique_ptr
<SampleProfileWriter
> Writer
;
377 if (Format
== SPF_Binary
)
378 Writer
.reset(new SampleProfileWriterRawBinary(OS
));
379 else if (Format
== SPF_Compact_Binary
)
380 Writer
.reset(new SampleProfileWriterCompactBinary(OS
));
381 else if (Format
== SPF_Text
)
382 Writer
.reset(new SampleProfileWriterText(OS
));
383 else if (Format
== SPF_GCC
)
384 EC
= sampleprof_error::unsupported_writing_format
;
386 EC
= sampleprof_error::unrecognized_format
;
391 return std::move(Writer
);
394 void SampleProfileWriter::computeSummary(
395 const StringMap
<FunctionSamples
> &ProfileMap
) {
396 SampleProfileSummaryBuilder
Builder(ProfileSummaryBuilder::DefaultCutoffs
);
397 for (const auto &I
: ProfileMap
) {
398 const FunctionSamples
&Profile
= I
.second
;
399 Builder
.addRecord(Profile
);
401 Summary
= Builder
.getSummary();