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