blob: 0b367282e14972244935097ce6620d1ae4326b4a [file] [log] [blame]
Justin Bognerf8d79192014-03-21 17:24:48 +00001//=-- InstrProfReader.cpp - Instrumented profiling reader -------------------=//
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 reading profiling data for clang's
11// instrumentation based PGO and coverage.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/ProfileData/InstrProfReader.h"
16#include "llvm/ProfileData/InstrProf.h"
Justin Bognerf8d79192014-03-21 17:24:48 +000017
Justin Bognerb7aa2632014-04-18 21:48:40 +000018#include "InstrProfIndexed.h"
19
Justin Bognerf8d79192014-03-21 17:24:48 +000020#include <cassert>
21
22using namespace llvm;
23
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000024static std::error_code
25setupMemoryBuffer(std::string Path, std::unique_ptr<MemoryBuffer> &Buffer) {
Rafael Espindolaadf21f22014-07-06 17:43:13 +000026 ErrorOr<std::unique_ptr<MemoryBuffer>> BufferOrErr =
27 MemoryBuffer::getFileOrSTDIN(Path);
28 if (std::error_code EC = BufferOrErr.getError())
Justin Bognerf8d79192014-03-21 17:24:48 +000029 return EC;
Rafael Espindolaadf21f22014-07-06 17:43:13 +000030 Buffer = std::move(BufferOrErr.get());
Justin Bognerf8d79192014-03-21 17:24:48 +000031
32 // Sanity check the file.
33 if (Buffer->getBufferSize() > std::numeric_limits<unsigned>::max())
34 return instrprof_error::too_large;
Justin Bognerb7aa2632014-04-18 21:48:40 +000035 return instrprof_error::success;
36}
37
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000038static std::error_code initializeReader(InstrProfReader &Reader) {
Justin Bognerb7aa2632014-04-18 21:48:40 +000039 return Reader.readHeader();
40}
41
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000042std::error_code
43InstrProfReader::create(std::string Path,
44 std::unique_ptr<InstrProfReader> &Result) {
Justin Bognerb7aa2632014-04-18 21:48:40 +000045 // Set up the buffer to read.
46 std::unique_ptr<MemoryBuffer> Buffer;
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000047 if (std::error_code EC = setupMemoryBuffer(Path, Buffer))
Justin Bognerb7aa2632014-04-18 21:48:40 +000048 return EC;
Justin Bognerf8d79192014-03-21 17:24:48 +000049
Duncan P. N. Exon Smith09a67f42014-03-21 20:42:31 +000050 // Create the reader.
Justin Bognerb7aa2632014-04-18 21:48:40 +000051 if (IndexedInstrProfReader::hasFormat(*Buffer))
52 Result.reset(new IndexedInstrProfReader(std::move(Buffer)));
53 else if (RawInstrProfReader64::hasFormat(*Buffer))
Duncan P. N. Exon Smith46803612014-03-23 03:38:12 +000054 Result.reset(new RawInstrProfReader64(std::move(Buffer)));
55 else if (RawInstrProfReader32::hasFormat(*Buffer))
56 Result.reset(new RawInstrProfReader32(std::move(Buffer)));
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +000057 else
Duncan P. N. Exon Smith4c5b7cb2014-03-21 20:42:34 +000058 Result.reset(new TextInstrProfReader(std::move(Buffer)));
Duncan P. N. Exon Smith09a67f42014-03-21 20:42:31 +000059
Justin Bognerb7aa2632014-04-18 21:48:40 +000060 // Initialize the reader and return the result.
61 return initializeReader(*Result);
62}
63
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000064std::error_code IndexedInstrProfReader::create(
Justin Bognerb7aa2632014-04-18 21:48:40 +000065 std::string Path, std::unique_ptr<IndexedInstrProfReader> &Result) {
66 // Set up the buffer to read.
67 std::unique_ptr<MemoryBuffer> Buffer;
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000068 if (std::error_code EC = setupMemoryBuffer(Path, Buffer))
Justin Bognerb7aa2632014-04-18 21:48:40 +000069 return EC;
70
71 // Create the reader.
72 if (!IndexedInstrProfReader::hasFormat(*Buffer))
73 return instrprof_error::bad_magic;
74 Result.reset(new IndexedInstrProfReader(std::move(Buffer)));
75
76 // Initialize the reader and return the result.
77 return initializeReader(*Result);
Justin Bognerf8d79192014-03-21 17:24:48 +000078}
79
80void InstrProfIterator::Increment() {
81 if (Reader->readNextRecord(Record))
82 *this = InstrProfIterator();
83}
84
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000085std::error_code TextInstrProfReader::readNextRecord(InstrProfRecord &Record) {
Justin Bognerf8d79192014-03-21 17:24:48 +000086 // Skip empty lines.
87 while (!Line.is_at_end() && Line->empty())
88 ++Line;
89 // If we hit EOF while looking for a name, we're done.
90 if (Line.is_at_end())
91 return error(instrprof_error::eof);
92
93 // Read the function name.
94 Record.Name = *Line++;
95
96 // Read the function hash.
97 if (Line.is_at_end())
98 return error(instrprof_error::truncated);
99 if ((Line++)->getAsInteger(10, Record.Hash))
100 return error(instrprof_error::malformed);
101
102 // Read the number of counters.
103 uint64_t NumCounters;
104 if (Line.is_at_end())
105 return error(instrprof_error::truncated);
106 if ((Line++)->getAsInteger(10, NumCounters))
107 return error(instrprof_error::malformed);
Justin Bognerb59d7c72014-04-25 02:45:33 +0000108 if (NumCounters == 0)
109 return error(instrprof_error::malformed);
Justin Bognerf8d79192014-03-21 17:24:48 +0000110
111 // Read each counter and fill our internal storage with the values.
112 Counts.clear();
113 Counts.reserve(NumCounters);
114 for (uint64_t I = 0; I < NumCounters; ++I) {
115 if (Line.is_at_end())
116 return error(instrprof_error::truncated);
117 uint64_t Count;
118 if ((Line++)->getAsInteger(10, Count))
119 return error(instrprof_error::malformed);
120 Counts.push_back(Count);
121 }
122 // Give the record a reference to our internal counter storage.
123 Record.Counts = Counts;
124
125 return success();
126}
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000127
Duncan P. N. Exon Smith46803612014-03-23 03:38:12 +0000128template <class IntPtrT>
129static uint64_t getRawMagic();
130
131template <>
132uint64_t getRawMagic<uint64_t>() {
Duncan P. N. Exon Smith09a67f42014-03-21 20:42:31 +0000133 return
Duncan P. N. Exon Smith745a2bf2014-03-21 20:42:37 +0000134 uint64_t(255) << 56 |
135 uint64_t('l') << 48 |
136 uint64_t('p') << 40 |
137 uint64_t('r') << 32 |
138 uint64_t('o') << 24 |
139 uint64_t('f') << 16 |
140 uint64_t('r') << 8 |
141 uint64_t(129);
Duncan P. N. Exon Smith09a67f42014-03-21 20:42:31 +0000142}
143
Duncan P. N. Exon Smith46803612014-03-23 03:38:12 +0000144template <>
145uint64_t getRawMagic<uint32_t>() {
146 return
147 uint64_t(255) << 56 |
148 uint64_t('l') << 48 |
149 uint64_t('p') << 40 |
150 uint64_t('r') << 32 |
151 uint64_t('o') << 24 |
152 uint64_t('f') << 16 |
153 uint64_t('R') << 8 |
154 uint64_t(129);
Duncan P. N. Exon Smith09a67f42014-03-21 20:42:31 +0000155}
156
Duncan P. N. Exon Smith46803612014-03-23 03:38:12 +0000157template <class IntPtrT>
158bool RawInstrProfReader<IntPtrT>::hasFormat(const MemoryBuffer &DataBuffer) {
Duncan P. N. Exon Smithd7d83472014-03-24 00:47:18 +0000159 if (DataBuffer.getBufferSize() < sizeof(uint64_t))
Duncan P. N. Exon Smith46803612014-03-23 03:38:12 +0000160 return false;
Duncan P. N. Exon Smithd7d83472014-03-24 00:47:18 +0000161 uint64_t Magic =
162 *reinterpret_cast<const uint64_t *>(DataBuffer.getBufferStart());
163 return getRawMagic<IntPtrT>() == Magic ||
Artyom Skrobovef5e8672014-06-14 11:36:01 +0000164 sys::getSwappedBytes(getRawMagic<IntPtrT>()) == Magic;
Duncan P. N. Exon Smith46803612014-03-23 03:38:12 +0000165}
166
167template <class IntPtrT>
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000168std::error_code RawInstrProfReader<IntPtrT>::readHeader() {
Duncan P. N. Exon Smith09a67f42014-03-21 20:42:31 +0000169 if (!hasFormat(*DataBuffer))
170 return error(instrprof_error::bad_magic);
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000171 if (DataBuffer->getBufferSize() < sizeof(RawHeader))
Duncan P. N. Exon Smith531bb482014-03-21 20:42:28 +0000172 return error(instrprof_error::bad_header);
Duncan P. N. Exon Smithd7d83472014-03-24 00:47:18 +0000173 auto *Header =
174 reinterpret_cast<const RawHeader *>(DataBuffer->getBufferStart());
Duncan P. N. Exon Smith46803612014-03-23 03:38:12 +0000175 ShouldSwapBytes = Header->Magic != getRawMagic<IntPtrT>();
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000176 return readHeader(*Header);
177}
178
Justin Bognera119f322014-05-16 00:38:00 +0000179template <class IntPtrT>
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000180std::error_code
181RawInstrProfReader<IntPtrT>::readNextHeader(const char *CurrentPos) {
Justin Bognera119f322014-05-16 00:38:00 +0000182 const char *End = DataBuffer->getBufferEnd();
183 // Skip zero padding between profiles.
184 while (CurrentPos != End && *CurrentPos == 0)
185 ++CurrentPos;
186 // If there's nothing left, we're done.
187 if (CurrentPos == End)
188 return instrprof_error::eof;
189 // If there isn't enough space for another header, this is probably just
190 // garbage at the end of the file.
191 if (CurrentPos + sizeof(RawHeader) > End)
192 return instrprof_error::malformed;
193 // The magic should have the same byte order as in the previous header.
194 uint64_t Magic = *reinterpret_cast<const uint64_t *>(CurrentPos);
195 if (Magic != swap(getRawMagic<IntPtrT>()))
196 return instrprof_error::bad_magic;
197
198 // There's another profile to read, so we need to process the header.
199 auto *Header = reinterpret_cast<const RawHeader *>(CurrentPos);
200 return readHeader(*Header);
201}
202
Duncan P. N. Exon Smith09a67f42014-03-21 20:42:31 +0000203static uint64_t getRawVersion() {
204 return 1;
205}
206
Duncan P. N. Exon Smith46803612014-03-23 03:38:12 +0000207template <class IntPtrT>
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000208std::error_code
209RawInstrProfReader<IntPtrT>::readHeader(const RawHeader &Header) {
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000210 if (swap(Header.Version) != getRawVersion())
211 return error(instrprof_error::unsupported_version);
212
213 CountersDelta = swap(Header.CountersDelta);
214 NamesDelta = swap(Header.NamesDelta);
215 auto DataSize = swap(Header.DataSize);
216 auto CountersSize = swap(Header.CountersSize);
217 auto NamesSize = swap(Header.NamesSize);
218
219 ptrdiff_t DataOffset = sizeof(RawHeader);
220 ptrdiff_t CountersOffset = DataOffset + sizeof(ProfileData) * DataSize;
221 ptrdiff_t NamesOffset = CountersOffset + sizeof(uint64_t) * CountersSize;
Justin Bognera119f322014-05-16 00:38:00 +0000222 size_t ProfileSize = NamesOffset + sizeof(char) * NamesSize;
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000223
Justin Bognera119f322014-05-16 00:38:00 +0000224 auto *Start = reinterpret_cast<const char *>(&Header);
225 if (Start + ProfileSize > DataBuffer->getBufferEnd())
Duncan P. N. Exon Smith531bb482014-03-21 20:42:28 +0000226 return error(instrprof_error::bad_header);
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000227
Duncan P. N. Exon Smithd7d83472014-03-24 00:47:18 +0000228 Data = reinterpret_cast<const ProfileData *>(Start + DataOffset);
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000229 DataEnd = Data + DataSize;
Duncan P. N. Exon Smithd7d83472014-03-24 00:47:18 +0000230 CountersStart = reinterpret_cast<const uint64_t *>(Start + CountersOffset);
231 NamesStart = Start + NamesOffset;
Justin Bognera119f322014-05-16 00:38:00 +0000232 ProfileEnd = Start + ProfileSize;
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000233
234 return success();
235}
236
Duncan P. N. Exon Smith46803612014-03-23 03:38:12 +0000237template <class IntPtrT>
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000238std::error_code
Duncan P. N. Exon Smith46803612014-03-23 03:38:12 +0000239RawInstrProfReader<IntPtrT>::readNextRecord(InstrProfRecord &Record) {
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000240 if (Data == DataEnd)
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000241 if (std::error_code EC = readNextHeader(ProfileEnd))
Justin Bognera119f322014-05-16 00:38:00 +0000242 return EC;
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000243
244 // Get the raw data.
245 StringRef RawName(getName(Data->NamePtr), swap(Data->NameSize));
Justin Bognerb59d7c72014-04-25 02:45:33 +0000246 uint32_t NumCounters = swap(Data->NumCounters);
247 if (NumCounters == 0)
248 return error(instrprof_error::malformed);
249 auto RawCounts = makeArrayRef(getCounter(Data->CounterPtr), NumCounters);
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000250
251 // Check bounds.
Duncan P. N. Exon Smithd7d83472014-03-24 00:47:18 +0000252 auto *NamesStartAsCounter = reinterpret_cast<const uint64_t *>(NamesStart);
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000253 if (RawName.data() < NamesStart ||
254 RawName.data() + RawName.size() > DataBuffer->getBufferEnd() ||
255 RawCounts.data() < CountersStart ||
Duncan P. N. Exon Smithd7d83472014-03-24 00:47:18 +0000256 RawCounts.data() + RawCounts.size() > NamesStartAsCounter)
Duncan P. N. Exon Smith24b4b652014-03-21 18:26:05 +0000257 return error(instrprof_error::malformed);
258
259 // Store the data in Record, byte-swapping as necessary.
260 Record.Hash = swap(Data->FuncHash);
261 Record.Name = RawName;
262 if (ShouldSwapBytes) {
263 Counts.clear();
264 Counts.reserve(RawCounts.size());
265 for (uint64_t Count : RawCounts)
266 Counts.push_back(swap(Count));
267 Record.Counts = Counts;
268 } else
269 Record.Counts = RawCounts;
270
271 // Iterate.
272 ++Data;
273 return success();
274}
Duncan P. N. Exon Smith46803612014-03-23 03:38:12 +0000275
276namespace llvm {
277template class RawInstrProfReader<uint32_t>;
278template class RawInstrProfReader<uint64_t>;
279}
Justin Bognerb7aa2632014-04-18 21:48:40 +0000280
Justin Bognerb5d368e2014-04-18 22:00:22 +0000281InstrProfLookupTrait::hash_value_type
282InstrProfLookupTrait::ComputeHash(StringRef K) {
283 return IndexedInstrProf::ComputeHash(HashType, K);
284}
285
Justin Bognerb7aa2632014-04-18 21:48:40 +0000286bool IndexedInstrProfReader::hasFormat(const MemoryBuffer &DataBuffer) {
287 if (DataBuffer.getBufferSize() < 8)
288 return false;
289 using namespace support;
290 uint64_t Magic =
291 endian::read<uint64_t, little, aligned>(DataBuffer.getBufferStart());
292 return Magic == IndexedInstrProf::Magic;
293}
294
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000295std::error_code IndexedInstrProfReader::readHeader() {
Aaron Ballmana7c9ed52014-05-01 17:16:24 +0000296 const unsigned char *Start =
297 (const unsigned char *)DataBuffer->getBufferStart();
Justin Bognerb7aa2632014-04-18 21:48:40 +0000298 const unsigned char *Cur = Start;
Aaron Ballmana7c9ed52014-05-01 17:16:24 +0000299 if ((const unsigned char *)DataBuffer->getBufferEnd() - Cur < 24)
Justin Bognerb7aa2632014-04-18 21:48:40 +0000300 return error(instrprof_error::truncated);
301
302 using namespace support;
303
304 // Check the magic number.
305 uint64_t Magic = endian::readNext<uint64_t, little, unaligned>(Cur);
306 if (Magic != IndexedInstrProf::Magic)
307 return error(instrprof_error::bad_magic);
308
309 // Read the version.
310 uint64_t Version = endian::readNext<uint64_t, little, unaligned>(Cur);
311 if (Version != IndexedInstrProf::Version)
312 return error(instrprof_error::unsupported_version);
313
314 // Read the maximal function count.
315 MaxFunctionCount = endian::readNext<uint64_t, little, unaligned>(Cur);
316
317 // Read the hash type and start offset.
318 IndexedInstrProf::HashT HashType = static_cast<IndexedInstrProf::HashT>(
319 endian::readNext<uint64_t, little, unaligned>(Cur));
320 if (HashType > IndexedInstrProf::HashT::Last)
321 return error(instrprof_error::unsupported_hash_type);
322 uint64_t HashOffset = endian::readNext<uint64_t, little, unaligned>(Cur);
323
324 // The rest of the file is an on disk hash table.
325 Index.reset(InstrProfReaderIndex::Create(Start + HashOffset, Cur, Start,
326 InstrProfLookupTrait(HashType)));
327 // Set up our iterator for readNextRecord.
328 RecordIterator = Index->data_begin();
329
330 return success();
331}
332
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000333std::error_code IndexedInstrProfReader::getFunctionCounts(
Justin Bognerb7aa2632014-04-18 21:48:40 +0000334 StringRef FuncName, uint64_t &FuncHash, std::vector<uint64_t> &Counts) {
335 const auto &Iter = Index->find(FuncName);
336 if (Iter == Index->end())
337 return error(instrprof_error::unknown_function);
338
339 // Found it. Make sure it's valid before giving back a result.
340 const InstrProfRecord &Record = *Iter;
341 if (Record.Name.empty())
342 return error(instrprof_error::malformed);
343 FuncHash = Record.Hash;
344 Counts = Record.Counts;
345 return success();
346}
347
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +0000348std::error_code
349IndexedInstrProfReader::readNextRecord(InstrProfRecord &Record) {
Justin Bognerb7aa2632014-04-18 21:48:40 +0000350 // Are we out of records?
351 if (RecordIterator == Index->data_end())
352 return error(instrprof_error::eof);
353
354 // Read the next one.
355 Record = *RecordIterator;
356 ++RecordIterator;
357 if (Record.Name.empty())
358 return error(instrprof_error::malformed);
359 return success();
360}