InstrProf: Add unit tests for the profile reader and writer
[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, ColumnStart, NumLines, ColumnEnd;
177     if (auto Err =
178             readIntMax(LineStartDelta, std::numeric_limits<unsigned>::max()))
179       return Err;
180     if (auto Err = readULEB128(ColumnStart))
181       return Err;
182     if (ColumnStart > std::numeric_limits<unsigned>::max())
183       return error(instrprof_error::malformed);
184     if (auto Err = readIntMax(NumLines, std::numeric_limits<unsigned>::max()))
185       return Err;
186     if (auto Err = readIntMax(ColumnEnd, std::numeric_limits<unsigned>::max()))
187       return Err;
188     LineStart += LineStartDelta;
189     // Adjust the column locations for the empty regions that are supposed to
190     // cover whole lines. Those regions should be encoded with the
191     // column range (1 -> std::numeric_limits<unsigned>::max()), but because
192     // the encoded std::numeric_limits<unsigned>::max() is several bytes long,
193     // we set the column range to (0 -> 0) to ensure that the column start and
194     // column end take up one byte each.
195     // The std::numeric_limits<unsigned>::max() is used to represent a column
196     // position at the end of the line without knowing the length of that line.
197     if (ColumnStart == 0 && ColumnEnd == 0) {
198       ColumnStart = 1;
199       ColumnEnd = std::numeric_limits<unsigned>::max();
200     }
201
202     DEBUG({
203       dbgs() << "Counter in file " << InferredFileID << " " << LineStart << ":"
204              << ColumnStart << " -> " << (LineStart + NumLines) << ":"
205              << ColumnEnd << ", ";
206       if (Kind == CounterMappingRegion::ExpansionRegion)
207         dbgs() << "Expands to file " << ExpandedFileID;
208       else
209         CounterMappingContext(Expressions).dump(C, dbgs());
210       dbgs() << "\n";
211     });
212
213     MappingRegions.push_back(CounterMappingRegion(
214         C, InferredFileID, ExpandedFileID, LineStart, ColumnStart,
215         LineStart + NumLines, ColumnEnd, Kind));
216   }
217   return success();
218 }
219
220 std::error_code RawCoverageMappingReader::read() {
221
222   // Read the virtual file mapping.
223   llvm::SmallVector<unsigned, 8> VirtualFileMapping;
224   uint64_t NumFileMappings;
225   if (auto Err = readSize(NumFileMappings))
226     return Err;
227   for (size_t I = 0; I < NumFileMappings; ++I) {
228     uint64_t FilenameIndex;
229     if (auto Err = readIntMax(FilenameIndex, TranslationUnitFilenames.size()))
230       return Err;
231     VirtualFileMapping.push_back(FilenameIndex);
232   }
233
234   // Construct the files using unique filenames and virtual file mapping.
235   for (auto I : VirtualFileMapping) {
236     Filenames.push_back(TranslationUnitFilenames[I]);
237   }
238
239   // Read the expressions.
240   uint64_t NumExpressions;
241   if (auto Err = readSize(NumExpressions))
242     return Err;
243   // Create an array of dummy expressions that get the proper counters
244   // when the expressions are read, and the proper kinds when the counters
245   // are decoded.
246   Expressions.resize(
247       NumExpressions,
248       CounterExpression(CounterExpression::Subtract, Counter(), Counter()));
249   for (size_t I = 0; I < NumExpressions; ++I) {
250     if (auto Err = readCounter(Expressions[I].LHS))
251       return Err;
252     if (auto Err = readCounter(Expressions[I].RHS))
253       return Err;
254   }
255
256   // Read the mapping regions sub-arrays.
257   for (unsigned InferredFileID = 0, S = VirtualFileMapping.size();
258        InferredFileID < S; ++InferredFileID) {
259     if (auto Err = readMappingRegionsSubArray(MappingRegions, InferredFileID,
260                                               VirtualFileMapping.size()))
261       return Err;
262   }
263
264   // Set the counters for the expansion regions.
265   // i.e. Counter of expansion region = counter of the first region
266   // from the expanded file.
267   // Perform multiple passes to correctly propagate the counters through
268   // all the nested expansion regions.
269   SmallVector<CounterMappingRegion *, 8> FileIDExpansionRegionMapping;
270   FileIDExpansionRegionMapping.resize(VirtualFileMapping.size(), nullptr);
271   for (unsigned Pass = 1, S = VirtualFileMapping.size(); Pass < S; ++Pass) {
272     for (auto &R : MappingRegions) {
273       if (R.Kind != CounterMappingRegion::ExpansionRegion)
274         continue;
275       assert(!FileIDExpansionRegionMapping[R.ExpandedFileID]);
276       FileIDExpansionRegionMapping[R.ExpandedFileID] = &R;
277     }
278     for (auto &R : MappingRegions) {
279       if (FileIDExpansionRegionMapping[R.FileID]) {
280         FileIDExpansionRegionMapping[R.FileID]->Count = R.Count;
281         FileIDExpansionRegionMapping[R.FileID] = nullptr;
282       }
283     }
284   }
285
286   return success();
287 }
288
289 ObjectFileCoverageMappingReader::ObjectFileCoverageMappingReader(
290     StringRef FileName)
291     : CurrentRecord(0) {
292   auto File = llvm::object::ObjectFile::createObjectFile(FileName);
293   if (!File)
294     error(File.getError());
295   else
296     Object = std::move(File.get());
297 }
298
299 namespace {
300 /// \brief The coverage mapping data for a single function.
301 /// It points to the function's name.
302 template <typename IntPtrT> struct CoverageMappingFunctionRecord {
303   IntPtrT FunctionNamePtr;
304   uint32_t FunctionNameSize;
305   uint32_t CoverageMappingSize;
306   uint64_t FunctionHash;
307 };
308
309 /// \brief The coverage mapping data for a single translation unit.
310 /// It points to the array of function coverage mapping records and the encoded
311 /// filenames array.
312 template <typename IntPtrT> struct CoverageMappingTURecord {
313   uint32_t FunctionRecordsSize;
314   uint32_t FilenamesSize;
315   uint32_t CoverageMappingsSize;
316   uint32_t Version;
317 };
318
319 /// \brief A helper structure to access the data from a section
320 /// in an object file.
321 struct SectionData {
322   StringRef Data;
323   uint64_t Address;
324
325   std::error_code load(SectionRef &Section) {
326     if (auto Err = Section.getContents(Data))
327       return Err;
328     Address = Section.getAddress();
329     return instrprof_error::success;
330   }
331
332   std::error_code get(uint64_t Pointer, size_t Size, StringRef &Result) {
333     if (Pointer < Address)
334       return instrprof_error::malformed;
335     auto Offset = Pointer - Address;
336     if (Offset + Size > Data.size())
337       return instrprof_error::malformed;
338     Result = Data.substr(Pointer - Address, Size);
339     return instrprof_error::success;
340   }
341 };
342 }
343
344 template <typename T>
345 std::error_code readCoverageMappingData(
346     SectionData &ProfileNames, StringRef Data,
347     std::vector<ObjectFileCoverageMappingReader::ProfileMappingRecord> &Records,
348     std::vector<StringRef> &Filenames) {
349   llvm::DenseSet<T> UniqueFunctionMappingData;
350
351   // Read the records in the coverage data section.
352   while (!Data.empty()) {
353     if (Data.size() < sizeof(CoverageMappingTURecord<T>))
354       return instrprof_error::malformed;
355     auto TU = reinterpret_cast<const CoverageMappingTURecord<T> *>(Data.data());
356     Data = Data.substr(sizeof(CoverageMappingTURecord<T>));
357     switch (TU->Version) {
358     case CoverageMappingVersion1:
359       break;
360     default:
361       return instrprof_error::unsupported_version;
362     }
363     auto Version = CoverageMappingVersion(TU->Version);
364
365     // Get the function records.
366     auto FunctionRecords =
367         reinterpret_cast<const CoverageMappingFunctionRecord<T> *>(Data.data());
368     if (Data.size() <
369         sizeof(CoverageMappingFunctionRecord<T>) * TU->FunctionRecordsSize)
370       return instrprof_error::malformed;
371     Data = Data.substr(sizeof(CoverageMappingFunctionRecord<T>) *
372                        TU->FunctionRecordsSize);
373
374     // Get the filenames.
375     if (Data.size() < TU->FilenamesSize)
376       return instrprof_error::malformed;
377     auto RawFilenames = Data.substr(0, TU->FilenamesSize);
378     Data = Data.substr(TU->FilenamesSize);
379     size_t FilenamesBegin = Filenames.size();
380     RawCoverageFilenamesReader Reader(RawFilenames, Filenames);
381     if (auto Err = Reader.read())
382       return Err;
383
384     // Get the coverage mappings.
385     if (Data.size() < TU->CoverageMappingsSize)
386       return instrprof_error::malformed;
387     auto CoverageMappings = Data.substr(0, TU->CoverageMappingsSize);
388     Data = Data.substr(TU->CoverageMappingsSize);
389
390     for (unsigned I = 0; I < TU->FunctionRecordsSize; ++I) {
391       auto &MappingRecord = FunctionRecords[I];
392
393       // Get the coverage mapping.
394       if (CoverageMappings.size() < MappingRecord.CoverageMappingSize)
395         return instrprof_error::malformed;
396       auto Mapping =
397           CoverageMappings.substr(0, MappingRecord.CoverageMappingSize);
398       CoverageMappings =
399           CoverageMappings.substr(MappingRecord.CoverageMappingSize);
400
401       // Ignore this record if we already have a record that points to the same
402       // function name.
403       // This is useful to ignore the redundant records for the functions
404       // with ODR linkage.
405       if (!UniqueFunctionMappingData.insert(MappingRecord.FunctionNamePtr)
406                .second)
407         continue;
408       StringRef FunctionName;
409       if (auto Err =
410               ProfileNames.get(MappingRecord.FunctionNamePtr,
411                                MappingRecord.FunctionNameSize, FunctionName))
412         return Err;
413       Records.push_back(ObjectFileCoverageMappingReader::ProfileMappingRecord(
414           Version, FunctionName, MappingRecord.FunctionHash, Mapping,
415           FilenamesBegin, Filenames.size() - FilenamesBegin));
416     }
417   }
418
419   return instrprof_error::success;
420 }
421
422 static const char *TestingFormatMagic = "llvmcovmtestdata";
423
424 static std::error_code decodeTestingFormat(StringRef Data,
425                                            SectionData &ProfileNames,
426                                            StringRef &CoverageMapping) {
427   Data = Data.substr(StringRef(TestingFormatMagic).size());
428   if (Data.size() < 1)
429     return instrprof_error::truncated;
430   unsigned N = 0;
431   auto ProfileNamesSize =
432       decodeULEB128(reinterpret_cast<const uint8_t *>(Data.data()), &N);
433   if (N > Data.size())
434     return instrprof_error::malformed;
435   Data = Data.substr(N);
436   if (Data.size() < 1)
437     return instrprof_error::truncated;
438   N = 0;
439   ProfileNames.Address =
440       decodeULEB128(reinterpret_cast<const uint8_t *>(Data.data()), &N);
441   if (N > Data.size())
442     return instrprof_error::malformed;
443   Data = Data.substr(N);
444   if (Data.size() < ProfileNamesSize)
445     return instrprof_error::malformed;
446   ProfileNames.Data = Data.substr(0, ProfileNamesSize);
447   CoverageMapping = Data.substr(ProfileNamesSize);
448   return instrprof_error::success;
449 }
450
451 ObjectFileCoverageMappingReader::ObjectFileCoverageMappingReader(
452     std::unique_ptr<MemoryBuffer> &ObjectBuffer, sys::fs::file_magic Type)
453     : CurrentRecord(0) {
454   if (ObjectBuffer->getBuffer().startswith(TestingFormatMagic)) {
455     // This is a special format used for testing.
456     SectionData ProfileNames;
457     StringRef CoverageMapping;
458     if (auto Err = decodeTestingFormat(ObjectBuffer->getBuffer(), ProfileNames,
459                                        CoverageMapping)) {
460       error(Err);
461       return;
462     }
463     error(readCoverageMappingData<uint64_t>(ProfileNames, CoverageMapping,
464                                             MappingRecords, Filenames));
465     Object = OwningBinary<ObjectFile>(std::unique_ptr<ObjectFile>(),
466                                       std::move(ObjectBuffer));
467     return;
468   }
469
470   auto File = object::ObjectFile::createObjectFile(
471       ObjectBuffer->getMemBufferRef(), Type);
472   if (!File)
473     error(File.getError());
474   else
475     Object = OwningBinary<ObjectFile>(std::move(File.get()),
476                                       std::move(ObjectBuffer));
477 }
478
479 std::error_code ObjectFileCoverageMappingReader::readHeader() {
480   const ObjectFile *OF = Object.getBinary();
481   if (!OF)
482     return getError();
483   auto BytesInAddress = OF->getBytesInAddress();
484   if (BytesInAddress != 4 && BytesInAddress != 8)
485     return error(instrprof_error::malformed);
486
487   // Look for the sections that we are interested in.
488   int FoundSectionCount = 0;
489   SectionRef ProfileNames, CoverageMapping;
490   for (const auto &Section : OF->sections()) {
491     StringRef Name;
492     if (auto Err = Section.getName(Name))
493       return Err;
494     if (Name == "__llvm_prf_names") {
495       ProfileNames = Section;
496     } else if (Name == "__llvm_covmap") {
497       CoverageMapping = Section;
498     } else
499       continue;
500     ++FoundSectionCount;
501   }
502   if (FoundSectionCount != 2)
503     return error(instrprof_error::bad_header);
504
505   // Get the contents of the given sections.
506   StringRef Data;
507   if (auto Err = CoverageMapping.getContents(Data))
508     return Err;
509   SectionData ProfileNamesData;
510   if (auto Err = ProfileNamesData.load(ProfileNames))
511     return Err;
512
513   // Load the data from the found sections.
514   std::error_code Err;
515   if (BytesInAddress == 4)
516     Err = readCoverageMappingData<uint32_t>(ProfileNamesData, Data,
517                                             MappingRecords, Filenames);
518   else
519     Err = readCoverageMappingData<uint64_t>(ProfileNamesData, Data,
520                                             MappingRecords, Filenames);
521   if (Err)
522     return error(Err);
523
524   return success();
525 }
526
527 std::error_code
528 ObjectFileCoverageMappingReader::readNextRecord(CoverageMappingRecord &Record) {
529   if (CurrentRecord >= MappingRecords.size())
530     return error(instrprof_error::eof);
531
532   FunctionsFilenames.clear();
533   Expressions.clear();
534   MappingRegions.clear();
535   auto &R = MappingRecords[CurrentRecord];
536   RawCoverageMappingReader Reader(
537       R.CoverageMapping,
538       makeArrayRef(Filenames).slice(R.FilenamesBegin, R.FilenamesSize),
539       FunctionsFilenames, Expressions, MappingRegions);
540   if (auto Err = Reader.read())
541     return Err;
542
543   Record.FunctionName = R.FunctionName;
544   Record.FunctionHash = R.FunctionHash;
545   Record.Filenames = FunctionsFilenames;
546   Record.Expressions = Expressions;
547   Record.MappingRegions = MappingRegions;
548
549   ++CurrentRecord;
550   return success();
551 }