When processing coverage generated from branch coverage mode, some functions can reach findMainViewFileID with an empty CountedRegions list. In that case the current logic still proceeds to infer the main view file, even though there is no regular counted region available to do so. Return std::nullopt early when CountedRegions is empty. This was observed when reproducing issue #189169 with: cargo llvm-cov --lib --branch The issue appears related to branch-only coverage information being recorded separately in CountedBranchRegions, while findMainViewFileID currently only consults CountedRegions. This patch is a defensive fix for the empty-region case; further investigation may still be needed to determine whether branch regions should participate in main view file selection. Co-authored-by: Zile Xiong <xiongzile99@gmail.com>
1679 lines
59 KiB
C++
1679 lines
59 KiB
C++
//===- CoverageMapping.cpp - Code coverage mapping support ----------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file contains support for clang's and llvm's instrumentation based
|
|
// code coverage.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/ProfileData/Coverage/CoverageMapping.h"
|
|
#include "llvm/ADT/ArrayRef.h"
|
|
#include "llvm/ADT/DenseMap.h"
|
|
#include "llvm/ADT/STLExtras.h"
|
|
#include "llvm/ADT/SmallBitVector.h"
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "llvm/ADT/StringExtras.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/Object/BuildID.h"
|
|
#include "llvm/ProfileData/Coverage/CoverageMappingReader.h"
|
|
#include "llvm/ProfileData/InstrProfReader.h"
|
|
#include "llvm/Support/Debug.h"
|
|
#include "llvm/Support/Errc.h"
|
|
#include "llvm/Support/Error.h"
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
#include "llvm/Support/VirtualFileSystem.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include <algorithm>
|
|
#include <cassert>
|
|
#include <cmath>
|
|
#include <cstdint>
|
|
#include <iterator>
|
|
#include <map>
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <stack>
|
|
#include <string>
|
|
#include <system_error>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
using namespace llvm;
|
|
using namespace coverage;
|
|
|
|
#define DEBUG_TYPE "coverage-mapping"
|
|
|
|
Counter CounterExpressionBuilder::get(const CounterExpression &E) {
|
|
auto [It, Inserted] = ExpressionIndices.try_emplace(E, Expressions.size());
|
|
if (Inserted)
|
|
Expressions.push_back(E);
|
|
return Counter::getExpression(It->second);
|
|
}
|
|
|
|
void CounterExpressionBuilder::extractTerms(Counter C, int Factor,
|
|
SmallVectorImpl<Term> &Terms) {
|
|
switch (C.getKind()) {
|
|
case Counter::Zero:
|
|
break;
|
|
case Counter::CounterValueReference:
|
|
Terms.emplace_back(C.getCounterID(), Factor);
|
|
break;
|
|
case Counter::Expression:
|
|
const auto &E = Expressions[C.getExpressionID()];
|
|
extractTerms(E.LHS, Factor, Terms);
|
|
extractTerms(
|
|
E.RHS, E.Kind == CounterExpression::Subtract ? -Factor : Factor, Terms);
|
|
break;
|
|
}
|
|
}
|
|
|
|
Counter CounterExpressionBuilder::simplify(Counter ExpressionTree) {
|
|
// Gather constant terms.
|
|
SmallVector<Term, 32> Terms;
|
|
extractTerms(ExpressionTree, +1, Terms);
|
|
|
|
// If there are no terms, this is just a zero. The algorithm below assumes at
|
|
// least one term.
|
|
if (Terms.size() == 0)
|
|
return Counter::getZero();
|
|
|
|
// Group the terms by counter ID.
|
|
llvm::sort(Terms, [](const Term &LHS, const Term &RHS) {
|
|
return LHS.CounterID < RHS.CounterID;
|
|
});
|
|
|
|
// Combine terms by counter ID to eliminate counters that sum to zero.
|
|
auto Prev = Terms.begin();
|
|
for (auto I = Prev + 1, E = Terms.end(); I != E; ++I) {
|
|
if (I->CounterID == Prev->CounterID) {
|
|
Prev->Factor += I->Factor;
|
|
continue;
|
|
}
|
|
++Prev;
|
|
*Prev = *I;
|
|
}
|
|
Terms.erase(++Prev, Terms.end());
|
|
|
|
Counter C;
|
|
// Create additions. We do this before subtractions to avoid constructs like
|
|
// ((0 - X) + Y), as opposed to (Y - X).
|
|
for (auto T : Terms) {
|
|
if (T.Factor <= 0)
|
|
continue;
|
|
for (int I = 0; I < T.Factor; ++I)
|
|
if (C.isZero())
|
|
C = Counter::getCounter(T.CounterID);
|
|
else
|
|
C = get(CounterExpression(CounterExpression::Add, C,
|
|
Counter::getCounter(T.CounterID)));
|
|
}
|
|
|
|
// Create subtractions.
|
|
for (auto T : Terms) {
|
|
if (T.Factor >= 0)
|
|
continue;
|
|
for (int I = 0; I < -T.Factor; ++I)
|
|
C = get(CounterExpression(CounterExpression::Subtract, C,
|
|
Counter::getCounter(T.CounterID)));
|
|
}
|
|
return C;
|
|
}
|
|
|
|
Counter CounterExpressionBuilder::add(Counter LHS, Counter RHS, bool Simplify) {
|
|
auto Cnt = get(CounterExpression(CounterExpression::Add, LHS, RHS));
|
|
return Simplify ? simplify(Cnt) : Cnt;
|
|
}
|
|
|
|
Counter CounterExpressionBuilder::subtract(Counter LHS, Counter RHS,
|
|
bool Simplify) {
|
|
auto Cnt = get(CounterExpression(CounterExpression::Subtract, LHS, RHS));
|
|
return Simplify ? simplify(Cnt) : Cnt;
|
|
}
|
|
|
|
Counter CounterExpressionBuilder::subst(Counter C, const SubstMap &Map) {
|
|
// Replace C with the value found in Map even if C is Expression.
|
|
if (auto I = Map.find(C); I != Map.end())
|
|
return I->second;
|
|
|
|
if (!C.isExpression())
|
|
return C;
|
|
|
|
auto CE = Expressions[C.getExpressionID()];
|
|
auto NewLHS = subst(CE.LHS, Map);
|
|
auto NewRHS = subst(CE.RHS, Map);
|
|
|
|
// Reconstruct Expression with induced subexpressions.
|
|
switch (CE.Kind) {
|
|
case CounterExpression::Add:
|
|
C = add(NewLHS, NewRHS);
|
|
break;
|
|
case CounterExpression::Subtract:
|
|
C = subtract(NewLHS, NewRHS);
|
|
break;
|
|
}
|
|
|
|
return C;
|
|
}
|
|
|
|
void CounterMappingContext::dump(const Counter &C, raw_ostream &OS) const {
|
|
switch (C.getKind()) {
|
|
case Counter::Zero:
|
|
OS << '0';
|
|
return;
|
|
case Counter::CounterValueReference:
|
|
OS << '#' << C.getCounterID();
|
|
break;
|
|
case Counter::Expression: {
|
|
if (C.getExpressionID() >= Expressions.size())
|
|
return;
|
|
const auto &E = Expressions[C.getExpressionID()];
|
|
OS << '(';
|
|
dump(E.LHS, OS);
|
|
OS << (E.Kind == CounterExpression::Subtract ? " - " : " + ");
|
|
dump(E.RHS, OS);
|
|
OS << ')';
|
|
break;
|
|
}
|
|
}
|
|
if (CounterValues.empty())
|
|
return;
|
|
Expected<int64_t> Value = evaluate(C);
|
|
if (auto E = Value.takeError()) {
|
|
consumeError(std::move(E));
|
|
return;
|
|
}
|
|
OS << '[' << *Value << ']';
|
|
}
|
|
|
|
Expected<int64_t> CounterMappingContext::evaluate(const Counter &C) const {
|
|
struct StackElem {
|
|
Counter ICounter;
|
|
int64_t LHS = 0;
|
|
enum {
|
|
KNeverVisited = 0,
|
|
KVisitedOnce = 1,
|
|
KVisitedTwice = 2,
|
|
} VisitCount = KNeverVisited;
|
|
};
|
|
|
|
std::stack<StackElem> CounterStack;
|
|
CounterStack.push({C});
|
|
|
|
int64_t LastPoppedValue;
|
|
|
|
while (!CounterStack.empty()) {
|
|
StackElem &Current = CounterStack.top();
|
|
|
|
switch (Current.ICounter.getKind()) {
|
|
case Counter::Zero:
|
|
LastPoppedValue = 0;
|
|
CounterStack.pop();
|
|
break;
|
|
case Counter::CounterValueReference:
|
|
if (Current.ICounter.getCounterID() >= CounterValues.size())
|
|
return errorCodeToError(errc::argument_out_of_domain);
|
|
LastPoppedValue = CounterValues[Current.ICounter.getCounterID()];
|
|
CounterStack.pop();
|
|
break;
|
|
case Counter::Expression: {
|
|
if (Current.ICounter.getExpressionID() >= Expressions.size())
|
|
return errorCodeToError(errc::argument_out_of_domain);
|
|
const auto &E = Expressions[Current.ICounter.getExpressionID()];
|
|
if (Current.VisitCount == StackElem::KNeverVisited) {
|
|
CounterStack.push(StackElem{E.LHS});
|
|
Current.VisitCount = StackElem::KVisitedOnce;
|
|
} else if (Current.VisitCount == StackElem::KVisitedOnce) {
|
|
Current.LHS = LastPoppedValue;
|
|
CounterStack.push(StackElem{E.RHS});
|
|
Current.VisitCount = StackElem::KVisitedTwice;
|
|
} else {
|
|
int64_t LHS = Current.LHS;
|
|
int64_t RHS = LastPoppedValue;
|
|
LastPoppedValue =
|
|
E.Kind == CounterExpression::Subtract ? LHS - RHS : LHS + RHS;
|
|
CounterStack.pop();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return LastPoppedValue;
|
|
}
|
|
|
|
// Find an independence pair for each condition:
|
|
// - The condition is true in one test and false in the other.
|
|
// - The decision outcome is true one test and false in the other.
|
|
// - All other conditions' values must be equal or marked as "don't care".
|
|
void MCDCRecord::findIndependencePairs() {
|
|
if (IndependencePairs)
|
|
return;
|
|
|
|
IndependencePairs.emplace();
|
|
|
|
unsigned NumTVs = TV.size();
|
|
// Will be replaced to shorter expr.
|
|
unsigned TVTrueIdx = std::distance(
|
|
TV.begin(),
|
|
llvm::find_if(TV,
|
|
[&](auto I) { return (I.second == MCDCRecord::MCDC_True); })
|
|
|
|
);
|
|
for (unsigned I = TVTrueIdx; I < NumTVs; ++I) {
|
|
const auto &[A, ACond] = TV[I];
|
|
assert(ACond == MCDCRecord::MCDC_True);
|
|
for (unsigned J = 0; J < TVTrueIdx; ++J) {
|
|
const auto &[B, BCond] = TV[J];
|
|
assert(BCond == MCDCRecord::MCDC_False);
|
|
// If the two vectors differ in exactly one condition, ignoring DontCare
|
|
// conditions, we have found an independence pair.
|
|
auto AB = A.getDifferences(B);
|
|
if (AB.count() == 1)
|
|
IndependencePairs->insert(
|
|
{AB.find_first(), std::make_pair(J + 1, I + 1)});
|
|
}
|
|
}
|
|
}
|
|
|
|
mcdc::TVIdxBuilder::TVIdxBuilder(const SmallVectorImpl<ConditionIDs> &NextIDs,
|
|
int Offset)
|
|
: Indices(NextIDs.size()) {
|
|
// Construct Nodes and set up each InCount
|
|
auto N = NextIDs.size();
|
|
SmallVector<MCDCNode> Nodes(N);
|
|
for (unsigned ID = 0; ID < N; ++ID) {
|
|
for (unsigned C = 0; C < 2; ++C) {
|
|
#ifndef NDEBUG
|
|
Indices[ID][C] = INT_MIN;
|
|
#endif
|
|
auto NextID = NextIDs[ID][C];
|
|
Nodes[ID].NextIDs[C] = NextID;
|
|
if (NextID >= 0)
|
|
++Nodes[NextID].InCount;
|
|
}
|
|
}
|
|
|
|
// Sort key ordered by <-Width, Ord>
|
|
SmallVector<std::tuple<int, /// -Width
|
|
unsigned, /// Ord
|
|
int, /// ID
|
|
unsigned /// Cond (0 or 1)
|
|
>>
|
|
Decisions;
|
|
|
|
// Traverse Nodes to assign Idx
|
|
SmallVector<int> Q;
|
|
assert(Nodes[0].InCount == 0);
|
|
Nodes[0].Width = 1;
|
|
Q.push_back(0);
|
|
|
|
unsigned Ord = 0;
|
|
while (!Q.empty()) {
|
|
auto IID = Q.begin();
|
|
int ID = *IID;
|
|
Q.erase(IID);
|
|
auto &Node = Nodes[ID];
|
|
assert(Node.Width > 0);
|
|
|
|
for (unsigned I = 0; I < 2; ++I) {
|
|
auto NextID = Node.NextIDs[I];
|
|
assert(NextID != 0 && "NextID should not point to the top");
|
|
if (NextID < 0) {
|
|
// Decision
|
|
Decisions.emplace_back(-Node.Width, Ord++, ID, I);
|
|
assert(Ord == Decisions.size());
|
|
continue;
|
|
}
|
|
|
|
// Inter Node
|
|
auto &NextNode = Nodes[NextID];
|
|
assert(NextNode.InCount > 0);
|
|
|
|
// Assign Idx
|
|
assert(Indices[ID][I] == INT_MIN);
|
|
Indices[ID][I] = NextNode.Width;
|
|
auto NextWidth = int64_t(NextNode.Width) + Node.Width;
|
|
if (NextWidth > HardMaxTVs) {
|
|
NumTestVectors = HardMaxTVs; // Overflow
|
|
return;
|
|
}
|
|
NextNode.Width = NextWidth;
|
|
|
|
// Ready if all incomings are processed.
|
|
// Or NextNode.Width hasn't been confirmed yet.
|
|
if (--NextNode.InCount == 0)
|
|
Q.push_back(NextID);
|
|
}
|
|
}
|
|
|
|
llvm::sort(Decisions);
|
|
|
|
// Assign TestVector Indices in Decision Nodes
|
|
int64_t CurIdx = 0;
|
|
for (auto [NegWidth, Ord, ID, C] : Decisions) {
|
|
int Width = -NegWidth;
|
|
assert(Nodes[ID].Width == Width);
|
|
assert(Nodes[ID].NextIDs[C] < 0);
|
|
assert(Indices[ID][C] == INT_MIN);
|
|
Indices[ID][C] = Offset + CurIdx;
|
|
CurIdx += Width;
|
|
if (CurIdx > HardMaxTVs) {
|
|
NumTestVectors = HardMaxTVs; // Overflow
|
|
return;
|
|
}
|
|
}
|
|
|
|
assert(CurIdx < HardMaxTVs);
|
|
NumTestVectors = CurIdx;
|
|
|
|
#ifndef NDEBUG
|
|
for (const auto &Idxs : Indices)
|
|
for (auto Idx : Idxs)
|
|
assert(Idx != INT_MIN);
|
|
SavedNodes = std::move(Nodes);
|
|
#endif
|
|
}
|
|
|
|
namespace {
|
|
|
|
/// Construct this->NextIDs with Branches for TVIdxBuilder to use it
|
|
/// before MCDCRecordProcessor().
|
|
class NextIDsBuilder {
|
|
protected:
|
|
SmallVector<mcdc::ConditionIDs> NextIDs;
|
|
|
|
public:
|
|
NextIDsBuilder(const ArrayRef<const CounterMappingRegion *> Branches)
|
|
: NextIDs(Branches.size()) {
|
|
#ifndef NDEBUG
|
|
DenseSet<mcdc::ConditionID> SeenIDs;
|
|
#endif
|
|
for (const auto *Branch : Branches) {
|
|
const auto &BranchParams = Branch->getBranchParams();
|
|
assert(SeenIDs.insert(BranchParams.ID).second && "Duplicate CondID");
|
|
NextIDs[BranchParams.ID] = BranchParams.Conds;
|
|
}
|
|
assert(SeenIDs.size() == Branches.size());
|
|
}
|
|
};
|
|
|
|
class MCDCRecordProcessor : NextIDsBuilder, mcdc::TVIdxBuilder {
|
|
/// A bitmap representing the executed test vectors for a boolean expression.
|
|
/// Each index of the bitmap corresponds to a possible test vector. An index
|
|
/// with a bit value of '1' indicates that the corresponding Test Vector
|
|
/// identified by that index was executed.
|
|
const BitVector &Bitmap;
|
|
|
|
/// Decision Region to which the ExecutedTestVectorBitmap applies.
|
|
const CounterMappingRegion &Region;
|
|
const mcdc::DecisionParameters &DecisionParams;
|
|
|
|
/// Array of branch regions corresponding each conditions in the boolean
|
|
/// expression.
|
|
ArrayRef<const CounterMappingRegion *> Branches;
|
|
|
|
/// Total number of conditions in the boolean expression.
|
|
unsigned NumConditions;
|
|
|
|
/// Vector used to track whether a condition is constant folded.
|
|
MCDCRecord::BoolVector Folded;
|
|
|
|
/// Mapping of calculated MC/DC Independence Pairs for each condition.
|
|
MCDCRecord::TVPairMap IndependencePairs;
|
|
|
|
/// Helper for sorting ExecVectors.
|
|
struct TVIdxTuple {
|
|
MCDCRecord::CondState MCDCCond; /// True/False
|
|
unsigned BIdx; /// Bitmap Index
|
|
unsigned Ord; /// Last position on ExecVectors
|
|
|
|
TVIdxTuple(MCDCRecord::CondState MCDCCond, unsigned BIdx, unsigned Ord)
|
|
: MCDCCond(MCDCCond), BIdx(BIdx), Ord(Ord) {}
|
|
|
|
bool operator<(const TVIdxTuple &RHS) const {
|
|
return (std::tie(this->MCDCCond, this->BIdx, this->Ord) <
|
|
std::tie(RHS.MCDCCond, RHS.BIdx, RHS.Ord));
|
|
}
|
|
};
|
|
|
|
// Indices for sorted TestVectors;
|
|
std::vector<TVIdxTuple> ExecVectorIdxs;
|
|
|
|
/// Actual executed Test Vectors for the boolean expression, based on
|
|
/// ExecutedTestVectorBitmap.
|
|
MCDCRecord::TestVectors ExecVectors;
|
|
|
|
#ifndef NDEBUG
|
|
DenseSet<unsigned> TVIdxs;
|
|
#endif
|
|
|
|
bool IsVersion11;
|
|
|
|
public:
|
|
MCDCRecordProcessor(const BitVector &Bitmap,
|
|
const CounterMappingRegion &Region,
|
|
ArrayRef<const CounterMappingRegion *> Branches,
|
|
bool IsVersion11)
|
|
: NextIDsBuilder(Branches), TVIdxBuilder(this->NextIDs), Bitmap(Bitmap),
|
|
Region(Region), DecisionParams(Region.getDecisionParams()),
|
|
Branches(Branches), NumConditions(DecisionParams.NumConditions),
|
|
Folded{{BitVector(NumConditions), BitVector(NumConditions)}},
|
|
IndependencePairs(NumConditions), IsVersion11(IsVersion11) {}
|
|
|
|
private:
|
|
// Walk the binary decision diagram and try assigning both false and true to
|
|
// each node. When a terminal node (ID == 0) is reached, fill in the value in
|
|
// the truth table.
|
|
void buildTestVector(MCDCRecord::TestVector &TV, mcdc::ConditionID ID,
|
|
int TVIdx) {
|
|
for (auto MCDCCond : {MCDCRecord::MCDC_False, MCDCRecord::MCDC_True}) {
|
|
static_assert(MCDCRecord::MCDC_False == 0);
|
|
static_assert(MCDCRecord::MCDC_True == 1);
|
|
TV.set(ID, MCDCCond);
|
|
auto NextID = NextIDs[ID][MCDCCond];
|
|
auto NextTVIdx = TVIdx + Indices[ID][MCDCCond];
|
|
assert(NextID == SavedNodes[ID].NextIDs[MCDCCond]);
|
|
if (NextID >= 0) {
|
|
buildTestVector(TV, NextID, NextTVIdx);
|
|
continue;
|
|
}
|
|
|
|
assert(TVIdx < SavedNodes[ID].Width);
|
|
assert(TVIdxs.insert(NextTVIdx).second && "Duplicate TVIdx");
|
|
|
|
if (!Bitmap[IsVersion11
|
|
? DecisionParams.BitmapIdx * CHAR_BIT + TV.getIndex()
|
|
: DecisionParams.BitmapIdx - NumTestVectors + NextTVIdx])
|
|
continue;
|
|
|
|
ExecVectorIdxs.emplace_back(MCDCCond, NextTVIdx, ExecVectors.size());
|
|
|
|
// Copy the completed test vector to the vector of testvectors.
|
|
// The final value (T,F) is equal to the last non-dontcare state on the
|
|
// path (in a short-circuiting system).
|
|
ExecVectors.push_back({TV, MCDCCond});
|
|
}
|
|
|
|
// Reset back to DontCare.
|
|
TV.set(ID, MCDCRecord::MCDC_DontCare);
|
|
}
|
|
|
|
/// Walk the bits in the bitmap. A bit set to '1' indicates that the test
|
|
/// vector at the corresponding index was executed during a test run.
|
|
void findExecutedTestVectors() {
|
|
// Walk the binary decision diagram to enumerate all possible test vectors.
|
|
// We start at the root node (ID == 0) with all values being DontCare.
|
|
// `TVIdx` starts with 0 and is in the traversal.
|
|
// `Index` encodes the bitmask of true values and is initially 0.
|
|
MCDCRecord::TestVector TV(NumConditions);
|
|
buildTestVector(TV, 0, 0);
|
|
assert(TVIdxs.size() == unsigned(NumTestVectors) &&
|
|
"TVIdxs wasn't fulfilled");
|
|
|
|
llvm::sort(ExecVectorIdxs);
|
|
MCDCRecord::TestVectors NewTestVectors;
|
|
for (const auto &IdxTuple : ExecVectorIdxs)
|
|
NewTestVectors.push_back(std::move(ExecVectors[IdxTuple.Ord]));
|
|
ExecVectors = std::move(NewTestVectors);
|
|
}
|
|
|
|
public:
|
|
/// Process the MC/DC Record in order to produce a result for a boolean
|
|
/// expression. This process includes tracking the conditions that comprise
|
|
/// the decision region, calculating the list of all possible test vectors,
|
|
/// marking the executed test vectors, and then finding an Independence Pair
|
|
/// out of the executed test vectors for each condition in the boolean
|
|
/// expression. A condition is tracked to ensure that its ID can be mapped to
|
|
/// its ordinal position in the boolean expression. The condition's source
|
|
/// location is also tracked, as well as whether it is constant folded (in
|
|
/// which case it is excuded from the metric).
|
|
MCDCRecord processMCDCRecord() {
|
|
MCDCRecord::CondIDMap PosToID;
|
|
MCDCRecord::LineColPairMap CondLoc;
|
|
|
|
// Walk the Record's BranchRegions (representing Conditions) in order to:
|
|
// - Hash the condition based on its corresponding ID. This will be used to
|
|
// calculate the test vectors.
|
|
// - Keep a map of the condition's ordinal position (1, 2, 3, 4) to its
|
|
// actual ID. This will be used to visualize the conditions in the
|
|
// correct order.
|
|
// - Keep track of the condition source location. This will be used to
|
|
// visualize where the condition is.
|
|
// - Record whether the condition is constant folded so that we exclude it
|
|
// from being measured.
|
|
for (auto [I, B] : enumerate(Branches)) {
|
|
const auto &BranchParams = B->getBranchParams();
|
|
PosToID[I] = BranchParams.ID;
|
|
CondLoc[I] = B->startLoc();
|
|
Folded[false][I] = B->FalseCount.isZero();
|
|
Folded[true][I] = B->Count.isZero();
|
|
}
|
|
|
|
// Using Profile Bitmap from runtime, mark the executed test vectors.
|
|
findExecutedTestVectors();
|
|
|
|
// Record Test vectors, executed vectors, and independence pairs.
|
|
return MCDCRecord(Region, std::move(ExecVectors), std::move(Folded),
|
|
std::move(PosToID), std::move(CondLoc));
|
|
}
|
|
};
|
|
|
|
} // namespace
|
|
|
|
Expected<MCDCRecord> CounterMappingContext::evaluateMCDCRegion(
|
|
const CounterMappingRegion &Region,
|
|
ArrayRef<const CounterMappingRegion *> Branches, bool IsVersion11) {
|
|
|
|
MCDCRecordProcessor MCDCProcessor(Bitmap, Region, Branches, IsVersion11);
|
|
return MCDCProcessor.processMCDCRecord();
|
|
}
|
|
|
|
unsigned CounterMappingContext::getMaxCounterID(const Counter &C) const {
|
|
struct StackElem {
|
|
Counter ICounter;
|
|
int64_t LHS = 0;
|
|
enum {
|
|
KNeverVisited = 0,
|
|
KVisitedOnce = 1,
|
|
KVisitedTwice = 2,
|
|
} VisitCount = KNeverVisited;
|
|
};
|
|
|
|
std::stack<StackElem> CounterStack;
|
|
CounterStack.push({C});
|
|
|
|
int64_t LastPoppedValue;
|
|
|
|
while (!CounterStack.empty()) {
|
|
StackElem &Current = CounterStack.top();
|
|
|
|
switch (Current.ICounter.getKind()) {
|
|
case Counter::Zero:
|
|
LastPoppedValue = 0;
|
|
CounterStack.pop();
|
|
break;
|
|
case Counter::CounterValueReference:
|
|
LastPoppedValue = Current.ICounter.getCounterID();
|
|
CounterStack.pop();
|
|
break;
|
|
case Counter::Expression: {
|
|
if (Current.ICounter.getExpressionID() >= Expressions.size()) {
|
|
LastPoppedValue = 0;
|
|
CounterStack.pop();
|
|
} else {
|
|
const auto &E = Expressions[Current.ICounter.getExpressionID()];
|
|
if (Current.VisitCount == StackElem::KNeverVisited) {
|
|
CounterStack.push(StackElem{E.LHS});
|
|
Current.VisitCount = StackElem::KVisitedOnce;
|
|
} else if (Current.VisitCount == StackElem::KVisitedOnce) {
|
|
Current.LHS = LastPoppedValue;
|
|
CounterStack.push(StackElem{E.RHS});
|
|
Current.VisitCount = StackElem::KVisitedTwice;
|
|
} else {
|
|
int64_t LHS = Current.LHS;
|
|
int64_t RHS = LastPoppedValue;
|
|
LastPoppedValue = std::max(LHS, RHS);
|
|
CounterStack.pop();
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return LastPoppedValue;
|
|
}
|
|
|
|
void FunctionRecordIterator::skipOtherFiles() {
|
|
while (Current != Records.end() && !Filename.empty() &&
|
|
Filename != Current->Filenames[0])
|
|
advanceOne();
|
|
if (Current == Records.end())
|
|
*this = FunctionRecordIterator();
|
|
}
|
|
|
|
ArrayRef<unsigned> CoverageMapping::getImpreciseRecordIndicesForFilename(
|
|
StringRef Filename) const {
|
|
size_t FilenameHash = hash_value(Filename);
|
|
auto RecordIt = FilenameHash2RecordIndices.find(FilenameHash);
|
|
if (RecordIt == FilenameHash2RecordIndices.end())
|
|
return {};
|
|
return RecordIt->second;
|
|
}
|
|
|
|
static unsigned getMaxCounterID(const CounterMappingContext &Ctx,
|
|
const CoverageMappingRecord &Record) {
|
|
unsigned MaxCounterID = 0;
|
|
for (const auto &Region : Record.MappingRegions) {
|
|
MaxCounterID = std::max(MaxCounterID, Ctx.getMaxCounterID(Region.Count));
|
|
if (Region.isBranch())
|
|
MaxCounterID =
|
|
std::max(MaxCounterID, Ctx.getMaxCounterID(Region.FalseCount));
|
|
}
|
|
return MaxCounterID;
|
|
}
|
|
|
|
/// Returns the bit count
|
|
static unsigned getMaxBitmapSize(const CoverageMappingRecord &Record,
|
|
bool IsVersion11) {
|
|
unsigned MaxBitmapIdx = 0;
|
|
unsigned NumConditions = 0;
|
|
// Scan max(BitmapIdx).
|
|
// Note that `<=` is used insted of `<`, because `BitmapIdx == 0` is valid
|
|
// and `MaxBitmapIdx is `unsigned`. `BitmapIdx` is unique in the record.
|
|
for (const auto &Region : reverse(Record.MappingRegions)) {
|
|
if (Region.Kind != CounterMappingRegion::MCDCDecisionRegion)
|
|
continue;
|
|
const auto &DecisionParams = Region.getDecisionParams();
|
|
if (MaxBitmapIdx <= DecisionParams.BitmapIdx) {
|
|
MaxBitmapIdx = DecisionParams.BitmapIdx;
|
|
NumConditions = DecisionParams.NumConditions;
|
|
}
|
|
}
|
|
|
|
if (IsVersion11)
|
|
MaxBitmapIdx = MaxBitmapIdx * CHAR_BIT +
|
|
llvm::alignTo(uint64_t(1) << NumConditions, CHAR_BIT);
|
|
|
|
return MaxBitmapIdx;
|
|
}
|
|
|
|
namespace {
|
|
|
|
/// Walk MappingRegions along Expansions and emit CountedRegions.
|
|
struct CountedRegionEmitter {
|
|
/// A nestable Decision.
|
|
struct DecisionRecord {
|
|
const CounterMappingRegion *DecisionRegion;
|
|
unsigned NumConditions; ///< Copy of DecisionRegion.NumConditions
|
|
/// Pushed by traversal order.
|
|
SmallVector<const CounterMappingRegion *> MCDCBranches;
|
|
#ifndef NDEBUG
|
|
DenseSet<mcdc::ConditionID> ConditionIDs;
|
|
#endif
|
|
|
|
DecisionRecord(const CounterMappingRegion &Decision)
|
|
: DecisionRegion(&Decision),
|
|
NumConditions(Decision.getDecisionParams().NumConditions) {
|
|
assert(Decision.Kind == CounterMappingRegion::MCDCDecisionRegion);
|
|
}
|
|
|
|
bool pushBranch(const CounterMappingRegion &B) {
|
|
assert(B.Kind == CounterMappingRegion::MCDCBranchRegion);
|
|
assert(ConditionIDs.insert(B.getBranchParams().ID).second &&
|
|
"Duplicate CondID");
|
|
MCDCBranches.push_back(&B);
|
|
assert(MCDCBranches.size() <= NumConditions &&
|
|
"MCDCBranch exceeds NumConds");
|
|
return (MCDCBranches.size() == NumConditions);
|
|
}
|
|
};
|
|
|
|
const CoverageMappingRecord &Record;
|
|
CounterMappingContext &Ctx;
|
|
FunctionRecord &Function;
|
|
bool IsVersion11;
|
|
|
|
/// Evaluated Counters.
|
|
std::map<Counter, uint64_t> CounterValues;
|
|
|
|
/// Decisions are nestable.
|
|
SmallVector<DecisionRecord, 1> DecisionStack;
|
|
|
|
/// A File pointed by Expansion
|
|
struct FileInfo {
|
|
/// The last index(+1) for each FileID in MappingRegions.
|
|
unsigned LastIndex = 0;
|
|
/// Mark Files pointed by Expansions.
|
|
/// Non-marked Files are root Files.
|
|
bool IsExpanded = false;
|
|
};
|
|
|
|
/// The last element is a sentinel with Index=NumRegions.
|
|
std::vector<FileInfo> Files;
|
|
#ifndef NDEBUG
|
|
DenseSet<unsigned> Visited;
|
|
#endif
|
|
|
|
CountedRegionEmitter(const CoverageMappingRecord &Record,
|
|
CounterMappingContext &Ctx, FunctionRecord &Function,
|
|
bool IsVersion11)
|
|
: Record(Record), Ctx(Ctx), Function(Function), IsVersion11(IsVersion11),
|
|
Files(Record.Filenames.size()) {
|
|
// Scan MappingRegions and mark each last index by FileID.
|
|
for (auto [I, Region] : enumerate(Record.MappingRegions)) {
|
|
if (Region.FileID >= Files.size()) {
|
|
// Extend (only possible in CoverageMappingTests)
|
|
Files.resize(Region.FileID + 1);
|
|
}
|
|
Files[Region.FileID].LastIndex = I + 1;
|
|
if (Region.Kind == CounterMappingRegion::ExpansionRegion) {
|
|
if (Region.ExpandedFileID >= Files.size()) {
|
|
// Extend (only possible in CoverageMappingTests)
|
|
Files.resize(Region.ExpandedFileID + 1);
|
|
}
|
|
Files[Region.ExpandedFileID].IsExpanded = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Evaluate C and store its evaluated Value into CounterValues.
|
|
Error evaluateAndCacheCounter(Counter C) {
|
|
if (CounterValues.count(C) > 0)
|
|
return Error::success();
|
|
|
|
auto ValueOrErr = Ctx.evaluate(C);
|
|
if (!ValueOrErr)
|
|
return ValueOrErr.takeError();
|
|
CounterValues[C] = *ValueOrErr;
|
|
return Error::success();
|
|
}
|
|
|
|
Error walk(unsigned Idx) {
|
|
assert(Idx < Files.size());
|
|
unsigned B = (Idx == 0 ? 0 : Files[Idx - 1].LastIndex);
|
|
unsigned E = Files[Idx].LastIndex;
|
|
assert(B != E && "Empty FileID");
|
|
assert(Visited.insert(Idx).second && "Duplicate Expansions");
|
|
for (unsigned I = B; I != E; ++I) {
|
|
const auto &Region = Record.MappingRegions[I];
|
|
if (Region.FileID != Idx)
|
|
break;
|
|
|
|
if (Region.Kind == CounterMappingRegion::ExpansionRegion)
|
|
if (auto E = walk(Region.ExpandedFileID))
|
|
return E;
|
|
|
|
if (auto E = evaluateAndCacheCounter(Region.Count))
|
|
return E;
|
|
|
|
if (Region.Kind == CounterMappingRegion::MCDCDecisionRegion) {
|
|
// Start the new Decision on the stack.
|
|
DecisionStack.emplace_back(Region);
|
|
} else if (Region.Kind == CounterMappingRegion::MCDCBranchRegion) {
|
|
assert(!DecisionStack.empty() && "Orphan MCDCBranch");
|
|
auto &D = DecisionStack.back();
|
|
|
|
if (D.pushBranch(Region)) {
|
|
// All Branches have been found in the Decision.
|
|
auto RecordOrErr = Ctx.evaluateMCDCRegion(
|
|
*D.DecisionRegion, D.MCDCBranches, IsVersion11);
|
|
if (!RecordOrErr)
|
|
return RecordOrErr.takeError();
|
|
|
|
// Finish the stack.
|
|
Function.pushMCDCRecord(std::move(*RecordOrErr));
|
|
DecisionStack.pop_back();
|
|
}
|
|
}
|
|
|
|
// Evaluate FalseCount
|
|
// It may have the Counter in Branches, or Zero.
|
|
if (auto E = evaluateAndCacheCounter(Region.FalseCount))
|
|
return E;
|
|
}
|
|
|
|
assert((Idx != 0 || DecisionStack.empty()) && "Decision wasn't closed");
|
|
|
|
return Error::success();
|
|
}
|
|
|
|
Error emitCountedRegions() {
|
|
// Walk MappingRegions along Expansions.
|
|
// - Evaluate Counters
|
|
// - Emit MCDCRecords
|
|
for (auto [I, F] : enumerate(Files)) {
|
|
if (!F.IsExpanded)
|
|
if (auto E = walk(I))
|
|
return E;
|
|
}
|
|
assert(Visited.size() == Files.size() && "Dangling FileID");
|
|
|
|
// Emit CountedRegions in the same order as MappingRegions.
|
|
for (const auto &Region : Record.MappingRegions) {
|
|
if (Region.Kind == CounterMappingRegion::MCDCDecisionRegion)
|
|
continue; // Don't emit.
|
|
// Adopt values from the CounterValues.
|
|
// FalseCount may be Zero unless Branches.
|
|
Function.pushRegion(Region, CounterValues[Region.Count],
|
|
CounterValues[Region.FalseCount]);
|
|
}
|
|
|
|
return Error::success();
|
|
}
|
|
};
|
|
|
|
} // namespace
|
|
|
|
Error CoverageMapping::loadFunctionRecord(
|
|
const CoverageMappingRecord &Record,
|
|
const std::optional<std::reference_wrapper<IndexedInstrProfReader>>
|
|
&ProfileReader) {
|
|
StringRef OrigFuncName = Record.FunctionName;
|
|
if (OrigFuncName.empty())
|
|
return make_error<CoverageMapError>(coveragemap_error::malformed,
|
|
"record function name is empty");
|
|
|
|
if (Record.Filenames.empty())
|
|
OrigFuncName = getFuncNameWithoutPrefix(OrigFuncName);
|
|
else
|
|
OrigFuncName = getFuncNameWithoutPrefix(OrigFuncName, Record.Filenames[0]);
|
|
|
|
CounterMappingContext Ctx(Record.Expressions);
|
|
|
|
std::vector<uint64_t> Counts;
|
|
if (ProfileReader) {
|
|
if (Error E = ProfileReader.value().get().getFunctionCounts(
|
|
Record.FunctionName, Record.FunctionHash, Counts)) {
|
|
instrprof_error IPE = std::get<0>(InstrProfError::take(std::move(E)));
|
|
if (IPE == instrprof_error::hash_mismatch) {
|
|
FuncHashMismatches.emplace_back(std::string(Record.FunctionName),
|
|
Record.FunctionHash);
|
|
return Error::success();
|
|
}
|
|
if (IPE != instrprof_error::unknown_function)
|
|
return make_error<InstrProfError>(IPE);
|
|
Counts.assign(getMaxCounterID(Ctx, Record) + 1, 0);
|
|
}
|
|
} else {
|
|
Counts.assign(getMaxCounterID(Ctx, Record) + 1, 0);
|
|
}
|
|
Ctx.setCounts(Counts);
|
|
|
|
bool IsVersion11 =
|
|
ProfileReader && ProfileReader.value().get().getVersion() <
|
|
IndexedInstrProf::ProfVersion::Version12;
|
|
|
|
BitVector Bitmap;
|
|
if (ProfileReader) {
|
|
if (Error E = ProfileReader.value().get().getFunctionBitmap(
|
|
Record.FunctionName, Record.FunctionHash, Bitmap)) {
|
|
instrprof_error IPE = std::get<0>(InstrProfError::take(std::move(E)));
|
|
if (IPE == instrprof_error::hash_mismatch) {
|
|
FuncHashMismatches.emplace_back(std::string(Record.FunctionName),
|
|
Record.FunctionHash);
|
|
return Error::success();
|
|
}
|
|
if (IPE != instrprof_error::unknown_function)
|
|
return make_error<InstrProfError>(IPE);
|
|
Bitmap = BitVector(getMaxBitmapSize(Record, IsVersion11));
|
|
}
|
|
} else {
|
|
Bitmap = BitVector(getMaxBitmapSize(Record, false));
|
|
}
|
|
Ctx.setBitmap(std::move(Bitmap));
|
|
|
|
assert(!Record.MappingRegions.empty() && "Function has no regions");
|
|
|
|
// This coverage record is a zero region for a function that's unused in
|
|
// some TU, but used in a different TU. Ignore it. The coverage maps from the
|
|
// the other TU will either be loaded (providing full region counts) or they
|
|
// won't (in which case we don't unintuitively report functions as uncovered
|
|
// when they have non-zero counts in the profile).
|
|
if (Record.MappingRegions.size() == 1 &&
|
|
Record.MappingRegions[0].Count.isZero() && Counts[0] > 0)
|
|
return Error::success();
|
|
|
|
FunctionRecord Function(OrigFuncName, Record.Filenames);
|
|
|
|
// Emit CountedRegions into FunctionRecord.
|
|
if (auto E = CountedRegionEmitter(Record, Ctx, Function, IsVersion11)
|
|
.emitCountedRegions()) {
|
|
errs() << "warning: " << Record.FunctionName << ": ";
|
|
logAllUnhandledErrors(std::move(E), errs());
|
|
return Error::success();
|
|
}
|
|
|
|
// Don't create records for (filenames, function) pairs we've already seen.
|
|
auto FilenamesHash = hash_combine_range(Record.Filenames);
|
|
if (!RecordProvenance[FilenamesHash].insert(hash_value(OrigFuncName)).second)
|
|
return Error::success();
|
|
|
|
Functions.push_back(std::move(Function));
|
|
|
|
// Performance optimization: keep track of the indices of the function records
|
|
// which correspond to each filename. This can be used to substantially speed
|
|
// up queries for coverage info in a file.
|
|
unsigned RecordIndex = Functions.size() - 1;
|
|
for (StringRef Filename : Record.Filenames) {
|
|
auto &RecordIndices = FilenameHash2RecordIndices[hash_value(Filename)];
|
|
// Note that there may be duplicates in the filename set for a function
|
|
// record, because of e.g. macro expansions in the function in which both
|
|
// the macro and the function are defined in the same file.
|
|
if (RecordIndices.empty() || RecordIndices.back() != RecordIndex)
|
|
RecordIndices.push_back(RecordIndex);
|
|
}
|
|
|
|
return Error::success();
|
|
}
|
|
|
|
// This function is for memory optimization by shortening the lifetimes
|
|
// of CoverageMappingReader instances.
|
|
Error CoverageMapping::loadFromReaders(
|
|
ArrayRef<std::unique_ptr<CoverageMappingReader>> CoverageReaders,
|
|
std::optional<std::reference_wrapper<IndexedInstrProfReader>>
|
|
&ProfileReader,
|
|
CoverageMapping &Coverage) {
|
|
assert(!Coverage.SingleByteCoverage || !ProfileReader ||
|
|
*Coverage.SingleByteCoverage ==
|
|
ProfileReader.value().get().hasSingleByteCoverage());
|
|
Coverage.SingleByteCoverage =
|
|
!ProfileReader || ProfileReader.value().get().hasSingleByteCoverage();
|
|
for (const auto &CoverageReader : CoverageReaders) {
|
|
for (auto RecordOrErr : *CoverageReader) {
|
|
if (Error E = RecordOrErr.takeError())
|
|
return E;
|
|
const auto &Record = *RecordOrErr;
|
|
if (Error E = Coverage.loadFunctionRecord(Record, ProfileReader))
|
|
return E;
|
|
}
|
|
}
|
|
return Error::success();
|
|
}
|
|
|
|
Expected<std::unique_ptr<CoverageMapping>> CoverageMapping::load(
|
|
ArrayRef<std::unique_ptr<CoverageMappingReader>> CoverageReaders,
|
|
std::optional<std::reference_wrapper<IndexedInstrProfReader>>
|
|
&ProfileReader) {
|
|
auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping());
|
|
if (Error E = loadFromReaders(CoverageReaders, ProfileReader, *Coverage))
|
|
return std::move(E);
|
|
return std::move(Coverage);
|
|
}
|
|
|
|
// If E is a no_data_found error, returns success. Otherwise returns E.
|
|
static Error handleMaybeNoDataFoundError(Error E) {
|
|
return handleErrors(std::move(E), [](const CoverageMapError &CME) {
|
|
if (CME.get() == coveragemap_error::no_data_found)
|
|
return static_cast<Error>(Error::success());
|
|
return make_error<CoverageMapError>(CME.get(), CME.getMessage());
|
|
});
|
|
}
|
|
|
|
Error CoverageMapping::loadFromFile(
|
|
StringRef Filename, StringRef Arch, StringRef CompilationDir,
|
|
std::optional<std::reference_wrapper<IndexedInstrProfReader>>
|
|
&ProfileReader,
|
|
CoverageMapping &Coverage, bool &DataFound,
|
|
SmallVectorImpl<object::BuildID> *FoundBinaryIDs) {
|
|
auto CovMappingBufOrErr = MemoryBuffer::getFileOrSTDIN(
|
|
Filename, /*IsText=*/false, /*RequiresNullTerminator=*/false);
|
|
if (std::error_code EC = CovMappingBufOrErr.getError())
|
|
return createFileError(Filename, errorCodeToError(EC));
|
|
MemoryBufferRef CovMappingBufRef =
|
|
CovMappingBufOrErr.get()->getMemBufferRef();
|
|
SmallVector<std::unique_ptr<MemoryBuffer>, 4> Buffers;
|
|
|
|
SmallVector<object::BuildIDRef> BinaryIDs;
|
|
auto CoverageReadersOrErr = BinaryCoverageReader::create(
|
|
CovMappingBufRef, Arch, Buffers, CompilationDir,
|
|
FoundBinaryIDs ? &BinaryIDs : nullptr);
|
|
if (Error E = CoverageReadersOrErr.takeError()) {
|
|
E = handleMaybeNoDataFoundError(std::move(E));
|
|
if (E)
|
|
return createFileError(Filename, std::move(E));
|
|
return E;
|
|
}
|
|
|
|
SmallVector<std::unique_ptr<CoverageMappingReader>, 4> Readers;
|
|
for (auto &Reader : CoverageReadersOrErr.get())
|
|
Readers.push_back(std::move(Reader));
|
|
if (FoundBinaryIDs && !Readers.empty()) {
|
|
llvm::append_range(*FoundBinaryIDs,
|
|
llvm::map_range(BinaryIDs, [](object::BuildIDRef BID) {
|
|
return object::BuildID(BID);
|
|
}));
|
|
}
|
|
DataFound |= !Readers.empty();
|
|
if (Error E = loadFromReaders(Readers, ProfileReader, Coverage))
|
|
return createFileError(Filename, std::move(E));
|
|
return Error::success();
|
|
}
|
|
|
|
Expected<std::unique_ptr<CoverageMapping>> CoverageMapping::load(
|
|
ArrayRef<StringRef> ObjectFilenames,
|
|
std::optional<StringRef> ProfileFilename, vfs::FileSystem &FS,
|
|
ArrayRef<StringRef> Arches, StringRef CompilationDir,
|
|
const object::BuildIDFetcher *BIDFetcher, bool CheckBinaryIDs) {
|
|
std::unique_ptr<IndexedInstrProfReader> ProfileReader;
|
|
if (ProfileFilename) {
|
|
auto ProfileReaderOrErr =
|
|
IndexedInstrProfReader::create(ProfileFilename.value(), FS);
|
|
if (Error E = ProfileReaderOrErr.takeError())
|
|
return createFileError(ProfileFilename.value(), std::move(E));
|
|
ProfileReader = std::move(ProfileReaderOrErr.get());
|
|
}
|
|
auto ProfileReaderRef =
|
|
ProfileReader
|
|
? std::optional<std::reference_wrapper<IndexedInstrProfReader>>(
|
|
*ProfileReader)
|
|
: std::nullopt;
|
|
auto Coverage = std::unique_ptr<CoverageMapping>(new CoverageMapping());
|
|
bool DataFound = false;
|
|
|
|
auto GetArch = [&](size_t Idx) {
|
|
if (Arches.empty())
|
|
return StringRef();
|
|
if (Arches.size() == 1)
|
|
return Arches.front();
|
|
return Arches[Idx];
|
|
};
|
|
|
|
SmallVector<object::BuildID> FoundBinaryIDs;
|
|
for (const auto &File : llvm::enumerate(ObjectFilenames)) {
|
|
if (Error E = loadFromFile(File.value(), GetArch(File.index()),
|
|
CompilationDir, ProfileReaderRef, *Coverage,
|
|
DataFound, &FoundBinaryIDs))
|
|
return std::move(E);
|
|
}
|
|
|
|
if (BIDFetcher) {
|
|
std::vector<object::BuildID> ProfileBinaryIDs;
|
|
if (ProfileReader)
|
|
if (Error E = ProfileReader->readBinaryIds(ProfileBinaryIDs))
|
|
return createFileError(ProfileFilename.value(), std::move(E));
|
|
|
|
SmallVector<object::BuildIDRef> BinaryIDsToFetch;
|
|
if (!ProfileBinaryIDs.empty()) {
|
|
const auto &Compare = [](object::BuildIDRef A, object::BuildIDRef B) {
|
|
return std::lexicographical_compare(A.begin(), A.end(), B.begin(),
|
|
B.end());
|
|
};
|
|
llvm::sort(FoundBinaryIDs, Compare);
|
|
std::set_difference(
|
|
ProfileBinaryIDs.begin(), ProfileBinaryIDs.end(),
|
|
FoundBinaryIDs.begin(), FoundBinaryIDs.end(),
|
|
std::inserter(BinaryIDsToFetch, BinaryIDsToFetch.end()), Compare);
|
|
}
|
|
|
|
for (object::BuildIDRef BinaryID : BinaryIDsToFetch) {
|
|
std::optional<std::string> PathOpt = BIDFetcher->fetch(BinaryID);
|
|
if (PathOpt) {
|
|
std::string Path = std::move(*PathOpt);
|
|
StringRef Arch = Arches.size() == 1 ? Arches.front() : StringRef();
|
|
if (Error E = loadFromFile(Path, Arch, CompilationDir, ProfileReaderRef,
|
|
*Coverage, DataFound))
|
|
return std::move(E);
|
|
} else if (CheckBinaryIDs) {
|
|
return createFileError(
|
|
ProfileFilename.value(),
|
|
createStringError(errc::no_such_file_or_directory,
|
|
"Missing binary ID: " +
|
|
llvm::toHex(BinaryID, /*LowerCase=*/true)));
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!DataFound)
|
|
return createFileError(
|
|
join(ObjectFilenames.begin(), ObjectFilenames.end(), ", "),
|
|
make_error<CoverageMapError>(coveragemap_error::no_data_found));
|
|
return std::move(Coverage);
|
|
}
|
|
|
|
namespace {
|
|
|
|
/// Distributes functions into instantiation sets.
|
|
///
|
|
/// An instantiation set is a collection of functions that have the same source
|
|
/// code, ie, template functions specializations.
|
|
class FunctionInstantiationSetCollector {
|
|
using MapT = std::map<LineColPair, std::vector<const FunctionRecord *>>;
|
|
MapT InstantiatedFunctions;
|
|
|
|
public:
|
|
void insert(const FunctionRecord &Function, unsigned FileID) {
|
|
auto I = Function.CountedRegions.begin(), E = Function.CountedRegions.end();
|
|
while (I != E && I->FileID != FileID)
|
|
++I;
|
|
assert(I != E && "function does not cover the given file");
|
|
auto &Functions = InstantiatedFunctions[I->startLoc()];
|
|
Functions.push_back(&Function);
|
|
}
|
|
|
|
MapT::iterator begin() { return InstantiatedFunctions.begin(); }
|
|
MapT::iterator end() { return InstantiatedFunctions.end(); }
|
|
};
|
|
|
|
class SegmentBuilder {
|
|
std::vector<CoverageSegment> &Segments;
|
|
SmallVector<const CountedRegion *, 8> ActiveRegions;
|
|
|
|
SegmentBuilder(std::vector<CoverageSegment> &Segments) : Segments(Segments) {}
|
|
|
|
/// Emit a segment with the count from \p Region starting at \p StartLoc.
|
|
//
|
|
/// \p IsRegionEntry: The segment is at the start of a new non-gap region.
|
|
/// \p EmitSkippedRegion: The segment must be emitted as a skipped region.
|
|
void startSegment(const CountedRegion &Region, LineColPair StartLoc,
|
|
bool IsRegionEntry, bool EmitSkippedRegion = false) {
|
|
bool HasCount = !EmitSkippedRegion &&
|
|
(Region.Kind != CounterMappingRegion::SkippedRegion);
|
|
|
|
// If the new segment wouldn't affect coverage rendering, skip it.
|
|
if (!Segments.empty() && !IsRegionEntry && !EmitSkippedRegion) {
|
|
const auto &Last = Segments.back();
|
|
if (Last.HasCount == HasCount && Last.Count == Region.ExecutionCount &&
|
|
!Last.IsRegionEntry)
|
|
return;
|
|
}
|
|
|
|
if (HasCount)
|
|
Segments.emplace_back(StartLoc.first, StartLoc.second,
|
|
Region.ExecutionCount, IsRegionEntry,
|
|
Region.Kind == CounterMappingRegion::GapRegion);
|
|
else
|
|
Segments.emplace_back(StartLoc.first, StartLoc.second, IsRegionEntry);
|
|
|
|
LLVM_DEBUG({
|
|
const auto &Last = Segments.back();
|
|
dbgs() << "Segment at " << Last.Line << ":" << Last.Col
|
|
<< " (count = " << Last.Count << ")"
|
|
<< (Last.IsRegionEntry ? ", RegionEntry" : "")
|
|
<< (!Last.HasCount ? ", Skipped" : "")
|
|
<< (Last.IsGapRegion ? ", Gap" : "") << "\n";
|
|
});
|
|
}
|
|
|
|
/// Emit segments for active regions which end before \p Loc.
|
|
///
|
|
/// \p Loc: The start location of the next region. If std::nullopt, all active
|
|
/// regions are completed.
|
|
/// \p FirstCompletedRegion: Index of the first completed region.
|
|
void completeRegionsUntil(std::optional<LineColPair> Loc,
|
|
unsigned FirstCompletedRegion) {
|
|
// Sort the completed regions by end location. This makes it simple to
|
|
// emit closing segments in sorted order.
|
|
auto CompletedRegionsIt = ActiveRegions.begin() + FirstCompletedRegion;
|
|
std::stable_sort(CompletedRegionsIt, ActiveRegions.end(),
|
|
[](const CountedRegion *L, const CountedRegion *R) {
|
|
return L->endLoc() < R->endLoc();
|
|
});
|
|
|
|
// Emit segments for all completed regions.
|
|
for (unsigned I = FirstCompletedRegion + 1, E = ActiveRegions.size(); I < E;
|
|
++I) {
|
|
const auto *CompletedRegion = ActiveRegions[I];
|
|
assert((!Loc || CompletedRegion->endLoc() <= *Loc) &&
|
|
"Completed region ends after start of new region");
|
|
|
|
const auto *PrevCompletedRegion = ActiveRegions[I - 1];
|
|
auto CompletedSegmentLoc = PrevCompletedRegion->endLoc();
|
|
|
|
// Don't emit any more segments if they start where the new region begins.
|
|
if (Loc && CompletedSegmentLoc == *Loc)
|
|
break;
|
|
|
|
// Don't emit a segment if the next completed region ends at the same
|
|
// location as this one.
|
|
if (CompletedSegmentLoc == CompletedRegion->endLoc())
|
|
continue;
|
|
|
|
// Use the count from the last completed region which ends at this loc.
|
|
for (unsigned J = I + 1; J < E; ++J)
|
|
if (CompletedRegion->endLoc() == ActiveRegions[J]->endLoc())
|
|
CompletedRegion = ActiveRegions[J];
|
|
|
|
startSegment(*CompletedRegion, CompletedSegmentLoc, false);
|
|
}
|
|
|
|
auto Last = ActiveRegions.back();
|
|
if (FirstCompletedRegion && Last->endLoc() != *Loc) {
|
|
// If there's a gap after the end of the last completed region and the
|
|
// start of the new region, use the last active region to fill the gap.
|
|
startSegment(*ActiveRegions[FirstCompletedRegion - 1], Last->endLoc(),
|
|
false);
|
|
} else if (!FirstCompletedRegion && (!Loc || *Loc != Last->endLoc())) {
|
|
// Emit a skipped segment if there are no more active regions. This
|
|
// ensures that gaps between functions are marked correctly.
|
|
startSegment(*Last, Last->endLoc(), false, true);
|
|
}
|
|
|
|
// Pop the completed regions.
|
|
ActiveRegions.erase(CompletedRegionsIt, ActiveRegions.end());
|
|
}
|
|
|
|
void buildSegmentsImpl(ArrayRef<CountedRegion> Regions) {
|
|
for (const auto &CR : enumerate(Regions)) {
|
|
auto CurStartLoc = CR.value().startLoc();
|
|
|
|
// Active regions which end before the current region need to be popped.
|
|
auto CompletedRegions =
|
|
std::stable_partition(ActiveRegions.begin(), ActiveRegions.end(),
|
|
[&](const CountedRegion *Region) {
|
|
return !(Region->endLoc() <= CurStartLoc);
|
|
});
|
|
if (CompletedRegions != ActiveRegions.end()) {
|
|
unsigned FirstCompletedRegion =
|
|
std::distance(ActiveRegions.begin(), CompletedRegions);
|
|
completeRegionsUntil(CurStartLoc, FirstCompletedRegion);
|
|
}
|
|
|
|
bool GapRegion = CR.value().Kind == CounterMappingRegion::GapRegion;
|
|
|
|
// Try to emit a segment for the current region.
|
|
if (CurStartLoc == CR.value().endLoc()) {
|
|
// Avoid making zero-length regions active. If it's the last region,
|
|
// emit a skipped segment. Otherwise use its predecessor's count.
|
|
const bool Skipped =
|
|
(CR.index() + 1) == Regions.size() ||
|
|
CR.value().Kind == CounterMappingRegion::SkippedRegion;
|
|
startSegment(ActiveRegions.empty() ? CR.value() : *ActiveRegions.back(),
|
|
CurStartLoc, !GapRegion, Skipped);
|
|
// If it is skipped segment, create a segment with last pushed
|
|
// regions's count at CurStartLoc.
|
|
if (Skipped && !ActiveRegions.empty())
|
|
startSegment(*ActiveRegions.back(), CurStartLoc, false);
|
|
continue;
|
|
}
|
|
if (CR.index() + 1 == Regions.size() ||
|
|
CurStartLoc != Regions[CR.index() + 1].startLoc()) {
|
|
// Emit a segment if the next region doesn't start at the same location
|
|
// as this one.
|
|
startSegment(CR.value(), CurStartLoc, !GapRegion);
|
|
}
|
|
|
|
// This region is active (i.e not completed).
|
|
ActiveRegions.push_back(&CR.value());
|
|
}
|
|
|
|
// Complete any remaining active regions.
|
|
if (!ActiveRegions.empty())
|
|
completeRegionsUntil(std::nullopt, 0);
|
|
}
|
|
|
|
/// Sort a nested sequence of regions from a single file.
|
|
static void sortNestedRegions(MutableArrayRef<CountedRegion> Regions) {
|
|
llvm::sort(Regions, [](const CountedRegion &LHS, const CountedRegion &RHS) {
|
|
if (LHS.startLoc() != RHS.startLoc())
|
|
return LHS.startLoc() < RHS.startLoc();
|
|
if (LHS.endLoc() != RHS.endLoc())
|
|
// When LHS completely contains RHS, we sort LHS first.
|
|
return RHS.endLoc() < LHS.endLoc();
|
|
// If LHS and RHS cover the same area, we need to sort them according
|
|
// to their kinds so that the most suitable region will become "active"
|
|
// in combineRegions(). Because we accumulate counter values only from
|
|
// regions of the same kind as the first region of the area, prefer
|
|
// CodeRegion to ExpansionRegion and ExpansionRegion to SkippedRegion.
|
|
static_assert(CounterMappingRegion::CodeRegion <
|
|
CounterMappingRegion::ExpansionRegion &&
|
|
CounterMappingRegion::ExpansionRegion <
|
|
CounterMappingRegion::SkippedRegion,
|
|
"Unexpected order of region kind values");
|
|
return LHS.Kind < RHS.Kind;
|
|
});
|
|
}
|
|
|
|
/// Combine counts of regions which cover the same area.
|
|
static ArrayRef<CountedRegion>
|
|
combineRegions(MutableArrayRef<CountedRegion> Regions) {
|
|
if (Regions.empty())
|
|
return Regions;
|
|
auto Active = Regions.begin();
|
|
auto End = Regions.end();
|
|
for (auto I = Regions.begin() + 1; I != End; ++I) {
|
|
if (Active->startLoc() != I->startLoc() ||
|
|
Active->endLoc() != I->endLoc()) {
|
|
// Shift to the next region.
|
|
++Active;
|
|
if (Active != I)
|
|
*Active = *I;
|
|
continue;
|
|
}
|
|
// Merge duplicate region.
|
|
// If CodeRegions and ExpansionRegions cover the same area, it's probably
|
|
// a macro which is fully expanded to another macro. In that case, we need
|
|
// to accumulate counts only from CodeRegions, or else the area will be
|
|
// counted twice.
|
|
// On the other hand, a macro may have a nested macro in its body. If the
|
|
// outer macro is used several times, the ExpansionRegion for the nested
|
|
// macro will also be added several times. These ExpansionRegions cover
|
|
// the same source locations and have to be combined to reach the correct
|
|
// value for that area.
|
|
// We add counts of the regions of the same kind as the active region
|
|
// to handle the both situations.
|
|
if (I->Kind == Active->Kind)
|
|
Active->ExecutionCount += I->ExecutionCount;
|
|
}
|
|
return Regions.drop_back(std::distance(++Active, End));
|
|
}
|
|
|
|
public:
|
|
/// Build a sorted list of CoverageSegments from a list of Regions.
|
|
static std::vector<CoverageSegment>
|
|
buildSegments(MutableArrayRef<CountedRegion> Regions) {
|
|
std::vector<CoverageSegment> Segments;
|
|
SegmentBuilder Builder(Segments);
|
|
|
|
sortNestedRegions(Regions);
|
|
ArrayRef<CountedRegion> CombinedRegions = combineRegions(Regions);
|
|
|
|
LLVM_DEBUG({
|
|
dbgs() << "Combined regions:\n";
|
|
for (const auto &CR : CombinedRegions)
|
|
dbgs() << " " << CR.LineStart << ":" << CR.ColumnStart << " -> "
|
|
<< CR.LineEnd << ":" << CR.ColumnEnd
|
|
<< " (count=" << CR.ExecutionCount << ")\n";
|
|
});
|
|
|
|
Builder.buildSegmentsImpl(CombinedRegions);
|
|
|
|
#ifndef NDEBUG
|
|
for (unsigned I = 1, E = Segments.size(); I < E; ++I) {
|
|
const auto &L = Segments[I - 1];
|
|
const auto &R = Segments[I];
|
|
if (!(L.Line < R.Line) && !(L.Line == R.Line && L.Col < R.Col)) {
|
|
if (L.Line == R.Line && L.Col == R.Col && !L.HasCount)
|
|
continue;
|
|
LLVM_DEBUG(dbgs() << " ! Segment " << L.Line << ":" << L.Col
|
|
<< " followed by " << R.Line << ":" << R.Col << "\n");
|
|
assert(false && "Coverage segments not unique or sorted");
|
|
}
|
|
}
|
|
#endif
|
|
|
|
return Segments;
|
|
}
|
|
};
|
|
|
|
struct MergeableCoverageData : public CoverageData {
|
|
std::vector<CountedRegion> CodeRegions;
|
|
|
|
MergeableCoverageData(bool Single, StringRef Filename)
|
|
: CoverageData(Single, Filename) {}
|
|
|
|
void addFunctionRegions(
|
|
const FunctionRecord &Function,
|
|
std::function<bool(const CounterMappingRegion &CR)> shouldProcess,
|
|
std::function<bool(const CountedRegion &CR)> shouldExpand) {
|
|
for (const auto &CR : Function.CountedRegions)
|
|
if (shouldProcess(CR)) {
|
|
CodeRegions.push_back(CR);
|
|
if (shouldExpand(CR))
|
|
Expansions.emplace_back(CR, Function);
|
|
}
|
|
// Capture branch regions specific to the function (excluding expansions).
|
|
for (const auto &CR : Function.CountedBranchRegions)
|
|
if (shouldProcess(CR))
|
|
BranchRegions.push_back(CR);
|
|
// Capture MCDC records specific to the function.
|
|
for (const auto &MR : Function.MCDCRecords)
|
|
if (shouldProcess(MR.getDecisionRegion()))
|
|
MCDCRecords.push_back(MR);
|
|
}
|
|
|
|
CoverageData buildSegments() {
|
|
Segments = SegmentBuilder::buildSegments(CodeRegions);
|
|
return CoverageData(std::move(*this));
|
|
}
|
|
};
|
|
} // end anonymous namespace
|
|
|
|
std::vector<StringRef> CoverageMapping::getUniqueSourceFiles() const {
|
|
std::vector<StringRef> Filenames;
|
|
for (const auto &Function : getCoveredFunctions())
|
|
llvm::append_range(Filenames, Function.Filenames);
|
|
llvm::sort(Filenames);
|
|
auto Last = llvm::unique(Filenames);
|
|
Filenames.erase(Last, Filenames.end());
|
|
return Filenames;
|
|
}
|
|
|
|
static SmallBitVector gatherFileIDs(StringRef SourceFile,
|
|
const FunctionRecord &Function) {
|
|
SmallBitVector FilenameEquivalence(Function.Filenames.size(), false);
|
|
for (unsigned I = 0, E = Function.Filenames.size(); I < E; ++I)
|
|
if (SourceFile == Function.Filenames[I])
|
|
FilenameEquivalence[I] = true;
|
|
return FilenameEquivalence;
|
|
}
|
|
|
|
/// Return the ID of the file where the definition of the function is located.
|
|
static std::optional<unsigned>
|
|
findMainViewFileID(const FunctionRecord &Function) {
|
|
if (Function.CountedRegions.empty())
|
|
return std::nullopt;
|
|
SmallBitVector IsNotExpandedFile(Function.Filenames.size(), true);
|
|
for (const auto &CR : Function.CountedRegions)
|
|
if (CR.Kind == CounterMappingRegion::ExpansionRegion)
|
|
IsNotExpandedFile[CR.ExpandedFileID] = false;
|
|
int I = IsNotExpandedFile.find_first();
|
|
if (I == -1)
|
|
return std::nullopt;
|
|
return I;
|
|
}
|
|
|
|
/// Check if SourceFile is the file that contains the definition of
|
|
/// the Function. Return the ID of the file in that case or std::nullopt
|
|
/// otherwise.
|
|
static std::optional<unsigned>
|
|
findMainViewFileID(StringRef SourceFile, const FunctionRecord &Function) {
|
|
std::optional<unsigned> I = findMainViewFileID(Function);
|
|
if (I && SourceFile == Function.Filenames[*I])
|
|
return I;
|
|
return std::nullopt;
|
|
}
|
|
|
|
static bool isExpansion(const CountedRegion &R, unsigned FileID) {
|
|
return R.Kind == CounterMappingRegion::ExpansionRegion && R.FileID == FileID;
|
|
}
|
|
|
|
CoverageData CoverageMapping::getCoverageForFile(StringRef Filename) const {
|
|
assert(SingleByteCoverage);
|
|
MergeableCoverageData FileCoverage(*SingleByteCoverage, Filename);
|
|
|
|
// Look up the function records in the given file. Due to hash collisions on
|
|
// the filename, we may get back some records that are not in the file.
|
|
ArrayRef<unsigned> RecordIndices =
|
|
getImpreciseRecordIndicesForFilename(Filename);
|
|
for (unsigned RecordIndex : RecordIndices) {
|
|
const FunctionRecord &Function = Functions[RecordIndex];
|
|
auto MainFileID = findMainViewFileID(Filename, Function);
|
|
auto FileIDs = gatherFileIDs(Filename, Function);
|
|
FileCoverage.addFunctionRegions(
|
|
Function, [&](auto &CR) { return FileIDs.test(CR.FileID); },
|
|
[&](auto &CR) { return (MainFileID && isExpansion(CR, *MainFileID)); });
|
|
}
|
|
|
|
LLVM_DEBUG(dbgs() << "Emitting segments for file: " << Filename << "\n");
|
|
|
|
return FileCoverage.buildSegments();
|
|
}
|
|
|
|
std::vector<InstantiationGroup>
|
|
CoverageMapping::getInstantiationGroups(StringRef Filename) const {
|
|
FunctionInstantiationSetCollector InstantiationSetCollector;
|
|
// Look up the function records in the given file. Due to hash collisions on
|
|
// the filename, we may get back some records that are not in the file.
|
|
ArrayRef<unsigned> RecordIndices =
|
|
getImpreciseRecordIndicesForFilename(Filename);
|
|
for (unsigned RecordIndex : RecordIndices) {
|
|
const FunctionRecord &Function = Functions[RecordIndex];
|
|
auto MainFileID = findMainViewFileID(Filename, Function);
|
|
if (!MainFileID)
|
|
continue;
|
|
InstantiationSetCollector.insert(Function, *MainFileID);
|
|
}
|
|
|
|
std::vector<InstantiationGroup> Result;
|
|
for (auto &InstantiationSet : InstantiationSetCollector) {
|
|
InstantiationGroup IG{InstantiationSet.first.first,
|
|
InstantiationSet.first.second,
|
|
std::move(InstantiationSet.second)};
|
|
Result.emplace_back(std::move(IG));
|
|
}
|
|
return Result;
|
|
}
|
|
|
|
CoverageData
|
|
CoverageMapping::getCoverageForFunction(const FunctionRecord &Function) const {
|
|
auto MainFileID = findMainViewFileID(Function);
|
|
if (!MainFileID)
|
|
return CoverageData();
|
|
|
|
assert(SingleByteCoverage);
|
|
MergeableCoverageData FunctionCoverage(*SingleByteCoverage,
|
|
Function.Filenames[*MainFileID]);
|
|
FunctionCoverage.addFunctionRegions(
|
|
Function, [&](auto &CR) { return (CR.FileID == *MainFileID); },
|
|
[&](auto &CR) { return isExpansion(CR, *MainFileID); });
|
|
|
|
LLVM_DEBUG(dbgs() << "Emitting segments for function: " << Function.Name
|
|
<< "\n");
|
|
|
|
return FunctionCoverage.buildSegments();
|
|
}
|
|
|
|
CoverageData CoverageMapping::getCoverageForExpansion(
|
|
const ExpansionRecord &Expansion) const {
|
|
assert(SingleByteCoverage);
|
|
CoverageData ExpansionCoverage(
|
|
*SingleByteCoverage, Expansion.Function.Filenames[Expansion.FileID]);
|
|
std::vector<CountedRegion> Regions;
|
|
for (const auto &CR : Expansion.Function.CountedRegions)
|
|
if (CR.FileID == Expansion.FileID) {
|
|
Regions.push_back(CR);
|
|
if (isExpansion(CR, Expansion.FileID))
|
|
ExpansionCoverage.Expansions.emplace_back(CR, Expansion.Function);
|
|
}
|
|
for (const auto &CR : Expansion.Function.CountedBranchRegions)
|
|
// Capture branch regions that only pertain to the corresponding expansion.
|
|
if (CR.FileID == Expansion.FileID)
|
|
ExpansionCoverage.BranchRegions.push_back(CR);
|
|
|
|
LLVM_DEBUG(dbgs() << "Emitting segments for expansion of file "
|
|
<< Expansion.FileID << "\n");
|
|
ExpansionCoverage.Segments = SegmentBuilder::buildSegments(Regions);
|
|
|
|
return ExpansionCoverage;
|
|
}
|
|
|
|
LineCoverageStats::LineCoverageStats(
|
|
ArrayRef<const CoverageSegment *> LineSegments,
|
|
const CoverageSegment *WrappedSegment, unsigned Line)
|
|
: ExecutionCount(0), HasMultipleRegions(false), Mapped(false), Line(Line),
|
|
LineSegments(LineSegments), WrappedSegment(WrappedSegment) {
|
|
// Find the minimum number of regions which start in this line.
|
|
unsigned MinRegionCount = 0;
|
|
auto isStartOfRegion = [](const CoverageSegment *S) {
|
|
return !S->IsGapRegion && S->HasCount && S->IsRegionEntry;
|
|
};
|
|
for (unsigned I = 0; I < LineSegments.size() && MinRegionCount < 2; ++I)
|
|
if (isStartOfRegion(LineSegments[I]))
|
|
++MinRegionCount;
|
|
|
|
bool StartOfSkippedRegion = !LineSegments.empty() &&
|
|
!LineSegments.front()->HasCount &&
|
|
LineSegments.front()->IsRegionEntry;
|
|
|
|
HasMultipleRegions = MinRegionCount > 1;
|
|
Mapped =
|
|
!StartOfSkippedRegion &&
|
|
((WrappedSegment && WrappedSegment->HasCount) || (MinRegionCount > 0));
|
|
|
|
// if there is any starting segment at this line with a counter, it must be
|
|
// mapped
|
|
Mapped |= any_of(LineSegments, [](const auto *Seq) {
|
|
return Seq->IsRegionEntry && Seq->HasCount;
|
|
});
|
|
|
|
if (!Mapped) {
|
|
return;
|
|
}
|
|
|
|
// Pick the max count from the non-gap, region entry segments and the
|
|
// wrapped count.
|
|
if (WrappedSegment)
|
|
ExecutionCount = WrappedSegment->Count;
|
|
if (!MinRegionCount)
|
|
return;
|
|
for (const auto *LS : LineSegments)
|
|
if (isStartOfRegion(LS))
|
|
ExecutionCount = std::max(ExecutionCount, LS->Count);
|
|
}
|
|
|
|
LineCoverageIterator &LineCoverageIterator::operator++() {
|
|
if (Next == CD.end()) {
|
|
Stats = LineCoverageStats();
|
|
Ended = true;
|
|
return *this;
|
|
}
|
|
if (Segments.size())
|
|
WrappedSegment = Segments.back();
|
|
Segments.clear();
|
|
while (Next != CD.end() && Next->Line == Line)
|
|
Segments.push_back(&*Next++);
|
|
Stats = LineCoverageStats(Segments, WrappedSegment, Line);
|
|
++Line;
|
|
return *this;
|
|
}
|
|
|
|
static std::string getCoverageMapErrString(coveragemap_error Err,
|
|
const std::string &ErrMsg = "") {
|
|
std::string Msg;
|
|
raw_string_ostream OS(Msg);
|
|
|
|
switch (Err) {
|
|
case coveragemap_error::success:
|
|
OS << "success";
|
|
break;
|
|
case coveragemap_error::eof:
|
|
OS << "end of File";
|
|
break;
|
|
case coveragemap_error::no_data_found:
|
|
OS << "no coverage data found";
|
|
break;
|
|
case coveragemap_error::unsupported_version:
|
|
OS << "unsupported coverage format version";
|
|
break;
|
|
case coveragemap_error::truncated:
|
|
OS << "truncated coverage data";
|
|
break;
|
|
case coveragemap_error::malformed:
|
|
OS << "malformed coverage data";
|
|
break;
|
|
case coveragemap_error::decompression_failed:
|
|
OS << "failed to decompress coverage data (zlib)";
|
|
break;
|
|
case coveragemap_error::invalid_or_missing_arch_specifier:
|
|
OS << "`-arch` specifier is invalid or missing for universal binary";
|
|
break;
|
|
}
|
|
|
|
// If optional error message is not empty, append it to the message.
|
|
if (!ErrMsg.empty())
|
|
OS << ": " << ErrMsg;
|
|
|
|
return Msg;
|
|
}
|
|
|
|
namespace {
|
|
|
|
// FIXME: This class is only here to support the transition to llvm::Error. It
|
|
// will be removed once this transition is complete. Clients should prefer to
|
|
// deal with the Error value directly, rather than converting to error_code.
|
|
class CoverageMappingErrorCategoryType : public std::error_category {
|
|
const char *name() const noexcept override { return "llvm.coveragemap"; }
|
|
std::string message(int IE) const override {
|
|
return getCoverageMapErrString(static_cast<coveragemap_error>(IE));
|
|
}
|
|
};
|
|
|
|
} // end anonymous namespace
|
|
|
|
std::string CoverageMapError::message() const {
|
|
return getCoverageMapErrString(Err, Msg);
|
|
}
|
|
|
|
const std::error_category &llvm::coverage::coveragemap_category() {
|
|
static CoverageMappingErrorCategoryType ErrorCategory;
|
|
return ErrorCategory;
|
|
}
|
|
|
|
char CoverageMapError::ID = 0;
|