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