1 //=-- SampleProf.cpp - Sample profiling format support --------------------===//
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 contains common definitions used in the reading and writing of
11 // sample profile data.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/ProfileData/SampleProf.h"
16 #include "llvm/Config/llvm-config.h"
17 #include "llvm/IR/DebugInfoMetadata.h"
18 #include "llvm/Support/Compiler.h"
19 #include "llvm/Support/Debug.h"
20 #include "llvm/Support/ErrorHandling.h"
21 #include "llvm/Support/ManagedStatic.h"
22 #include "llvm/Support/raw_ostream.h"
24 #include <system_error>
27 using namespace sampleprof
;
30 namespace sampleprof
{
31 SampleProfileFormat
FunctionSamples::Format
;
32 DenseMap
<uint64_t, StringRef
> FunctionSamples::GUIDToFuncNameMap
;
33 Module
*FunctionSamples::CurrentModule
;
34 } // namespace sampleprof
39 // FIXME: This class is only here to support the transition to llvm::Error. It
40 // will be removed once this transition is complete. Clients should prefer to
41 // deal with the Error value directly, rather than converting to error_code.
42 class SampleProfErrorCategoryType
: public std::error_category
{
43 const char *name() const noexcept override
{ return "llvm.sampleprof"; }
45 std::string
message(int IE
) const override
{
46 sampleprof_error E
= static_cast<sampleprof_error
>(IE
);
48 case sampleprof_error::success
:
50 case sampleprof_error::bad_magic
:
51 return "Invalid sample profile data (bad magic)";
52 case sampleprof_error::unsupported_version
:
53 return "Unsupported sample profile format version";
54 case sampleprof_error::too_large
:
55 return "Too much profile data";
56 case sampleprof_error::truncated
:
57 return "Truncated profile data";
58 case sampleprof_error::malformed
:
59 return "Malformed sample profile data";
60 case sampleprof_error::unrecognized_format
:
61 return "Unrecognized sample profile encoding format";
62 case sampleprof_error::unsupported_writing_format
:
63 return "Profile encoding format unsupported for writing operations";
64 case sampleprof_error::truncated_name_table
:
65 return "Truncated function name table";
66 case sampleprof_error::not_implemented
:
67 return "Unimplemented feature";
68 case sampleprof_error::counter_overflow
:
69 return "Counter overflow";
70 case sampleprof_error::ostream_seek_unsupported
:
71 return "Ostream does not support seek";
73 llvm_unreachable("A value of sampleprof_error has no message.");
77 } // end anonymous namespace
79 static ManagedStatic
<SampleProfErrorCategoryType
> ErrorCategory
;
81 const std::error_category
&llvm::sampleprof_category() {
82 return *ErrorCategory
;
85 void LineLocation::print(raw_ostream
&OS
) const {
87 if (Discriminator
> 0)
88 OS
<< "." << Discriminator
;
91 raw_ostream
&llvm::sampleprof::operator<<(raw_ostream
&OS
,
92 const LineLocation
&Loc
) {
97 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
98 LLVM_DUMP_METHOD
void LineLocation::dump() const { print(dbgs()); }
101 /// Print the sample record to the stream \p OS indented by \p Indent.
102 void SampleRecord::print(raw_ostream
&OS
, unsigned Indent
) const {
106 for (const auto &I
: getCallTargets())
107 OS
<< " " << I
.first() << ":" << I
.second
;
112 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
113 LLVM_DUMP_METHOD
void SampleRecord::dump() const { print(dbgs(), 0); }
116 raw_ostream
&llvm::sampleprof::operator<<(raw_ostream
&OS
,
117 const SampleRecord
&Sample
) {
122 /// Print the samples collected for a function on stream \p OS.
123 void FunctionSamples::print(raw_ostream
&OS
, unsigned Indent
) const {
124 OS
<< TotalSamples
<< ", " << TotalHeadSamples
<< ", " << BodySamples
.size()
125 << " sampled lines\n";
128 if (!BodySamples
.empty()) {
129 OS
<< "Samples collected in the function's body {\n";
130 SampleSorter
<LineLocation
, SampleRecord
> SortedBodySamples(BodySamples
);
131 for (const auto &SI
: SortedBodySamples
.get()) {
132 OS
.indent(Indent
+ 2);
133 OS
<< SI
->first
<< ": " << SI
->second
;
138 OS
<< "No samples collected in the function's body\n";
142 if (!CallsiteSamples
.empty()) {
143 OS
<< "Samples collected in inlined callsites {\n";
144 SampleSorter
<LineLocation
, FunctionSamplesMap
> SortedCallsiteSamples(
146 for (const auto &CS
: SortedCallsiteSamples
.get()) {
147 for (const auto &FS
: CS
->second
) {
148 OS
.indent(Indent
+ 2);
149 OS
<< CS
->first
<< ": inlined callee: " << FS
.second
.getName() << ": ";
150 FS
.second
.print(OS
, Indent
+ 4);
155 OS
<< "No inlined callsites in this function\n";
159 raw_ostream
&llvm::sampleprof::operator<<(raw_ostream
&OS
,
160 const FunctionSamples
&FS
) {
165 unsigned FunctionSamples::getOffset(const DILocation
*DIL
) {
166 return (DIL
->getLine() - DIL
->getScope()->getSubprogram()->getLine()) &
170 const FunctionSamples
*
171 FunctionSamples::findFunctionSamples(const DILocation
*DIL
) const {
173 SmallVector
<std::pair
<LineLocation
, StringRef
>, 10> S
;
175 const DILocation
*PrevDIL
= DIL
;
176 for (DIL
= DIL
->getInlinedAt(); DIL
; DIL
= DIL
->getInlinedAt()) {
177 S
.push_back(std::make_pair(
178 LineLocation(getOffset(DIL
), DIL
->getBaseDiscriminator()),
179 PrevDIL
->getScope()->getSubprogram()->getLinkageName()));
184 const FunctionSamples
*FS
= this;
185 for (int i
= S
.size() - 1; i
>= 0 && FS
!= nullptr; i
--) {
186 FS
= FS
->findFunctionSamplesAt(S
[i
].first
, S
[i
].second
);
191 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
192 LLVM_DUMP_METHOD
void FunctionSamples::dump() const { print(dbgs(), 0); }