Diego Novillo | c572e92 | 2014-10-30 18:00:06 +0000 | [diff] [blame] | 1 | //=-- SampleProf.cpp - Sample profiling format support --------------------===// |
| 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 common definitions used in the reading and writing of |
| 11 | // sample profile data. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #include "llvm/ProfileData/SampleProf.h" |
| 16 | #include "llvm/Support/ErrorHandling.h" |
| 17 | #include "llvm/Support/ManagedStatic.h" |
| 18 | |
Diego Novillo | 4b6bdb5 | 2015-11-12 17:58:14 +0000 | [diff] [blame] | 19 | using namespace llvm::sampleprof; |
Diego Novillo | c572e92 | 2014-10-30 18:00:06 +0000 | [diff] [blame] | 20 | using namespace llvm; |
| 21 | |
| 22 | namespace { |
| 23 | class SampleProfErrorCategoryType : public std::error_category { |
| 24 | const char *name() const LLVM_NOEXCEPT override { return "llvm.sampleprof"; } |
| 25 | std::string message(int IE) const override { |
| 26 | sampleprof_error E = static_cast<sampleprof_error>(IE); |
| 27 | switch (E) { |
| 28 | case sampleprof_error::success: |
| 29 | return "Success"; |
| 30 | case sampleprof_error::bad_magic: |
Nathan Slingerland | 4f82366 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 31 | return "Invalid sample profile data (bad magic)"; |
Diego Novillo | c572e92 | 2014-10-30 18:00:06 +0000 | [diff] [blame] | 32 | case sampleprof_error::unsupported_version: |
Nathan Slingerland | 4f82366 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 33 | return "Unsupported sample profile format version"; |
Diego Novillo | c572e92 | 2014-10-30 18:00:06 +0000 | [diff] [blame] | 34 | case sampleprof_error::too_large: |
| 35 | return "Too much profile data"; |
| 36 | case sampleprof_error::truncated: |
| 37 | return "Truncated profile data"; |
| 38 | case sampleprof_error::malformed: |
Nathan Slingerland | 4f82366 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 39 | return "Malformed sample profile data"; |
Diego Novillo | d5336ae | 2014-11-01 00:56:55 +0000 | [diff] [blame] | 40 | case sampleprof_error::unrecognized_format: |
Nathan Slingerland | 4f82366 | 2015-11-13 03:47:58 +0000 | [diff] [blame] | 41 | return "Unrecognized sample profile encoding format"; |
Diego Novillo | 760c5a8 | 2015-10-13 22:48:46 +0000 | [diff] [blame] | 42 | case sampleprof_error::unsupported_writing_format: |
| 43 | return "Profile encoding format unsupported for writing operations"; |
| 44 | case sampleprof_error::truncated_name_table: |
| 45 | return "Truncated function name table"; |
Diego Novillo | 3376a78 | 2015-09-17 00:17:24 +0000 | [diff] [blame] | 46 | case sampleprof_error::not_implemented: |
| 47 | return "Unimplemented feature"; |
Nathan Slingerland | 48dd080 | 2015-12-16 21:45:43 +0000 | [diff] [blame^] | 48 | case sampleprof_error::counter_overflow: |
| 49 | return "Counter overflow"; |
Diego Novillo | c572e92 | 2014-10-30 18:00:06 +0000 | [diff] [blame] | 50 | } |
| 51 | llvm_unreachable("A value of sampleprof_error has no message."); |
| 52 | } |
| 53 | }; |
Alexander Kornienko | f00654e | 2015-06-23 09:49:53 +0000 | [diff] [blame] | 54 | } |
Diego Novillo | c572e92 | 2014-10-30 18:00:06 +0000 | [diff] [blame] | 55 | |
| 56 | static ManagedStatic<SampleProfErrorCategoryType> ErrorCategory; |
| 57 | |
| 58 | const std::error_category &llvm::sampleprof_category() { |
| 59 | return *ErrorCategory; |
| 60 | } |
Diego Novillo | 4b6bdb5 | 2015-11-12 17:58:14 +0000 | [diff] [blame] | 61 | |
Diego Novillo | ba920be | 2015-11-17 19:04:46 +0000 | [diff] [blame] | 62 | void LineLocation::print(raw_ostream &OS) const { |
| 63 | OS << LineOffset; |
| 64 | if (Discriminator > 0) |
| 65 | OS << "." << Discriminator; |
| 66 | } |
| 67 | |
| 68 | raw_ostream &llvm::sampleprof::operator<<(raw_ostream &OS, |
| 69 | const LineLocation &Loc) { |
| 70 | Loc.print(OS); |
| 71 | return OS; |
| 72 | } |
| 73 | |
| 74 | void LineLocation::dump() const { print(dbgs()); } |
| 75 | |
| 76 | void CallsiteLocation::print(raw_ostream &OS) const { |
| 77 | LineLocation::print(OS); |
| 78 | OS << ": inlined callee: " << CalleeName; |
| 79 | } |
| 80 | |
| 81 | void CallsiteLocation::dump() const { print(dbgs()); } |
| 82 | |
| 83 | inline raw_ostream &llvm::sampleprof::operator<<(raw_ostream &OS, |
| 84 | const CallsiteLocation &Loc) { |
| 85 | Loc.print(OS); |
| 86 | return OS; |
| 87 | } |
| 88 | |
Diego Novillo | 8e415a8 | 2015-11-13 20:24:28 +0000 | [diff] [blame] | 89 | /// \brief Print the sample record to the stream \p OS indented by \p Indent. |
| 90 | void SampleRecord::print(raw_ostream &OS, unsigned Indent) const { |
| 91 | OS << NumSamples; |
| 92 | if (hasCalls()) { |
| 93 | OS << ", calls:"; |
| 94 | for (const auto &I : getCallTargets()) |
| 95 | OS << " " << I.first() << ":" << I.second; |
| 96 | } |
| 97 | OS << "\n"; |
| 98 | } |
| 99 | |
Diego Novillo | ba920be | 2015-11-17 19:04:46 +0000 | [diff] [blame] | 100 | void SampleRecord::dump() const { print(dbgs(), 0); } |
| 101 | |
| 102 | raw_ostream &llvm::sampleprof::operator<<(raw_ostream &OS, |
| 103 | const SampleRecord &Sample) { |
| 104 | Sample.print(OS, 0); |
| 105 | return OS; |
| 106 | } |
| 107 | |
Diego Novillo | 4b6bdb5 | 2015-11-12 17:58:14 +0000 | [diff] [blame] | 108 | /// \brief Print the samples collected for a function on stream \p OS. |
Diego Novillo | 4b6bdb5 | 2015-11-12 17:58:14 +0000 | [diff] [blame] | 109 | void FunctionSamples::print(raw_ostream &OS, unsigned Indent) const { |
| 110 | OS << TotalSamples << ", " << TotalHeadSamples << ", " << BodySamples.size() |
| 111 | << " sampled lines\n"; |
Diego Novillo | 8e415a8 | 2015-11-13 20:24:28 +0000 | [diff] [blame] | 112 | |
Diego Novillo | 379cc5e | 2015-11-19 22:18:30 +0000 | [diff] [blame] | 113 | OS.indent(Indent); |
| 114 | if (BodySamples.size() > 0) { |
| 115 | OS << "Samples collected in the function's body {\n"; |
| 116 | SampleSorter<LineLocation, SampleRecord> SortedBodySamples(BodySamples); |
| 117 | for (const auto &SI : SortedBodySamples.get()) { |
| 118 | OS.indent(Indent + 2); |
| 119 | OS << SI->first << ": " << SI->second; |
| 120 | } |
Diego Novillo | 4b6bdb5 | 2015-11-12 17:58:14 +0000 | [diff] [blame] | 121 | OS.indent(Indent); |
Diego Novillo | 379cc5e | 2015-11-19 22:18:30 +0000 | [diff] [blame] | 122 | OS << "}\n"; |
| 123 | } else { |
| 124 | OS << "No samples collected in the function's body\n"; |
Diego Novillo | 4b6bdb5 | 2015-11-12 17:58:14 +0000 | [diff] [blame] | 125 | } |
Diego Novillo | 8e415a8 | 2015-11-13 20:24:28 +0000 | [diff] [blame] | 126 | |
Diego Novillo | 379cc5e | 2015-11-19 22:18:30 +0000 | [diff] [blame] | 127 | OS.indent(Indent); |
| 128 | if (CallsiteSamples.size() > 0) { |
| 129 | OS << "Samples collected in inlined callsites {\n"; |
| 130 | SampleSorter<CallsiteLocation, FunctionSamples> SortedCallsiteSamples( |
| 131 | CallsiteSamples); |
| 132 | for (const auto &CS : SortedCallsiteSamples.get()) { |
| 133 | OS.indent(Indent + 2); |
| 134 | OS << CS->first << ": "; |
| 135 | CS->second.print(OS, Indent + 4); |
| 136 | } |
| 137 | OS << "}\n"; |
| 138 | } else { |
| 139 | OS << "No inlined callsites in this function\n"; |
Diego Novillo | 4b6bdb5 | 2015-11-12 17:58:14 +0000 | [diff] [blame] | 140 | } |
| 141 | } |
Diego Novillo | ba920be | 2015-11-17 19:04:46 +0000 | [diff] [blame] | 142 | |
| 143 | raw_ostream &llvm::sampleprof::operator<<(raw_ostream &OS, |
| 144 | const FunctionSamples &FS) { |
| 145 | FS.print(OS); |
| 146 | return OS; |
| 147 | } |
| 148 | |
| 149 | void FunctionSamples::dump(void) const { print(dbgs(), 0); } |