blob: ac0793dd4242b5c3553b7c1cf5758dcb75fe87c1 [file] [log] [blame]
Eugene Zelenko72208a82017-06-21 23:19:47 +00001//===- CoverageMapping.cpp - Code coverage mapping support ----------------===//
Alex Lorenza20a5d52014-07-24 23:57:54 +00002//
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 clang's and llvm's instrumentation based
11// code coverage.
12//
13//===----------------------------------------------------------------------===//
14
Chandler Carruth6bda14b2017-06-06 11:49:48 +000015#include "llvm/ProfileData/Coverage/CoverageMapping.h"
Eugene Zelenkoe78d1312017-03-03 01:07:34 +000016#include "llvm/ADT/ArrayRef.h"
Justin Bogner953e2402014-09-20 15:31:56 +000017#include "llvm/ADT/DenseMap.h"
Eugene Zelenkoe78d1312017-03-03 01:07:34 +000018#include "llvm/ADT/None.h"
Justin Bogner953e2402014-09-20 15:31:56 +000019#include "llvm/ADT/Optional.h"
Benjamin Kramer71e1eb52015-02-12 16:18:07 +000020#include "llvm/ADT/SmallBitVector.h"
Eugene Zelenkoe78d1312017-03-03 01:07:34 +000021#include "llvm/ADT/SmallVector.h"
22#include "llvm/ADT/StringRef.h"
Easwaran Ramandc707122016-04-29 18:53:05 +000023#include "llvm/ProfileData/Coverage/CoverageMappingReader.h"
Justin Bogner953e2402014-09-20 15:31:56 +000024#include "llvm/ProfileData/InstrProfReader.h"
Justin Bognerb35a72a2014-09-25 00:34:18 +000025#include "llvm/Support/Debug.h"
Rafael Espindola74f29322015-06-13 17:23:04 +000026#include "llvm/Support/Errc.h"
Eugene Zelenkoe78d1312017-03-03 01:07:34 +000027#include "llvm/Support/Error.h"
Justin Bogner85b0a032014-09-08 21:04:00 +000028#include "llvm/Support/ErrorHandling.h"
Justin Bogner367a9f22015-05-06 23:19:35 +000029#include "llvm/Support/ManagedStatic.h"
Eugene Zelenkoe78d1312017-03-03 01:07:34 +000030#include "llvm/Support/MemoryBuffer.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000031#include "llvm/Support/raw_ostream.h"
Eugene Zelenkoe78d1312017-03-03 01:07:34 +000032#include <algorithm>
33#include <cassert>
34#include <cstdint>
35#include <iterator>
Vedant Kumar7bef6da2017-10-24 22:35:29 +000036#include <map>
Eugene Zelenkoe78d1312017-03-03 01:07:34 +000037#include <memory>
38#include <string>
39#include <system_error>
40#include <utility>
41#include <vector>
Alex Lorenza20a5d52014-07-24 23:57:54 +000042
43using namespace llvm;
44using namespace coverage;
45
Justin Bognerb35a72a2014-09-25 00:34:18 +000046#define DEBUG_TYPE "coverage-mapping"
47
Alex Lorenza20a5d52014-07-24 23:57:54 +000048Counter CounterExpressionBuilder::get(const CounterExpression &E) {
Justin Bognerad69e642014-10-02 17:14:18 +000049 auto It = ExpressionIndices.find(E);
50 if (It != ExpressionIndices.end())
51 return Counter::getExpression(It->second);
52 unsigned I = Expressions.size();
Alex Lorenza20a5d52014-07-24 23:57:54 +000053 Expressions.push_back(E);
Justin Bognerad69e642014-10-02 17:14:18 +000054 ExpressionIndices[E] = I;
55 return Counter::getExpression(I);
Alex Lorenza20a5d52014-07-24 23:57:54 +000056}
57
Vedant Kumar71b3d722017-06-26 22:33:06 +000058void CounterExpressionBuilder::extractTerms(Counter C, int Factor,
59 SmallVectorImpl<Term> &Terms) {
Alex Lorenza20a5d52014-07-24 23:57:54 +000060 switch (C.getKind()) {
61 case Counter::Zero:
62 break;
63 case Counter::CounterValueReference:
Vedant Kumar71b3d722017-06-26 22:33:06 +000064 Terms.emplace_back(C.getCounterID(), Factor);
Alex Lorenza20a5d52014-07-24 23:57:54 +000065 break;
66 case Counter::Expression:
67 const auto &E = Expressions[C.getExpressionID()];
Vedant Kumar71b3d722017-06-26 22:33:06 +000068 extractTerms(E.LHS, Factor, Terms);
69 extractTerms(
70 E.RHS, E.Kind == CounterExpression::Subtract ? -Factor : Factor, Terms);
Alex Lorenza20a5d52014-07-24 23:57:54 +000071 break;
72 }
73}
74
75Counter CounterExpressionBuilder::simplify(Counter ExpressionTree) {
76 // Gather constant terms.
Vedant Kumar71b3d722017-06-26 22:33:06 +000077 SmallVector<Term, 32> Terms;
Justin Bognerf9535c42014-10-02 16:43:31 +000078 extractTerms(ExpressionTree, +1, Terms);
79
80 // If there are no terms, this is just a zero. The algorithm below assumes at
81 // least one term.
82 if (Terms.size() == 0)
83 return Counter::getZero();
84
85 // Group the terms by counter ID.
Mandeep Singh Grang8547f912018-04-13 19:46:36 +000086 llvm::sort(Terms.begin(), Terms.end(), [](const Term &LHS, const Term &RHS) {
Vedant Kumar71b3d722017-06-26 22:33:06 +000087 return LHS.CounterID < RHS.CounterID;
Justin Bognerf9535c42014-10-02 16:43:31 +000088 });
89
90 // Combine terms by counter ID to eliminate counters that sum to zero.
91 auto Prev = Terms.begin();
92 for (auto I = Prev + 1, E = Terms.end(); I != E; ++I) {
Vedant Kumar71b3d722017-06-26 22:33:06 +000093 if (I->CounterID == Prev->CounterID) {
94 Prev->Factor += I->Factor;
Justin Bognerf9535c42014-10-02 16:43:31 +000095 continue;
96 }
97 ++Prev;
98 *Prev = *I;
99 }
100 Terms.erase(++Prev, Terms.end());
Alex Lorenza20a5d52014-07-24 23:57:54 +0000101
102 Counter C;
Justin Bognerf9535c42014-10-02 16:43:31 +0000103 // Create additions. We do this before subtractions to avoid constructs like
104 // ((0 - X) + Y), as opposed to (Y - X).
Vedant Kumar71b3d722017-06-26 22:33:06 +0000105 for (auto T : Terms) {
106 if (T.Factor <= 0)
Alex Lorenza20a5d52014-07-24 23:57:54 +0000107 continue;
Vedant Kumar71b3d722017-06-26 22:33:06 +0000108 for (int I = 0; I < T.Factor; ++I)
Alex Lorenza20a5d52014-07-24 23:57:54 +0000109 if (C.isZero())
Vedant Kumar71b3d722017-06-26 22:33:06 +0000110 C = Counter::getCounter(T.CounterID);
Alex Lorenza20a5d52014-07-24 23:57:54 +0000111 else
112 C = get(CounterExpression(CounterExpression::Add, C,
Vedant Kumar71b3d722017-06-26 22:33:06 +0000113 Counter::getCounter(T.CounterID)));
Alex Lorenza20a5d52014-07-24 23:57:54 +0000114 }
115
116 // Create subtractions.
Vedant Kumar71b3d722017-06-26 22:33:06 +0000117 for (auto T : Terms) {
118 if (T.Factor >= 0)
Alex Lorenza20a5d52014-07-24 23:57:54 +0000119 continue;
Vedant Kumar71b3d722017-06-26 22:33:06 +0000120 for (int I = 0; I < -T.Factor; ++I)
Alex Lorenza20a5d52014-07-24 23:57:54 +0000121 C = get(CounterExpression(CounterExpression::Subtract, C,
Vedant Kumar71b3d722017-06-26 22:33:06 +0000122 Counter::getCounter(T.CounterID)));
Alex Lorenza20a5d52014-07-24 23:57:54 +0000123 }
124 return C;
125}
126
127Counter CounterExpressionBuilder::add(Counter LHS, Counter RHS) {
128 return simplify(get(CounterExpression(CounterExpression::Add, LHS, RHS)));
129}
130
131Counter CounterExpressionBuilder::subtract(Counter LHS, Counter RHS) {
132 return simplify(
133 get(CounterExpression(CounterExpression::Subtract, LHS, RHS)));
134}
135
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000136void CounterMappingContext::dump(const Counter &C, raw_ostream &OS) const {
Alex Lorenza20a5d52014-07-24 23:57:54 +0000137 switch (C.getKind()) {
138 case Counter::Zero:
139 OS << '0';
140 return;
141 case Counter::CounterValueReference:
142 OS << '#' << C.getCounterID();
143 break;
144 case Counter::Expression: {
145 if (C.getExpressionID() >= Expressions.size())
146 return;
147 const auto &E = Expressions[C.getExpressionID()];
148 OS << '(';
Alex Lorenza422911c2014-07-29 19:58:16 +0000149 dump(E.LHS, OS);
Alex Lorenza20a5d52014-07-24 23:57:54 +0000150 OS << (E.Kind == CounterExpression::Subtract ? " - " : " + ");
Alex Lorenza422911c2014-07-29 19:58:16 +0000151 dump(E.RHS, OS);
Alex Lorenza20a5d52014-07-24 23:57:54 +0000152 OS << ')';
153 break;
154 }
155 }
156 if (CounterValues.empty())
157 return;
Vedant Kumar9152fd12016-05-19 03:54:45 +0000158 Expected<int64_t> Value = evaluate(C);
159 if (auto E = Value.takeError()) {
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000160 consumeError(std::move(E));
Alex Lorenza20a5d52014-07-24 23:57:54 +0000161 return;
Vedant Kumar9152fd12016-05-19 03:54:45 +0000162 }
Justin Bogner85b0a032014-09-08 21:04:00 +0000163 OS << '[' << *Value << ']';
Alex Lorenza20a5d52014-07-24 23:57:54 +0000164}
165
Vedant Kumar9152fd12016-05-19 03:54:45 +0000166Expected<int64_t> CounterMappingContext::evaluate(const Counter &C) const {
Alex Lorenza20a5d52014-07-24 23:57:54 +0000167 switch (C.getKind()) {
168 case Counter::Zero:
169 return 0;
170 case Counter::CounterValueReference:
Justin Bogner85b0a032014-09-08 21:04:00 +0000171 if (C.getCounterID() >= CounterValues.size())
Vedant Kumar9152fd12016-05-19 03:54:45 +0000172 return errorCodeToError(errc::argument_out_of_domain);
Alex Lorenza20a5d52014-07-24 23:57:54 +0000173 return CounterValues[C.getCounterID()];
174 case Counter::Expression: {
Justin Bogner85b0a032014-09-08 21:04:00 +0000175 if (C.getExpressionID() >= Expressions.size())
Vedant Kumar9152fd12016-05-19 03:54:45 +0000176 return errorCodeToError(errc::argument_out_of_domain);
Alex Lorenza20a5d52014-07-24 23:57:54 +0000177 const auto &E = Expressions[C.getExpressionID()];
Vedant Kumar9152fd12016-05-19 03:54:45 +0000178 Expected<int64_t> LHS = evaluate(E.LHS);
Justin Bogner85b0a032014-09-08 21:04:00 +0000179 if (!LHS)
180 return LHS;
Vedant Kumar9152fd12016-05-19 03:54:45 +0000181 Expected<int64_t> RHS = evaluate(E.RHS);
Justin Bogner85b0a032014-09-08 21:04:00 +0000182 if (!RHS)
183 return RHS;
184 return E.Kind == CounterExpression::Subtract ? *LHS - *RHS : *LHS + *RHS;
Alex Lorenza20a5d52014-07-24 23:57:54 +0000185 }
186 }
Justin Bogner85b0a032014-09-08 21:04:00 +0000187 llvm_unreachable("Unhandled CounterKind");
Alex Lorenza20a5d52014-07-24 23:57:54 +0000188}
Justin Bogner953e2402014-09-20 15:31:56 +0000189
Justin Bognerd5fca922014-11-14 01:50:32 +0000190void FunctionRecordIterator::skipOtherFiles() {
191 while (Current != Records.end() && !Filename.empty() &&
192 Filename != Current->Filenames[0])
193 ++Current;
194 if (Current == Records.end())
195 *this = FunctionRecordIterator();
196}
197
Vedant Kumar68216d72016-10-12 22:27:45 +0000198Error CoverageMapping::loadFunctionRecord(
199 const CoverageMappingRecord &Record,
200 IndexedInstrProfReader &ProfileReader) {
Vedant Kumar743574b2016-10-14 17:16:53 +0000201 StringRef OrigFuncName = Record.FunctionName;
Vedant Kumarb1d331a2017-06-20 02:05:35 +0000202 if (OrigFuncName.empty())
203 return make_error<CoverageMapError>(coveragemap_error::malformed);
204
Vedant Kumar743574b2016-10-14 17:16:53 +0000205 if (Record.Filenames.empty())
206 OrigFuncName = getFuncNameWithoutPrefix(OrigFuncName);
207 else
208 OrigFuncName = getFuncNameWithoutPrefix(OrigFuncName, Record.Filenames[0]);
209
Max Moroz0c5b6022018-05-08 19:26:51 +0000210 // Don't load records for (filenames, function) pairs we've already seen.
211 auto FilenamesHash = hash_combine_range(Record.Filenames.begin(),
212 Record.Filenames.end());
213 if (!RecordProvenance[FilenamesHash].insert(hash_value(OrigFuncName)).second)
Vedant Kumar743574b2016-10-14 17:16:53 +0000214 return Error::success();
215
Vedant Kumar68216d72016-10-12 22:27:45 +0000216 CounterMappingContext Ctx(Record.Expressions);
217
218 std::vector<uint64_t> Counts;
219 if (Error E = ProfileReader.getFunctionCounts(Record.FunctionName,
220 Record.FunctionHash, Counts)) {
221 instrprof_error IPE = InstrProfError::take(std::move(E));
222 if (IPE == instrprof_error::hash_mismatch) {
Vedant Kumar18dd9e82017-09-21 01:11:30 +0000223 FuncHashMismatches.emplace_back(Record.FunctionName, Record.FunctionHash);
Vedant Kumar68216d72016-10-12 22:27:45 +0000224 return Error::success();
225 } else if (IPE != instrprof_error::unknown_function)
226 return make_error<InstrProfError>(IPE);
227 Counts.assign(Record.MappingRegions.size(), 0);
228 }
229 Ctx.setCounts(Counts);
230
231 assert(!Record.MappingRegions.empty() && "Function has no regions");
232
Vedant Kumar68216d72016-10-12 22:27:45 +0000233 FunctionRecord Function(OrigFuncName, Record.Filenames);
234 for (const auto &Region : Record.MappingRegions) {
235 Expected<int64_t> ExecutionCount = Ctx.evaluate(Region.Count);
236 if (auto E = ExecutionCount.takeError()) {
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000237 consumeError(std::move(E));
Vedant Kumar68216d72016-10-12 22:27:45 +0000238 return Error::success();
239 }
240 Function.pushRegion(Region, *ExecutionCount);
241 }
242 if (Function.CountedRegions.size() != Record.MappingRegions.size()) {
Vedant Kumar18dd9e82017-09-21 01:11:30 +0000243 FuncCounterMismatches.emplace_back(Record.FunctionName,
244 Function.CountedRegions.size());
Vedant Kumar68216d72016-10-12 22:27:45 +0000245 return Error::success();
246 }
247
248 Functions.push_back(std::move(Function));
249 return Error::success();
250}
251
Vedant Kumar743574b2016-10-14 17:16:53 +0000252Expected<std::unique_ptr<CoverageMapping>> CoverageMapping::load(
253 ArrayRef<std::unique_ptr<CoverageMappingReader>> CoverageReaders,
254 IndexedInstrProfReader &ProfileReader) {
255 auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping());
256
Vedant Kumarbae83972017-09-08 18:44:47 +0000257 for (const auto &CoverageReader : CoverageReaders) {
258 for (auto RecordOrErr : *CoverageReader) {
259 if (Error E = RecordOrErr.takeError())
260 return std::move(E);
261 const auto &Record = *RecordOrErr;
Vedant Kumar743574b2016-10-14 17:16:53 +0000262 if (Error E = Coverage->loadFunctionRecord(Record, ProfileReader))
263 return std::move(E);
Vedant Kumarbae83972017-09-08 18:44:47 +0000264 }
265 }
Vedant Kumar743574b2016-10-14 17:16:53 +0000266
267 return std::move(Coverage);
268}
269
Vedant Kumar9152fd12016-05-19 03:54:45 +0000270Expected<std::unique_ptr<CoverageMapping>>
Vedant Kumar743574b2016-10-14 17:16:53 +0000271CoverageMapping::load(ArrayRef<StringRef> ObjectFilenames,
Vedant Kumar4b102c32017-08-01 21:23:26 +0000272 StringRef ProfileFilename, ArrayRef<StringRef> Arches) {
Justin Bognerab89ed72015-02-16 21:28:58 +0000273 auto ProfileReaderOrErr = IndexedInstrProfReader::create(ProfileFilename);
Vedant Kumar9152fd12016-05-19 03:54:45 +0000274 if (Error E = ProfileReaderOrErr.takeError())
275 return std::move(E);
Justin Bognerab89ed72015-02-16 21:28:58 +0000276 auto ProfileReader = std::move(ProfileReaderOrErr.get());
Vedant Kumar743574b2016-10-14 17:16:53 +0000277
278 SmallVector<std::unique_ptr<CoverageMappingReader>, 4> Readers;
279 SmallVector<std::unique_ptr<MemoryBuffer>, 4> Buffers;
Vedant Kumar4b102c32017-08-01 21:23:26 +0000280 for (const auto &File : llvm::enumerate(ObjectFilenames)) {
281 auto CovMappingBufOrErr = MemoryBuffer::getFileOrSTDIN(File.value());
Vedant Kumar743574b2016-10-14 17:16:53 +0000282 if (std::error_code EC = CovMappingBufOrErr.getError())
283 return errorCodeToError(EC);
Vedant Kumar4b102c32017-08-01 21:23:26 +0000284 StringRef Arch = Arches.empty() ? StringRef() : Arches[File.index()];
Vedant Kumar743574b2016-10-14 17:16:53 +0000285 auto CoverageReaderOrErr =
286 BinaryCoverageReader::create(CovMappingBufOrErr.get(), Arch);
287 if (Error E = CoverageReaderOrErr.takeError())
288 return std::move(E);
289 Readers.push_back(std::move(CoverageReaderOrErr.get()));
290 Buffers.push_back(std::move(CovMappingBufOrErr.get()));
291 }
292 return load(Readers, *ProfileReader);
Justin Bogner19a93ba2014-09-20 17:19:52 +0000293}
294
Justin Bogner953e2402014-09-20 15:31:56 +0000295namespace {
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000296
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000297/// Distributes functions into instantiation sets.
Justin Bogner953e2402014-09-20 15:31:56 +0000298///
299/// An instantiation set is a collection of functions that have the same source
300/// code, ie, template functions specializations.
301class FunctionInstantiationSetCollector {
Vedant Kumar7bef6da2017-10-24 22:35:29 +0000302 using MapT = std::map<LineColPair, std::vector<const FunctionRecord *>>;
Justin Bogner953e2402014-09-20 15:31:56 +0000303 MapT InstantiatedFunctions;
304
305public:
306 void insert(const FunctionRecord &Function, unsigned FileID) {
307 auto I = Function.CountedRegions.begin(), E = Function.CountedRegions.end();
308 while (I != E && I->FileID != FileID)
309 ++I;
310 assert(I != E && "function does not cover the given file");
311 auto &Functions = InstantiatedFunctions[I->startLoc()];
312 Functions.push_back(&Function);
313 }
314
315 MapT::iterator begin() { return InstantiatedFunctions.begin(); }
Justin Bogner953e2402014-09-20 15:31:56 +0000316 MapT::iterator end() { return InstantiatedFunctions.end(); }
317};
318
319class SegmentBuilder {
Igor Kudrinc0774e62016-04-14 09:10:00 +0000320 std::vector<CoverageSegment> &Segments;
Justin Bogner953e2402014-09-20 15:31:56 +0000321 SmallVector<const CountedRegion *, 8> ActiveRegions;
322
Igor Kudrinc0774e62016-04-14 09:10:00 +0000323 SegmentBuilder(std::vector<CoverageSegment> &Segments) : Segments(Segments) {}
324
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000325 /// Emit a segment with the count from \p Region starting at \p StartLoc.
326 //
Vedant Kumarad8f6372017-09-18 23:37:28 +0000327 /// \p IsRegionEntry: The segment is at the start of a new non-gap region.
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000328 /// \p EmitSkippedRegion: The segment must be emitted as a skipped region.
329 void startSegment(const CountedRegion &Region, LineColPair StartLoc,
330 bool IsRegionEntry, bool EmitSkippedRegion = false) {
331 bool HasCount = !EmitSkippedRegion &&
332 (Region.Kind != CounterMappingRegion::SkippedRegion);
Justin Bogner953e2402014-09-20 15:31:56 +0000333
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000334 // If the new segment wouldn't affect coverage rendering, skip it.
335 if (!Segments.empty() && !IsRegionEntry && !EmitSkippedRegion) {
336 const auto &Last = Segments.back();
337 if (Last.HasCount == HasCount && Last.Count == Region.ExecutionCount &&
338 !Last.IsRegionEntry)
339 return;
340 }
Justin Bogner953e2402014-09-20 15:31:56 +0000341
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000342 if (HasCount)
343 Segments.emplace_back(StartLoc.first, StartLoc.second,
Vedant Kumarad8f6372017-09-18 23:37:28 +0000344 Region.ExecutionCount, IsRegionEntry,
345 Region.Kind == CounterMappingRegion::GapRegion);
Justin Bogner953e2402014-09-20 15:31:56 +0000346 else
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000347 Segments.emplace_back(StartLoc.first, StartLoc.second, IsRegionEntry);
348
349 DEBUG({
350 const auto &Last = Segments.back();
351 dbgs() << "Segment at " << Last.Line << ":" << Last.Col
352 << " (count = " << Last.Count << ")"
353 << (Last.IsRegionEntry ? ", RegionEntry" : "")
Vedant Kumarad8f6372017-09-18 23:37:28 +0000354 << (!Last.HasCount ? ", Skipped" : "")
355 << (Last.IsGapRegion ? ", Gap" : "") << "\n";
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000356 });
357 }
358
359 /// Emit segments for active regions which end before \p Loc.
360 ///
361 /// \p Loc: The start location of the next region. If None, all active
362 /// regions are completed.
363 /// \p FirstCompletedRegion: Index of the first completed region.
364 void completeRegionsUntil(Optional<LineColPair> Loc,
365 unsigned FirstCompletedRegion) {
366 // Sort the completed regions by end location. This makes it simple to
367 // emit closing segments in sorted order.
368 auto CompletedRegionsIt = ActiveRegions.begin() + FirstCompletedRegion;
369 std::stable_sort(CompletedRegionsIt, ActiveRegions.end(),
370 [](const CountedRegion *L, const CountedRegion *R) {
371 return L->endLoc() < R->endLoc();
372 });
373
374 // Emit segments for all completed regions.
375 for (unsigned I = FirstCompletedRegion + 1, E = ActiveRegions.size(); I < E;
376 ++I) {
377 const auto *CompletedRegion = ActiveRegions[I];
378 assert((!Loc || CompletedRegion->endLoc() <= *Loc) &&
379 "Completed region ends after start of new region");
380
381 const auto *PrevCompletedRegion = ActiveRegions[I - 1];
382 auto CompletedSegmentLoc = PrevCompletedRegion->endLoc();
383
384 // Don't emit any more segments if they start where the new region begins.
385 if (Loc && CompletedSegmentLoc == *Loc)
386 break;
387
388 // Don't emit a segment if the next completed region ends at the same
389 // location as this one.
390 if (CompletedSegmentLoc == CompletedRegion->endLoc())
391 continue;
392
Vedant Kumar337b0db2017-12-07 00:01:15 +0000393 // Use the count from the last completed region which ends at this loc.
394 for (unsigned J = I + 1; J < E; ++J)
395 if (CompletedRegion->endLoc() == ActiveRegions[J]->endLoc())
396 CompletedRegion = ActiveRegions[J];
Vedant Kumar80fbb852017-11-30 00:28:23 +0000397
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000398 startSegment(*CompletedRegion, CompletedSegmentLoc, false);
399 }
400
401 auto Last = ActiveRegions.back();
402 if (FirstCompletedRegion && Last->endLoc() != *Loc) {
403 // If there's a gap after the end of the last completed region and the
404 // start of the new region, use the last active region to fill the gap.
405 startSegment(*ActiveRegions[FirstCompletedRegion - 1], Last->endLoc(),
406 false);
407 } else if (!FirstCompletedRegion && (!Loc || *Loc != Last->endLoc())) {
408 // Emit a skipped segment if there are no more active regions. This
409 // ensures that gaps between functions are marked correctly.
410 startSegment(*Last, Last->endLoc(), false, true);
411 }
412
413 // Pop the completed regions.
414 ActiveRegions.erase(CompletedRegionsIt, ActiveRegions.end());
Justin Bogner953e2402014-09-20 15:31:56 +0000415 }
416
Igor Kudrinc0774e62016-04-14 09:10:00 +0000417 void buildSegmentsImpl(ArrayRef<CountedRegion> Regions) {
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000418 for (const auto &CR : enumerate(Regions)) {
419 auto CurStartLoc = CR.value().startLoc();
420
421 // Active regions which end before the current region need to be popped.
422 auto CompletedRegions =
423 std::stable_partition(ActiveRegions.begin(), ActiveRegions.end(),
424 [&](const CountedRegion *Region) {
425 return !(Region->endLoc() <= CurStartLoc);
426 });
427 if (CompletedRegions != ActiveRegions.end()) {
428 unsigned FirstCompletedRegion =
429 std::distance(ActiveRegions.begin(), CompletedRegions);
430 completeRegionsUntil(CurStartLoc, FirstCompletedRegion);
431 }
432
Vedant Kumarad8f6372017-09-18 23:37:28 +0000433 bool GapRegion = CR.value().Kind == CounterMappingRegion::GapRegion;
434
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000435 // Try to emit a segment for the current region.
436 if (CurStartLoc == CR.value().endLoc()) {
437 // Avoid making zero-length regions active. If it's the last region,
438 // emit a skipped segment. Otherwise use its predecessor's count.
439 const bool Skipped = (CR.index() + 1) == Regions.size();
440 startSegment(ActiveRegions.empty() ? CR.value() : *ActiveRegions.back(),
Vedant Kumarad8f6372017-09-18 23:37:28 +0000441 CurStartLoc, !GapRegion, Skipped);
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000442 continue;
443 }
444 if (CR.index() + 1 == Regions.size() ||
445 CurStartLoc != Regions[CR.index() + 1].startLoc()) {
446 // Emit a segment if the next region doesn't start at the same location
447 // as this one.
Vedant Kumarad8f6372017-09-18 23:37:28 +0000448 startSegment(CR.value(), CurStartLoc, !GapRegion);
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000449 }
450
451 // This region is active (i.e not completed).
452 ActiveRegions.push_back(&CR.value());
Justin Bogner953e2402014-09-20 15:31:56 +0000453 }
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000454
455 // Complete any remaining active regions.
456 if (!ActiveRegions.empty())
457 completeRegionsUntil(None, 0);
Igor Kudrinc0774e62016-04-14 09:10:00 +0000458 }
459
Igor Kudrined99a962016-04-25 09:43:37 +0000460 /// Sort a nested sequence of regions from a single file.
461 static void sortNestedRegions(MutableArrayRef<CountedRegion> Regions) {
Mandeep Singh Grang8547f912018-04-13 19:46:36 +0000462 llvm::sort(Regions.begin(), Regions.end(), [](const CountedRegion &LHS,
463 const CountedRegion &RHS) {
Igor Kudrin27d8dd32016-05-05 09:39:45 +0000464 if (LHS.startLoc() != RHS.startLoc())
465 return LHS.startLoc() < RHS.startLoc();
466 if (LHS.endLoc() != RHS.endLoc())
467 // When LHS completely contains RHS, we sort LHS first.
468 return RHS.endLoc() < LHS.endLoc();
469 // If LHS and RHS cover the same area, we need to sort them according
470 // to their kinds so that the most suitable region will become "active"
471 // in combineRegions(). Because we accumulate counter values only from
472 // regions of the same kind as the first region of the area, prefer
473 // CodeRegion to ExpansionRegion and ExpansionRegion to SkippedRegion.
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000474 static_assert(CounterMappingRegion::CodeRegion <
475 CounterMappingRegion::ExpansionRegion &&
476 CounterMappingRegion::ExpansionRegion <
477 CounterMappingRegion::SkippedRegion,
Igor Kudrin27d8dd32016-05-05 09:39:45 +0000478 "Unexpected order of region kind values");
479 return LHS.Kind < RHS.Kind;
480 });
Igor Kudrined99a962016-04-25 09:43:37 +0000481 }
482
483 /// Combine counts of regions which cover the same area.
484 static ArrayRef<CountedRegion>
485 combineRegions(MutableArrayRef<CountedRegion> Regions) {
486 if (Regions.empty())
487 return Regions;
488 auto Active = Regions.begin();
489 auto End = Regions.end();
490 for (auto I = Regions.begin() + 1; I != End; ++I) {
491 if (Active->startLoc() != I->startLoc() ||
492 Active->endLoc() != I->endLoc()) {
493 // Shift to the next region.
494 ++Active;
495 if (Active != I)
496 *Active = *I;
497 continue;
498 }
499 // Merge duplicate region.
Igor Kudrin27d8dd32016-05-05 09:39:45 +0000500 // If CodeRegions and ExpansionRegions cover the same area, it's probably
501 // a macro which is fully expanded to another macro. In that case, we need
502 // to accumulate counts only from CodeRegions, or else the area will be
503 // counted twice.
504 // On the other hand, a macro may have a nested macro in its body. If the
505 // outer macro is used several times, the ExpansionRegion for the nested
506 // macro will also be added several times. These ExpansionRegions cover
507 // the same source locations and have to be combined to reach the correct
508 // value for that area.
509 // We add counts of the regions of the same kind as the active region
510 // to handle the both situations.
511 if (I->Kind == Active->Kind)
Igor Kudrined99a962016-04-25 09:43:37 +0000512 Active->ExecutionCount += I->ExecutionCount;
513 }
514 return Regions.drop_back(std::distance(++Active, End));
515 }
516
Igor Kudrinc0774e62016-04-14 09:10:00 +0000517public:
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000518 /// Build a sorted list of CoverageSegments from a list of Regions.
Igor Kudrinc0774e62016-04-14 09:10:00 +0000519 static std::vector<CoverageSegment>
Igor Kudrined99a962016-04-25 09:43:37 +0000520 buildSegments(MutableArrayRef<CountedRegion> Regions) {
Igor Kudrinc0774e62016-04-14 09:10:00 +0000521 std::vector<CoverageSegment> Segments;
522 SegmentBuilder Builder(Segments);
Igor Kudrined99a962016-04-25 09:43:37 +0000523
524 sortNestedRegions(Regions);
525 ArrayRef<CountedRegion> CombinedRegions = combineRegions(Regions);
526
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000527 DEBUG({
528 dbgs() << "Combined regions:\n";
529 for (const auto &CR : CombinedRegions)
530 dbgs() << " " << CR.LineStart << ":" << CR.ColumnStart << " -> "
531 << CR.LineEnd << ":" << CR.ColumnEnd
532 << " (count=" << CR.ExecutionCount << ")\n";
533 });
534
Igor Kudrined99a962016-04-25 09:43:37 +0000535 Builder.buildSegmentsImpl(CombinedRegions);
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000536
537#ifndef NDEBUG
538 for (unsigned I = 1, E = Segments.size(); I < E; ++I) {
539 const auto &L = Segments[I - 1];
540 const auto &R = Segments[I];
541 if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) {
542 DEBUG(dbgs() << " ! Segment " << L.Line << ":" << L.Col
543 << " followed by " << R.Line << ":" << R.Col << "\n");
544 assert(false && "Coverage segments not unique or sorted");
545 }
546 }
547#endif
548
Justin Bogner953e2402014-09-20 15:31:56 +0000549 return Segments;
550 }
551};
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000552
553} // end anonymous namespace
Justin Bogner953e2402014-09-20 15:31:56 +0000554
Justin Bognerd5fca922014-11-14 01:50:32 +0000555std::vector<StringRef> CoverageMapping::getUniqueSourceFiles() const {
Justin Bogner953e2402014-09-20 15:31:56 +0000556 std::vector<StringRef> Filenames;
557 for (const auto &Function : getCoveredFunctions())
Benjamin Kramer6cd780f2015-02-17 15:29:18 +0000558 Filenames.insert(Filenames.end(), Function.Filenames.begin(),
559 Function.Filenames.end());
Mandeep Singh Grang8547f912018-04-13 19:46:36 +0000560 llvm::sort(Filenames.begin(), Filenames.end());
Justin Bogner953e2402014-09-20 15:31:56 +0000561 auto Last = std::unique(Filenames.begin(), Filenames.end());
562 Filenames.erase(Last, Filenames.end());
563 return Filenames;
564}
565
Benjamin Kramer71e1eb52015-02-12 16:18:07 +0000566static SmallBitVector gatherFileIDs(StringRef SourceFile,
567 const FunctionRecord &Function) {
568 SmallBitVector FilenameEquivalence(Function.Filenames.size(), false);
Justin Bogner953e2402014-09-20 15:31:56 +0000569 for (unsigned I = 0, E = Function.Filenames.size(); I < E; ++I)
570 if (SourceFile == Function.Filenames[I])
571 FilenameEquivalence[I] = true;
Benjamin Kramer71e1eb52015-02-12 16:18:07 +0000572 return FilenameEquivalence;
573}
574
Igor Kudrin1c14dc42016-04-18 15:36:30 +0000575/// Return the ID of the file where the definition of the function is located.
Justin Bogner953e2402014-09-20 15:31:56 +0000576static Optional<unsigned> findMainViewFileID(const FunctionRecord &Function) {
Benjamin Kramer40957cc2015-02-12 16:30:00 +0000577 SmallBitVector IsNotExpandedFile(Function.Filenames.size(), true);
Justin Bogner953e2402014-09-20 15:31:56 +0000578 for (const auto &CR : Function.CountedRegions)
579 if (CR.Kind == CounterMappingRegion::ExpansionRegion)
Benjamin Kramer40957cc2015-02-12 16:30:00 +0000580 IsNotExpandedFile[CR.ExpandedFileID] = false;
Benjamin Kramer71e1eb52015-02-12 16:18:07 +0000581 int I = IsNotExpandedFile.find_first();
Justin Bognerc4f5a5e2015-02-20 07:28:28 +0000582 if (I == -1)
583 return None;
584 return I;
Justin Bogner953e2402014-09-20 15:31:56 +0000585}
586
Igor Kudrin1c14dc42016-04-18 15:36:30 +0000587/// Check if SourceFile is the file that contains the definition of
588/// the Function. Return the ID of the file in that case or None otherwise.
589static Optional<unsigned> findMainViewFileID(StringRef SourceFile,
590 const FunctionRecord &Function) {
591 Optional<unsigned> I = findMainViewFileID(Function);
592 if (I && SourceFile == Function.Filenames[*I])
593 return I;
594 return None;
595}
596
Justin Bogner953e2402014-09-20 15:31:56 +0000597static bool isExpansion(const CountedRegion &R, unsigned FileID) {
598 return R.Kind == CounterMappingRegion::ExpansionRegion && R.FileID == FileID;
599}
600
Vedant Kumar7fcc5472016-07-13 23:12:23 +0000601CoverageData CoverageMapping::getCoverageForFile(StringRef Filename) const {
Justin Bogner953e2402014-09-20 15:31:56 +0000602 CoverageData FileCoverage(Filename);
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000603 std::vector<CountedRegion> Regions;
Justin Bogner953e2402014-09-20 15:31:56 +0000604
605 for (const auto &Function : Functions) {
606 auto MainFileID = findMainViewFileID(Filename, Function);
Justin Bogner953e2402014-09-20 15:31:56 +0000607 auto FileIDs = gatherFileIDs(Filename, Function);
608 for (const auto &CR : Function.CountedRegions)
Benjamin Kramer71e1eb52015-02-12 16:18:07 +0000609 if (FileIDs.test(CR.FileID)) {
Justin Bogner953e2402014-09-20 15:31:56 +0000610 Regions.push_back(CR);
Igor Kudrin1c14dc42016-04-18 15:36:30 +0000611 if (MainFileID && isExpansion(CR, *MainFileID))
Justin Bogner953e2402014-09-20 15:31:56 +0000612 FileCoverage.Expansions.emplace_back(CR, Function);
613 }
614 }
615
Justin Bogner3c0f1242015-01-24 20:58:52 +0000616 DEBUG(dbgs() << "Emitting segments for file: " << Filename << "\n");
Igor Kudrinc0774e62016-04-14 09:10:00 +0000617 FileCoverage.Segments = SegmentBuilder::buildSegments(Regions);
Justin Bogner953e2402014-09-20 15:31:56 +0000618
619 return FileCoverage;
620}
621
Vedant Kumardde19c52017-08-02 23:35:25 +0000622std::vector<InstantiationGroup>
623CoverageMapping::getInstantiationGroups(StringRef Filename) const {
Justin Bogner953e2402014-09-20 15:31:56 +0000624 FunctionInstantiationSetCollector InstantiationSetCollector;
625 for (const auto &Function : Functions) {
626 auto MainFileID = findMainViewFileID(Filename, Function);
627 if (!MainFileID)
628 continue;
629 InstantiationSetCollector.insert(Function, *MainFileID);
630 }
631
Vedant Kumardde19c52017-08-02 23:35:25 +0000632 std::vector<InstantiationGroup> Result;
Benjamin Kramer24cb28b2017-12-28 18:10:41 +0000633 for (auto &InstantiationSet : InstantiationSetCollector) {
Vedant Kumardde19c52017-08-02 23:35:25 +0000634 InstantiationGroup IG{InstantiationSet.first.first,
635 InstantiationSet.first.second,
636 std::move(InstantiationSet.second)};
637 Result.emplace_back(std::move(IG));
Justin Bogner953e2402014-09-20 15:31:56 +0000638 }
639 return Result;
640}
641
642CoverageData
Vedant Kumarf681e2e2016-07-15 01:19:33 +0000643CoverageMapping::getCoverageForFunction(const FunctionRecord &Function) const {
Justin Bogner953e2402014-09-20 15:31:56 +0000644 auto MainFileID = findMainViewFileID(Function);
645 if (!MainFileID)
646 return CoverageData();
647
648 CoverageData FunctionCoverage(Function.Filenames[*MainFileID]);
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000649 std::vector<CountedRegion> Regions;
Justin Bogner953e2402014-09-20 15:31:56 +0000650 for (const auto &CR : Function.CountedRegions)
651 if (CR.FileID == *MainFileID) {
652 Regions.push_back(CR);
653 if (isExpansion(CR, *MainFileID))
654 FunctionCoverage.Expansions.emplace_back(CR, Function);
655 }
656
Justin Bogner3c0f1242015-01-24 20:58:52 +0000657 DEBUG(dbgs() << "Emitting segments for function: " << Function.Name << "\n");
Igor Kudrinc0774e62016-04-14 09:10:00 +0000658 FunctionCoverage.Segments = SegmentBuilder::buildSegments(Regions);
Justin Bogner953e2402014-09-20 15:31:56 +0000659
660 return FunctionCoverage;
661}
662
Vedant Kumarf681e2e2016-07-15 01:19:33 +0000663CoverageData CoverageMapping::getCoverageForExpansion(
664 const ExpansionRecord &Expansion) const {
Justin Bogner953e2402014-09-20 15:31:56 +0000665 CoverageData ExpansionCoverage(
666 Expansion.Function.Filenames[Expansion.FileID]);
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000667 std::vector<CountedRegion> Regions;
Justin Bogner953e2402014-09-20 15:31:56 +0000668 for (const auto &CR : Expansion.Function.CountedRegions)
669 if (CR.FileID == Expansion.FileID) {
670 Regions.push_back(CR);
671 if (isExpansion(CR, Expansion.FileID))
672 ExpansionCoverage.Expansions.emplace_back(CR, Expansion.Function);
673 }
674
Justin Bogner3c0f1242015-01-24 20:58:52 +0000675 DEBUG(dbgs() << "Emitting segments for expansion of file " << Expansion.FileID
676 << "\n");
Igor Kudrinc0774e62016-04-14 09:10:00 +0000677 ExpansionCoverage.Segments = SegmentBuilder::buildSegments(Regions);
Justin Bogner953e2402014-09-20 15:31:56 +0000678
679 return ExpansionCoverage;
680}
Justin Bogner367a9f22015-05-06 23:19:35 +0000681
Vedant Kumar821160d2017-10-18 23:58:28 +0000682LineCoverageStats::LineCoverageStats(
Vedant Kumarf5f153d2017-10-19 06:16:23 +0000683 ArrayRef<const CoverageSegment *> LineSegments,
684 const CoverageSegment *WrappedSegment, unsigned Line)
Vedant Kumar821160d2017-10-18 23:58:28 +0000685 : ExecutionCount(0), HasMultipleRegions(false), Mapped(false), Line(Line),
686 LineSegments(LineSegments), WrappedSegment(WrappedSegment) {
687 // Find the minimum number of regions which start in this line.
688 unsigned MinRegionCount = 0;
Vedant Kumarf5f153d2017-10-19 06:16:23 +0000689 auto isStartOfRegion = [](const CoverageSegment *S) {
Vedant Kumar821160d2017-10-18 23:58:28 +0000690 return !S->IsGapRegion && S->HasCount && S->IsRegionEntry;
691 };
692 for (unsigned I = 0; I < LineSegments.size() && MinRegionCount < 2; ++I)
693 if (isStartOfRegion(LineSegments[I]))
694 ++MinRegionCount;
695
696 bool StartOfSkippedRegion = !LineSegments.empty() &&
697 !LineSegments.front()->HasCount &&
698 LineSegments.front()->IsRegionEntry;
699
700 HasMultipleRegions = MinRegionCount > 1;
701 Mapped =
702 !StartOfSkippedRegion &&
703 ((WrappedSegment && WrappedSegment->HasCount) || (MinRegionCount > 0));
704
705 if (!Mapped)
706 return;
707
Vedant Kumar43247f02017-11-09 02:33:43 +0000708 // Pick the max count from the non-gap, region entry segments and the
709 // wrapped count.
710 if (WrappedSegment)
Vedant Kumar821160d2017-10-18 23:58:28 +0000711 ExecutionCount = WrappedSegment->Count;
Vedant Kumar43247f02017-11-09 02:33:43 +0000712 if (!MinRegionCount)
Vedant Kumar821160d2017-10-18 23:58:28 +0000713 return;
Vedant Kumar821160d2017-10-18 23:58:28 +0000714 for (const auto *LS : LineSegments)
715 if (isStartOfRegion(LS))
716 ExecutionCount = std::max(ExecutionCount, LS->Count);
717}
718
719LineCoverageIterator &LineCoverageIterator::operator++() {
720 if (Next == CD.end()) {
721 Stats = LineCoverageStats();
722 Ended = true;
723 return *this;
724 }
725 if (Segments.size())
726 WrappedSegment = Segments.back();
727 Segments.clear();
728 while (Next != CD.end() && Next->Line == Line)
729 Segments.push_back(&*Next++);
730 Stats = LineCoverageStats(Segments, WrappedSegment, Line);
731 ++Line;
732 return *this;
733}
734
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000735static std::string getCoverageMapErrString(coveragemap_error Err) {
Vedant Kumar9152fd12016-05-19 03:54:45 +0000736 switch (Err) {
737 case coveragemap_error::success:
738 return "Success";
739 case coveragemap_error::eof:
740 return "End of File";
741 case coveragemap_error::no_data_found:
742 return "No coverage data found";
743 case coveragemap_error::unsupported_version:
744 return "Unsupported coverage format version";
745 case coveragemap_error::truncated:
746 return "Truncated coverage data";
747 case coveragemap_error::malformed:
748 return "Malformed coverage data";
749 }
750 llvm_unreachable("A value of coveragemap_error has no message.");
751}
752
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000753namespace {
754
Peter Collingbourne4718f8b2016-05-24 20:13:46 +0000755// FIXME: This class is only here to support the transition to llvm::Error. It
756// will be removed once this transition is complete. Clients should prefer to
757// deal with the Error value directly, rather than converting to error_code.
Justin Bogner367a9f22015-05-06 23:19:35 +0000758class CoverageMappingErrorCategoryType : public std::error_category {
Reid Kleckner990504e2016-10-19 23:52:38 +0000759 const char *name() const noexcept override { return "llvm.coveragemap"; }
Justin Bogner367a9f22015-05-06 23:19:35 +0000760 std::string message(int IE) const override {
Vedant Kumar9152fd12016-05-19 03:54:45 +0000761 return getCoverageMapErrString(static_cast<coveragemap_error>(IE));
Justin Bogner367a9f22015-05-06 23:19:35 +0000762 }
763};
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000764
Vedant Kumar9152fd12016-05-19 03:54:45 +0000765} // end anonymous namespace
766
767std::string CoverageMapError::message() const {
768 return getCoverageMapErrString(Err);
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000769}
Justin Bogner367a9f22015-05-06 23:19:35 +0000770
771static ManagedStatic<CoverageMappingErrorCategoryType> ErrorCategory;
772
Xinliang David Li8a5bdb52016-01-10 21:56:33 +0000773const std::error_category &llvm::coverage::coveragemap_category() {
Justin Bogner367a9f22015-05-06 23:19:35 +0000774 return *ErrorCategory;
775}
Vedant Kumar9152fd12016-05-19 03:54:45 +0000776
777char CoverageMapError::ID = 0;