1dc707122SEaswaran Raman //=-- CoverageMapping.cpp - Code coverage mapping support ---------*- C++ -*-=//
2dc707122SEaswaran Raman //
3dc707122SEaswaran Raman //                     The LLVM Compiler Infrastructure
4dc707122SEaswaran Raman //
5dc707122SEaswaran Raman // This file is distributed under the University of Illinois Open Source
6dc707122SEaswaran Raman // License. See LICENSE.TXT for details.
7dc707122SEaswaran Raman //
8dc707122SEaswaran Raman //===----------------------------------------------------------------------===//
9dc707122SEaswaran Raman //
10dc707122SEaswaran Raman // This file contains support for clang's and llvm's instrumentation based
11dc707122SEaswaran Raman // code coverage.
12dc707122SEaswaran Raman //
13dc707122SEaswaran Raman //===----------------------------------------------------------------------===//
14dc707122SEaswaran Raman 
15dc707122SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMapping.h"
16dc707122SEaswaran Raman #include "llvm/ADT/DenseMap.h"
17dc707122SEaswaran Raman #include "llvm/ADT/Optional.h"
18dc707122SEaswaran Raman #include "llvm/ADT/SmallBitVector.h"
19dc707122SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMappingReader.h"
20dc707122SEaswaran Raman #include "llvm/ProfileData/InstrProfReader.h"
21dc707122SEaswaran Raman #include "llvm/Support/Debug.h"
22dc707122SEaswaran Raman #include "llvm/Support/Errc.h"
23dc707122SEaswaran Raman #include "llvm/Support/ErrorHandling.h"
24dc707122SEaswaran Raman #include "llvm/Support/ManagedStatic.h"
25dc707122SEaswaran Raman #include "llvm/Support/Path.h"
26dc707122SEaswaran Raman #include "llvm/Support/raw_ostream.h"
27dc707122SEaswaran Raman 
28dc707122SEaswaran Raman using namespace llvm;
29dc707122SEaswaran Raman using namespace coverage;
30dc707122SEaswaran Raman 
31dc707122SEaswaran Raman #define DEBUG_TYPE "coverage-mapping"
32dc707122SEaswaran Raman 
33dc707122SEaswaran Raman Counter CounterExpressionBuilder::get(const CounterExpression &E) {
34dc707122SEaswaran Raman   auto It = ExpressionIndices.find(E);
35dc707122SEaswaran Raman   if (It != ExpressionIndices.end())
36dc707122SEaswaran Raman     return Counter::getExpression(It->second);
37dc707122SEaswaran Raman   unsigned I = Expressions.size();
38dc707122SEaswaran Raman   Expressions.push_back(E);
39dc707122SEaswaran Raman   ExpressionIndices[E] = I;
40dc707122SEaswaran Raman   return Counter::getExpression(I);
41dc707122SEaswaran Raman }
42dc707122SEaswaran Raman 
43dc707122SEaswaran Raman void CounterExpressionBuilder::extractTerms(
44dc707122SEaswaran Raman     Counter C, int Sign, SmallVectorImpl<std::pair<unsigned, int>> &Terms) {
45dc707122SEaswaran Raman   switch (C.getKind()) {
46dc707122SEaswaran Raman   case Counter::Zero:
47dc707122SEaswaran Raman     break;
48dc707122SEaswaran Raman   case Counter::CounterValueReference:
49dc707122SEaswaran Raman     Terms.push_back(std::make_pair(C.getCounterID(), Sign));
50dc707122SEaswaran Raman     break;
51dc707122SEaswaran Raman   case Counter::Expression:
52dc707122SEaswaran Raman     const auto &E = Expressions[C.getExpressionID()];
53dc707122SEaswaran Raman     extractTerms(E.LHS, Sign, Terms);
54dc707122SEaswaran Raman     extractTerms(E.RHS, E.Kind == CounterExpression::Subtract ? -Sign : Sign,
55dc707122SEaswaran Raman                  Terms);
56dc707122SEaswaran Raman     break;
57dc707122SEaswaran Raman   }
58dc707122SEaswaran Raman }
59dc707122SEaswaran Raman 
60dc707122SEaswaran Raman Counter CounterExpressionBuilder::simplify(Counter ExpressionTree) {
61dc707122SEaswaran Raman   // Gather constant terms.
62dc707122SEaswaran Raman   llvm::SmallVector<std::pair<unsigned, int>, 32> Terms;
63dc707122SEaswaran Raman   extractTerms(ExpressionTree, +1, Terms);
64dc707122SEaswaran Raman 
65dc707122SEaswaran Raman   // If there are no terms, this is just a zero. The algorithm below assumes at
66dc707122SEaswaran Raman   // least one term.
67dc707122SEaswaran Raman   if (Terms.size() == 0)
68dc707122SEaswaran Raman     return Counter::getZero();
69dc707122SEaswaran Raman 
70dc707122SEaswaran Raman   // Group the terms by counter ID.
71dc707122SEaswaran Raman   std::sort(Terms.begin(), Terms.end(),
72dc707122SEaswaran Raman             [](const std::pair<unsigned, int> &LHS,
73dc707122SEaswaran Raman                const std::pair<unsigned, int> &RHS) {
74dc707122SEaswaran Raman     return LHS.first < RHS.first;
75dc707122SEaswaran Raman   });
76dc707122SEaswaran Raman 
77dc707122SEaswaran Raman   // Combine terms by counter ID to eliminate counters that sum to zero.
78dc707122SEaswaran Raman   auto Prev = Terms.begin();
79dc707122SEaswaran Raman   for (auto I = Prev + 1, E = Terms.end(); I != E; ++I) {
80dc707122SEaswaran Raman     if (I->first == Prev->first) {
81dc707122SEaswaran Raman       Prev->second += I->second;
82dc707122SEaswaran Raman       continue;
83dc707122SEaswaran Raman     }
84dc707122SEaswaran Raman     ++Prev;
85dc707122SEaswaran Raman     *Prev = *I;
86dc707122SEaswaran Raman   }
87dc707122SEaswaran Raman   Terms.erase(++Prev, Terms.end());
88dc707122SEaswaran Raman 
89dc707122SEaswaran Raman   Counter C;
90dc707122SEaswaran Raman   // Create additions. We do this before subtractions to avoid constructs like
91dc707122SEaswaran Raman   // ((0 - X) + Y), as opposed to (Y - X).
92dc707122SEaswaran Raman   for (auto Term : Terms) {
93dc707122SEaswaran Raman     if (Term.second <= 0)
94dc707122SEaswaran Raman       continue;
95dc707122SEaswaran Raman     for (int I = 0; I < Term.second; ++I)
96dc707122SEaswaran Raman       if (C.isZero())
97dc707122SEaswaran Raman         C = Counter::getCounter(Term.first);
98dc707122SEaswaran Raman       else
99dc707122SEaswaran Raman         C = get(CounterExpression(CounterExpression::Add, C,
100dc707122SEaswaran Raman                                   Counter::getCounter(Term.first)));
101dc707122SEaswaran Raman   }
102dc707122SEaswaran Raman 
103dc707122SEaswaran Raman   // Create subtractions.
104dc707122SEaswaran Raman   for (auto Term : Terms) {
105dc707122SEaswaran Raman     if (Term.second >= 0)
106dc707122SEaswaran Raman       continue;
107dc707122SEaswaran Raman     for (int I = 0; I < -Term.second; ++I)
108dc707122SEaswaran Raman       C = get(CounterExpression(CounterExpression::Subtract, C,
109dc707122SEaswaran Raman                                 Counter::getCounter(Term.first)));
110dc707122SEaswaran Raman   }
111dc707122SEaswaran Raman   return C;
112dc707122SEaswaran Raman }
113dc707122SEaswaran Raman 
114dc707122SEaswaran Raman Counter CounterExpressionBuilder::add(Counter LHS, Counter RHS) {
115dc707122SEaswaran Raman   return simplify(get(CounterExpression(CounterExpression::Add, LHS, RHS)));
116dc707122SEaswaran Raman }
117dc707122SEaswaran Raman 
118dc707122SEaswaran Raman Counter CounterExpressionBuilder::subtract(Counter LHS, Counter RHS) {
119dc707122SEaswaran Raman   return simplify(
120dc707122SEaswaran Raman       get(CounterExpression(CounterExpression::Subtract, LHS, RHS)));
121dc707122SEaswaran Raman }
122dc707122SEaswaran Raman 
123dc707122SEaswaran Raman void CounterMappingContext::dump(const Counter &C,
124dc707122SEaswaran Raman                                  llvm::raw_ostream &OS) const {
125dc707122SEaswaran Raman   switch (C.getKind()) {
126dc707122SEaswaran Raman   case Counter::Zero:
127dc707122SEaswaran Raman     OS << '0';
128dc707122SEaswaran Raman     return;
129dc707122SEaswaran Raman   case Counter::CounterValueReference:
130dc707122SEaswaran Raman     OS << '#' << C.getCounterID();
131dc707122SEaswaran Raman     break;
132dc707122SEaswaran Raman   case Counter::Expression: {
133dc707122SEaswaran Raman     if (C.getExpressionID() >= Expressions.size())
134dc707122SEaswaran Raman       return;
135dc707122SEaswaran Raman     const auto &E = Expressions[C.getExpressionID()];
136dc707122SEaswaran Raman     OS << '(';
137dc707122SEaswaran Raman     dump(E.LHS, OS);
138dc707122SEaswaran Raman     OS << (E.Kind == CounterExpression::Subtract ? " - " : " + ");
139dc707122SEaswaran Raman     dump(E.RHS, OS);
140dc707122SEaswaran Raman     OS << ')';
141dc707122SEaswaran Raman     break;
142dc707122SEaswaran Raman   }
143dc707122SEaswaran Raman   }
144dc707122SEaswaran Raman   if (CounterValues.empty())
145dc707122SEaswaran Raman     return;
1469152fd17SVedant Kumar   Expected<int64_t> Value = evaluate(C);
1479152fd17SVedant Kumar   if (auto E = Value.takeError()) {
1489152fd17SVedant Kumar     llvm::consumeError(std::move(E));
149dc707122SEaswaran Raman     return;
1509152fd17SVedant Kumar   }
151dc707122SEaswaran Raman   OS << '[' << *Value << ']';
152dc707122SEaswaran Raman }
153dc707122SEaswaran Raman 
1549152fd17SVedant Kumar Expected<int64_t> CounterMappingContext::evaluate(const Counter &C) const {
155dc707122SEaswaran Raman   switch (C.getKind()) {
156dc707122SEaswaran Raman   case Counter::Zero:
157dc707122SEaswaran Raman     return 0;
158dc707122SEaswaran Raman   case Counter::CounterValueReference:
159dc707122SEaswaran Raman     if (C.getCounterID() >= CounterValues.size())
1609152fd17SVedant Kumar       return errorCodeToError(errc::argument_out_of_domain);
161dc707122SEaswaran Raman     return CounterValues[C.getCounterID()];
162dc707122SEaswaran Raman   case Counter::Expression: {
163dc707122SEaswaran Raman     if (C.getExpressionID() >= Expressions.size())
1649152fd17SVedant Kumar       return errorCodeToError(errc::argument_out_of_domain);
165dc707122SEaswaran Raman     const auto &E = Expressions[C.getExpressionID()];
1669152fd17SVedant Kumar     Expected<int64_t> LHS = evaluate(E.LHS);
167dc707122SEaswaran Raman     if (!LHS)
168dc707122SEaswaran Raman       return LHS;
1699152fd17SVedant Kumar     Expected<int64_t> RHS = evaluate(E.RHS);
170dc707122SEaswaran Raman     if (!RHS)
171dc707122SEaswaran Raman       return RHS;
172dc707122SEaswaran Raman     return E.Kind == CounterExpression::Subtract ? *LHS - *RHS : *LHS + *RHS;
173dc707122SEaswaran Raman   }
174dc707122SEaswaran Raman   }
175dc707122SEaswaran Raman   llvm_unreachable("Unhandled CounterKind");
176dc707122SEaswaran Raman }
177dc707122SEaswaran Raman 
178dc707122SEaswaran Raman void FunctionRecordIterator::skipOtherFiles() {
179dc707122SEaswaran Raman   while (Current != Records.end() && !Filename.empty() &&
180dc707122SEaswaran Raman          Filename != Current->Filenames[0])
181dc707122SEaswaran Raman     ++Current;
182dc707122SEaswaran Raman   if (Current == Records.end())
183dc707122SEaswaran Raman     *this = FunctionRecordIterator();
184dc707122SEaswaran Raman }
185dc707122SEaswaran Raman 
1869152fd17SVedant Kumar Expected<std::unique_ptr<CoverageMapping>>
187dc707122SEaswaran Raman CoverageMapping::load(CoverageMappingReader &CoverageReader,
188dc707122SEaswaran Raman                       IndexedInstrProfReader &ProfileReader) {
189dc707122SEaswaran Raman   auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping());
190dc707122SEaswaran Raman 
191dc707122SEaswaran Raman   std::vector<uint64_t> Counts;
192dc707122SEaswaran Raman   for (const auto &Record : CoverageReader) {
193dc707122SEaswaran Raman     CounterMappingContext Ctx(Record.Expressions);
194dc707122SEaswaran Raman 
195dc707122SEaswaran Raman     Counts.clear();
1969152fd17SVedant Kumar     if (Error E = ProfileReader.getFunctionCounts(
197dc707122SEaswaran Raman             Record.FunctionName, Record.FunctionHash, Counts)) {
1989152fd17SVedant Kumar       instrprof_error IPE = InstrProfError::take(std::move(E));
1999152fd17SVedant Kumar       if (IPE == instrprof_error::hash_mismatch) {
200dc707122SEaswaran Raman         Coverage->MismatchedFunctionCount++;
201dc707122SEaswaran Raman         continue;
2029152fd17SVedant Kumar       } else if (IPE != instrprof_error::unknown_function)
2039152fd17SVedant Kumar         return make_error<InstrProfError>(IPE);
204dc707122SEaswaran Raman       Counts.assign(Record.MappingRegions.size(), 0);
205dc707122SEaswaran Raman     }
206dc707122SEaswaran Raman     Ctx.setCounts(Counts);
207dc707122SEaswaran Raman 
208dc707122SEaswaran Raman     assert(!Record.MappingRegions.empty() && "Function has no regions");
209dc707122SEaswaran Raman 
210dc707122SEaswaran Raman     StringRef OrigFuncName = Record.FunctionName;
211dc707122SEaswaran Raman     if (Record.Filenames.empty())
212dc707122SEaswaran Raman       OrigFuncName = getFuncNameWithoutPrefix(OrigFuncName);
213dc707122SEaswaran Raman     else
214dc707122SEaswaran Raman       OrigFuncName =
215dc707122SEaswaran Raman           getFuncNameWithoutPrefix(OrigFuncName, Record.Filenames[0]);
216dc707122SEaswaran Raman     FunctionRecord Function(OrigFuncName, Record.Filenames);
217dc707122SEaswaran Raman     for (const auto &Region : Record.MappingRegions) {
2189152fd17SVedant Kumar       Expected<int64_t> ExecutionCount = Ctx.evaluate(Region.Count);
2199152fd17SVedant Kumar       if (auto E = ExecutionCount.takeError()) {
2209152fd17SVedant Kumar         llvm::consumeError(std::move(E));
221dc707122SEaswaran Raman         break;
2229152fd17SVedant Kumar       }
223dc707122SEaswaran Raman       Function.pushRegion(Region, *ExecutionCount);
224dc707122SEaswaran Raman     }
225dc707122SEaswaran Raman     if (Function.CountedRegions.size() != Record.MappingRegions.size()) {
226dc707122SEaswaran Raman       Coverage->MismatchedFunctionCount++;
227dc707122SEaswaran Raman       continue;
228dc707122SEaswaran Raman     }
229dc707122SEaswaran Raman 
230dc707122SEaswaran Raman     Coverage->Functions.push_back(std::move(Function));
231dc707122SEaswaran Raman   }
232dc707122SEaswaran Raman 
233dc707122SEaswaran Raman   return std::move(Coverage);
234dc707122SEaswaran Raman }
235dc707122SEaswaran Raman 
2369152fd17SVedant Kumar Expected<std::unique_ptr<CoverageMapping>>
237dc707122SEaswaran Raman CoverageMapping::load(StringRef ObjectFilename, StringRef ProfileFilename,
238dc707122SEaswaran Raman                       StringRef Arch) {
239a30139d5SVedant Kumar   auto CounterMappingBuff = MemoryBuffer::getFileOrSTDIN(ObjectFilename);
240a30139d5SVedant Kumar   if (std::error_code EC = CounterMappingBuff.getError())
2419152fd17SVedant Kumar     return errorCodeToError(EC);
242dc707122SEaswaran Raman   auto CoverageReaderOrErr =
243a30139d5SVedant Kumar       BinaryCoverageReader::create(CounterMappingBuff.get(), Arch);
2449152fd17SVedant Kumar   if (Error E = CoverageReaderOrErr.takeError())
2459152fd17SVedant Kumar     return std::move(E);
246dc707122SEaswaran Raman   auto CoverageReader = std::move(CoverageReaderOrErr.get());
247dc707122SEaswaran Raman   auto ProfileReaderOrErr = IndexedInstrProfReader::create(ProfileFilename);
2489152fd17SVedant Kumar   if (Error E = ProfileReaderOrErr.takeError())
2499152fd17SVedant Kumar     return std::move(E);
250dc707122SEaswaran Raman   auto ProfileReader = std::move(ProfileReaderOrErr.get());
251dc707122SEaswaran Raman   return load(*CoverageReader, *ProfileReader);
252dc707122SEaswaran Raman }
253dc707122SEaswaran Raman 
254dc707122SEaswaran Raman namespace {
255dc707122SEaswaran Raman /// \brief Distributes functions into instantiation sets.
256dc707122SEaswaran Raman ///
257dc707122SEaswaran Raman /// An instantiation set is a collection of functions that have the same source
258dc707122SEaswaran Raman /// code, ie, template functions specializations.
259dc707122SEaswaran Raman class FunctionInstantiationSetCollector {
260dc707122SEaswaran Raman   typedef DenseMap<std::pair<unsigned, unsigned>,
261dc707122SEaswaran Raman                    std::vector<const FunctionRecord *>> MapT;
262dc707122SEaswaran Raman   MapT InstantiatedFunctions;
263dc707122SEaswaran Raman 
264dc707122SEaswaran Raman public:
265dc707122SEaswaran Raman   void insert(const FunctionRecord &Function, unsigned FileID) {
266dc707122SEaswaran Raman     auto I = Function.CountedRegions.begin(), E = Function.CountedRegions.end();
267dc707122SEaswaran Raman     while (I != E && I->FileID != FileID)
268dc707122SEaswaran Raman       ++I;
269dc707122SEaswaran Raman     assert(I != E && "function does not cover the given file");
270dc707122SEaswaran Raman     auto &Functions = InstantiatedFunctions[I->startLoc()];
271dc707122SEaswaran Raman     Functions.push_back(&Function);
272dc707122SEaswaran Raman   }
273dc707122SEaswaran Raman 
274dc707122SEaswaran Raman   MapT::iterator begin() { return InstantiatedFunctions.begin(); }
275dc707122SEaswaran Raman 
276dc707122SEaswaran Raman   MapT::iterator end() { return InstantiatedFunctions.end(); }
277dc707122SEaswaran Raman };
278dc707122SEaswaran Raman 
279dc707122SEaswaran Raman class SegmentBuilder {
280dc707122SEaswaran Raman   std::vector<CoverageSegment> &Segments;
281dc707122SEaswaran Raman   SmallVector<const CountedRegion *, 8> ActiveRegions;
282dc707122SEaswaran Raman 
283dc707122SEaswaran Raman   SegmentBuilder(std::vector<CoverageSegment> &Segments) : Segments(Segments) {}
284dc707122SEaswaran Raman 
285dc707122SEaswaran Raman   /// Start a segment with no count specified.
286dc707122SEaswaran Raman   void startSegment(unsigned Line, unsigned Col) {
287dc707122SEaswaran Raman     DEBUG(dbgs() << "Top level segment at " << Line << ":" << Col << "\n");
288dc707122SEaswaran Raman     Segments.emplace_back(Line, Col, /*IsRegionEntry=*/false);
289dc707122SEaswaran Raman   }
290dc707122SEaswaran Raman 
291dc707122SEaswaran Raman   /// Start a segment with the given Region's count.
292dc707122SEaswaran Raman   void startSegment(unsigned Line, unsigned Col, bool IsRegionEntry,
293dc707122SEaswaran Raman                     const CountedRegion &Region) {
294dc707122SEaswaran Raman     // Avoid creating empty regions.
295dc707122SEaswaran Raman     if (!Segments.empty() && Segments.back().Line == Line &&
296dc707122SEaswaran Raman         Segments.back().Col == Col)
297dc707122SEaswaran Raman       Segments.pop_back();
298dc707122SEaswaran Raman     DEBUG(dbgs() << "Segment at " << Line << ":" << Col);
299dc707122SEaswaran Raman     // Set this region's count.
300dc707122SEaswaran Raman     if (Region.Kind != coverage::CounterMappingRegion::SkippedRegion) {
301dc707122SEaswaran Raman       DEBUG(dbgs() << " with count " << Region.ExecutionCount);
302dc707122SEaswaran Raman       Segments.emplace_back(Line, Col, Region.ExecutionCount, IsRegionEntry);
303dc707122SEaswaran Raman     } else
304dc707122SEaswaran Raman       Segments.emplace_back(Line, Col, IsRegionEntry);
305dc707122SEaswaran Raman     DEBUG(dbgs() << "\n");
306dc707122SEaswaran Raman   }
307dc707122SEaswaran Raman 
308dc707122SEaswaran Raman   /// Start a segment for the given region.
309dc707122SEaswaran Raman   void startSegment(const CountedRegion &Region) {
310dc707122SEaswaran Raman     startSegment(Region.LineStart, Region.ColumnStart, true, Region);
311dc707122SEaswaran Raman   }
312dc707122SEaswaran Raman 
313dc707122SEaswaran Raman   /// Pop the top region off of the active stack, starting a new segment with
314dc707122SEaswaran Raman   /// the containing Region's count.
315dc707122SEaswaran Raman   void popRegion() {
316dc707122SEaswaran Raman     const CountedRegion *Active = ActiveRegions.back();
317dc707122SEaswaran Raman     unsigned Line = Active->LineEnd, Col = Active->ColumnEnd;
318dc707122SEaswaran Raman     ActiveRegions.pop_back();
319dc707122SEaswaran Raman     if (ActiveRegions.empty())
320dc707122SEaswaran Raman       startSegment(Line, Col);
321dc707122SEaswaran Raman     else
322dc707122SEaswaran Raman       startSegment(Line, Col, false, *ActiveRegions.back());
323dc707122SEaswaran Raman   }
324dc707122SEaswaran Raman 
325dc707122SEaswaran Raman   void buildSegmentsImpl(ArrayRef<CountedRegion> Regions) {
326dc707122SEaswaran Raman     for (const auto &Region : Regions) {
327dc707122SEaswaran Raman       // Pop any regions that end before this one starts.
328dc707122SEaswaran Raman       while (!ActiveRegions.empty() &&
329dc707122SEaswaran Raman              ActiveRegions.back()->endLoc() <= Region.startLoc())
330dc707122SEaswaran Raman         popRegion();
331dc707122SEaswaran Raman       // Add this region to the stack.
332dc707122SEaswaran Raman       ActiveRegions.push_back(&Region);
333dc707122SEaswaran Raman       startSegment(Region);
334dc707122SEaswaran Raman     }
335dc707122SEaswaran Raman     // Pop any regions that are left in the stack.
336dc707122SEaswaran Raman     while (!ActiveRegions.empty())
337dc707122SEaswaran Raman       popRegion();
338dc707122SEaswaran Raman   }
339dc707122SEaswaran Raman 
340dc707122SEaswaran Raman   /// Sort a nested sequence of regions from a single file.
341dc707122SEaswaran Raman   static void sortNestedRegions(MutableArrayRef<CountedRegion> Regions) {
34227d8dd39SIgor Kudrin     std::sort(Regions.begin(), Regions.end(), [](const CountedRegion &LHS,
34327d8dd39SIgor Kudrin                                                  const CountedRegion &RHS) {
34427d8dd39SIgor Kudrin       if (LHS.startLoc() != RHS.startLoc())
34527d8dd39SIgor Kudrin         return LHS.startLoc() < RHS.startLoc();
34627d8dd39SIgor Kudrin       if (LHS.endLoc() != RHS.endLoc())
347dc707122SEaswaran Raman         // When LHS completely contains RHS, we sort LHS first.
348dc707122SEaswaran Raman         return RHS.endLoc() < LHS.endLoc();
34927d8dd39SIgor Kudrin       // If LHS and RHS cover the same area, we need to sort them according
35027d8dd39SIgor Kudrin       // to their kinds so that the most suitable region will become "active"
35127d8dd39SIgor Kudrin       // in combineRegions(). Because we accumulate counter values only from
35227d8dd39SIgor Kudrin       // regions of the same kind as the first region of the area, prefer
35327d8dd39SIgor Kudrin       // CodeRegion to ExpansionRegion and ExpansionRegion to SkippedRegion.
35427d8dd39SIgor Kudrin       static_assert(coverage::CounterMappingRegion::CodeRegion <
35527d8dd39SIgor Kudrin                             coverage::CounterMappingRegion::ExpansionRegion &&
35627d8dd39SIgor Kudrin                         coverage::CounterMappingRegion::ExpansionRegion <
35727d8dd39SIgor Kudrin                             coverage::CounterMappingRegion::SkippedRegion,
35827d8dd39SIgor Kudrin                     "Unexpected order of region kind values");
35927d8dd39SIgor Kudrin       return LHS.Kind < RHS.Kind;
360dc707122SEaswaran Raman     });
361dc707122SEaswaran Raman   }
362dc707122SEaswaran Raman 
363dc707122SEaswaran Raman   /// Combine counts of regions which cover the same area.
364dc707122SEaswaran Raman   static ArrayRef<CountedRegion>
365dc707122SEaswaran Raman   combineRegions(MutableArrayRef<CountedRegion> Regions) {
366dc707122SEaswaran Raman     if (Regions.empty())
367dc707122SEaswaran Raman       return Regions;
368dc707122SEaswaran Raman     auto Active = Regions.begin();
369dc707122SEaswaran Raman     auto End = Regions.end();
370dc707122SEaswaran Raman     for (auto I = Regions.begin() + 1; I != End; ++I) {
371dc707122SEaswaran Raman       if (Active->startLoc() != I->startLoc() ||
372dc707122SEaswaran Raman           Active->endLoc() != I->endLoc()) {
373dc707122SEaswaran Raman         // Shift to the next region.
374dc707122SEaswaran Raman         ++Active;
375dc707122SEaswaran Raman         if (Active != I)
376dc707122SEaswaran Raman           *Active = *I;
377dc707122SEaswaran Raman         continue;
378dc707122SEaswaran Raman       }
379dc707122SEaswaran Raman       // Merge duplicate region.
38027d8dd39SIgor Kudrin       // If CodeRegions and ExpansionRegions cover the same area, it's probably
38127d8dd39SIgor Kudrin       // a macro which is fully expanded to another macro. In that case, we need
38227d8dd39SIgor Kudrin       // to accumulate counts only from CodeRegions, or else the area will be
38327d8dd39SIgor Kudrin       // counted twice.
38427d8dd39SIgor Kudrin       // On the other hand, a macro may have a nested macro in its body. If the
38527d8dd39SIgor Kudrin       // outer macro is used several times, the ExpansionRegion for the nested
38627d8dd39SIgor Kudrin       // macro will also be added several times. These ExpansionRegions cover
38727d8dd39SIgor Kudrin       // the same source locations and have to be combined to reach the correct
38827d8dd39SIgor Kudrin       // value for that area.
38927d8dd39SIgor Kudrin       // We add counts of the regions of the same kind as the active region
39027d8dd39SIgor Kudrin       // to handle the both situations.
39127d8dd39SIgor Kudrin       if (I->Kind == Active->Kind)
392dc707122SEaswaran Raman         Active->ExecutionCount += I->ExecutionCount;
393dc707122SEaswaran Raman     }
394dc707122SEaswaran Raman     return Regions.drop_back(std::distance(++Active, End));
395dc707122SEaswaran Raman   }
396dc707122SEaswaran Raman 
397dc707122SEaswaran Raman public:
398dc707122SEaswaran Raman   /// Build a list of CoverageSegments from a list of Regions.
399dc707122SEaswaran Raman   static std::vector<CoverageSegment>
400dc707122SEaswaran Raman   buildSegments(MutableArrayRef<CountedRegion> Regions) {
401dc707122SEaswaran Raman     std::vector<CoverageSegment> Segments;
402dc707122SEaswaran Raman     SegmentBuilder Builder(Segments);
403dc707122SEaswaran Raman 
404dc707122SEaswaran Raman     sortNestedRegions(Regions);
405dc707122SEaswaran Raman     ArrayRef<CountedRegion> CombinedRegions = combineRegions(Regions);
406dc707122SEaswaran Raman 
407dc707122SEaswaran Raman     Builder.buildSegmentsImpl(CombinedRegions);
408dc707122SEaswaran Raman     return Segments;
409dc707122SEaswaran Raman   }
410dc707122SEaswaran Raman };
411dc707122SEaswaran Raman }
412dc707122SEaswaran Raman 
413dc707122SEaswaran Raman std::vector<StringRef> CoverageMapping::getUniqueSourceFiles() const {
414dc707122SEaswaran Raman   std::vector<StringRef> Filenames;
415dc707122SEaswaran Raman   for (const auto &Function : getCoveredFunctions())
416dc707122SEaswaran Raman     Filenames.insert(Filenames.end(), Function.Filenames.begin(),
417dc707122SEaswaran Raman                      Function.Filenames.end());
418dc707122SEaswaran Raman   std::sort(Filenames.begin(), Filenames.end());
419dc707122SEaswaran Raman   auto Last = std::unique(Filenames.begin(), Filenames.end());
420dc707122SEaswaran Raman   Filenames.erase(Last, Filenames.end());
421dc707122SEaswaran Raman   return Filenames;
422dc707122SEaswaran Raman }
423dc707122SEaswaran Raman 
424dc707122SEaswaran Raman static SmallBitVector gatherFileIDs(StringRef SourceFile,
425dc707122SEaswaran Raman                                     const FunctionRecord &Function) {
426dc707122SEaswaran Raman   SmallBitVector FilenameEquivalence(Function.Filenames.size(), false);
427dc707122SEaswaran Raman   for (unsigned I = 0, E = Function.Filenames.size(); I < E; ++I)
428dc707122SEaswaran Raman     if (SourceFile == Function.Filenames[I])
429dc707122SEaswaran Raman       FilenameEquivalence[I] = true;
430dc707122SEaswaran Raman   return FilenameEquivalence;
431dc707122SEaswaran Raman }
432dc707122SEaswaran Raman 
433dc707122SEaswaran Raman /// Return the ID of the file where the definition of the function is located.
434dc707122SEaswaran Raman static Optional<unsigned> findMainViewFileID(const FunctionRecord &Function) {
435dc707122SEaswaran Raman   SmallBitVector IsNotExpandedFile(Function.Filenames.size(), true);
436dc707122SEaswaran Raman   for (const auto &CR : Function.CountedRegions)
437dc707122SEaswaran Raman     if (CR.Kind == CounterMappingRegion::ExpansionRegion)
438dc707122SEaswaran Raman       IsNotExpandedFile[CR.ExpandedFileID] = false;
439dc707122SEaswaran Raman   int I = IsNotExpandedFile.find_first();
440dc707122SEaswaran Raman   if (I == -1)
441dc707122SEaswaran Raman     return None;
442dc707122SEaswaran Raman   return I;
443dc707122SEaswaran Raman }
444dc707122SEaswaran Raman 
445dc707122SEaswaran Raman /// Check if SourceFile is the file that contains the definition of
446dc707122SEaswaran Raman /// the Function. Return the ID of the file in that case or None otherwise.
447dc707122SEaswaran Raman static Optional<unsigned> findMainViewFileID(StringRef SourceFile,
448dc707122SEaswaran Raman                                              const FunctionRecord &Function) {
449dc707122SEaswaran Raman   Optional<unsigned> I = findMainViewFileID(Function);
450dc707122SEaswaran Raman   if (I && SourceFile == Function.Filenames[*I])
451dc707122SEaswaran Raman     return I;
452dc707122SEaswaran Raman   return None;
453dc707122SEaswaran Raman }
454dc707122SEaswaran Raman 
455dc707122SEaswaran Raman static bool isExpansion(const CountedRegion &R, unsigned FileID) {
456dc707122SEaswaran Raman   return R.Kind == CounterMappingRegion::ExpansionRegion && R.FileID == FileID;
457dc707122SEaswaran Raman }
458dc707122SEaswaran Raman 
4597fcc5472SVedant Kumar CoverageData CoverageMapping::getCoverageForFile(StringRef Filename) const {
460dc707122SEaswaran Raman   CoverageData FileCoverage(Filename);
461dc707122SEaswaran Raman   std::vector<coverage::CountedRegion> Regions;
462dc707122SEaswaran Raman 
463dc707122SEaswaran Raman   for (const auto &Function : Functions) {
464dc707122SEaswaran Raman     auto MainFileID = findMainViewFileID(Filename, Function);
465dc707122SEaswaran Raman     auto FileIDs = gatherFileIDs(Filename, Function);
466dc707122SEaswaran Raman     for (const auto &CR : Function.CountedRegions)
467dc707122SEaswaran Raman       if (FileIDs.test(CR.FileID)) {
468dc707122SEaswaran Raman         Regions.push_back(CR);
469dc707122SEaswaran Raman         if (MainFileID && isExpansion(CR, *MainFileID))
470dc707122SEaswaran Raman           FileCoverage.Expansions.emplace_back(CR, Function);
471dc707122SEaswaran Raman       }
472dc707122SEaswaran Raman   }
473dc707122SEaswaran Raman 
474dc707122SEaswaran Raman   DEBUG(dbgs() << "Emitting segments for file: " << Filename << "\n");
475dc707122SEaswaran Raman   FileCoverage.Segments = SegmentBuilder::buildSegments(Regions);
476dc707122SEaswaran Raman 
477dc707122SEaswaran Raman   return FileCoverage;
478dc707122SEaswaran Raman }
479dc707122SEaswaran Raman 
480dc707122SEaswaran Raman std::vector<const FunctionRecord *>
481*f681e2e5SVedant Kumar CoverageMapping::getInstantiations(StringRef Filename) const {
482dc707122SEaswaran Raman   FunctionInstantiationSetCollector InstantiationSetCollector;
483dc707122SEaswaran Raman   for (const auto &Function : Functions) {
484dc707122SEaswaran Raman     auto MainFileID = findMainViewFileID(Filename, Function);
485dc707122SEaswaran Raman     if (!MainFileID)
486dc707122SEaswaran Raman       continue;
487dc707122SEaswaran Raman     InstantiationSetCollector.insert(Function, *MainFileID);
488dc707122SEaswaran Raman   }
489dc707122SEaswaran Raman 
490dc707122SEaswaran Raman   std::vector<const FunctionRecord *> Result;
491dc707122SEaswaran Raman   for (const auto &InstantiationSet : InstantiationSetCollector) {
492dc707122SEaswaran Raman     if (InstantiationSet.second.size() < 2)
493dc707122SEaswaran Raman       continue;
494dc707122SEaswaran Raman     Result.insert(Result.end(), InstantiationSet.second.begin(),
495dc707122SEaswaran Raman                   InstantiationSet.second.end());
496dc707122SEaswaran Raman   }
497dc707122SEaswaran Raman   return Result;
498dc707122SEaswaran Raman }
499dc707122SEaswaran Raman 
500dc707122SEaswaran Raman CoverageData
501*f681e2e5SVedant Kumar CoverageMapping::getCoverageForFunction(const FunctionRecord &Function) const {
502dc707122SEaswaran Raman   auto MainFileID = findMainViewFileID(Function);
503dc707122SEaswaran Raman   if (!MainFileID)
504dc707122SEaswaran Raman     return CoverageData();
505dc707122SEaswaran Raman 
506dc707122SEaswaran Raman   CoverageData FunctionCoverage(Function.Filenames[*MainFileID]);
507dc707122SEaswaran Raman   std::vector<coverage::CountedRegion> Regions;
508dc707122SEaswaran Raman   for (const auto &CR : Function.CountedRegions)
509dc707122SEaswaran Raman     if (CR.FileID == *MainFileID) {
510dc707122SEaswaran Raman       Regions.push_back(CR);
511dc707122SEaswaran Raman       if (isExpansion(CR, *MainFileID))
512dc707122SEaswaran Raman         FunctionCoverage.Expansions.emplace_back(CR, Function);
513dc707122SEaswaran Raman     }
514dc707122SEaswaran Raman 
515dc707122SEaswaran Raman   DEBUG(dbgs() << "Emitting segments for function: " << Function.Name << "\n");
516dc707122SEaswaran Raman   FunctionCoverage.Segments = SegmentBuilder::buildSegments(Regions);
517dc707122SEaswaran Raman 
518dc707122SEaswaran Raman   return FunctionCoverage;
519dc707122SEaswaran Raman }
520dc707122SEaswaran Raman 
521*f681e2e5SVedant Kumar CoverageData CoverageMapping::getCoverageForExpansion(
522*f681e2e5SVedant Kumar     const ExpansionRecord &Expansion) const {
523dc707122SEaswaran Raman   CoverageData ExpansionCoverage(
524dc707122SEaswaran Raman       Expansion.Function.Filenames[Expansion.FileID]);
525dc707122SEaswaran Raman   std::vector<coverage::CountedRegion> Regions;
526dc707122SEaswaran Raman   for (const auto &CR : Expansion.Function.CountedRegions)
527dc707122SEaswaran Raman     if (CR.FileID == Expansion.FileID) {
528dc707122SEaswaran Raman       Regions.push_back(CR);
529dc707122SEaswaran Raman       if (isExpansion(CR, Expansion.FileID))
530dc707122SEaswaran Raman         ExpansionCoverage.Expansions.emplace_back(CR, Expansion.Function);
531dc707122SEaswaran Raman     }
532dc707122SEaswaran Raman 
533dc707122SEaswaran Raman   DEBUG(dbgs() << "Emitting segments for expansion of file " << Expansion.FileID
534dc707122SEaswaran Raman                << "\n");
535dc707122SEaswaran Raman   ExpansionCoverage.Segments = SegmentBuilder::buildSegments(Regions);
536dc707122SEaswaran Raman 
537dc707122SEaswaran Raman   return ExpansionCoverage;
538dc707122SEaswaran Raman }
539dc707122SEaswaran Raman 
540dc707122SEaswaran Raman namespace {
5419152fd17SVedant Kumar std::string getCoverageMapErrString(coveragemap_error Err) {
5429152fd17SVedant Kumar   switch (Err) {
543dc707122SEaswaran Raman   case coveragemap_error::success:
544dc707122SEaswaran Raman     return "Success";
545dc707122SEaswaran Raman   case coveragemap_error::eof:
546dc707122SEaswaran Raman     return "End of File";
547dc707122SEaswaran Raman   case coveragemap_error::no_data_found:
548dc707122SEaswaran Raman     return "No coverage data found";
549dc707122SEaswaran Raman   case coveragemap_error::unsupported_version:
550dc707122SEaswaran Raman     return "Unsupported coverage format version";
551dc707122SEaswaran Raman   case coveragemap_error::truncated:
552dc707122SEaswaran Raman     return "Truncated coverage data";
553dc707122SEaswaran Raman   case coveragemap_error::malformed:
554dc707122SEaswaran Raman     return "Malformed coverage data";
555dc707122SEaswaran Raman   }
556dc707122SEaswaran Raman   llvm_unreachable("A value of coveragemap_error has no message.");
557dc707122SEaswaran Raman }
5589152fd17SVedant Kumar 
5594718f8b5SPeter Collingbourne // FIXME: This class is only here to support the transition to llvm::Error. It
5604718f8b5SPeter Collingbourne // will be removed once this transition is complete. Clients should prefer to
5614718f8b5SPeter Collingbourne // deal with the Error value directly, rather than converting to error_code.
5629152fd17SVedant Kumar class CoverageMappingErrorCategoryType : public std::error_category {
5639152fd17SVedant Kumar   const char *name() const LLVM_NOEXCEPT override { return "llvm.coveragemap"; }
5649152fd17SVedant Kumar   std::string message(int IE) const override {
5659152fd17SVedant Kumar     return getCoverageMapErrString(static_cast<coveragemap_error>(IE));
5669152fd17SVedant Kumar   }
567dc707122SEaswaran Raman };
5689152fd17SVedant Kumar } // end anonymous namespace
5699152fd17SVedant Kumar 
5709152fd17SVedant Kumar std::string CoverageMapError::message() const {
5719152fd17SVedant Kumar   return getCoverageMapErrString(Err);
572dc707122SEaswaran Raman }
573dc707122SEaswaran Raman 
574dc707122SEaswaran Raman static ManagedStatic<CoverageMappingErrorCategoryType> ErrorCategory;
575dc707122SEaswaran Raman 
576dc707122SEaswaran Raman const std::error_category &llvm::coverage::coveragemap_category() {
577dc707122SEaswaran Raman   return *ErrorCategory;
578dc707122SEaswaran Raman }
5799152fd17SVedant Kumar 
5809152fd17SVedant Kumar char CoverageMapError::ID = 0;
581