1e78d131aSEugene Zelenko //===- CoverageMappingWriter.cpp - Code coverage mapping writer -----------===//
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 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.
127*efd94c56SFangrui Song   llvm::stable_sort(MappingRegions, [](const CounterMappingRegion &LHS,
128*efd94c56SFangrui Song                                        const CounterMappingRegion &RHS) {
129f3c8a9cfSIgor Kudrin     if (LHS.FileID != RHS.FileID)
130f3c8a9cfSIgor Kudrin       return LHS.FileID < RHS.FileID;
131f3c8a9cfSIgor Kudrin     if (LHS.startLoc() != RHS.startLoc())
132f3c8a9cfSIgor Kudrin       return LHS.startLoc() < RHS.startLoc();
133f3c8a9cfSIgor Kudrin     return LHS.Kind < RHS.Kind;
134f3c8a9cfSIgor Kudrin   });
135dc707122SEaswaran Raman 
136dc707122SEaswaran Raman   // Write out the fileid -> filename mapping.
137dc707122SEaswaran Raman   encodeULEB128(VirtualFileMapping.size(), OS);
138dc707122SEaswaran Raman   for (const auto &FileID : VirtualFileMapping)
139dc707122SEaswaran Raman     encodeULEB128(FileID, OS);
140dc707122SEaswaran Raman 
141dc707122SEaswaran Raman   // Write out the expressions.
142dc707122SEaswaran Raman   CounterExpressionsMinimizer Minimizer(Expressions, MappingRegions);
143dc707122SEaswaran Raman   auto MinExpressions = Minimizer.getExpressions();
144dc707122SEaswaran Raman   encodeULEB128(MinExpressions.size(), OS);
145dc707122SEaswaran Raman   for (const auto &E : MinExpressions) {
146dc707122SEaswaran Raman     writeCounter(MinExpressions, Minimizer.adjust(E.LHS), OS);
147dc707122SEaswaran Raman     writeCounter(MinExpressions, Minimizer.adjust(E.RHS), OS);
148dc707122SEaswaran Raman   }
149dc707122SEaswaran Raman 
150dc707122SEaswaran Raman   // Write out the mapping regions.
151dc707122SEaswaran Raman   // Split the regions into subarrays where each region in a
152dc707122SEaswaran Raman   // subarray has a fileID which is the index of that subarray.
153dc707122SEaswaran Raman   unsigned PrevLineStart = 0;
154dc707122SEaswaran Raman   unsigned CurrentFileID = ~0U;
155dc707122SEaswaran Raman   for (auto I = MappingRegions.begin(), E = MappingRegions.end(); I != E; ++I) {
156dc707122SEaswaran Raman     if (I->FileID != CurrentFileID) {
157dc707122SEaswaran Raman       // Ensure that all file ids have at least one mapping region.
158dc707122SEaswaran Raman       assert(I->FileID == (CurrentFileID + 1));
159dc707122SEaswaran Raman       // Find the number of regions with this file id.
160dc707122SEaswaran Raman       unsigned RegionCount = 1;
161dc707122SEaswaran Raman       for (auto J = I + 1; J != E && I->FileID == J->FileID; ++J)
162dc707122SEaswaran Raman         ++RegionCount;
163dc707122SEaswaran Raman       // Start a new region sub-array.
164dc707122SEaswaran Raman       encodeULEB128(RegionCount, OS);
165dc707122SEaswaran Raman 
166dc707122SEaswaran Raman       CurrentFileID = I->FileID;
167dc707122SEaswaran Raman       PrevLineStart = 0;
168dc707122SEaswaran Raman     }
169dc707122SEaswaran Raman     Counter Count = Minimizer.adjust(I->Count);
170dc707122SEaswaran Raman     switch (I->Kind) {
171dc707122SEaswaran Raman     case CounterMappingRegion::CodeRegion:
172ad8f637bSVedant Kumar     case CounterMappingRegion::GapRegion:
173dc707122SEaswaran Raman       writeCounter(MinExpressions, Count, OS);
174dc707122SEaswaran Raman       break;
175dc707122SEaswaran Raman     case CounterMappingRegion::ExpansionRegion: {
176dc707122SEaswaran Raman       assert(Count.isZero());
177dc707122SEaswaran Raman       assert(I->ExpandedFileID <=
178dc707122SEaswaran Raman              (std::numeric_limits<unsigned>::max() >>
179dc707122SEaswaran Raman               Counter::EncodingCounterTagAndExpansionRegionTagBits));
180dc707122SEaswaran Raman       // Mark an expansion region with a set bit that follows the counter tag,
181dc707122SEaswaran Raman       // and pack the expanded file id into the remaining bits.
182dc707122SEaswaran Raman       unsigned EncodedTagExpandedFileID =
183dc707122SEaswaran Raman           (1 << Counter::EncodingTagBits) |
184dc707122SEaswaran Raman           (I->ExpandedFileID
185dc707122SEaswaran Raman            << Counter::EncodingCounterTagAndExpansionRegionTagBits);
186dc707122SEaswaran Raman       encodeULEB128(EncodedTagExpandedFileID, OS);
187dc707122SEaswaran Raman       break;
188dc707122SEaswaran Raman     }
189dc707122SEaswaran Raman     case CounterMappingRegion::SkippedRegion:
190dc707122SEaswaran Raman       assert(Count.isZero());
191dc707122SEaswaran Raman       encodeULEB128(unsigned(I->Kind)
192dc707122SEaswaran Raman                         << Counter::EncodingCounterTagAndExpansionRegionTagBits,
193dc707122SEaswaran Raman                     OS);
194dc707122SEaswaran Raman       break;
195dc707122SEaswaran Raman     }
196dc707122SEaswaran Raman     assert(I->LineStart >= PrevLineStart);
197dc707122SEaswaran Raman     encodeULEB128(I->LineStart - PrevLineStart, OS);
198dc707122SEaswaran Raman     encodeULEB128(I->ColumnStart, OS);
199dc707122SEaswaran Raman     assert(I->LineEnd >= I->LineStart);
200dc707122SEaswaran Raman     encodeULEB128(I->LineEnd - I->LineStart, OS);
201dc707122SEaswaran Raman     encodeULEB128(I->ColumnEnd, OS);
202dc707122SEaswaran Raman     PrevLineStart = I->LineStart;
203dc707122SEaswaran Raman   }
204dc707122SEaswaran Raman   // Ensure that all file ids have at least one mapping region.
205dc707122SEaswaran Raman   assert(CurrentFileID == (VirtualFileMapping.size() - 1));
206dc707122SEaswaran Raman }
207