InstrProf: Simplify RawCoverageMappingReader's API slightly
[oota-llvm.git] / lib / ProfileData / CoverageMappingReader.cpp
1 //=-- CoverageMappingReader.cpp - Code coverage mapping reader ----*- C++ -*-=//
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 coverage mapping data for
11 // instrumentation based coverage.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/ProfileData/CoverageMappingReader.h"
16 #include "llvm/ADT/DenseSet.h"
17 #include "llvm/Object/ObjectFile.h"
18 #include "llvm/Support/Debug.h"
19 #include "llvm/Support/LEB128.h"
20
21 using namespace llvm;
22 using namespace coverage;
23 using namespace object;
24
25 #define DEBUG_TYPE "coverage-mapping"
26
27 void CoverageMappingIterator::increment() {
28   // Check if all the records were read or if an error occurred while reading
29   // the next record.
30   if (Reader->readNextRecord(Record))
31     *this = CoverageMappingIterator();
32 }
33
34 std::error_code RawCoverageReader::readULEB128(uint64_t &Result) {
35   if (Data.size() < 1)
36     return error(instrprof_error::truncated);
37   unsigned N = 0;
38   Result = decodeULEB128(reinterpret_cast<const uint8_t *>(Data.data()), &N);
39   if (N > Data.size())
40     return error(instrprof_error::malformed);
41   Data = Data.substr(N);
42   return success();
43 }
44
45 std::error_code RawCoverageReader::readIntMax(uint64_t &Result,
46                                               uint64_t MaxPlus1) {
47   if (auto Err = readULEB128(Result))
48     return Err;
49   if (Result >= MaxPlus1)
50     return error(instrprof_error::malformed);
51   return success();
52 }
53
54 std::error_code RawCoverageReader::readSize(uint64_t &Result) {
55   if (auto Err = readULEB128(Result))
56     return Err;
57   // Sanity check the number.
58   if (Result > Data.size())
59     return error(instrprof_error::malformed);
60   return success();
61 }
62
63 std::error_code RawCoverageReader::readString(StringRef &Result) {
64   uint64_t Length;
65   if (auto Err = readSize(Length))
66     return Err;
67   Result = Data.substr(0, Length);
68   Data = Data.substr(Length);
69   return success();
70 }
71
72 std::error_code RawCoverageFilenamesReader::read() {
73   uint64_t NumFilenames;
74   if (auto Err = readSize(NumFilenames))
75     return Err;
76   for (size_t I = 0; I < NumFilenames; ++I) {
77     StringRef Filename;
78     if (auto Err = readString(Filename))
79       return Err;
80     Filenames.push_back(Filename);
81   }
82   return success();
83 }
84
85 std::error_code RawCoverageMappingReader::decodeCounter(unsigned Value,
86                                                         Counter &C) {
87   auto Tag = Value & Counter::EncodingTagMask;
88   switch (Tag) {
89   case Counter::Zero:
90     C = Counter::getZero();
91     return success();
92   case Counter::CounterValueReference:
93     C = Counter::getCounter(Value >> Counter::EncodingTagBits);
94     return success();
95   default:
96     break;
97   }
98   Tag -= Counter::Expression;
99   switch (Tag) {
100   case CounterExpression::Subtract:
101   case CounterExpression::Add: {
102     auto ID = Value >> Counter::EncodingTagBits;
103     if (ID >= Expressions.size())
104       return error(instrprof_error::malformed);
105     Expressions[ID].Kind = CounterExpression::ExprKind(Tag);
106     C = Counter::getExpression(ID);
107     break;
108   }
109   default:
110     return error(instrprof_error::malformed);
111   }
112   return success();
113 }
114
115 std::error_code RawCoverageMappingReader::readCounter(Counter &C) {
116   uint64_t EncodedCounter;
117   if (auto Err =
118           readIntMax(EncodedCounter, std::numeric_limits<unsigned>::max()))
119     return Err;
120   if (auto Err = decodeCounter(EncodedCounter, C))
121     return Err;
122   return success();
123 }
124
125 static const unsigned EncodingExpansionRegionBit = 1
126                                                    << Counter::EncodingTagBits;
127
128 /// \brief Read the sub-array of regions for the given inferred file id.
129 /// \param NumFileIDs the number of file ids that are defined for this
130 /// function.
131 std::error_code RawCoverageMappingReader::readMappingRegionsSubArray(
132     std::vector<CounterMappingRegion> &MappingRegions, unsigned InferredFileID,
133     size_t NumFileIDs) {
134   uint64_t NumRegions;
135   if (auto Err = readSize(NumRegions))
136     return Err;
137   unsigned LineStart = 0;
138   for (size_t I = 0; I < NumRegions; ++I) {
139     Counter C;
140     CounterMappingRegion::RegionKind Kind = CounterMappingRegion::CodeRegion;
141
142     // Read the combined counter + region kind.
143     uint64_t EncodedCounterAndRegion;
144     if (auto Err = readIntMax(EncodedCounterAndRegion,
145                               std::numeric_limits<unsigned>::max()))
146       return Err;
147     unsigned Tag = EncodedCounterAndRegion & Counter::EncodingTagMask;
148     uint64_t ExpandedFileID = 0;
149     if (Tag != Counter::Zero) {
150       if (auto Err = decodeCounter(EncodedCounterAndRegion, C))
151         return Err;
152     } else {
153       // Is it an expansion region?
154       if (EncodedCounterAndRegion & EncodingExpansionRegionBit) {
155         Kind = CounterMappingRegion::ExpansionRegion;
156         ExpandedFileID = EncodedCounterAndRegion >>
157                          Counter::EncodingCounterTagAndExpansionRegionTagBits;
158         if (ExpandedFileID >= NumFileIDs)
159           return error(instrprof_error::malformed);
160       } else {
161         switch (EncodedCounterAndRegion >>
162                 Counter::EncodingCounterTagAndExpansionRegionTagBits) {
163         case CounterMappingRegion::CodeRegion:
164           // Don't do anything when we have a code region with a zero counter.
165           break;
166         case CounterMappingRegion::SkippedRegion:
167           Kind = CounterMappingRegion::SkippedRegion;
168           break;
169         default:
170           return error(instrprof_error::malformed);
171         }
172       }
173     }
174
175     // Read the source range.
176     uint64_t LineStartDelta, CodeBeforeColumnStart, NumLines, ColumnEnd;
177     if (auto Err =
178             readIntMax(LineStartDelta, std::numeric_limits<unsigned>::max()))
179       return Err;
180     if (auto Err = readULEB128(CodeBeforeColumnStart))
181       return Err;
182     bool HasCodeBefore = CodeBeforeColumnStart & 1;
183     uint64_t ColumnStart = CodeBeforeColumnStart >>
184                            CounterMappingRegion::EncodingHasCodeBeforeBits;
185     if (ColumnStart > std::numeric_limits<unsigned>::max())
186       return error(instrprof_error::malformed);
187     if (auto Err = readIntMax(NumLines, std::numeric_limits<unsigned>::max()))
188       return Err;
189     if (auto Err = readIntMax(ColumnEnd, std::numeric_limits<unsigned>::max()))
190       return Err;
191     LineStart += LineStartDelta;
192     // Adjust the column locations for the empty regions that are supposed to
193     // cover whole lines. Those regions should be encoded with the
194     // column range (1 -> std::numeric_limits<unsigned>::max()), but because
195     // the encoded std::numeric_limits<unsigned>::max() is several bytes long,
196     // we set the column range to (0 -> 0) to ensure that the column start and
197     // column end take up one byte each.
198     // The std::numeric_limits<unsigned>::max() is used to represent a column
199     // position at the end of the line without knowing the length of that line.
200     if (ColumnStart == 0 && ColumnEnd == 0) {
201       ColumnStart = 1;
202       ColumnEnd = std::numeric_limits<unsigned>::max();
203     }
204
205     DEBUG({
206       dbgs() << "Counter in file " << InferredFileID << " " << LineStart << ":"
207              << ColumnStart << " -> " << (LineStart + NumLines) << ":"
208              << ColumnEnd << ", ";
209       if (Kind == CounterMappingRegion::ExpansionRegion)
210         dbgs() << "Expands to file " << ExpandedFileID;
211       else
212         CounterMappingContext(Expressions).dump(C, dbgs());
213       dbgs() << "\n";
214     });
215
216     MappingRegions.push_back(CounterMappingRegion(
217         C, InferredFileID, LineStart, ColumnStart, LineStart + NumLines,
218         ColumnEnd, HasCodeBefore, Kind));
219     MappingRegions.back().ExpandedFileID = ExpandedFileID;
220   }
221   return success();
222 }
223
224 std::error_code RawCoverageMappingReader::read() {
225
226   // Read the virtual file mapping.
227   llvm::SmallVector<unsigned, 8> VirtualFileMapping;
228   uint64_t NumFileMappings;
229   if (auto Err = readSize(NumFileMappings))
230     return Err;
231   for (size_t I = 0; I < NumFileMappings; ++I) {
232     uint64_t FilenameIndex;
233     if (auto Err = readIntMax(FilenameIndex, TranslationUnitFilenames.size()))
234       return Err;
235     VirtualFileMapping.push_back(FilenameIndex);
236   }
237
238   // Construct the files using unique filenames and virtual file mapping.
239   for (auto I : VirtualFileMapping) {
240     Filenames.push_back(TranslationUnitFilenames[I]);
241   }
242
243   // Read the expressions.
244   uint64_t NumExpressions;
245   if (auto Err = readSize(NumExpressions))
246     return Err;
247   // Create an array of dummy expressions that get the proper counters
248   // when the expressions are read, and the proper kinds when the counters
249   // are decoded.
250   Expressions.resize(
251       NumExpressions,
252       CounterExpression(CounterExpression::Subtract, Counter(), Counter()));
253   for (size_t I = 0; I < NumExpressions; ++I) {
254     if (auto Err = readCounter(Expressions[I].LHS))
255       return Err;
256     if (auto Err = readCounter(Expressions[I].RHS))
257       return Err;
258   }
259
260   // Read the mapping regions sub-arrays.
261   for (unsigned InferredFileID = 0, S = VirtualFileMapping.size();
262        InferredFileID < S; ++InferredFileID) {
263     if (auto Err = readMappingRegionsSubArray(MappingRegions, InferredFileID,
264                                               VirtualFileMapping.size()))
265       return Err;
266   }
267
268   // Set the counters for the expansion regions.
269   // i.e. Counter of expansion region = counter of the first region
270   // from the expanded file.
271   // Perform multiple passes to correctly propagate the counters through
272   // all the nested expansion regions.
273   SmallVector<CounterMappingRegion *, 8> FileIDExpansionRegionMapping;
274   FileIDExpansionRegionMapping.resize(VirtualFileMapping.size(), nullptr);
275   for (unsigned Pass = 1, S = VirtualFileMapping.size(); Pass < S; ++Pass) {
276     for (auto &R : MappingRegions) {
277       if (R.Kind != CounterMappingRegion::ExpansionRegion)
278         continue;
279       assert(!FileIDExpansionRegionMapping[R.ExpandedFileID]);
280       FileIDExpansionRegionMapping[R.ExpandedFileID] = &R;
281     }
282     for (auto &R : MappingRegions) {
283       if (FileIDExpansionRegionMapping[R.FileID]) {
284         FileIDExpansionRegionMapping[R.FileID]->Count = R.Count;
285         FileIDExpansionRegionMapping[R.FileID] = nullptr;
286       }
287     }
288   }
289
290   return success();
291 }
292
293 ObjectFileCoverageMappingReader::ObjectFileCoverageMappingReader(
294     StringRef FileName)
295     : CurrentRecord(0) {
296   auto File = llvm::object::ObjectFile::createObjectFile(FileName);
297   if (!File)
298     error(File.getError());
299   else
300     Object = std::move(File.get());
301 }
302
303 namespace {
304 /// \brief The coverage mapping data for a single function.
305 /// It points to the function's name.
306 template <typename IntPtrT> struct CoverageMappingFunctionRecord {
307   IntPtrT FunctionNamePtr;
308   uint32_t FunctionNameSize;
309   uint32_t CoverageMappingSize;
310   uint64_t FunctionHash;
311 };
312
313 /// \brief The coverage mapping data for a single translation unit.
314 /// It points to the array of function coverage mapping records and the encoded
315 /// filenames array.
316 template <typename IntPtrT> struct CoverageMappingTURecord {
317   uint32_t FunctionRecordsSize;
318   uint32_t FilenamesSize;
319   uint32_t CoverageMappingsSize;
320   uint32_t Version;
321 };
322
323 /// \brief A helper structure to access the data from a section
324 /// in an object file.
325 struct SectionData {
326   StringRef Data;
327   uint64_t Address;
328
329   std::error_code load(SectionRef &Section) {
330     if (auto Err = Section.getContents(Data))
331       return Err;
332     Address = Section.getAddress();
333     return instrprof_error::success;
334   }
335
336   std::error_code get(uint64_t Pointer, size_t Size, StringRef &Result) {
337     if (Pointer < Address)
338       return instrprof_error::malformed;
339     auto Offset = Pointer - Address;
340     if (Offset + Size > Data.size())
341       return instrprof_error::malformed;
342     Result = Data.substr(Pointer - Address, Size);
343     return instrprof_error::success;
344   }
345 };
346 }
347
348 template <typename T>
349 std::error_code readCoverageMappingData(
350     SectionData &ProfileNames, StringRef Data,
351     std::vector<ObjectFileCoverageMappingReader::ProfileMappingRecord> &Records,
352     std::vector<StringRef> &Filenames) {
353   llvm::DenseSet<T> UniqueFunctionMappingData;
354
355   // Read the records in the coverage data section.
356   while (!Data.empty()) {
357     if (Data.size() < sizeof(CoverageMappingTURecord<T>))
358       return instrprof_error::malformed;
359     auto TU = reinterpret_cast<const CoverageMappingTURecord<T> *>(Data.data());
360     Data = Data.substr(sizeof(CoverageMappingTURecord<T>));
361     switch (TU->Version) {
362     case CoverageMappingVersion1:
363       break;
364     default:
365       return instrprof_error::unsupported_version;
366     }
367     auto Version = CoverageMappingVersion(TU->Version);
368
369     // Get the function records.
370     auto FunctionRecords =
371         reinterpret_cast<const CoverageMappingFunctionRecord<T> *>(Data.data());
372     if (Data.size() <
373         sizeof(CoverageMappingFunctionRecord<T>) * TU->FunctionRecordsSize)
374       return instrprof_error::malformed;
375     Data = Data.substr(sizeof(CoverageMappingFunctionRecord<T>) *
376                        TU->FunctionRecordsSize);
377
378     // Get the filenames.
379     if (Data.size() < TU->FilenamesSize)
380       return instrprof_error::malformed;
381     auto RawFilenames = Data.substr(0, TU->FilenamesSize);
382     Data = Data.substr(TU->FilenamesSize);
383     size_t FilenamesBegin = Filenames.size();
384     RawCoverageFilenamesReader Reader(RawFilenames, Filenames);
385     if (auto Err = Reader.read())
386       return Err;
387
388     // Get the coverage mappings.
389     if (Data.size() < TU->CoverageMappingsSize)
390       return instrprof_error::malformed;
391     auto CoverageMappings = Data.substr(0, TU->CoverageMappingsSize);
392     Data = Data.substr(TU->CoverageMappingsSize);
393
394     for (unsigned I = 0; I < TU->FunctionRecordsSize; ++I) {
395       auto &MappingRecord = FunctionRecords[I];
396
397       // Get the coverage mapping.
398       if (CoverageMappings.size() < MappingRecord.CoverageMappingSize)
399         return instrprof_error::malformed;
400       auto Mapping =
401           CoverageMappings.substr(0, MappingRecord.CoverageMappingSize);
402       CoverageMappings =
403           CoverageMappings.substr(MappingRecord.CoverageMappingSize);
404
405       // Ignore this record if we already have a record that points to the same
406       // function name.
407       // This is useful to ignore the redundant records for the functions
408       // with ODR linkage.
409       if (!UniqueFunctionMappingData.insert(MappingRecord.FunctionNamePtr)
410                .second)
411         continue;
412       StringRef FunctionName;
413       if (auto Err =
414               ProfileNames.get(MappingRecord.FunctionNamePtr,
415                                MappingRecord.FunctionNameSize, FunctionName))
416         return Err;
417       Records.push_back(ObjectFileCoverageMappingReader::ProfileMappingRecord(
418           Version, FunctionName, MappingRecord.FunctionHash, Mapping,
419           FilenamesBegin, Filenames.size() - FilenamesBegin));
420     }
421   }
422
423   return instrprof_error::success;
424 }
425
426 static const char *TestingFormatMagic = "llvmcovmtestdata";
427
428 static std::error_code decodeTestingFormat(StringRef Data,
429                                            SectionData &ProfileNames,
430                                            StringRef &CoverageMapping) {
431   Data = Data.substr(StringRef(TestingFormatMagic).size());
432   if (Data.size() < 1)
433     return instrprof_error::truncated;
434   unsigned N = 0;
435   auto ProfileNamesSize =
436       decodeULEB128(reinterpret_cast<const uint8_t *>(Data.data()), &N);
437   if (N > Data.size())
438     return instrprof_error::malformed;
439   Data = Data.substr(N);
440   if (Data.size() < 1)
441     return instrprof_error::truncated;
442   N = 0;
443   ProfileNames.Address =
444       decodeULEB128(reinterpret_cast<const uint8_t *>(Data.data()), &N);
445   if (N > Data.size())
446     return instrprof_error::malformed;
447   Data = Data.substr(N);
448   if (Data.size() < ProfileNamesSize)
449     return instrprof_error::malformed;
450   ProfileNames.Data = Data.substr(0, ProfileNamesSize);
451   CoverageMapping = Data.substr(ProfileNamesSize);
452   return instrprof_error::success;
453 }
454
455 ObjectFileCoverageMappingReader::ObjectFileCoverageMappingReader(
456     std::unique_ptr<MemoryBuffer> &ObjectBuffer, sys::fs::file_magic Type)
457     : CurrentRecord(0) {
458   if (ObjectBuffer->getBuffer().startswith(TestingFormatMagic)) {
459     // This is a special format used for testing.
460     SectionData ProfileNames;
461     StringRef CoverageMapping;
462     if (auto Err = decodeTestingFormat(ObjectBuffer->getBuffer(), ProfileNames,
463                                        CoverageMapping)) {
464       error(Err);
465       return;
466     }
467     error(readCoverageMappingData<uint64_t>(ProfileNames, CoverageMapping,
468                                             MappingRecords, Filenames));
469     Object = OwningBinary<ObjectFile>(std::unique_ptr<ObjectFile>(),
470                                       std::move(ObjectBuffer));
471     return;
472   }
473
474   auto File = object::ObjectFile::createObjectFile(
475       ObjectBuffer->getMemBufferRef(), Type);
476   if (!File)
477     error(File.getError());
478   else
479     Object = OwningBinary<ObjectFile>(std::move(File.get()),
480                                       std::move(ObjectBuffer));
481 }
482
483 std::error_code ObjectFileCoverageMappingReader::readHeader() {
484   const ObjectFile *OF = Object.getBinary();
485   if (!OF)
486     return getError();
487   auto BytesInAddress = OF->getBytesInAddress();
488   if (BytesInAddress != 4 && BytesInAddress != 8)
489     return error(instrprof_error::malformed);
490
491   // Look for the sections that we are interested in.
492   int FoundSectionCount = 0;
493   SectionRef ProfileNames, CoverageMapping;
494   for (const auto &Section : OF->sections()) {
495     StringRef Name;
496     if (auto Err = Section.getName(Name))
497       return Err;
498     if (Name == "__llvm_prf_names") {
499       ProfileNames = Section;
500     } else if (Name == "__llvm_covmap") {
501       CoverageMapping = Section;
502     } else
503       continue;
504     ++FoundSectionCount;
505   }
506   if (FoundSectionCount != 2)
507     return error(instrprof_error::bad_header);
508
509   // Get the contents of the given sections.
510   StringRef Data;
511   if (auto Err = CoverageMapping.getContents(Data))
512     return Err;
513   SectionData ProfileNamesData;
514   if (auto Err = ProfileNamesData.load(ProfileNames))
515     return Err;
516
517   // Load the data from the found sections.
518   std::error_code Err;
519   if (BytesInAddress == 4)
520     Err = readCoverageMappingData<uint32_t>(ProfileNamesData, Data,
521                                             MappingRecords, Filenames);
522   else
523     Err = readCoverageMappingData<uint64_t>(ProfileNamesData, Data,
524                                             MappingRecords, Filenames);
525   if (Err)
526     return error(Err);
527
528   return success();
529 }
530
531 std::error_code
532 ObjectFileCoverageMappingReader::readNextRecord(CoverageMappingRecord &Record) {
533   if (CurrentRecord >= MappingRecords.size())
534     return error(instrprof_error::eof);
535
536   FunctionsFilenames.clear();
537   Expressions.clear();
538   MappingRegions.clear();
539   auto &R = MappingRecords[CurrentRecord];
540   RawCoverageMappingReader Reader(
541       R.CoverageMapping,
542       makeArrayRef(Filenames).slice(R.FilenamesBegin, R.FilenamesSize),
543       FunctionsFilenames, Expressions, MappingRegions);
544   if (auto Err = Reader.read())
545     return Err;
546
547   Record.FunctionName = R.FunctionName;
548   Record.FunctionHash = R.FunctionHash;
549   Record.Filenames = FunctionsFilenames;
550   Record.Expressions = Expressions;
551   Record.MappingRegions = MappingRegions;
552
553   ++CurrentRecord;
554   return success();
555 }