172208a82SEugene Zelenko //===- CoverageMapping.cpp - Code coverage mapping support ----------------===//
2dc707122SEaswaran Raman //
32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6dc707122SEaswaran Raman //
7dc707122SEaswaran Raman //===----------------------------------------------------------------------===//
8dc707122SEaswaran Raman //
9dc707122SEaswaran Raman // This file contains support for clang's and llvm's instrumentation based
10dc707122SEaswaran Raman // code coverage.
11dc707122SEaswaran Raman //
12dc707122SEaswaran Raman //===----------------------------------------------------------------------===//
13dc707122SEaswaran Raman 
146bda14b3SChandler Carruth #include "llvm/ProfileData/Coverage/CoverageMapping.h"
15e78d131aSEugene Zelenko #include "llvm/ADT/ArrayRef.h"
16dc707122SEaswaran Raman #include "llvm/ADT/DenseMap.h"
17e78d131aSEugene Zelenko #include "llvm/ADT/None.h"
18dc707122SEaswaran Raman #include "llvm/ADT/Optional.h"
19dc707122SEaswaran Raman #include "llvm/ADT/SmallBitVector.h"
20e78d131aSEugene Zelenko #include "llvm/ADT/SmallVector.h"
21e78d131aSEugene Zelenko #include "llvm/ADT/StringRef.h"
22dc707122SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMappingReader.h"
23dc707122SEaswaran Raman #include "llvm/ProfileData/InstrProfReader.h"
24dc707122SEaswaran Raman #include "llvm/Support/Debug.h"
25dc707122SEaswaran Raman #include "llvm/Support/Errc.h"
26e78d131aSEugene Zelenko #include "llvm/Support/Error.h"
27dc707122SEaswaran Raman #include "llvm/Support/ErrorHandling.h"
28dc707122SEaswaran Raman #include "llvm/Support/ManagedStatic.h"
29e78d131aSEugene Zelenko #include "llvm/Support/MemoryBuffer.h"
30dc707122SEaswaran Raman #include "llvm/Support/raw_ostream.h"
31e78d131aSEugene Zelenko #include <algorithm>
32e78d131aSEugene Zelenko #include <cassert>
33e78d131aSEugene Zelenko #include <cstdint>
34e78d131aSEugene Zelenko #include <iterator>
357bef6da6SVedant Kumar #include <map>
36e78d131aSEugene Zelenko #include <memory>
37e78d131aSEugene Zelenko #include <string>
38e78d131aSEugene Zelenko #include <system_error>
39e78d131aSEugene Zelenko #include <utility>
40e78d131aSEugene Zelenko #include <vector>
41dc707122SEaswaran Raman 
42dc707122SEaswaran Raman using namespace llvm;
43dc707122SEaswaran Raman using namespace coverage;
44dc707122SEaswaran Raman 
45dc707122SEaswaran Raman #define DEBUG_TYPE "coverage-mapping"
46dc707122SEaswaran Raman 
47dc707122SEaswaran Raman Counter CounterExpressionBuilder::get(const CounterExpression &E) {
48dc707122SEaswaran Raman   auto It = ExpressionIndices.find(E);
49dc707122SEaswaran Raman   if (It != ExpressionIndices.end())
50dc707122SEaswaran Raman     return Counter::getExpression(It->second);
51dc707122SEaswaran Raman   unsigned I = Expressions.size();
52dc707122SEaswaran Raman   Expressions.push_back(E);
53dc707122SEaswaran Raman   ExpressionIndices[E] = I;
54dc707122SEaswaran Raman   return Counter::getExpression(I);
55dc707122SEaswaran Raman }
56dc707122SEaswaran Raman 
5771b3d721SVedant Kumar void CounterExpressionBuilder::extractTerms(Counter C, int Factor,
5871b3d721SVedant Kumar                                             SmallVectorImpl<Term> &Terms) {
59dc707122SEaswaran Raman   switch (C.getKind()) {
60dc707122SEaswaran Raman   case Counter::Zero:
61dc707122SEaswaran Raman     break;
62dc707122SEaswaran Raman   case Counter::CounterValueReference:
6371b3d721SVedant Kumar     Terms.emplace_back(C.getCounterID(), Factor);
64dc707122SEaswaran Raman     break;
65dc707122SEaswaran Raman   case Counter::Expression:
66dc707122SEaswaran Raman     const auto &E = Expressions[C.getExpressionID()];
6771b3d721SVedant Kumar     extractTerms(E.LHS, Factor, Terms);
6871b3d721SVedant Kumar     extractTerms(
6971b3d721SVedant Kumar         E.RHS, E.Kind == CounterExpression::Subtract ? -Factor : Factor, Terms);
70dc707122SEaswaran Raman     break;
71dc707122SEaswaran Raman   }
72dc707122SEaswaran Raman }
73dc707122SEaswaran Raman 
74dc707122SEaswaran Raman Counter CounterExpressionBuilder::simplify(Counter ExpressionTree) {
75dc707122SEaswaran Raman   // Gather constant terms.
7671b3d721SVedant Kumar   SmallVector<Term, 32> Terms;
77dc707122SEaswaran Raman   extractTerms(ExpressionTree, +1, Terms);
78dc707122SEaswaran Raman 
79dc707122SEaswaran Raman   // If there are no terms, this is just a zero. The algorithm below assumes at
80dc707122SEaswaran Raman   // least one term.
81dc707122SEaswaran Raman   if (Terms.size() == 0)
82dc707122SEaswaran Raman     return Counter::getZero();
83dc707122SEaswaran Raman 
84dc707122SEaswaran Raman   // Group the terms by counter ID.
850cac726aSFangrui Song   llvm::sort(Terms, [](const Term &LHS, const Term &RHS) {
8671b3d721SVedant Kumar     return LHS.CounterID < RHS.CounterID;
87dc707122SEaswaran Raman   });
88dc707122SEaswaran Raman 
89dc707122SEaswaran Raman   // Combine terms by counter ID to eliminate counters that sum to zero.
90dc707122SEaswaran Raman   auto Prev = Terms.begin();
91dc707122SEaswaran Raman   for (auto I = Prev + 1, E = Terms.end(); I != E; ++I) {
9271b3d721SVedant Kumar     if (I->CounterID == Prev->CounterID) {
9371b3d721SVedant Kumar       Prev->Factor += I->Factor;
94dc707122SEaswaran Raman       continue;
95dc707122SEaswaran Raman     }
96dc707122SEaswaran Raman     ++Prev;
97dc707122SEaswaran Raman     *Prev = *I;
98dc707122SEaswaran Raman   }
99dc707122SEaswaran Raman   Terms.erase(++Prev, Terms.end());
100dc707122SEaswaran Raman 
101dc707122SEaswaran Raman   Counter C;
102dc707122SEaswaran Raman   // Create additions. We do this before subtractions to avoid constructs like
103dc707122SEaswaran Raman   // ((0 - X) + Y), as opposed to (Y - X).
10471b3d721SVedant Kumar   for (auto T : Terms) {
10571b3d721SVedant Kumar     if (T.Factor <= 0)
106dc707122SEaswaran Raman       continue;
10771b3d721SVedant Kumar     for (int I = 0; I < T.Factor; ++I)
108dc707122SEaswaran Raman       if (C.isZero())
10971b3d721SVedant Kumar         C = Counter::getCounter(T.CounterID);
110dc707122SEaswaran Raman       else
111dc707122SEaswaran Raman         C = get(CounterExpression(CounterExpression::Add, C,
11271b3d721SVedant Kumar                                   Counter::getCounter(T.CounterID)));
113dc707122SEaswaran Raman   }
114dc707122SEaswaran Raman 
115dc707122SEaswaran Raman   // Create subtractions.
11671b3d721SVedant Kumar   for (auto T : Terms) {
11771b3d721SVedant Kumar     if (T.Factor >= 0)
118dc707122SEaswaran Raman       continue;
11971b3d721SVedant Kumar     for (int I = 0; I < -T.Factor; ++I)
120dc707122SEaswaran Raman       C = get(CounterExpression(CounterExpression::Subtract, C,
12171b3d721SVedant Kumar                                 Counter::getCounter(T.CounterID)));
122dc707122SEaswaran Raman   }
123dc707122SEaswaran Raman   return C;
124dc707122SEaswaran Raman }
125dc707122SEaswaran Raman 
126dc707122SEaswaran Raman Counter CounterExpressionBuilder::add(Counter LHS, Counter RHS) {
127dc707122SEaswaran Raman   return simplify(get(CounterExpression(CounterExpression::Add, LHS, RHS)));
128dc707122SEaswaran Raman }
129dc707122SEaswaran Raman 
130dc707122SEaswaran Raman Counter CounterExpressionBuilder::subtract(Counter LHS, Counter RHS) {
131dc707122SEaswaran Raman   return simplify(
132dc707122SEaswaran Raman       get(CounterExpression(CounterExpression::Subtract, LHS, RHS)));
133dc707122SEaswaran Raman }
134dc707122SEaswaran Raman 
135e78d131aSEugene Zelenko void CounterMappingContext::dump(const Counter &C, raw_ostream &OS) const {
136dc707122SEaswaran Raman   switch (C.getKind()) {
137dc707122SEaswaran Raman   case Counter::Zero:
138dc707122SEaswaran Raman     OS << '0';
139dc707122SEaswaran Raman     return;
140dc707122SEaswaran Raman   case Counter::CounterValueReference:
141dc707122SEaswaran Raman     OS << '#' << C.getCounterID();
142dc707122SEaswaran Raman     break;
143dc707122SEaswaran Raman   case Counter::Expression: {
144dc707122SEaswaran Raman     if (C.getExpressionID() >= Expressions.size())
145dc707122SEaswaran Raman       return;
146dc707122SEaswaran Raman     const auto &E = Expressions[C.getExpressionID()];
147dc707122SEaswaran Raman     OS << '(';
148dc707122SEaswaran Raman     dump(E.LHS, OS);
149dc707122SEaswaran Raman     OS << (E.Kind == CounterExpression::Subtract ? " - " : " + ");
150dc707122SEaswaran Raman     dump(E.RHS, OS);
151dc707122SEaswaran Raman     OS << ')';
152dc707122SEaswaran Raman     break;
153dc707122SEaswaran Raman   }
154dc707122SEaswaran Raman   }
155dc707122SEaswaran Raman   if (CounterValues.empty())
156dc707122SEaswaran Raman     return;
1579152fd17SVedant Kumar   Expected<int64_t> Value = evaluate(C);
1589152fd17SVedant Kumar   if (auto E = Value.takeError()) {
159e78d131aSEugene Zelenko     consumeError(std::move(E));
160dc707122SEaswaran Raman     return;
1619152fd17SVedant Kumar   }
162dc707122SEaswaran Raman   OS << '[' << *Value << ']';
163dc707122SEaswaran Raman }
164dc707122SEaswaran Raman 
1659152fd17SVedant Kumar Expected<int64_t> CounterMappingContext::evaluate(const Counter &C) const {
166dc707122SEaswaran Raman   switch (C.getKind()) {
167dc707122SEaswaran Raman   case Counter::Zero:
168dc707122SEaswaran Raman     return 0;
169dc707122SEaswaran Raman   case Counter::CounterValueReference:
170dc707122SEaswaran Raman     if (C.getCounterID() >= CounterValues.size())
1719152fd17SVedant Kumar       return errorCodeToError(errc::argument_out_of_domain);
172dc707122SEaswaran Raman     return CounterValues[C.getCounterID()];
173dc707122SEaswaran Raman   case Counter::Expression: {
174dc707122SEaswaran Raman     if (C.getExpressionID() >= Expressions.size())
1759152fd17SVedant Kumar       return errorCodeToError(errc::argument_out_of_domain);
176dc707122SEaswaran Raman     const auto &E = Expressions[C.getExpressionID()];
1779152fd17SVedant Kumar     Expected<int64_t> LHS = evaluate(E.LHS);
178dc707122SEaswaran Raman     if (!LHS)
179dc707122SEaswaran Raman       return LHS;
1809152fd17SVedant Kumar     Expected<int64_t> RHS = evaluate(E.RHS);
181dc707122SEaswaran Raman     if (!RHS)
182dc707122SEaswaran Raman       return RHS;
183dc707122SEaswaran Raman     return E.Kind == CounterExpression::Subtract ? *LHS - *RHS : *LHS + *RHS;
184dc707122SEaswaran Raman   }
185dc707122SEaswaran Raman   }
186dc707122SEaswaran Raman   llvm_unreachable("Unhandled CounterKind");
187dc707122SEaswaran Raman }
188dc707122SEaswaran Raman 
189dc707122SEaswaran Raman void FunctionRecordIterator::skipOtherFiles() {
190dc707122SEaswaran Raman   while (Current != Records.end() && !Filename.empty() &&
191dc707122SEaswaran Raman          Filename != Current->Filenames[0])
192dc707122SEaswaran Raman     ++Current;
193dc707122SEaswaran Raman   if (Current == Records.end())
194dc707122SEaswaran Raman     *this = FunctionRecordIterator();
195dc707122SEaswaran Raman }
196dc707122SEaswaran Raman 
197413647d7SVedant Kumar ArrayRef<unsigned> CoverageMapping::getImpreciseRecordIndicesForFilename(
198413647d7SVedant Kumar     StringRef Filename) const {
199413647d7SVedant Kumar   size_t FilenameHash = hash_value(Filename);
200413647d7SVedant Kumar   auto RecordIt = FilenameHash2RecordIndices.find(FilenameHash);
201413647d7SVedant Kumar   if (RecordIt == FilenameHash2RecordIndices.end())
202413647d7SVedant Kumar     return {};
203413647d7SVedant Kumar   return RecordIt->second;
204413647d7SVedant Kumar }
205413647d7SVedant Kumar 
20668216d7bSVedant Kumar Error CoverageMapping::loadFunctionRecord(
20768216d7bSVedant Kumar     const CoverageMappingRecord &Record,
208dc707122SEaswaran Raman     IndexedInstrProfReader &ProfileReader) {
209743574b8SVedant Kumar   StringRef OrigFuncName = Record.FunctionName;
210b1d331a3SVedant Kumar   if (OrigFuncName.empty())
211b1d331a3SVedant Kumar     return make_error<CoverageMapError>(coveragemap_error::malformed);
212b1d331a3SVedant Kumar 
213743574b8SVedant Kumar   if (Record.Filenames.empty())
214743574b8SVedant Kumar     OrigFuncName = getFuncNameWithoutPrefix(OrigFuncName);
215743574b8SVedant Kumar   else
216743574b8SVedant Kumar     OrigFuncName = getFuncNameWithoutPrefix(OrigFuncName, Record.Filenames[0]);
217743574b8SVedant Kumar 
218dc707122SEaswaran Raman   CounterMappingContext Ctx(Record.Expressions);
219dc707122SEaswaran Raman 
22068216d7bSVedant Kumar   std::vector<uint64_t> Counts;
22168216d7bSVedant Kumar   if (Error E = ProfileReader.getFunctionCounts(Record.FunctionName,
22268216d7bSVedant Kumar                                                 Record.FunctionHash, Counts)) {
2239152fd17SVedant Kumar     instrprof_error IPE = InstrProfError::take(std::move(E));
2249152fd17SVedant Kumar     if (IPE == instrprof_error::hash_mismatch) {
225a9bc7b83SBenjamin Kramer       FuncHashMismatches.emplace_back(std::string(Record.FunctionName),
226a9bc7b83SBenjamin Kramer                                       Record.FunctionHash);
22768216d7bSVedant Kumar       return Error::success();
2289152fd17SVedant Kumar     } else if (IPE != instrprof_error::unknown_function)
2299152fd17SVedant Kumar       return make_error<InstrProfError>(IPE);
230dc707122SEaswaran Raman     Counts.assign(Record.MappingRegions.size(), 0);
231dc707122SEaswaran Raman   }
232dc707122SEaswaran Raman   Ctx.setCounts(Counts);
233dc707122SEaswaran Raman 
234dc707122SEaswaran Raman   assert(!Record.MappingRegions.empty() && "Function has no regions");
235dc707122SEaswaran Raman 
236381e9d23SVedant Kumar   // This coverage record is a zero region for a function that's unused in
237381e9d23SVedant Kumar   // some TU, but used in a different TU. Ignore it. The coverage maps from the
238381e9d23SVedant Kumar   // the other TU will either be loaded (providing full region counts) or they
239381e9d23SVedant Kumar   // won't (in which case we don't unintuitively report functions as uncovered
240381e9d23SVedant Kumar   // when they have non-zero counts in the profile).
241381e9d23SVedant Kumar   if (Record.MappingRegions.size() == 1 &&
242381e9d23SVedant Kumar       Record.MappingRegions[0].Count.isZero() && Counts[0] > 0)
243381e9d23SVedant Kumar     return Error::success();
244381e9d23SVedant Kumar 
245dc707122SEaswaran Raman   FunctionRecord Function(OrigFuncName, Record.Filenames);
246dc707122SEaswaran Raman   for (const auto &Region : Record.MappingRegions) {
2479152fd17SVedant Kumar     Expected<int64_t> ExecutionCount = Ctx.evaluate(Region.Count);
2489152fd17SVedant Kumar     if (auto E = ExecutionCount.takeError()) {
249e78d131aSEugene Zelenko       consumeError(std::move(E));
25068216d7bSVedant Kumar       return Error::success();
2519152fd17SVedant Kumar     }
252dc707122SEaswaran Raman     Function.pushRegion(Region, *ExecutionCount);
253dc707122SEaswaran Raman   }
254dc707122SEaswaran Raman 
255381e9d23SVedant Kumar   // Don't create records for (filenames, function) pairs we've already seen.
256381e9d23SVedant Kumar   auto FilenamesHash = hash_combine_range(Record.Filenames.begin(),
257381e9d23SVedant Kumar                                           Record.Filenames.end());
258381e9d23SVedant Kumar   if (!RecordProvenance[FilenamesHash].insert(hash_value(OrigFuncName)).second)
259381e9d23SVedant Kumar     return Error::success();
260381e9d23SVedant Kumar 
26168216d7bSVedant Kumar   Functions.push_back(std::move(Function));
262413647d7SVedant Kumar 
263413647d7SVedant Kumar   // Performance optimization: keep track of the indices of the function records
264413647d7SVedant Kumar   // which correspond to each filename. This can be used to substantially speed
265413647d7SVedant Kumar   // up queries for coverage info in a file.
266413647d7SVedant Kumar   unsigned RecordIndex = Functions.size() - 1;
267413647d7SVedant Kumar   for (StringRef Filename : Record.Filenames) {
268413647d7SVedant Kumar     auto &RecordIndices = FilenameHash2RecordIndices[hash_value(Filename)];
269413647d7SVedant Kumar     // Note that there may be duplicates in the filename set for a function
270413647d7SVedant Kumar     // record, because of e.g. macro expansions in the function in which both
271413647d7SVedant Kumar     // the macro and the function are defined in the same file.
272413647d7SVedant Kumar     if (RecordIndices.empty() || RecordIndices.back() != RecordIndex)
273413647d7SVedant Kumar       RecordIndices.push_back(RecordIndex);
274413647d7SVedant Kumar   }
275413647d7SVedant Kumar 
27668216d7bSVedant Kumar   return Error::success();
277dc707122SEaswaran Raman }
278dc707122SEaswaran Raman 
279743574b8SVedant Kumar Expected<std::unique_ptr<CoverageMapping>> CoverageMapping::load(
280743574b8SVedant Kumar     ArrayRef<std::unique_ptr<CoverageMappingReader>> CoverageReaders,
281743574b8SVedant Kumar     IndexedInstrProfReader &ProfileReader) {
282743574b8SVedant Kumar   auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping());
283743574b8SVedant Kumar 
284bae83970SVedant Kumar   for (const auto &CoverageReader : CoverageReaders) {
285bae83970SVedant Kumar     for (auto RecordOrErr : *CoverageReader) {
286bae83970SVedant Kumar       if (Error E = RecordOrErr.takeError())
287c55cf4afSBill Wendling         return std::move(E);
288bae83970SVedant Kumar       const auto &Record = *RecordOrErr;
289743574b8SVedant Kumar       if (Error E = Coverage->loadFunctionRecord(Record, ProfileReader))
290c55cf4afSBill Wendling         return std::move(E);
291bae83970SVedant Kumar     }
292bae83970SVedant Kumar   }
293743574b8SVedant Kumar 
294c55cf4afSBill Wendling   return std::move(Coverage);
295743574b8SVedant Kumar }
296743574b8SVedant Kumar 
297f025968bSJames Y Knight // If E is a no_data_found error, returns success. Otherwise returns E.
298f025968bSJames Y Knight static Error handleMaybeNoDataFoundError(Error E) {
299f025968bSJames Y Knight   return handleErrors(
300f025968bSJames Y Knight       std::move(E), [](const CoverageMapError &CME) {
301f025968bSJames Y Knight         if (CME.get() == coveragemap_error::no_data_found)
302f025968bSJames Y Knight           return static_cast<Error>(Error::success());
303f025968bSJames Y Knight         return make_error<CoverageMapError>(CME.get());
304f025968bSJames Y Knight       });
305f025968bSJames Y Knight }
306f025968bSJames Y Knight 
307743574b8SVedant Kumar Expected<std::unique_ptr<CoverageMapping>>
308743574b8SVedant Kumar CoverageMapping::load(ArrayRef<StringRef> ObjectFilenames,
3094b102c3dSVedant Kumar                       StringRef ProfileFilename, ArrayRef<StringRef> Arches) {
310dc707122SEaswaran Raman   auto ProfileReaderOrErr = IndexedInstrProfReader::create(ProfileFilename);
3119152fd17SVedant Kumar   if (Error E = ProfileReaderOrErr.takeError())
312c55cf4afSBill Wendling     return std::move(E);
313dc707122SEaswaran Raman   auto ProfileReader = std::move(ProfileReaderOrErr.get());
314743574b8SVedant Kumar 
315743574b8SVedant Kumar   SmallVector<std::unique_ptr<CoverageMappingReader>, 4> Readers;
316743574b8SVedant Kumar   SmallVector<std::unique_ptr<MemoryBuffer>, 4> Buffers;
3174b102c3dSVedant Kumar   for (const auto &File : llvm::enumerate(ObjectFilenames)) {
3184b102c3dSVedant Kumar     auto CovMappingBufOrErr = MemoryBuffer::getFileOrSTDIN(File.value());
319743574b8SVedant Kumar     if (std::error_code EC = CovMappingBufOrErr.getError())
320743574b8SVedant Kumar       return errorCodeToError(EC);
3214b102c3dSVedant Kumar     StringRef Arch = Arches.empty() ? StringRef() : Arches[File.index()];
322901d04fcSVedant Kumar     MemoryBufferRef CovMappingBufRef =
323901d04fcSVedant Kumar         CovMappingBufOrErr.get()->getMemBufferRef();
324901d04fcSVedant Kumar     auto CoverageReadersOrErr =
325901d04fcSVedant Kumar         BinaryCoverageReader::create(CovMappingBufRef, Arch, Buffers);
326f025968bSJames Y Knight     if (Error E = CoverageReadersOrErr.takeError()) {
327f025968bSJames Y Knight       E = handleMaybeNoDataFoundError(std::move(E));
328f025968bSJames Y Knight       if (E)
329c55cf4afSBill Wendling         return std::move(E);
330f025968bSJames Y Knight       // E == success (originally a no_data_found error).
331f025968bSJames Y Knight       continue;
332f025968bSJames Y Knight     }
333901d04fcSVedant Kumar     for (auto &Reader : CoverageReadersOrErr.get())
334901d04fcSVedant Kumar       Readers.push_back(std::move(Reader));
335743574b8SVedant Kumar     Buffers.push_back(std::move(CovMappingBufOrErr.get()));
336743574b8SVedant Kumar   }
337f025968bSJames Y Knight   // If no readers were created, either no objects were provided or none of them
338f025968bSJames Y Knight   // had coverage data. Return an error in the latter case.
339f025968bSJames Y Knight   if (Readers.empty() && !ObjectFilenames.empty())
340f025968bSJames Y Knight     return make_error<CoverageMapError>(coveragemap_error::no_data_found);
341743574b8SVedant Kumar   return load(Readers, *ProfileReader);
342dc707122SEaswaran Raman }
343dc707122SEaswaran Raman 
344dc707122SEaswaran Raman namespace {
345e78d131aSEugene Zelenko 
3465f8f34e4SAdrian Prantl /// Distributes functions into instantiation sets.
347dc707122SEaswaran Raman ///
348dc707122SEaswaran Raman /// An instantiation set is a collection of functions that have the same source
349dc707122SEaswaran Raman /// code, ie, template functions specializations.
350dc707122SEaswaran Raman class FunctionInstantiationSetCollector {
3517bef6da6SVedant Kumar   using MapT = std::map<LineColPair, std::vector<const FunctionRecord *>>;
352dc707122SEaswaran Raman   MapT InstantiatedFunctions;
353dc707122SEaswaran Raman 
354dc707122SEaswaran Raman public:
355dc707122SEaswaran Raman   void insert(const FunctionRecord &Function, unsigned FileID) {
356dc707122SEaswaran Raman     auto I = Function.CountedRegions.begin(), E = Function.CountedRegions.end();
357dc707122SEaswaran Raman     while (I != E && I->FileID != FileID)
358dc707122SEaswaran Raman       ++I;
359dc707122SEaswaran Raman     assert(I != E && "function does not cover the given file");
360dc707122SEaswaran Raman     auto &Functions = InstantiatedFunctions[I->startLoc()];
361dc707122SEaswaran Raman     Functions.push_back(&Function);
362dc707122SEaswaran Raman   }
363dc707122SEaswaran Raman 
364dc707122SEaswaran Raman   MapT::iterator begin() { return InstantiatedFunctions.begin(); }
365dc707122SEaswaran Raman   MapT::iterator end() { return InstantiatedFunctions.end(); }
366dc707122SEaswaran Raman };
367dc707122SEaswaran Raman 
368dc707122SEaswaran Raman class SegmentBuilder {
369dc707122SEaswaran Raman   std::vector<CoverageSegment> &Segments;
370dc707122SEaswaran Raman   SmallVector<const CountedRegion *, 8> ActiveRegions;
371dc707122SEaswaran Raman 
372dc707122SEaswaran Raman   SegmentBuilder(std::vector<CoverageSegment> &Segments) : Segments(Segments) {}
373dc707122SEaswaran Raman 
37479a1b5eeSVedant Kumar   /// Emit a segment with the count from \p Region starting at \p StartLoc.
37579a1b5eeSVedant Kumar   //
376ad8f637bSVedant Kumar   /// \p IsRegionEntry: The segment is at the start of a new non-gap region.
37779a1b5eeSVedant Kumar   /// \p EmitSkippedRegion: The segment must be emitted as a skipped region.
37879a1b5eeSVedant Kumar   void startSegment(const CountedRegion &Region, LineColPair StartLoc,
37979a1b5eeSVedant Kumar                     bool IsRegionEntry, bool EmitSkippedRegion = false) {
38079a1b5eeSVedant Kumar     bool HasCount = !EmitSkippedRegion &&
38179a1b5eeSVedant Kumar                     (Region.Kind != CounterMappingRegion::SkippedRegion);
38279a1b5eeSVedant Kumar 
38379a1b5eeSVedant Kumar     // If the new segment wouldn't affect coverage rendering, skip it.
38479a1b5eeSVedant Kumar     if (!Segments.empty() && !IsRegionEntry && !EmitSkippedRegion) {
38579a1b5eeSVedant Kumar       const auto &Last = Segments.back();
38679a1b5eeSVedant Kumar       if (Last.HasCount == HasCount && Last.Count == Region.ExecutionCount &&
38779a1b5eeSVedant Kumar           !Last.IsRegionEntry)
38879a1b5eeSVedant Kumar         return;
389dc707122SEaswaran Raman     }
390dc707122SEaswaran Raman 
39179a1b5eeSVedant Kumar     if (HasCount)
39279a1b5eeSVedant Kumar       Segments.emplace_back(StartLoc.first, StartLoc.second,
393ad8f637bSVedant Kumar                             Region.ExecutionCount, IsRegionEntry,
394ad8f637bSVedant Kumar                             Region.Kind == CounterMappingRegion::GapRegion);
395dc707122SEaswaran Raman     else
39679a1b5eeSVedant Kumar       Segments.emplace_back(StartLoc.first, StartLoc.second, IsRegionEntry);
39779a1b5eeSVedant Kumar 
398d34e60caSNicola Zaghen     LLVM_DEBUG({
39979a1b5eeSVedant Kumar       const auto &Last = Segments.back();
40079a1b5eeSVedant Kumar       dbgs() << "Segment at " << Last.Line << ":" << Last.Col
40179a1b5eeSVedant Kumar              << " (count = " << Last.Count << ")"
40279a1b5eeSVedant Kumar              << (Last.IsRegionEntry ? ", RegionEntry" : "")
403ad8f637bSVedant Kumar              << (!Last.HasCount ? ", Skipped" : "")
404ad8f637bSVedant Kumar              << (Last.IsGapRegion ? ", Gap" : "") << "\n";
40579a1b5eeSVedant Kumar     });
40679a1b5eeSVedant Kumar   }
40779a1b5eeSVedant Kumar 
40879a1b5eeSVedant Kumar   /// Emit segments for active regions which end before \p Loc.
40979a1b5eeSVedant Kumar   ///
41079a1b5eeSVedant Kumar   /// \p Loc: The start location of the next region. If None, all active
41179a1b5eeSVedant Kumar   /// regions are completed.
41279a1b5eeSVedant Kumar   /// \p FirstCompletedRegion: Index of the first completed region.
41379a1b5eeSVedant Kumar   void completeRegionsUntil(Optional<LineColPair> Loc,
41479a1b5eeSVedant Kumar                             unsigned FirstCompletedRegion) {
41579a1b5eeSVedant Kumar     // Sort the completed regions by end location. This makes it simple to
41679a1b5eeSVedant Kumar     // emit closing segments in sorted order.
41779a1b5eeSVedant Kumar     auto CompletedRegionsIt = ActiveRegions.begin() + FirstCompletedRegion;
41879a1b5eeSVedant Kumar     std::stable_sort(CompletedRegionsIt, ActiveRegions.end(),
41979a1b5eeSVedant Kumar                       [](const CountedRegion *L, const CountedRegion *R) {
42079a1b5eeSVedant Kumar                         return L->endLoc() < R->endLoc();
42179a1b5eeSVedant Kumar                       });
42279a1b5eeSVedant Kumar 
42379a1b5eeSVedant Kumar     // Emit segments for all completed regions.
42479a1b5eeSVedant Kumar     for (unsigned I = FirstCompletedRegion + 1, E = ActiveRegions.size(); I < E;
42579a1b5eeSVedant Kumar          ++I) {
42679a1b5eeSVedant Kumar       const auto *CompletedRegion = ActiveRegions[I];
42779a1b5eeSVedant Kumar       assert((!Loc || CompletedRegion->endLoc() <= *Loc) &&
42879a1b5eeSVedant Kumar              "Completed region ends after start of new region");
42979a1b5eeSVedant Kumar 
43079a1b5eeSVedant Kumar       const auto *PrevCompletedRegion = ActiveRegions[I - 1];
43179a1b5eeSVedant Kumar       auto CompletedSegmentLoc = PrevCompletedRegion->endLoc();
43279a1b5eeSVedant Kumar 
43379a1b5eeSVedant Kumar       // Don't emit any more segments if they start where the new region begins.
43479a1b5eeSVedant Kumar       if (Loc && CompletedSegmentLoc == *Loc)
43579a1b5eeSVedant Kumar         break;
43679a1b5eeSVedant Kumar 
43779a1b5eeSVedant Kumar       // Don't emit a segment if the next completed region ends at the same
43879a1b5eeSVedant Kumar       // location as this one.
43979a1b5eeSVedant Kumar       if (CompletedSegmentLoc == CompletedRegion->endLoc())
44079a1b5eeSVedant Kumar         continue;
44179a1b5eeSVedant Kumar 
442337b0db1SVedant Kumar       // Use the count from the last completed region which ends at this loc.
443337b0db1SVedant Kumar       for (unsigned J = I + 1; J < E; ++J)
444337b0db1SVedant Kumar         if (CompletedRegion->endLoc() == ActiveRegions[J]->endLoc())
445337b0db1SVedant Kumar           CompletedRegion = ActiveRegions[J];
44680fbb855SVedant Kumar 
44779a1b5eeSVedant Kumar       startSegment(*CompletedRegion, CompletedSegmentLoc, false);
44879a1b5eeSVedant Kumar     }
44979a1b5eeSVedant Kumar 
45079a1b5eeSVedant Kumar     auto Last = ActiveRegions.back();
45179a1b5eeSVedant Kumar     if (FirstCompletedRegion && Last->endLoc() != *Loc) {
45279a1b5eeSVedant Kumar       // If there's a gap after the end of the last completed region and the
45379a1b5eeSVedant Kumar       // start of the new region, use the last active region to fill the gap.
45479a1b5eeSVedant Kumar       startSegment(*ActiveRegions[FirstCompletedRegion - 1], Last->endLoc(),
45579a1b5eeSVedant Kumar                    false);
45679a1b5eeSVedant Kumar     } else if (!FirstCompletedRegion && (!Loc || *Loc != Last->endLoc())) {
45779a1b5eeSVedant Kumar       // Emit a skipped segment if there are no more active regions. This
45879a1b5eeSVedant Kumar       // ensures that gaps between functions are marked correctly.
45979a1b5eeSVedant Kumar       startSegment(*Last, Last->endLoc(), false, true);
46079a1b5eeSVedant Kumar     }
46179a1b5eeSVedant Kumar 
46279a1b5eeSVedant Kumar     // Pop the completed regions.
46379a1b5eeSVedant Kumar     ActiveRegions.erase(CompletedRegionsIt, ActiveRegions.end());
464dc707122SEaswaran Raman   }
465dc707122SEaswaran Raman 
466dc707122SEaswaran Raman   void buildSegmentsImpl(ArrayRef<CountedRegion> Regions) {
46779a1b5eeSVedant Kumar     for (const auto &CR : enumerate(Regions)) {
46879a1b5eeSVedant Kumar       auto CurStartLoc = CR.value().startLoc();
46979a1b5eeSVedant Kumar 
47079a1b5eeSVedant Kumar       // Active regions which end before the current region need to be popped.
47179a1b5eeSVedant Kumar       auto CompletedRegions =
47279a1b5eeSVedant Kumar           std::stable_partition(ActiveRegions.begin(), ActiveRegions.end(),
47379a1b5eeSVedant Kumar                                 [&](const CountedRegion *Region) {
47479a1b5eeSVedant Kumar                                   return !(Region->endLoc() <= CurStartLoc);
47579a1b5eeSVedant Kumar                                 });
47679a1b5eeSVedant Kumar       if (CompletedRegions != ActiveRegions.end()) {
47779a1b5eeSVedant Kumar         unsigned FirstCompletedRegion =
47879a1b5eeSVedant Kumar             std::distance(ActiveRegions.begin(), CompletedRegions);
47979a1b5eeSVedant Kumar         completeRegionsUntil(CurStartLoc, FirstCompletedRegion);
480dc707122SEaswaran Raman       }
48179a1b5eeSVedant Kumar 
482ad8f637bSVedant Kumar       bool GapRegion = CR.value().Kind == CounterMappingRegion::GapRegion;
483ad8f637bSVedant Kumar 
48479a1b5eeSVedant Kumar       // Try to emit a segment for the current region.
48579a1b5eeSVedant Kumar       if (CurStartLoc == CR.value().endLoc()) {
48679a1b5eeSVedant Kumar         // Avoid making zero-length regions active. If it's the last region,
48779a1b5eeSVedant Kumar         // emit a skipped segment. Otherwise use its predecessor's count.
488*9caa3fbeSZequan Wu         const bool Skipped =
489*9caa3fbeSZequan Wu             (CR.index() + 1) == Regions.size() ||
490*9caa3fbeSZequan Wu             CR.value().Kind == CounterMappingRegion::SkippedRegion;
49179a1b5eeSVedant Kumar         startSegment(ActiveRegions.empty() ? CR.value() : *ActiveRegions.back(),
492ad8f637bSVedant Kumar                      CurStartLoc, !GapRegion, Skipped);
493*9caa3fbeSZequan Wu         // If it is skipped segment, create a segment with last pushed
494*9caa3fbeSZequan Wu         // regions's count at CurStartLoc.
495*9caa3fbeSZequan Wu         if (Skipped && !ActiveRegions.empty())
496*9caa3fbeSZequan Wu           startSegment(*ActiveRegions.back(), CurStartLoc, false);
49779a1b5eeSVedant Kumar         continue;
49879a1b5eeSVedant Kumar       }
49979a1b5eeSVedant Kumar       if (CR.index() + 1 == Regions.size() ||
50079a1b5eeSVedant Kumar           CurStartLoc != Regions[CR.index() + 1].startLoc()) {
50179a1b5eeSVedant Kumar         // Emit a segment if the next region doesn't start at the same location
50279a1b5eeSVedant Kumar         // as this one.
503ad8f637bSVedant Kumar         startSegment(CR.value(), CurStartLoc, !GapRegion);
50479a1b5eeSVedant Kumar       }
50579a1b5eeSVedant Kumar 
50679a1b5eeSVedant Kumar       // This region is active (i.e not completed).
50779a1b5eeSVedant Kumar       ActiveRegions.push_back(&CR.value());
50879a1b5eeSVedant Kumar     }
50979a1b5eeSVedant Kumar 
51079a1b5eeSVedant Kumar     // Complete any remaining active regions.
51179a1b5eeSVedant Kumar     if (!ActiveRegions.empty())
51279a1b5eeSVedant Kumar       completeRegionsUntil(None, 0);
513dc707122SEaswaran Raman   }
514dc707122SEaswaran Raman 
515dc707122SEaswaran Raman   /// Sort a nested sequence of regions from a single file.
516dc707122SEaswaran Raman   static void sortNestedRegions(MutableArrayRef<CountedRegion> Regions) {
5170cac726aSFangrui Song     llvm::sort(Regions, [](const CountedRegion &LHS, const CountedRegion &RHS) {
51827d8dd39SIgor Kudrin       if (LHS.startLoc() != RHS.startLoc())
51927d8dd39SIgor Kudrin         return LHS.startLoc() < RHS.startLoc();
52027d8dd39SIgor Kudrin       if (LHS.endLoc() != RHS.endLoc())
521dc707122SEaswaran Raman         // When LHS completely contains RHS, we sort LHS first.
522dc707122SEaswaran Raman         return RHS.endLoc() < LHS.endLoc();
52327d8dd39SIgor Kudrin       // If LHS and RHS cover the same area, we need to sort them according
52427d8dd39SIgor Kudrin       // to their kinds so that the most suitable region will become "active"
52527d8dd39SIgor Kudrin       // in combineRegions(). Because we accumulate counter values only from
52627d8dd39SIgor Kudrin       // regions of the same kind as the first region of the area, prefer
52727d8dd39SIgor Kudrin       // CodeRegion to ExpansionRegion and ExpansionRegion to SkippedRegion.
528e78d131aSEugene Zelenko       static_assert(CounterMappingRegion::CodeRegion <
529e78d131aSEugene Zelenko                             CounterMappingRegion::ExpansionRegion &&
530e78d131aSEugene Zelenko                         CounterMappingRegion::ExpansionRegion <
531e78d131aSEugene Zelenko                             CounterMappingRegion::SkippedRegion,
53227d8dd39SIgor Kudrin                     "Unexpected order of region kind values");
53327d8dd39SIgor Kudrin       return LHS.Kind < RHS.Kind;
534dc707122SEaswaran Raman     });
535dc707122SEaswaran Raman   }
536dc707122SEaswaran Raman 
537dc707122SEaswaran Raman   /// Combine counts of regions which cover the same area.
538dc707122SEaswaran Raman   static ArrayRef<CountedRegion>
539dc707122SEaswaran Raman   combineRegions(MutableArrayRef<CountedRegion> Regions) {
540dc707122SEaswaran Raman     if (Regions.empty())
541dc707122SEaswaran Raman       return Regions;
542dc707122SEaswaran Raman     auto Active = Regions.begin();
543dc707122SEaswaran Raman     auto End = Regions.end();
544dc707122SEaswaran Raman     for (auto I = Regions.begin() + 1; I != End; ++I) {
545dc707122SEaswaran Raman       if (Active->startLoc() != I->startLoc() ||
546dc707122SEaswaran Raman           Active->endLoc() != I->endLoc()) {
547dc707122SEaswaran Raman         // Shift to the next region.
548dc707122SEaswaran Raman         ++Active;
549dc707122SEaswaran Raman         if (Active != I)
550dc707122SEaswaran Raman           *Active = *I;
551dc707122SEaswaran Raman         continue;
552dc707122SEaswaran Raman       }
553dc707122SEaswaran Raman       // Merge duplicate region.
55427d8dd39SIgor Kudrin       // If CodeRegions and ExpansionRegions cover the same area, it's probably
55527d8dd39SIgor Kudrin       // a macro which is fully expanded to another macro. In that case, we need
55627d8dd39SIgor Kudrin       // to accumulate counts only from CodeRegions, or else the area will be
55727d8dd39SIgor Kudrin       // counted twice.
55827d8dd39SIgor Kudrin       // On the other hand, a macro may have a nested macro in its body. If the
55927d8dd39SIgor Kudrin       // outer macro is used several times, the ExpansionRegion for the nested
56027d8dd39SIgor Kudrin       // macro will also be added several times. These ExpansionRegions cover
56127d8dd39SIgor Kudrin       // the same source locations and have to be combined to reach the correct
56227d8dd39SIgor Kudrin       // value for that area.
56327d8dd39SIgor Kudrin       // We add counts of the regions of the same kind as the active region
56427d8dd39SIgor Kudrin       // to handle the both situations.
56527d8dd39SIgor Kudrin       if (I->Kind == Active->Kind)
566dc707122SEaswaran Raman         Active->ExecutionCount += I->ExecutionCount;
567dc707122SEaswaran Raman     }
568dc707122SEaswaran Raman     return Regions.drop_back(std::distance(++Active, End));
569dc707122SEaswaran Raman   }
570dc707122SEaswaran Raman 
571dc707122SEaswaran Raman public:
57279a1b5eeSVedant Kumar   /// Build a sorted list of CoverageSegments from a list of Regions.
573dc707122SEaswaran Raman   static std::vector<CoverageSegment>
574dc707122SEaswaran Raman   buildSegments(MutableArrayRef<CountedRegion> Regions) {
575dc707122SEaswaran Raman     std::vector<CoverageSegment> Segments;
576dc707122SEaswaran Raman     SegmentBuilder Builder(Segments);
577dc707122SEaswaran Raman 
578dc707122SEaswaran Raman     sortNestedRegions(Regions);
579dc707122SEaswaran Raman     ArrayRef<CountedRegion> CombinedRegions = combineRegions(Regions);
580dc707122SEaswaran Raman 
581d34e60caSNicola Zaghen     LLVM_DEBUG({
58279a1b5eeSVedant Kumar       dbgs() << "Combined regions:\n";
58379a1b5eeSVedant Kumar       for (const auto &CR : CombinedRegions)
58479a1b5eeSVedant Kumar         dbgs() << "  " << CR.LineStart << ":" << CR.ColumnStart << " -> "
58579a1b5eeSVedant Kumar                << CR.LineEnd << ":" << CR.ColumnEnd
58679a1b5eeSVedant Kumar                << " (count=" << CR.ExecutionCount << ")\n";
58779a1b5eeSVedant Kumar     });
58879a1b5eeSVedant Kumar 
589dc707122SEaswaran Raman     Builder.buildSegmentsImpl(CombinedRegions);
59079a1b5eeSVedant Kumar 
59179a1b5eeSVedant Kumar #ifndef NDEBUG
59279a1b5eeSVedant Kumar     for (unsigned I = 1, E = Segments.size(); I < E; ++I) {
59379a1b5eeSVedant Kumar       const auto &L = Segments[I - 1];
59479a1b5eeSVedant Kumar       const auto &R = Segments[I];
59579a1b5eeSVedant Kumar       if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) {
596*9caa3fbeSZequan Wu         if (L.Line == R.Line && L.Col == R.Col && !L.HasCount)
597*9caa3fbeSZequan Wu           continue;
598d34e60caSNicola Zaghen         LLVM_DEBUG(dbgs() << " ! Segment " << L.Line << ":" << L.Col
59979a1b5eeSVedant Kumar                           << " followed by " << R.Line << ":" << R.Col << "\n");
60079a1b5eeSVedant Kumar         assert(false && "Coverage segments not unique or sorted");
60179a1b5eeSVedant Kumar       }
60279a1b5eeSVedant Kumar     }
60379a1b5eeSVedant Kumar #endif
60479a1b5eeSVedant Kumar 
605dc707122SEaswaran Raman     return Segments;
606dc707122SEaswaran Raman   }
607dc707122SEaswaran Raman };
608e78d131aSEugene Zelenko 
609e78d131aSEugene Zelenko } // end anonymous namespace
610dc707122SEaswaran Raman 
611dc707122SEaswaran Raman std::vector<StringRef> CoverageMapping::getUniqueSourceFiles() const {
612dc707122SEaswaran Raman   std::vector<StringRef> Filenames;
613dc707122SEaswaran Raman   for (const auto &Function : getCoveredFunctions())
614dc707122SEaswaran Raman     Filenames.insert(Filenames.end(), Function.Filenames.begin(),
615dc707122SEaswaran Raman                      Function.Filenames.end());
6160cac726aSFangrui Song   llvm::sort(Filenames);
617dc707122SEaswaran Raman   auto Last = std::unique(Filenames.begin(), Filenames.end());
618dc707122SEaswaran Raman   Filenames.erase(Last, Filenames.end());
619dc707122SEaswaran Raman   return Filenames;
620dc707122SEaswaran Raman }
621dc707122SEaswaran Raman 
622dc707122SEaswaran Raman static SmallBitVector gatherFileIDs(StringRef SourceFile,
623dc707122SEaswaran Raman                                     const FunctionRecord &Function) {
624dc707122SEaswaran Raman   SmallBitVector FilenameEquivalence(Function.Filenames.size(), false);
625dc707122SEaswaran Raman   for (unsigned I = 0, E = Function.Filenames.size(); I < E; ++I)
626dc707122SEaswaran Raman     if (SourceFile == Function.Filenames[I])
627dc707122SEaswaran Raman       FilenameEquivalence[I] = true;
628dc707122SEaswaran Raman   return FilenameEquivalence;
629dc707122SEaswaran Raman }
630dc707122SEaswaran Raman 
631dc707122SEaswaran Raman /// Return the ID of the file where the definition of the function is located.
632dc707122SEaswaran Raman static Optional<unsigned> findMainViewFileID(const FunctionRecord &Function) {
633dc707122SEaswaran Raman   SmallBitVector IsNotExpandedFile(Function.Filenames.size(), true);
634dc707122SEaswaran Raman   for (const auto &CR : Function.CountedRegions)
635dc707122SEaswaran Raman     if (CR.Kind == CounterMappingRegion::ExpansionRegion)
636dc707122SEaswaran Raman       IsNotExpandedFile[CR.ExpandedFileID] = false;
637dc707122SEaswaran Raman   int I = IsNotExpandedFile.find_first();
638dc707122SEaswaran Raman   if (I == -1)
639dc707122SEaswaran Raman     return None;
640dc707122SEaswaran Raman   return I;
641dc707122SEaswaran Raman }
642dc707122SEaswaran Raman 
643dc707122SEaswaran Raman /// Check if SourceFile is the file that contains the definition of
644dc707122SEaswaran Raman /// the Function. Return the ID of the file in that case or None otherwise.
645dc707122SEaswaran Raman static Optional<unsigned> findMainViewFileID(StringRef SourceFile,
646dc707122SEaswaran Raman                                              const FunctionRecord &Function) {
647dc707122SEaswaran Raman   Optional<unsigned> I = findMainViewFileID(Function);
648dc707122SEaswaran Raman   if (I && SourceFile == Function.Filenames[*I])
649dc707122SEaswaran Raman     return I;
650dc707122SEaswaran Raman   return None;
651dc707122SEaswaran Raman }
652dc707122SEaswaran Raman 
653dc707122SEaswaran Raman static bool isExpansion(const CountedRegion &R, unsigned FileID) {
654dc707122SEaswaran Raman   return R.Kind == CounterMappingRegion::ExpansionRegion && R.FileID == FileID;
655dc707122SEaswaran Raman }
656dc707122SEaswaran Raman 
6577fcc5472SVedant Kumar CoverageData CoverageMapping::getCoverageForFile(StringRef Filename) const {
658dc707122SEaswaran Raman   CoverageData FileCoverage(Filename);
659e78d131aSEugene Zelenko   std::vector<CountedRegion> Regions;
660dc707122SEaswaran Raman 
661413647d7SVedant Kumar   // Look up the function records in the given file. Due to hash collisions on
662413647d7SVedant Kumar   // the filename, we may get back some records that are not in the file.
663413647d7SVedant Kumar   ArrayRef<unsigned> RecordIndices =
664413647d7SVedant Kumar       getImpreciseRecordIndicesForFilename(Filename);
665413647d7SVedant Kumar   for (unsigned RecordIndex : RecordIndices) {
666413647d7SVedant Kumar     const FunctionRecord &Function = Functions[RecordIndex];
667dc707122SEaswaran Raman     auto MainFileID = findMainViewFileID(Filename, Function);
668dc707122SEaswaran Raman     auto FileIDs = gatherFileIDs(Filename, Function);
669dc707122SEaswaran Raman     for (const auto &CR : Function.CountedRegions)
670dc707122SEaswaran Raman       if (FileIDs.test(CR.FileID)) {
671dc707122SEaswaran Raman         Regions.push_back(CR);
672dc707122SEaswaran Raman         if (MainFileID && isExpansion(CR, *MainFileID))
673dc707122SEaswaran Raman           FileCoverage.Expansions.emplace_back(CR, Function);
674dc707122SEaswaran Raman       }
675dc707122SEaswaran Raman   }
676dc707122SEaswaran Raman 
677d34e60caSNicola Zaghen   LLVM_DEBUG(dbgs() << "Emitting segments for file: " << Filename << "\n");
678dc707122SEaswaran Raman   FileCoverage.Segments = SegmentBuilder::buildSegments(Regions);
679dc707122SEaswaran Raman 
680dc707122SEaswaran Raman   return FileCoverage;
681dc707122SEaswaran Raman }
682dc707122SEaswaran Raman 
683dde19c5aSVedant Kumar std::vector<InstantiationGroup>
684dde19c5aSVedant Kumar CoverageMapping::getInstantiationGroups(StringRef Filename) const {
685dc707122SEaswaran Raman   FunctionInstantiationSetCollector InstantiationSetCollector;
686413647d7SVedant Kumar   // Look up the function records in the given file. Due to hash collisions on
687413647d7SVedant Kumar   // the filename, we may get back some records that are not in the file.
688413647d7SVedant Kumar   ArrayRef<unsigned> RecordIndices =
689413647d7SVedant Kumar       getImpreciseRecordIndicesForFilename(Filename);
690413647d7SVedant Kumar   for (unsigned RecordIndex : RecordIndices) {
691413647d7SVedant Kumar     const FunctionRecord &Function = Functions[RecordIndex];
692dc707122SEaswaran Raman     auto MainFileID = findMainViewFileID(Filename, Function);
693dc707122SEaswaran Raman     if (!MainFileID)
694dc707122SEaswaran Raman       continue;
695dc707122SEaswaran Raman     InstantiationSetCollector.insert(Function, *MainFileID);
696dc707122SEaswaran Raman   }
697dc707122SEaswaran Raman 
698dde19c5aSVedant Kumar   std::vector<InstantiationGroup> Result;
69924cb28bbSBenjamin Kramer   for (auto &InstantiationSet : InstantiationSetCollector) {
700dde19c5aSVedant Kumar     InstantiationGroup IG{InstantiationSet.first.first,
701dde19c5aSVedant Kumar                           InstantiationSet.first.second,
702dde19c5aSVedant Kumar                           std::move(InstantiationSet.second)};
703dde19c5aSVedant Kumar     Result.emplace_back(std::move(IG));
704dc707122SEaswaran Raman   }
705dc707122SEaswaran Raman   return Result;
706dc707122SEaswaran Raman }
707dc707122SEaswaran Raman 
708dc707122SEaswaran Raman CoverageData
709f681e2e5SVedant Kumar CoverageMapping::getCoverageForFunction(const FunctionRecord &Function) const {
710dc707122SEaswaran Raman   auto MainFileID = findMainViewFileID(Function);
711dc707122SEaswaran Raman   if (!MainFileID)
712dc707122SEaswaran Raman     return CoverageData();
713dc707122SEaswaran Raman 
714dc707122SEaswaran Raman   CoverageData FunctionCoverage(Function.Filenames[*MainFileID]);
715e78d131aSEugene Zelenko   std::vector<CountedRegion> Regions;
716dc707122SEaswaran Raman   for (const auto &CR : Function.CountedRegions)
717dc707122SEaswaran Raman     if (CR.FileID == *MainFileID) {
718dc707122SEaswaran Raman       Regions.push_back(CR);
719dc707122SEaswaran Raman       if (isExpansion(CR, *MainFileID))
720dc707122SEaswaran Raman         FunctionCoverage.Expansions.emplace_back(CR, Function);
721dc707122SEaswaran Raman     }
722dc707122SEaswaran Raman 
723d34e60caSNicola Zaghen   LLVM_DEBUG(dbgs() << "Emitting segments for function: " << Function.Name
724d34e60caSNicola Zaghen                     << "\n");
725dc707122SEaswaran Raman   FunctionCoverage.Segments = SegmentBuilder::buildSegments(Regions);
726dc707122SEaswaran Raman 
727dc707122SEaswaran Raman   return FunctionCoverage;
728dc707122SEaswaran Raman }
729dc707122SEaswaran Raman 
730f681e2e5SVedant Kumar CoverageData CoverageMapping::getCoverageForExpansion(
731f681e2e5SVedant Kumar     const ExpansionRecord &Expansion) const {
732dc707122SEaswaran Raman   CoverageData ExpansionCoverage(
733dc707122SEaswaran Raman       Expansion.Function.Filenames[Expansion.FileID]);
734e78d131aSEugene Zelenko   std::vector<CountedRegion> Regions;
735dc707122SEaswaran Raman   for (const auto &CR : Expansion.Function.CountedRegions)
736dc707122SEaswaran Raman     if (CR.FileID == Expansion.FileID) {
737dc707122SEaswaran Raman       Regions.push_back(CR);
738dc707122SEaswaran Raman       if (isExpansion(CR, Expansion.FileID))
739dc707122SEaswaran Raman         ExpansionCoverage.Expansions.emplace_back(CR, Expansion.Function);
740dc707122SEaswaran Raman     }
741dc707122SEaswaran Raman 
742d34e60caSNicola Zaghen   LLVM_DEBUG(dbgs() << "Emitting segments for expansion of file "
743d34e60caSNicola Zaghen                     << Expansion.FileID << "\n");
744dc707122SEaswaran Raman   ExpansionCoverage.Segments = SegmentBuilder::buildSegments(Regions);
745dc707122SEaswaran Raman 
746dc707122SEaswaran Raman   return ExpansionCoverage;
747dc707122SEaswaran Raman }
748dc707122SEaswaran Raman 
749821160d5SVedant Kumar LineCoverageStats::LineCoverageStats(
750f5f153ddSVedant Kumar     ArrayRef<const CoverageSegment *> LineSegments,
751f5f153ddSVedant Kumar     const CoverageSegment *WrappedSegment, unsigned Line)
752821160d5SVedant Kumar     : ExecutionCount(0), HasMultipleRegions(false), Mapped(false), Line(Line),
753821160d5SVedant Kumar       LineSegments(LineSegments), WrappedSegment(WrappedSegment) {
754821160d5SVedant Kumar   // Find the minimum number of regions which start in this line.
755821160d5SVedant Kumar   unsigned MinRegionCount = 0;
756f5f153ddSVedant Kumar   auto isStartOfRegion = [](const CoverageSegment *S) {
757821160d5SVedant Kumar     return !S->IsGapRegion && S->HasCount && S->IsRegionEntry;
758821160d5SVedant Kumar   };
759821160d5SVedant Kumar   for (unsigned I = 0; I < LineSegments.size() && MinRegionCount < 2; ++I)
760821160d5SVedant Kumar     if (isStartOfRegion(LineSegments[I]))
761821160d5SVedant Kumar       ++MinRegionCount;
762821160d5SVedant Kumar 
763821160d5SVedant Kumar   bool StartOfSkippedRegion = !LineSegments.empty() &&
764821160d5SVedant Kumar                               !LineSegments.front()->HasCount &&
765821160d5SVedant Kumar                               LineSegments.front()->IsRegionEntry;
766821160d5SVedant Kumar 
767821160d5SVedant Kumar   HasMultipleRegions = MinRegionCount > 1;
768821160d5SVedant Kumar   Mapped =
769821160d5SVedant Kumar       !StartOfSkippedRegion &&
770821160d5SVedant Kumar       ((WrappedSegment && WrappedSegment->HasCount) || (MinRegionCount > 0));
771821160d5SVedant Kumar 
772821160d5SVedant Kumar   if (!Mapped)
773821160d5SVedant Kumar     return;
774821160d5SVedant Kumar 
77543247f05SVedant Kumar   // Pick the max count from the non-gap, region entry segments and the
77643247f05SVedant Kumar   // wrapped count.
77743247f05SVedant Kumar   if (WrappedSegment)
778821160d5SVedant Kumar     ExecutionCount = WrappedSegment->Count;
77943247f05SVedant Kumar   if (!MinRegionCount)
780821160d5SVedant Kumar     return;
781e3df9471SZequan Wu   ExecutionCount = 0;
782821160d5SVedant Kumar   for (const auto *LS : LineSegments)
783821160d5SVedant Kumar     if (isStartOfRegion(LS))
784821160d5SVedant Kumar       ExecutionCount = std::max(ExecutionCount, LS->Count);
785821160d5SVedant Kumar }
786821160d5SVedant Kumar 
787821160d5SVedant Kumar LineCoverageIterator &LineCoverageIterator::operator++() {
788821160d5SVedant Kumar   if (Next == CD.end()) {
789821160d5SVedant Kumar     Stats = LineCoverageStats();
790821160d5SVedant Kumar     Ended = true;
791821160d5SVedant Kumar     return *this;
792821160d5SVedant Kumar   }
793821160d5SVedant Kumar   if (Segments.size())
794821160d5SVedant Kumar     WrappedSegment = Segments.back();
795821160d5SVedant Kumar   Segments.clear();
796821160d5SVedant Kumar   while (Next != CD.end() && Next->Line == Line)
797821160d5SVedant Kumar     Segments.push_back(&*Next++);
798821160d5SVedant Kumar   Stats = LineCoverageStats(Segments, WrappedSegment, Line);
799821160d5SVedant Kumar   ++Line;
800821160d5SVedant Kumar   return *this;
801821160d5SVedant Kumar }
802821160d5SVedant Kumar 
803e78d131aSEugene Zelenko static std::string getCoverageMapErrString(coveragemap_error Err) {
8049152fd17SVedant Kumar   switch (Err) {
805dc707122SEaswaran Raman   case coveragemap_error::success:
806dc707122SEaswaran Raman     return "Success";
807dc707122SEaswaran Raman   case coveragemap_error::eof:
808dc707122SEaswaran Raman     return "End of File";
809dc707122SEaswaran Raman   case coveragemap_error::no_data_found:
810dc707122SEaswaran Raman     return "No coverage data found";
811dc707122SEaswaran Raman   case coveragemap_error::unsupported_version:
812dc707122SEaswaran Raman     return "Unsupported coverage format version";
813dc707122SEaswaran Raman   case coveragemap_error::truncated:
814dc707122SEaswaran Raman     return "Truncated coverage data";
815dc707122SEaswaran Raman   case coveragemap_error::malformed:
816dc707122SEaswaran Raman     return "Malformed coverage data";
817dd1ea9deSVedant Kumar   case coveragemap_error::decompression_failed:
818dd1ea9deSVedant Kumar     return "Failed to decompress coverage data (zlib)";
819dc707122SEaswaran Raman   }
820dc707122SEaswaran Raman   llvm_unreachable("A value of coveragemap_error has no message.");
821dc707122SEaswaran Raman }
8229152fd17SVedant Kumar 
823e78d131aSEugene Zelenko namespace {
824e78d131aSEugene Zelenko 
8254718f8b5SPeter Collingbourne // FIXME: This class is only here to support the transition to llvm::Error. It
8264718f8b5SPeter Collingbourne // will be removed once this transition is complete. Clients should prefer to
8274718f8b5SPeter Collingbourne // deal with the Error value directly, rather than converting to error_code.
8289152fd17SVedant Kumar class CoverageMappingErrorCategoryType : public std::error_category {
829990504e6SReid Kleckner   const char *name() const noexcept override { return "llvm.coveragemap"; }
8309152fd17SVedant Kumar   std::string message(int IE) const override {
8319152fd17SVedant Kumar     return getCoverageMapErrString(static_cast<coveragemap_error>(IE));
8329152fd17SVedant Kumar   }
833dc707122SEaswaran Raman };
834e78d131aSEugene Zelenko 
8359152fd17SVedant Kumar } // end anonymous namespace
8369152fd17SVedant Kumar 
8379152fd17SVedant Kumar std::string CoverageMapError::message() const {
8389152fd17SVedant Kumar   return getCoverageMapErrString(Err);
839dc707122SEaswaran Raman }
840dc707122SEaswaran Raman 
841dc707122SEaswaran Raman static ManagedStatic<CoverageMappingErrorCategoryType> ErrorCategory;
842dc707122SEaswaran Raman 
843dc707122SEaswaran Raman const std::error_category &llvm::coverage::coveragemap_category() {
844dc707122SEaswaran Raman   return *ErrorCategory;
845dc707122SEaswaran Raman }
8469152fd17SVedant Kumar 
8479152fd17SVedant Kumar char CoverageMapError::ID = 0;
848