1e78d131aSEugene Zelenko //===- CoverageMappingWriter.cpp - Code coverage mapping writer -----------===//
2dc707122SEaswaran Raman //
3*2946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*2946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information.
5*2946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6dc707122SEaswaran Raman //
7dc707122SEaswaran Raman //===----------------------------------------------------------------------===//
8dc707122SEaswaran Raman //
9dc707122SEaswaran Raman // This file contains support for writing coverage mapping data for
10dc707122SEaswaran Raman // instrumentation based coverage.
11dc707122SEaswaran Raman //
12dc707122SEaswaran Raman //===----------------------------------------------------------------------===//
13dc707122SEaswaran Raman 
146bda14b3SChandler Carruth #include "llvm/ProfileData/Coverage/CoverageMappingWriter.h"
15e78d131aSEugene Zelenko #include "llvm/ADT/ArrayRef.h"
16e78d131aSEugene Zelenko #include "llvm/ADT/SmallVector.h"
17dc707122SEaswaran Raman #include "llvm/Support/LEB128.h"
18e78d131aSEugene Zelenko #include "llvm/Support/raw_ostream.h"
19e78d131aSEugene Zelenko #include <algorithm>
20e78d131aSEugene Zelenko #include <cassert>
21e78d131aSEugene Zelenko #include <limits>
22e78d131aSEugene Zelenko #include <vector>
23dc707122SEaswaran Raman 
24dc707122SEaswaran Raman using namespace llvm;
25dc707122SEaswaran Raman using namespace coverage;
26dc707122SEaswaran Raman 
2734e4e477SVedant Kumar void CoverageFilenamesSectionWriter::write(raw_ostream &OS) {
2834e4e477SVedant Kumar   encodeULEB128(Filenames.size(), OS);
2934e4e477SVedant Kumar   for (const auto &Filename : Filenames) {
3034e4e477SVedant Kumar     encodeULEB128(Filename.size(), OS);
3134e4e477SVedant Kumar     OS << Filename;
3234e4e477SVedant Kumar   }
3334e4e477SVedant Kumar }
3434e4e477SVedant Kumar 
35dc707122SEaswaran Raman namespace {
36e78d131aSEugene Zelenko 
375f8f34e4SAdrian Prantl /// Gather only the expressions that are used by the mapping
38dc707122SEaswaran Raman /// regions in this function.
39dc707122SEaswaran Raman class CounterExpressionsMinimizer {
40dc707122SEaswaran Raman   ArrayRef<CounterExpression> Expressions;
41e78d131aSEugene Zelenko   SmallVector<CounterExpression, 16> UsedExpressions;
42dc707122SEaswaran Raman   std::vector<unsigned> AdjustedExpressionIDs;
43dc707122SEaswaran Raman 
44dc707122SEaswaran Raman public:
45e78d131aSEugene Zelenko   CounterExpressionsMinimizer(ArrayRef<CounterExpression> Expressions,
46e78d131aSEugene Zelenko                               ArrayRef<CounterMappingRegion> MappingRegions)
47e78d131aSEugene Zelenko       : Expressions(Expressions) {
48e78d131aSEugene Zelenko     AdjustedExpressionIDs.resize(Expressions.size(), 0);
49e78d131aSEugene Zelenko     for (const auto &I : MappingRegions)
50e78d131aSEugene Zelenko       mark(I.Count);
51e78d131aSEugene Zelenko     for (const auto &I : MappingRegions)
52e78d131aSEugene Zelenko       gatherUsed(I.Count);
53e78d131aSEugene Zelenko   }
54e78d131aSEugene Zelenko 
55dc707122SEaswaran Raman   void mark(Counter C) {
56dc707122SEaswaran Raman     if (!C.isExpression())
57dc707122SEaswaran Raman       return;
58dc707122SEaswaran Raman     unsigned ID = C.getExpressionID();
59dc707122SEaswaran Raman     AdjustedExpressionIDs[ID] = 1;
60dc707122SEaswaran Raman     mark(Expressions[ID].LHS);
61dc707122SEaswaran Raman     mark(Expressions[ID].RHS);
62dc707122SEaswaran Raman   }
63dc707122SEaswaran Raman 
64dc707122SEaswaran Raman   void gatherUsed(Counter C) {
65dc707122SEaswaran Raman     if (!C.isExpression() || !AdjustedExpressionIDs[C.getExpressionID()])
66dc707122SEaswaran Raman       return;
67dc707122SEaswaran Raman     AdjustedExpressionIDs[C.getExpressionID()] = UsedExpressions.size();
68dc707122SEaswaran Raman     const auto &E = Expressions[C.getExpressionID()];
69dc707122SEaswaran Raman     UsedExpressions.push_back(E);
70dc707122SEaswaran Raman     gatherUsed(E.LHS);
71dc707122SEaswaran Raman     gatherUsed(E.RHS);
72dc707122SEaswaran Raman   }
73dc707122SEaswaran Raman 
74dc707122SEaswaran Raman   ArrayRef<CounterExpression> getExpressions() const { return UsedExpressions; }
75dc707122SEaswaran Raman 
765f8f34e4SAdrian Prantl   /// Adjust the given counter to correctly transition from the old
77dc707122SEaswaran Raman   /// expression ids to the new expression ids.
78dc707122SEaswaran Raman   Counter adjust(Counter C) const {
79dc707122SEaswaran Raman     if (C.isExpression())
80dc707122SEaswaran Raman       C = Counter::getExpression(AdjustedExpressionIDs[C.getExpressionID()]);
81dc707122SEaswaran Raman     return C;
82dc707122SEaswaran Raman   }
83dc707122SEaswaran Raman };
84e78d131aSEugene Zelenko 
85e78d131aSEugene Zelenko } // end anonymous namespace
86dc707122SEaswaran Raman 
875f8f34e4SAdrian Prantl /// Encode the counter.
88dc707122SEaswaran Raman ///
89dc707122SEaswaran Raman /// The encoding uses the following format:
90dc707122SEaswaran Raman /// Low 2 bits - Tag:
91dc707122SEaswaran Raman ///   Counter::Zero(0) - A Counter with kind Counter::Zero
92dc707122SEaswaran Raman ///   Counter::CounterValueReference(1) - A counter with kind
93dc707122SEaswaran Raman ///     Counter::CounterValueReference
94dc707122SEaswaran Raman ///   Counter::Expression(2) + CounterExpression::Subtract(0) -
95dc707122SEaswaran Raman ///     A counter with kind Counter::Expression and an expression
96dc707122SEaswaran Raman ///     with kind CounterExpression::Subtract
97dc707122SEaswaran Raman ///   Counter::Expression(2) + CounterExpression::Add(1) -
98dc707122SEaswaran Raman ///     A counter with kind Counter::Expression and an expression
99dc707122SEaswaran Raman ///     with kind CounterExpression::Add
100dc707122SEaswaran Raman /// Remaining bits - Counter/Expression ID.
101dc707122SEaswaran Raman static unsigned encodeCounter(ArrayRef<CounterExpression> Expressions,
102dc707122SEaswaran Raman                               Counter C) {
103dc707122SEaswaran Raman   unsigned Tag = unsigned(C.getKind());
104dc707122SEaswaran Raman   if (C.isExpression())
105dc707122SEaswaran Raman     Tag += Expressions[C.getExpressionID()].Kind;
106dc707122SEaswaran Raman   unsigned ID = C.getCounterID();
107dc707122SEaswaran Raman   assert(ID <=
108dc707122SEaswaran Raman          (std::numeric_limits<unsigned>::max() >> Counter::EncodingTagBits));
109dc707122SEaswaran Raman   return Tag | (ID << Counter::EncodingTagBits);
110dc707122SEaswaran Raman }
111dc707122SEaswaran Raman 
112dc707122SEaswaran Raman static void writeCounter(ArrayRef<CounterExpression> Expressions, Counter C,
113dc707122SEaswaran Raman                          raw_ostream &OS) {
114dc707122SEaswaran Raman   encodeULEB128(encodeCounter(Expressions, C), OS);
115dc707122SEaswaran Raman }
116dc707122SEaswaran Raman 
117dc707122SEaswaran Raman void CoverageMappingWriter::write(raw_ostream &OS) {
118bae83970SVedant Kumar   // Check that we don't have any bogus regions.
119bae83970SVedant Kumar   assert(all_of(MappingRegions,
120bae83970SVedant Kumar                 [](const CounterMappingRegion &CMR) {
121bae83970SVedant Kumar                   return CMR.startLoc() <= CMR.endLoc();
122bae83970SVedant Kumar                 }) &&
123bae83970SVedant Kumar          "Source region does not begin before it ends");
124bae83970SVedant Kumar 
125dc707122SEaswaran Raman   // Sort the regions in an ascending order by the file id and the starting
126f3c8a9cfSIgor Kudrin   // location. Sort by region kinds to ensure stable order for tests.
127f3c8a9cfSIgor Kudrin   std::stable_sort(
128f3c8a9cfSIgor Kudrin       MappingRegions.begin(), MappingRegions.end(),
129f3c8a9cfSIgor Kudrin       [](const CounterMappingRegion &LHS, const CounterMappingRegion &RHS) {
130f3c8a9cfSIgor Kudrin         if (LHS.FileID != RHS.FileID)
131f3c8a9cfSIgor Kudrin           return LHS.FileID < RHS.FileID;
132f3c8a9cfSIgor Kudrin         if (LHS.startLoc() != RHS.startLoc())
133f3c8a9cfSIgor Kudrin           return LHS.startLoc() < RHS.startLoc();
134f3c8a9cfSIgor Kudrin         return LHS.Kind < RHS.Kind;
135f3c8a9cfSIgor Kudrin       });
136dc707122SEaswaran Raman 
137dc707122SEaswaran Raman   // Write out the fileid -> filename mapping.
138dc707122SEaswaran Raman   encodeULEB128(VirtualFileMapping.size(), OS);
139dc707122SEaswaran Raman   for (const auto &FileID : VirtualFileMapping)
140dc707122SEaswaran Raman     encodeULEB128(FileID, OS);
141dc707122SEaswaran Raman 
142dc707122SEaswaran Raman   // Write out the expressions.
143dc707122SEaswaran Raman   CounterExpressionsMinimizer Minimizer(Expressions, MappingRegions);
144dc707122SEaswaran Raman   auto MinExpressions = Minimizer.getExpressions();
145dc707122SEaswaran Raman   encodeULEB128(MinExpressions.size(), OS);
146dc707122SEaswaran Raman   for (const auto &E : MinExpressions) {
147dc707122SEaswaran Raman     writeCounter(MinExpressions, Minimizer.adjust(E.LHS), OS);
148dc707122SEaswaran Raman     writeCounter(MinExpressions, Minimizer.adjust(E.RHS), OS);
149dc707122SEaswaran Raman   }
150dc707122SEaswaran Raman 
151dc707122SEaswaran Raman   // Write out the mapping regions.
152dc707122SEaswaran Raman   // Split the regions into subarrays where each region in a
153dc707122SEaswaran Raman   // subarray has a fileID which is the index of that subarray.
154dc707122SEaswaran Raman   unsigned PrevLineStart = 0;
155dc707122SEaswaran Raman   unsigned CurrentFileID = ~0U;
156dc707122SEaswaran Raman   for (auto I = MappingRegions.begin(), E = MappingRegions.end(); I != E; ++I) {
157dc707122SEaswaran Raman     if (I->FileID != CurrentFileID) {
158dc707122SEaswaran Raman       // Ensure that all file ids have at least one mapping region.
159dc707122SEaswaran Raman       assert(I->FileID == (CurrentFileID + 1));
160dc707122SEaswaran Raman       // Find the number of regions with this file id.
161dc707122SEaswaran Raman       unsigned RegionCount = 1;
162dc707122SEaswaran Raman       for (auto J = I + 1; J != E && I->FileID == J->FileID; ++J)
163dc707122SEaswaran Raman         ++RegionCount;
164dc707122SEaswaran Raman       // Start a new region sub-array.
165dc707122SEaswaran Raman       encodeULEB128(RegionCount, OS);
166dc707122SEaswaran Raman 
167dc707122SEaswaran Raman       CurrentFileID = I->FileID;
168dc707122SEaswaran Raman       PrevLineStart = 0;
169dc707122SEaswaran Raman     }
170dc707122SEaswaran Raman     Counter Count = Minimizer.adjust(I->Count);
171dc707122SEaswaran Raman     switch (I->Kind) {
172dc707122SEaswaran Raman     case CounterMappingRegion::CodeRegion:
173ad8f637bSVedant Kumar     case CounterMappingRegion::GapRegion:
174dc707122SEaswaran Raman       writeCounter(MinExpressions, Count, OS);
175dc707122SEaswaran Raman       break;
176dc707122SEaswaran Raman     case CounterMappingRegion::ExpansionRegion: {
177dc707122SEaswaran Raman       assert(Count.isZero());
178dc707122SEaswaran Raman       assert(I->ExpandedFileID <=
179dc707122SEaswaran Raman              (std::numeric_limits<unsigned>::max() >>
180dc707122SEaswaran Raman               Counter::EncodingCounterTagAndExpansionRegionTagBits));
181dc707122SEaswaran Raman       // Mark an expansion region with a set bit that follows the counter tag,
182dc707122SEaswaran Raman       // and pack the expanded file id into the remaining bits.
183dc707122SEaswaran Raman       unsigned EncodedTagExpandedFileID =
184dc707122SEaswaran Raman           (1 << Counter::EncodingTagBits) |
185dc707122SEaswaran Raman           (I->ExpandedFileID
186dc707122SEaswaran Raman            << Counter::EncodingCounterTagAndExpansionRegionTagBits);
187dc707122SEaswaran Raman       encodeULEB128(EncodedTagExpandedFileID, OS);
188dc707122SEaswaran Raman       break;
189dc707122SEaswaran Raman     }
190dc707122SEaswaran Raman     case CounterMappingRegion::SkippedRegion:
191dc707122SEaswaran Raman       assert(Count.isZero());
192dc707122SEaswaran Raman       encodeULEB128(unsigned(I->Kind)
193dc707122SEaswaran Raman                         << Counter::EncodingCounterTagAndExpansionRegionTagBits,
194dc707122SEaswaran Raman                     OS);
195dc707122SEaswaran Raman       break;
196dc707122SEaswaran Raman     }
197dc707122SEaswaran Raman     assert(I->LineStart >= PrevLineStart);
198dc707122SEaswaran Raman     encodeULEB128(I->LineStart - PrevLineStart, OS);
199dc707122SEaswaran Raman     encodeULEB128(I->ColumnStart, OS);
200dc707122SEaswaran Raman     assert(I->LineEnd >= I->LineStart);
201dc707122SEaswaran Raman     encodeULEB128(I->LineEnd - I->LineStart, OS);
202dc707122SEaswaran Raman     encodeULEB128(I->ColumnEnd, OS);
203dc707122SEaswaran Raman     PrevLineStart = I->LineStart;
204dc707122SEaswaran Raman   }
205dc707122SEaswaran Raman   // Ensure that all file ids have at least one mapping region.
206dc707122SEaswaran Raman   assert(CurrentFileID == (VirtualFileMapping.size() - 1));
207dc707122SEaswaran Raman }
208