blob: ce9322969971f0f0cd89e8702993f6c6043d33b2 [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.
Vedant Kumar71b3d722017-06-26 22:33:06 +000086 std::sort(Terms.begin(), Terms.end(), [](const Term &LHS, const Term &RHS) {
87 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
210 // Don't load records for functions we've already seen.
211 if (!FunctionNames.insert(OrigFuncName).second)
212 return Error::success();
213
Vedant Kumar68216d72016-10-12 22:27:45 +0000214 CounterMappingContext Ctx(Record.Expressions);
215
216 std::vector<uint64_t> Counts;
217 if (Error E = ProfileReader.getFunctionCounts(Record.FunctionName,
218 Record.FunctionHash, Counts)) {
219 instrprof_error IPE = InstrProfError::take(std::move(E));
220 if (IPE == instrprof_error::hash_mismatch) {
Vedant Kumar18dd9e82017-09-21 01:11:30 +0000221 FuncHashMismatches.emplace_back(Record.FunctionName, Record.FunctionHash);
Vedant Kumar68216d72016-10-12 22:27:45 +0000222 return Error::success();
223 } else if (IPE != instrprof_error::unknown_function)
224 return make_error<InstrProfError>(IPE);
225 Counts.assign(Record.MappingRegions.size(), 0);
226 }
227 Ctx.setCounts(Counts);
228
229 assert(!Record.MappingRegions.empty() && "Function has no regions");
230
Vedant Kumar68216d72016-10-12 22:27:45 +0000231 FunctionRecord Function(OrigFuncName, Record.Filenames);
232 for (const auto &Region : Record.MappingRegions) {
233 Expected<int64_t> ExecutionCount = Ctx.evaluate(Region.Count);
234 if (auto E = ExecutionCount.takeError()) {
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000235 consumeError(std::move(E));
Vedant Kumar68216d72016-10-12 22:27:45 +0000236 return Error::success();
237 }
238 Function.pushRegion(Region, *ExecutionCount);
239 }
240 if (Function.CountedRegions.size() != Record.MappingRegions.size()) {
Vedant Kumar18dd9e82017-09-21 01:11:30 +0000241 FuncCounterMismatches.emplace_back(Record.FunctionName,
242 Function.CountedRegions.size());
Vedant Kumar68216d72016-10-12 22:27:45 +0000243 return Error::success();
244 }
245
246 Functions.push_back(std::move(Function));
247 return Error::success();
248}
249
Vedant Kumar743574b2016-10-14 17:16:53 +0000250Expected<std::unique_ptr<CoverageMapping>> CoverageMapping::load(
251 ArrayRef<std::unique_ptr<CoverageMappingReader>> CoverageReaders,
252 IndexedInstrProfReader &ProfileReader) {
253 auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping());
254
Vedant Kumarbae83972017-09-08 18:44:47 +0000255 for (const auto &CoverageReader : CoverageReaders) {
256 for (auto RecordOrErr : *CoverageReader) {
257 if (Error E = RecordOrErr.takeError())
258 return std::move(E);
259 const auto &Record = *RecordOrErr;
Vedant Kumar743574b2016-10-14 17:16:53 +0000260 if (Error E = Coverage->loadFunctionRecord(Record, ProfileReader))
261 return std::move(E);
Vedant Kumarbae83972017-09-08 18:44:47 +0000262 }
263 }
Vedant Kumar743574b2016-10-14 17:16:53 +0000264
265 return std::move(Coverage);
266}
267
Vedant Kumar9152fd12016-05-19 03:54:45 +0000268Expected<std::unique_ptr<CoverageMapping>>
Vedant Kumar743574b2016-10-14 17:16:53 +0000269CoverageMapping::load(ArrayRef<StringRef> ObjectFilenames,
Vedant Kumar4b102c32017-08-01 21:23:26 +0000270 StringRef ProfileFilename, ArrayRef<StringRef> Arches) {
Justin Bognerab89ed72015-02-16 21:28:58 +0000271 auto ProfileReaderOrErr = IndexedInstrProfReader::create(ProfileFilename);
Vedant Kumar9152fd12016-05-19 03:54:45 +0000272 if (Error E = ProfileReaderOrErr.takeError())
273 return std::move(E);
Justin Bognerab89ed72015-02-16 21:28:58 +0000274 auto ProfileReader = std::move(ProfileReaderOrErr.get());
Vedant Kumar743574b2016-10-14 17:16:53 +0000275
276 SmallVector<std::unique_ptr<CoverageMappingReader>, 4> Readers;
277 SmallVector<std::unique_ptr<MemoryBuffer>, 4> Buffers;
Vedant Kumar4b102c32017-08-01 21:23:26 +0000278 for (const auto &File : llvm::enumerate(ObjectFilenames)) {
279 auto CovMappingBufOrErr = MemoryBuffer::getFileOrSTDIN(File.value());
Vedant Kumar743574b2016-10-14 17:16:53 +0000280 if (std::error_code EC = CovMappingBufOrErr.getError())
281 return errorCodeToError(EC);
Vedant Kumar4b102c32017-08-01 21:23:26 +0000282 StringRef Arch = Arches.empty() ? StringRef() : Arches[File.index()];
Vedant Kumar743574b2016-10-14 17:16:53 +0000283 auto CoverageReaderOrErr =
284 BinaryCoverageReader::create(CovMappingBufOrErr.get(), Arch);
285 if (Error E = CoverageReaderOrErr.takeError())
286 return std::move(E);
287 Readers.push_back(std::move(CoverageReaderOrErr.get()));
288 Buffers.push_back(std::move(CovMappingBufOrErr.get()));
289 }
290 return load(Readers, *ProfileReader);
Justin Bogner19a93ba2014-09-20 17:19:52 +0000291}
292
Justin Bogner953e2402014-09-20 15:31:56 +0000293namespace {
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000294
Justin Bogner953e2402014-09-20 15:31:56 +0000295/// \brief Distributes functions into instantiation sets.
296///
297/// An instantiation set is a collection of functions that have the same source
298/// code, ie, template functions specializations.
299class FunctionInstantiationSetCollector {
Vedant Kumar7bef6da2017-10-24 22:35:29 +0000300 using MapT = std::map<LineColPair, std::vector<const FunctionRecord *>>;
Justin Bogner953e2402014-09-20 15:31:56 +0000301 MapT InstantiatedFunctions;
302
303public:
304 void insert(const FunctionRecord &Function, unsigned FileID) {
305 auto I = Function.CountedRegions.begin(), E = Function.CountedRegions.end();
306 while (I != E && I->FileID != FileID)
307 ++I;
308 assert(I != E && "function does not cover the given file");
309 auto &Functions = InstantiatedFunctions[I->startLoc()];
310 Functions.push_back(&Function);
311 }
312
313 MapT::iterator begin() { return InstantiatedFunctions.begin(); }
Justin Bogner953e2402014-09-20 15:31:56 +0000314 MapT::iterator end() { return InstantiatedFunctions.end(); }
315};
316
317class SegmentBuilder {
Igor Kudrinc0774e62016-04-14 09:10:00 +0000318 std::vector<CoverageSegment> &Segments;
Justin Bogner953e2402014-09-20 15:31:56 +0000319 SmallVector<const CountedRegion *, 8> ActiveRegions;
320
Igor Kudrinc0774e62016-04-14 09:10:00 +0000321 SegmentBuilder(std::vector<CoverageSegment> &Segments) : Segments(Segments) {}
322
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000323 /// Emit a segment with the count from \p Region starting at \p StartLoc.
324 //
Vedant Kumarad8f6372017-09-18 23:37:28 +0000325 /// \p IsRegionEntry: The segment is at the start of a new non-gap region.
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000326 /// \p EmitSkippedRegion: The segment must be emitted as a skipped region.
327 void startSegment(const CountedRegion &Region, LineColPair StartLoc,
328 bool IsRegionEntry, bool EmitSkippedRegion = false) {
329 bool HasCount = !EmitSkippedRegion &&
330 (Region.Kind != CounterMappingRegion::SkippedRegion);
Justin Bogner953e2402014-09-20 15:31:56 +0000331
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000332 // If the new segment wouldn't affect coverage rendering, skip it.
333 if (!Segments.empty() && !IsRegionEntry && !EmitSkippedRegion) {
334 const auto &Last = Segments.back();
335 if (Last.HasCount == HasCount && Last.Count == Region.ExecutionCount &&
336 !Last.IsRegionEntry)
337 return;
338 }
Justin Bogner953e2402014-09-20 15:31:56 +0000339
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000340 if (HasCount)
341 Segments.emplace_back(StartLoc.first, StartLoc.second,
Vedant Kumarad8f6372017-09-18 23:37:28 +0000342 Region.ExecutionCount, IsRegionEntry,
343 Region.Kind == CounterMappingRegion::GapRegion);
Justin Bogner953e2402014-09-20 15:31:56 +0000344 else
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000345 Segments.emplace_back(StartLoc.first, StartLoc.second, IsRegionEntry);
346
347 DEBUG({
348 const auto &Last = Segments.back();
349 dbgs() << "Segment at " << Last.Line << ":" << Last.Col
350 << " (count = " << Last.Count << ")"
351 << (Last.IsRegionEntry ? ", RegionEntry" : "")
Vedant Kumarad8f6372017-09-18 23:37:28 +0000352 << (!Last.HasCount ? ", Skipped" : "")
353 << (Last.IsGapRegion ? ", Gap" : "") << "\n";
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000354 });
355 }
356
357 /// Emit segments for active regions which end before \p Loc.
358 ///
359 /// \p Loc: The start location of the next region. If None, all active
360 /// regions are completed.
361 /// \p FirstCompletedRegion: Index of the first completed region.
362 void completeRegionsUntil(Optional<LineColPair> Loc,
363 unsigned FirstCompletedRegion) {
364 // Sort the completed regions by end location. This makes it simple to
365 // emit closing segments in sorted order.
366 auto CompletedRegionsIt = ActiveRegions.begin() + FirstCompletedRegion;
367 std::stable_sort(CompletedRegionsIt, ActiveRegions.end(),
368 [](const CountedRegion *L, const CountedRegion *R) {
369 return L->endLoc() < R->endLoc();
370 });
371
372 // Emit segments for all completed regions.
373 for (unsigned I = FirstCompletedRegion + 1, E = ActiveRegions.size(); I < E;
374 ++I) {
375 const auto *CompletedRegion = ActiveRegions[I];
376 assert((!Loc || CompletedRegion->endLoc() <= *Loc) &&
377 "Completed region ends after start of new region");
378
379 const auto *PrevCompletedRegion = ActiveRegions[I - 1];
380 auto CompletedSegmentLoc = PrevCompletedRegion->endLoc();
381
382 // Don't emit any more segments if they start where the new region begins.
383 if (Loc && CompletedSegmentLoc == *Loc)
384 break;
385
386 // Don't emit a segment if the next completed region ends at the same
387 // location as this one.
388 if (CompletedSegmentLoc == CompletedRegion->endLoc())
389 continue;
390
391 startSegment(*CompletedRegion, CompletedSegmentLoc, false);
392 }
393
394 auto Last = ActiveRegions.back();
395 if (FirstCompletedRegion && Last->endLoc() != *Loc) {
396 // If there's a gap after the end of the last completed region and the
397 // start of the new region, use the last active region to fill the gap.
398 startSegment(*ActiveRegions[FirstCompletedRegion - 1], Last->endLoc(),
399 false);
400 } else if (!FirstCompletedRegion && (!Loc || *Loc != Last->endLoc())) {
401 // Emit a skipped segment if there are no more active regions. This
402 // ensures that gaps between functions are marked correctly.
403 startSegment(*Last, Last->endLoc(), false, true);
404 }
405
406 // Pop the completed regions.
407 ActiveRegions.erase(CompletedRegionsIt, ActiveRegions.end());
Justin Bogner953e2402014-09-20 15:31:56 +0000408 }
409
Igor Kudrinc0774e62016-04-14 09:10:00 +0000410 void buildSegmentsImpl(ArrayRef<CountedRegion> Regions) {
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000411 for (const auto &CR : enumerate(Regions)) {
412 auto CurStartLoc = CR.value().startLoc();
413
414 // Active regions which end before the current region need to be popped.
415 auto CompletedRegions =
416 std::stable_partition(ActiveRegions.begin(), ActiveRegions.end(),
417 [&](const CountedRegion *Region) {
418 return !(Region->endLoc() <= CurStartLoc);
419 });
420 if (CompletedRegions != ActiveRegions.end()) {
421 unsigned FirstCompletedRegion =
422 std::distance(ActiveRegions.begin(), CompletedRegions);
423 completeRegionsUntil(CurStartLoc, FirstCompletedRegion);
424 }
425
Vedant Kumarad8f6372017-09-18 23:37:28 +0000426 bool GapRegion = CR.value().Kind == CounterMappingRegion::GapRegion;
427
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000428 // Try to emit a segment for the current region.
429 if (CurStartLoc == CR.value().endLoc()) {
430 // Avoid making zero-length regions active. If it's the last region,
431 // emit a skipped segment. Otherwise use its predecessor's count.
432 const bool Skipped = (CR.index() + 1) == Regions.size();
433 startSegment(ActiveRegions.empty() ? CR.value() : *ActiveRegions.back(),
Vedant Kumarad8f6372017-09-18 23:37:28 +0000434 CurStartLoc, !GapRegion, Skipped);
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000435 continue;
436 }
437 if (CR.index() + 1 == Regions.size() ||
438 CurStartLoc != Regions[CR.index() + 1].startLoc()) {
439 // Emit a segment if the next region doesn't start at the same location
440 // as this one.
Vedant Kumarad8f6372017-09-18 23:37:28 +0000441 startSegment(CR.value(), CurStartLoc, !GapRegion);
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000442 }
443
444 // This region is active (i.e not completed).
445 ActiveRegions.push_back(&CR.value());
Justin Bogner953e2402014-09-20 15:31:56 +0000446 }
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000447
448 // Complete any remaining active regions.
449 if (!ActiveRegions.empty())
450 completeRegionsUntil(None, 0);
Igor Kudrinc0774e62016-04-14 09:10:00 +0000451 }
452
Igor Kudrined99a962016-04-25 09:43:37 +0000453 /// Sort a nested sequence of regions from a single file.
454 static void sortNestedRegions(MutableArrayRef<CountedRegion> Regions) {
Igor Kudrin27d8dd32016-05-05 09:39:45 +0000455 std::sort(Regions.begin(), Regions.end(), [](const CountedRegion &LHS,
456 const CountedRegion &RHS) {
457 if (LHS.startLoc() != RHS.startLoc())
458 return LHS.startLoc() < RHS.startLoc();
459 if (LHS.endLoc() != RHS.endLoc())
460 // When LHS completely contains RHS, we sort LHS first.
461 return RHS.endLoc() < LHS.endLoc();
462 // If LHS and RHS cover the same area, we need to sort them according
463 // to their kinds so that the most suitable region will become "active"
464 // in combineRegions(). Because we accumulate counter values only from
465 // regions of the same kind as the first region of the area, prefer
466 // CodeRegion to ExpansionRegion and ExpansionRegion to SkippedRegion.
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000467 static_assert(CounterMappingRegion::CodeRegion <
468 CounterMappingRegion::ExpansionRegion &&
469 CounterMappingRegion::ExpansionRegion <
470 CounterMappingRegion::SkippedRegion,
Igor Kudrin27d8dd32016-05-05 09:39:45 +0000471 "Unexpected order of region kind values");
472 return LHS.Kind < RHS.Kind;
473 });
Igor Kudrined99a962016-04-25 09:43:37 +0000474 }
475
476 /// Combine counts of regions which cover the same area.
477 static ArrayRef<CountedRegion>
478 combineRegions(MutableArrayRef<CountedRegion> Regions) {
479 if (Regions.empty())
480 return Regions;
481 auto Active = Regions.begin();
482 auto End = Regions.end();
483 for (auto I = Regions.begin() + 1; I != End; ++I) {
484 if (Active->startLoc() != I->startLoc() ||
485 Active->endLoc() != I->endLoc()) {
486 // Shift to the next region.
487 ++Active;
488 if (Active != I)
489 *Active = *I;
490 continue;
491 }
492 // Merge duplicate region.
Igor Kudrin27d8dd32016-05-05 09:39:45 +0000493 // If CodeRegions and ExpansionRegions cover the same area, it's probably
494 // a macro which is fully expanded to another macro. In that case, we need
495 // to accumulate counts only from CodeRegions, or else the area will be
496 // counted twice.
497 // On the other hand, a macro may have a nested macro in its body. If the
498 // outer macro is used several times, the ExpansionRegion for the nested
499 // macro will also be added several times. These ExpansionRegions cover
500 // the same source locations and have to be combined to reach the correct
501 // value for that area.
502 // We add counts of the regions of the same kind as the active region
503 // to handle the both situations.
504 if (I->Kind == Active->Kind)
Igor Kudrined99a962016-04-25 09:43:37 +0000505 Active->ExecutionCount += I->ExecutionCount;
506 }
507 return Regions.drop_back(std::distance(++Active, End));
508 }
509
Igor Kudrinc0774e62016-04-14 09:10:00 +0000510public:
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000511 /// Build a sorted list of CoverageSegments from a list of Regions.
Igor Kudrinc0774e62016-04-14 09:10:00 +0000512 static std::vector<CoverageSegment>
Igor Kudrined99a962016-04-25 09:43:37 +0000513 buildSegments(MutableArrayRef<CountedRegion> Regions) {
Igor Kudrinc0774e62016-04-14 09:10:00 +0000514 std::vector<CoverageSegment> Segments;
515 SegmentBuilder Builder(Segments);
Igor Kudrined99a962016-04-25 09:43:37 +0000516
517 sortNestedRegions(Regions);
518 ArrayRef<CountedRegion> CombinedRegions = combineRegions(Regions);
519
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000520 DEBUG({
521 dbgs() << "Combined regions:\n";
522 for (const auto &CR : CombinedRegions)
523 dbgs() << " " << CR.LineStart << ":" << CR.ColumnStart << " -> "
524 << CR.LineEnd << ":" << CR.ColumnEnd
525 << " (count=" << CR.ExecutionCount << ")\n";
526 });
527
Igor Kudrined99a962016-04-25 09:43:37 +0000528 Builder.buildSegmentsImpl(CombinedRegions);
Vedant Kumar79a1b5e2017-09-08 18:44:50 +0000529
530#ifndef NDEBUG
531 for (unsigned I = 1, E = Segments.size(); I < E; ++I) {
532 const auto &L = Segments[I - 1];
533 const auto &R = Segments[I];
534 if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) {
535 DEBUG(dbgs() << " ! Segment " << L.Line << ":" << L.Col
536 << " followed by " << R.Line << ":" << R.Col << "\n");
537 assert(false && "Coverage segments not unique or sorted");
538 }
539 }
540#endif
541
Justin Bogner953e2402014-09-20 15:31:56 +0000542 return Segments;
543 }
544};
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000545
546} // end anonymous namespace
Justin Bogner953e2402014-09-20 15:31:56 +0000547
Justin Bognerd5fca922014-11-14 01:50:32 +0000548std::vector<StringRef> CoverageMapping::getUniqueSourceFiles() const {
Justin Bogner953e2402014-09-20 15:31:56 +0000549 std::vector<StringRef> Filenames;
550 for (const auto &Function : getCoveredFunctions())
Benjamin Kramer6cd780f2015-02-17 15:29:18 +0000551 Filenames.insert(Filenames.end(), Function.Filenames.begin(),
552 Function.Filenames.end());
Justin Bogner953e2402014-09-20 15:31:56 +0000553 std::sort(Filenames.begin(), Filenames.end());
554 auto Last = std::unique(Filenames.begin(), Filenames.end());
555 Filenames.erase(Last, Filenames.end());
556 return Filenames;
557}
558
Benjamin Kramer71e1eb52015-02-12 16:18:07 +0000559static SmallBitVector gatherFileIDs(StringRef SourceFile,
560 const FunctionRecord &Function) {
561 SmallBitVector FilenameEquivalence(Function.Filenames.size(), false);
Justin Bogner953e2402014-09-20 15:31:56 +0000562 for (unsigned I = 0, E = Function.Filenames.size(); I < E; ++I)
563 if (SourceFile == Function.Filenames[I])
564 FilenameEquivalence[I] = true;
Benjamin Kramer71e1eb52015-02-12 16:18:07 +0000565 return FilenameEquivalence;
566}
567
Igor Kudrin1c14dc42016-04-18 15:36:30 +0000568/// Return the ID of the file where the definition of the function is located.
Justin Bogner953e2402014-09-20 15:31:56 +0000569static Optional<unsigned> findMainViewFileID(const FunctionRecord &Function) {
Benjamin Kramer40957cc2015-02-12 16:30:00 +0000570 SmallBitVector IsNotExpandedFile(Function.Filenames.size(), true);
Justin Bogner953e2402014-09-20 15:31:56 +0000571 for (const auto &CR : Function.CountedRegions)
572 if (CR.Kind == CounterMappingRegion::ExpansionRegion)
Benjamin Kramer40957cc2015-02-12 16:30:00 +0000573 IsNotExpandedFile[CR.ExpandedFileID] = false;
Benjamin Kramer71e1eb52015-02-12 16:18:07 +0000574 int I = IsNotExpandedFile.find_first();
Justin Bognerc4f5a5e2015-02-20 07:28:28 +0000575 if (I == -1)
576 return None;
577 return I;
Justin Bogner953e2402014-09-20 15:31:56 +0000578}
579
Igor Kudrin1c14dc42016-04-18 15:36:30 +0000580/// Check if SourceFile is the file that contains the definition of
581/// the Function. Return the ID of the file in that case or None otherwise.
582static Optional<unsigned> findMainViewFileID(StringRef SourceFile,
583 const FunctionRecord &Function) {
584 Optional<unsigned> I = findMainViewFileID(Function);
585 if (I && SourceFile == Function.Filenames[*I])
586 return I;
587 return None;
588}
589
Justin Bogner953e2402014-09-20 15:31:56 +0000590static bool isExpansion(const CountedRegion &R, unsigned FileID) {
591 return R.Kind == CounterMappingRegion::ExpansionRegion && R.FileID == FileID;
592}
593
Vedant Kumar7fcc5472016-07-13 23:12:23 +0000594CoverageData CoverageMapping::getCoverageForFile(StringRef Filename) const {
Justin Bogner953e2402014-09-20 15:31:56 +0000595 CoverageData FileCoverage(Filename);
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000596 std::vector<CountedRegion> Regions;
Justin Bogner953e2402014-09-20 15:31:56 +0000597
598 for (const auto &Function : Functions) {
599 auto MainFileID = findMainViewFileID(Filename, Function);
Justin Bogner953e2402014-09-20 15:31:56 +0000600 auto FileIDs = gatherFileIDs(Filename, Function);
601 for (const auto &CR : Function.CountedRegions)
Benjamin Kramer71e1eb52015-02-12 16:18:07 +0000602 if (FileIDs.test(CR.FileID)) {
Justin Bogner953e2402014-09-20 15:31:56 +0000603 Regions.push_back(CR);
Igor Kudrin1c14dc42016-04-18 15:36:30 +0000604 if (MainFileID && isExpansion(CR, *MainFileID))
Justin Bogner953e2402014-09-20 15:31:56 +0000605 FileCoverage.Expansions.emplace_back(CR, Function);
606 }
607 }
608
Justin Bogner3c0f1242015-01-24 20:58:52 +0000609 DEBUG(dbgs() << "Emitting segments for file: " << Filename << "\n");
Igor Kudrinc0774e62016-04-14 09:10:00 +0000610 FileCoverage.Segments = SegmentBuilder::buildSegments(Regions);
Justin Bogner953e2402014-09-20 15:31:56 +0000611
612 return FileCoverage;
613}
614
Vedant Kumardde19c52017-08-02 23:35:25 +0000615std::vector<InstantiationGroup>
616CoverageMapping::getInstantiationGroups(StringRef Filename) const {
Justin Bogner953e2402014-09-20 15:31:56 +0000617 FunctionInstantiationSetCollector InstantiationSetCollector;
618 for (const auto &Function : Functions) {
619 auto MainFileID = findMainViewFileID(Filename, Function);
620 if (!MainFileID)
621 continue;
622 InstantiationSetCollector.insert(Function, *MainFileID);
623 }
624
Vedant Kumardde19c52017-08-02 23:35:25 +0000625 std::vector<InstantiationGroup> Result;
Justin Bogner953e2402014-09-20 15:31:56 +0000626 for (const auto &InstantiationSet : InstantiationSetCollector) {
Vedant Kumardde19c52017-08-02 23:35:25 +0000627 InstantiationGroup IG{InstantiationSet.first.first,
628 InstantiationSet.first.second,
629 std::move(InstantiationSet.second)};
630 Result.emplace_back(std::move(IG));
Justin Bogner953e2402014-09-20 15:31:56 +0000631 }
632 return Result;
633}
634
635CoverageData
Vedant Kumarf681e2e2016-07-15 01:19:33 +0000636CoverageMapping::getCoverageForFunction(const FunctionRecord &Function) const {
Justin Bogner953e2402014-09-20 15:31:56 +0000637 auto MainFileID = findMainViewFileID(Function);
638 if (!MainFileID)
639 return CoverageData();
640
641 CoverageData FunctionCoverage(Function.Filenames[*MainFileID]);
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000642 std::vector<CountedRegion> Regions;
Justin Bogner953e2402014-09-20 15:31:56 +0000643 for (const auto &CR : Function.CountedRegions)
644 if (CR.FileID == *MainFileID) {
645 Regions.push_back(CR);
646 if (isExpansion(CR, *MainFileID))
647 FunctionCoverage.Expansions.emplace_back(CR, Function);
648 }
649
Justin Bogner3c0f1242015-01-24 20:58:52 +0000650 DEBUG(dbgs() << "Emitting segments for function: " << Function.Name << "\n");
Igor Kudrinc0774e62016-04-14 09:10:00 +0000651 FunctionCoverage.Segments = SegmentBuilder::buildSegments(Regions);
Justin Bogner953e2402014-09-20 15:31:56 +0000652
653 return FunctionCoverage;
654}
655
Vedant Kumarf681e2e2016-07-15 01:19:33 +0000656CoverageData CoverageMapping::getCoverageForExpansion(
657 const ExpansionRecord &Expansion) const {
Justin Bogner953e2402014-09-20 15:31:56 +0000658 CoverageData ExpansionCoverage(
659 Expansion.Function.Filenames[Expansion.FileID]);
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000660 std::vector<CountedRegion> Regions;
Justin Bogner953e2402014-09-20 15:31:56 +0000661 for (const auto &CR : Expansion.Function.CountedRegions)
662 if (CR.FileID == Expansion.FileID) {
663 Regions.push_back(CR);
664 if (isExpansion(CR, Expansion.FileID))
665 ExpansionCoverage.Expansions.emplace_back(CR, Expansion.Function);
666 }
667
Justin Bogner3c0f1242015-01-24 20:58:52 +0000668 DEBUG(dbgs() << "Emitting segments for expansion of file " << Expansion.FileID
669 << "\n");
Igor Kudrinc0774e62016-04-14 09:10:00 +0000670 ExpansionCoverage.Segments = SegmentBuilder::buildSegments(Regions);
Justin Bogner953e2402014-09-20 15:31:56 +0000671
672 return ExpansionCoverage;
673}
Justin Bogner367a9f22015-05-06 23:19:35 +0000674
Vedant Kumar821160d2017-10-18 23:58:28 +0000675LineCoverageStats::LineCoverageStats(
Vedant Kumarf5f153d2017-10-19 06:16:23 +0000676 ArrayRef<const CoverageSegment *> LineSegments,
677 const CoverageSegment *WrappedSegment, unsigned Line)
Vedant Kumar821160d2017-10-18 23:58:28 +0000678 : ExecutionCount(0), HasMultipleRegions(false), Mapped(false), Line(Line),
679 LineSegments(LineSegments), WrappedSegment(WrappedSegment) {
680 // Find the minimum number of regions which start in this line.
681 unsigned MinRegionCount = 0;
Vedant Kumarf5f153d2017-10-19 06:16:23 +0000682 auto isStartOfRegion = [](const CoverageSegment *S) {
Vedant Kumar821160d2017-10-18 23:58:28 +0000683 return !S->IsGapRegion && S->HasCount && S->IsRegionEntry;
684 };
685 for (unsigned I = 0; I < LineSegments.size() && MinRegionCount < 2; ++I)
686 if (isStartOfRegion(LineSegments[I]))
687 ++MinRegionCount;
688
689 bool StartOfSkippedRegion = !LineSegments.empty() &&
690 !LineSegments.front()->HasCount &&
691 LineSegments.front()->IsRegionEntry;
692
693 HasMultipleRegions = MinRegionCount > 1;
694 Mapped =
695 !StartOfSkippedRegion &&
696 ((WrappedSegment && WrappedSegment->HasCount) || (MinRegionCount > 0));
697
698 if (!Mapped)
699 return;
700
701 // Pick the max count from the non-gap, region entry segments. If there
702 // aren't any, use the wrapped count.
703 if (!MinRegionCount) {
704 ExecutionCount = WrappedSegment->Count;
705 return;
706 }
707 for (const auto *LS : LineSegments)
708 if (isStartOfRegion(LS))
709 ExecutionCount = std::max(ExecutionCount, LS->Count);
710}
711
712LineCoverageIterator &LineCoverageIterator::operator++() {
713 if (Next == CD.end()) {
714 Stats = LineCoverageStats();
715 Ended = true;
716 return *this;
717 }
718 if (Segments.size())
719 WrappedSegment = Segments.back();
720 Segments.clear();
721 while (Next != CD.end() && Next->Line == Line)
722 Segments.push_back(&*Next++);
723 Stats = LineCoverageStats(Segments, WrappedSegment, Line);
724 ++Line;
725 return *this;
726}
727
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000728static std::string getCoverageMapErrString(coveragemap_error Err) {
Vedant Kumar9152fd12016-05-19 03:54:45 +0000729 switch (Err) {
730 case coveragemap_error::success:
731 return "Success";
732 case coveragemap_error::eof:
733 return "End of File";
734 case coveragemap_error::no_data_found:
735 return "No coverage data found";
736 case coveragemap_error::unsupported_version:
737 return "Unsupported coverage format version";
738 case coveragemap_error::truncated:
739 return "Truncated coverage data";
740 case coveragemap_error::malformed:
741 return "Malformed coverage data";
742 }
743 llvm_unreachable("A value of coveragemap_error has no message.");
744}
745
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000746namespace {
747
Peter Collingbourne4718f8b2016-05-24 20:13:46 +0000748// FIXME: This class is only here to support the transition to llvm::Error. It
749// will be removed once this transition is complete. Clients should prefer to
750// deal with the Error value directly, rather than converting to error_code.
Justin Bogner367a9f22015-05-06 23:19:35 +0000751class CoverageMappingErrorCategoryType : public std::error_category {
Reid Kleckner990504e2016-10-19 23:52:38 +0000752 const char *name() const noexcept override { return "llvm.coveragemap"; }
Justin Bogner367a9f22015-05-06 23:19:35 +0000753 std::string message(int IE) const override {
Vedant Kumar9152fd12016-05-19 03:54:45 +0000754 return getCoverageMapErrString(static_cast<coveragemap_error>(IE));
Justin Bogner367a9f22015-05-06 23:19:35 +0000755 }
756};
Eugene Zelenkoe78d1312017-03-03 01:07:34 +0000757
Vedant Kumar9152fd12016-05-19 03:54:45 +0000758} // end anonymous namespace
759
760std::string CoverageMapError::message() const {
761 return getCoverageMapErrString(Err);
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000762}
Justin Bogner367a9f22015-05-06 23:19:35 +0000763
764static ManagedStatic<CoverageMappingErrorCategoryType> ErrorCategory;
765
Xinliang David Li8a5bdb52016-01-10 21:56:33 +0000766const std::error_category &llvm::coverage::coveragemap_category() {
Justin Bogner367a9f22015-05-06 23:19:35 +0000767 return *ErrorCategory;
768}
Vedant Kumar9152fd12016-05-19 03:54:45 +0000769
770char CoverageMapError::ID = 0;