1ee02499aSAlex Lorenz //===--- CoverageMappingGen.cpp - Coverage mapping generation ---*- C++ -*-===//
2ee02499aSAlex Lorenz //
3ee02499aSAlex Lorenz //                     The LLVM Compiler Infrastructure
4ee02499aSAlex Lorenz //
5ee02499aSAlex Lorenz // This file is distributed under the University of Illinois Open Source
6ee02499aSAlex Lorenz // License. See LICENSE.TXT for details.
7ee02499aSAlex Lorenz //
8ee02499aSAlex Lorenz //===----------------------------------------------------------------------===//
9ee02499aSAlex Lorenz //
10ee02499aSAlex Lorenz // Instrumentation-based code coverage mapping generator
11ee02499aSAlex Lorenz //
12ee02499aSAlex Lorenz //===----------------------------------------------------------------------===//
13ee02499aSAlex Lorenz 
14ee02499aSAlex Lorenz #include "CoverageMappingGen.h"
15ee02499aSAlex Lorenz #include "CodeGenFunction.h"
16ee02499aSAlex Lorenz #include "clang/AST/StmtVisitor.h"
17ee02499aSAlex Lorenz #include "clang/Lex/Lexer.h"
18bc6b80a0SVedant Kumar #include "llvm/ADT/SmallSet.h"
19ca3326c0SVedant Kumar #include "llvm/ADT/StringExtras.h"
20bf42cfd7SJustin Bogner #include "llvm/ADT/Optional.h"
21b014ee46SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMapping.h"
22b014ee46SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMappingReader.h"
23b014ee46SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMappingWriter.h"
240d9593ddSChandler Carruth #include "llvm/ProfileData/InstrProfReader.h"
25ee02499aSAlex Lorenz #include "llvm/Support/FileSystem.h"
2614f8fb68SVedant Kumar #include "llvm/Support/Path.h"
27ee02499aSAlex Lorenz 
28ee02499aSAlex Lorenz using namespace clang;
29ee02499aSAlex Lorenz using namespace CodeGen;
30ee02499aSAlex Lorenz using namespace llvm::coverage;
31ee02499aSAlex Lorenz 
323919a501SVedant Kumar void CoverageSourceInfo::SourceRangeSkipped(SourceRange Range, SourceLocation) {
33ee02499aSAlex Lorenz   SkippedRanges.push_back(Range);
34ee02499aSAlex Lorenz }
35ee02499aSAlex Lorenz 
36ee02499aSAlex Lorenz namespace {
37ee02499aSAlex Lorenz 
38ee02499aSAlex Lorenz /// \brief A region of source code that can be mapped to a counter.
3909c7179bSJustin Bogner class SourceMappingRegion {
40ee02499aSAlex Lorenz   Counter Count;
41ee02499aSAlex Lorenz 
42ee02499aSAlex Lorenz   /// \brief The region's starting location.
43bf42cfd7SJustin Bogner   Optional<SourceLocation> LocStart;
44ee02499aSAlex Lorenz 
45ee02499aSAlex Lorenz   /// \brief The region's ending location.
46bf42cfd7SJustin Bogner   Optional<SourceLocation> LocEnd;
47ee02499aSAlex Lorenz 
48747b0e29SVedant Kumar   /// Whether this region should be emitted after its parent is emitted.
49747b0e29SVedant Kumar   bool DeferRegion;
50747b0e29SVedant Kumar 
51a1c4deb7SVedant Kumar   /// Whether this region is a gap region. The count from a gap region is set
52a1c4deb7SVedant Kumar   /// as the line execution count if there are no other regions on the line.
53a1c4deb7SVedant Kumar   bool GapRegion;
54a1c4deb7SVedant Kumar 
5509c7179bSJustin Bogner public:
56bf42cfd7SJustin Bogner   SourceMappingRegion(Counter Count, Optional<SourceLocation> LocStart,
57a1c4deb7SVedant Kumar                       Optional<SourceLocation> LocEnd, bool DeferRegion = false,
58a1c4deb7SVedant Kumar                       bool GapRegion = false)
59747b0e29SVedant Kumar       : Count(Count), LocStart(LocStart), LocEnd(LocEnd),
60a1c4deb7SVedant Kumar         DeferRegion(DeferRegion), GapRegion(GapRegion) {}
61ee02499aSAlex Lorenz 
6209c7179bSJustin Bogner   const Counter &getCounter() const { return Count; }
6309c7179bSJustin Bogner 
64bf42cfd7SJustin Bogner   void setCounter(Counter C) { Count = C; }
6509c7179bSJustin Bogner 
66bf42cfd7SJustin Bogner   bool hasStartLoc() const { return LocStart.hasValue(); }
67bf42cfd7SJustin Bogner 
68bf42cfd7SJustin Bogner   void setStartLoc(SourceLocation Loc) { LocStart = Loc; }
69bf42cfd7SJustin Bogner 
70462c77b4SCraig Topper   SourceLocation getStartLoc() const {
71bf42cfd7SJustin Bogner     assert(LocStart && "Region has no start location");
72bf42cfd7SJustin Bogner     return *LocStart;
7309c7179bSJustin Bogner   }
7409c7179bSJustin Bogner 
75bf42cfd7SJustin Bogner   bool hasEndLoc() const { return LocEnd.hasValue(); }
76ee02499aSAlex Lorenz 
77bf42cfd7SJustin Bogner   void setEndLoc(SourceLocation Loc) { LocEnd = Loc; }
78ee02499aSAlex Lorenz 
79462c77b4SCraig Topper   SourceLocation getEndLoc() const {
80bf42cfd7SJustin Bogner     assert(LocEnd && "Region has no end location");
81bf42cfd7SJustin Bogner     return *LocEnd;
82ee02499aSAlex Lorenz   }
83747b0e29SVedant Kumar 
84747b0e29SVedant Kumar   bool isDeferred() const { return DeferRegion; }
85747b0e29SVedant Kumar 
86747b0e29SVedant Kumar   void setDeferred(bool Deferred) { DeferRegion = Deferred; }
87a1c4deb7SVedant Kumar 
88a1c4deb7SVedant Kumar   bool isGap() const { return GapRegion; }
89a1c4deb7SVedant Kumar 
90a1c4deb7SVedant Kumar   void setGap(bool Gap) { GapRegion = Gap; }
91ee02499aSAlex Lorenz };
92ee02499aSAlex Lorenz 
93d7369648SVedant Kumar /// Spelling locations for the start and end of a source region.
94d7369648SVedant Kumar struct SpellingRegion {
95d7369648SVedant Kumar   /// The line where the region starts.
96d7369648SVedant Kumar   unsigned LineStart;
97d7369648SVedant Kumar 
98d7369648SVedant Kumar   /// The column where the region starts.
99d7369648SVedant Kumar   unsigned ColumnStart;
100d7369648SVedant Kumar 
101d7369648SVedant Kumar   /// The line where the region ends.
102d7369648SVedant Kumar   unsigned LineEnd;
103d7369648SVedant Kumar 
104d7369648SVedant Kumar   /// The column where the region ends.
105d7369648SVedant Kumar   unsigned ColumnEnd;
106d7369648SVedant Kumar 
107d7369648SVedant Kumar   SpellingRegion(SourceManager &SM, SourceLocation LocStart,
108d7369648SVedant Kumar                  SourceLocation LocEnd) {
109d7369648SVedant Kumar     LineStart = SM.getSpellingLineNumber(LocStart);
110d7369648SVedant Kumar     ColumnStart = SM.getSpellingColumnNumber(LocStart);
111d7369648SVedant Kumar     LineEnd = SM.getSpellingLineNumber(LocEnd);
112d7369648SVedant Kumar     ColumnEnd = SM.getSpellingColumnNumber(LocEnd);
113d7369648SVedant Kumar   }
114d7369648SVedant Kumar 
115d7369648SVedant Kumar   /// Check if the start and end locations appear in source order, i.e
116d7369648SVedant Kumar   /// top->bottom, left->right.
117d7369648SVedant Kumar   bool isInSourceOrder() const {
118d7369648SVedant Kumar     return (LineStart < LineEnd) ||
119d7369648SVedant Kumar            (LineStart == LineEnd && ColumnStart <= ColumnEnd);
120d7369648SVedant Kumar   }
121d7369648SVedant Kumar };
122d7369648SVedant Kumar 
123ee02499aSAlex Lorenz /// \brief Provides the common functionality for the different
124ee02499aSAlex Lorenz /// coverage mapping region builders.
125ee02499aSAlex Lorenz class CoverageMappingBuilder {
126ee02499aSAlex Lorenz public:
127ee02499aSAlex Lorenz   CoverageMappingModuleGen &CVM;
128ee02499aSAlex Lorenz   SourceManager &SM;
129ee02499aSAlex Lorenz   const LangOptions &LangOpts;
130ee02499aSAlex Lorenz 
131ee02499aSAlex Lorenz private:
132bf42cfd7SJustin Bogner   /// \brief Map of clang's FileIDs to IDs used for coverage mapping.
133bf42cfd7SJustin Bogner   llvm::SmallDenseMap<FileID, std::pair<unsigned, SourceLocation>, 8>
134bf42cfd7SJustin Bogner       FileIDMapping;
135ee02499aSAlex Lorenz 
136ee02499aSAlex Lorenz public:
137ee02499aSAlex Lorenz   /// \brief The coverage mapping regions for this function
138ee02499aSAlex Lorenz   llvm::SmallVector<CounterMappingRegion, 32> MappingRegions;
139ee02499aSAlex Lorenz   /// \brief The source mapping regions for this function.
140f59329b0SJustin Bogner   std::vector<SourceMappingRegion> SourceRegions;
141ee02499aSAlex Lorenz 
142fc05ee34SIgor Kudrin   /// \brief A set of regions which can be used as a filter.
143fc05ee34SIgor Kudrin   ///
144fc05ee34SIgor Kudrin   /// It is produced by emitExpansionRegions() and is used in
145fc05ee34SIgor Kudrin   /// emitSourceRegions() to suppress producing code regions if
146fc05ee34SIgor Kudrin   /// the same area is covered by expansion regions.
147fc05ee34SIgor Kudrin   typedef llvm::SmallSet<std::pair<SourceLocation, SourceLocation>, 8>
148fc05ee34SIgor Kudrin       SourceRegionFilter;
149fc05ee34SIgor Kudrin 
150ee02499aSAlex Lorenz   CoverageMappingBuilder(CoverageMappingModuleGen &CVM, SourceManager &SM,
151ee02499aSAlex Lorenz                          const LangOptions &LangOpts)
152bf42cfd7SJustin Bogner       : CVM(CVM), SM(SM), LangOpts(LangOpts) {}
153ee02499aSAlex Lorenz 
154ee02499aSAlex Lorenz   /// \brief Return the precise end location for the given token.
155ee02499aSAlex Lorenz   SourceLocation getPreciseTokenLocEnd(SourceLocation Loc) {
156bf42cfd7SJustin Bogner     // We avoid getLocForEndOfToken here, because it doesn't do what we want for
157bf42cfd7SJustin Bogner     // macro locations, which we just treat as expanded files.
158bf42cfd7SJustin Bogner     unsigned TokLen =
159bf42cfd7SJustin Bogner         Lexer::MeasureTokenLength(SM.getSpellingLoc(Loc), SM, LangOpts);
160bf42cfd7SJustin Bogner     return Loc.getLocWithOffset(TokLen);
161ee02499aSAlex Lorenz   }
162ee02499aSAlex Lorenz 
163bf42cfd7SJustin Bogner   /// \brief Return the start location of an included file or expanded macro.
164bf42cfd7SJustin Bogner   SourceLocation getStartOfFileOrMacro(SourceLocation Loc) {
165bf42cfd7SJustin Bogner     if (Loc.isMacroID())
166bf42cfd7SJustin Bogner       return Loc.getLocWithOffset(-SM.getFileOffset(Loc));
167bf42cfd7SJustin Bogner     return SM.getLocForStartOfFile(SM.getFileID(Loc));
168ee02499aSAlex Lorenz   }
169ee02499aSAlex Lorenz 
170bf42cfd7SJustin Bogner   /// \brief Return the end location of an included file or expanded macro.
171bf42cfd7SJustin Bogner   SourceLocation getEndOfFileOrMacro(SourceLocation Loc) {
172bf42cfd7SJustin Bogner     if (Loc.isMacroID())
173bf42cfd7SJustin Bogner       return Loc.getLocWithOffset(SM.getFileIDSize(SM.getFileID(Loc)) -
174f14b2078SJustin Bogner                                   SM.getFileOffset(Loc));
175bf42cfd7SJustin Bogner     return SM.getLocForEndOfFile(SM.getFileID(Loc));
176bf42cfd7SJustin Bogner   }
177ee02499aSAlex Lorenz 
178bf42cfd7SJustin Bogner   /// \brief Find out where the current file is included or macro is expanded.
179bf42cfd7SJustin Bogner   SourceLocation getIncludeOrExpansionLoc(SourceLocation Loc) {
180bf42cfd7SJustin Bogner     return Loc.isMacroID() ? SM.getImmediateExpansionRange(Loc).first
181bf42cfd7SJustin Bogner                            : SM.getIncludeLoc(SM.getFileID(Loc));
182bf42cfd7SJustin Bogner   }
183bf42cfd7SJustin Bogner 
184682bfbf3SJustin Bogner   /// \brief Return true if \c Loc is a location in a built-in macro.
185682bfbf3SJustin Bogner   bool isInBuiltin(SourceLocation Loc) {
18699d1b295SMehdi Amini     return SM.getBufferName(SM.getSpellingLoc(Loc)) == "<built-in>";
187682bfbf3SJustin Bogner   }
188682bfbf3SJustin Bogner 
189d9e1a61dSIgor Kudrin   /// \brief Check whether \c Loc is included or expanded from \c Parent.
190d9e1a61dSIgor Kudrin   bool isNestedIn(SourceLocation Loc, FileID Parent) {
191d9e1a61dSIgor Kudrin     do {
192d9e1a61dSIgor Kudrin       Loc = getIncludeOrExpansionLoc(Loc);
193d9e1a61dSIgor Kudrin       if (Loc.isInvalid())
194d9e1a61dSIgor Kudrin         return false;
195d9e1a61dSIgor Kudrin     } while (!SM.isInFileID(Loc, Parent));
196d9e1a61dSIgor Kudrin     return true;
197d9e1a61dSIgor Kudrin   }
198d9e1a61dSIgor Kudrin 
199682bfbf3SJustin Bogner   /// \brief Get the start of \c S ignoring macro arguments and builtin macros.
200bf42cfd7SJustin Bogner   SourceLocation getStart(const Stmt *S) {
201bf42cfd7SJustin Bogner     SourceLocation Loc = S->getLocStart();
202682bfbf3SJustin Bogner     while (SM.isMacroArgExpansion(Loc) || isInBuiltin(Loc))
203bf42cfd7SJustin Bogner       Loc = SM.getImmediateExpansionRange(Loc).first;
204bf42cfd7SJustin Bogner     return Loc;
205bf42cfd7SJustin Bogner   }
206bf42cfd7SJustin Bogner 
207682bfbf3SJustin Bogner   /// \brief Get the end of \c S ignoring macro arguments and builtin macros.
208bf42cfd7SJustin Bogner   SourceLocation getEnd(const Stmt *S) {
209bf42cfd7SJustin Bogner     SourceLocation Loc = S->getLocEnd();
210682bfbf3SJustin Bogner     while (SM.isMacroArgExpansion(Loc) || isInBuiltin(Loc))
211bf42cfd7SJustin Bogner       Loc = SM.getImmediateExpansionRange(Loc).first;
212f14b2078SJustin Bogner     return getPreciseTokenLocEnd(Loc);
213bf42cfd7SJustin Bogner   }
214bf42cfd7SJustin Bogner 
215bf42cfd7SJustin Bogner   /// \brief Find the set of files we have regions for and assign IDs
216bf42cfd7SJustin Bogner   ///
217bf42cfd7SJustin Bogner   /// Fills \c Mapping with the virtual file mapping needed to write out
218bf42cfd7SJustin Bogner   /// coverage and collects the necessary file information to emit source and
219bf42cfd7SJustin Bogner   /// expansion regions.
220bf42cfd7SJustin Bogner   void gatherFileIDs(SmallVectorImpl<unsigned> &Mapping) {
221bf42cfd7SJustin Bogner     FileIDMapping.clear();
222bf42cfd7SJustin Bogner 
223bc6b80a0SVedant Kumar     llvm::SmallSet<FileID, 8> Visited;
224bf42cfd7SJustin Bogner     SmallVector<std::pair<SourceLocation, unsigned>, 8> FileLocs;
225bf42cfd7SJustin Bogner     for (const auto &Region : SourceRegions) {
226bf42cfd7SJustin Bogner       SourceLocation Loc = Region.getStartLoc();
227bf42cfd7SJustin Bogner       FileID File = SM.getFileID(Loc);
228bc6b80a0SVedant Kumar       if (!Visited.insert(File).second)
229bf42cfd7SJustin Bogner         continue;
230bf42cfd7SJustin Bogner 
23193205af0SVedant Kumar       // Do not map FileID's associated with system headers.
23293205af0SVedant Kumar       if (SM.isInSystemHeader(SM.getSpellingLoc(Loc)))
23393205af0SVedant Kumar         continue;
23493205af0SVedant Kumar 
235bf42cfd7SJustin Bogner       unsigned Depth = 0;
236bf42cfd7SJustin Bogner       for (SourceLocation Parent = getIncludeOrExpansionLoc(Loc);
237ed1fe5d0SYaron Keren            Parent.isValid(); Parent = getIncludeOrExpansionLoc(Parent))
238bf42cfd7SJustin Bogner         ++Depth;
239bf42cfd7SJustin Bogner       FileLocs.push_back(std::make_pair(Loc, Depth));
240bf42cfd7SJustin Bogner     }
241bf42cfd7SJustin Bogner     std::stable_sort(FileLocs.begin(), FileLocs.end(), llvm::less_second());
242bf42cfd7SJustin Bogner 
243bf42cfd7SJustin Bogner     for (const auto &FL : FileLocs) {
244bf42cfd7SJustin Bogner       SourceLocation Loc = FL.first;
245bf42cfd7SJustin Bogner       FileID SpellingFile = SM.getDecomposedSpellingLoc(Loc).first;
246ee02499aSAlex Lorenz       auto Entry = SM.getFileEntryForID(SpellingFile);
247ee02499aSAlex Lorenz       if (!Entry)
248bf42cfd7SJustin Bogner         continue;
249ee02499aSAlex Lorenz 
250bf42cfd7SJustin Bogner       FileIDMapping[SM.getFileID(Loc)] = std::make_pair(Mapping.size(), Loc);
251bf42cfd7SJustin Bogner       Mapping.push_back(CVM.getFileID(Entry));
252bf42cfd7SJustin Bogner     }
253ee02499aSAlex Lorenz   }
254ee02499aSAlex Lorenz 
255bf42cfd7SJustin Bogner   /// \brief Get the coverage mapping file ID for \c Loc.
256bf42cfd7SJustin Bogner   ///
257bf42cfd7SJustin Bogner   /// If such file id doesn't exist, return None.
258bf42cfd7SJustin Bogner   Optional<unsigned> getCoverageFileID(SourceLocation Loc) {
259bf42cfd7SJustin Bogner     auto Mapping = FileIDMapping.find(SM.getFileID(Loc));
260bf42cfd7SJustin Bogner     if (Mapping != FileIDMapping.end())
261bf42cfd7SJustin Bogner       return Mapping->second.first;
262903678caSJustin Bogner     return None;
263ee02499aSAlex Lorenz   }
264ee02499aSAlex Lorenz 
265ee02499aSAlex Lorenz   /// \brief Gather all the regions that were skipped by the preprocessor
266ee02499aSAlex Lorenz   /// using the constructs like #if.
267ee02499aSAlex Lorenz   void gatherSkippedRegions() {
268ee02499aSAlex Lorenz     /// An array of the minimum lineStarts and the maximum lineEnds
269ee02499aSAlex Lorenz     /// for mapping regions from the appropriate source files.
270ee02499aSAlex Lorenz     llvm::SmallVector<std::pair<unsigned, unsigned>, 8> FileLineRanges;
271ee02499aSAlex Lorenz     FileLineRanges.resize(
272ee02499aSAlex Lorenz         FileIDMapping.size(),
273ee02499aSAlex Lorenz         std::make_pair(std::numeric_limits<unsigned>::max(), 0));
274ee02499aSAlex Lorenz     for (const auto &R : MappingRegions) {
275ee02499aSAlex Lorenz       FileLineRanges[R.FileID].first =
276ee02499aSAlex Lorenz           std::min(FileLineRanges[R.FileID].first, R.LineStart);
277ee02499aSAlex Lorenz       FileLineRanges[R.FileID].second =
278ee02499aSAlex Lorenz           std::max(FileLineRanges[R.FileID].second, R.LineEnd);
279ee02499aSAlex Lorenz     }
280ee02499aSAlex Lorenz 
281ee02499aSAlex Lorenz     auto SkippedRanges = CVM.getSourceInfo().getSkippedRanges();
282ee02499aSAlex Lorenz     for (const auto &I : SkippedRanges) {
283ee02499aSAlex Lorenz       auto LocStart = I.getBegin();
284ee02499aSAlex Lorenz       auto LocEnd = I.getEnd();
285bf42cfd7SJustin Bogner       assert(SM.isWrittenInSameFile(LocStart, LocEnd) &&
286bf42cfd7SJustin Bogner              "region spans multiple files");
287ee02499aSAlex Lorenz 
288bf42cfd7SJustin Bogner       auto CovFileID = getCoverageFileID(LocStart);
289903678caSJustin Bogner       if (!CovFileID)
290ee02499aSAlex Lorenz         continue;
291d7369648SVedant Kumar       SpellingRegion SR{SM, LocStart, LocEnd};
292fd34280bSJustin Bogner       auto Region = CounterMappingRegion::makeSkipped(
293d7369648SVedant Kumar           *CovFileID, SR.LineStart, SR.ColumnStart, SR.LineEnd, SR.ColumnEnd);
294ee02499aSAlex Lorenz       // Make sure that we only collect the regions that are inside
295ee02499aSAlex Lorenz       // the souce code of this function.
296903678caSJustin Bogner       if (Region.LineStart >= FileLineRanges[*CovFileID].first &&
297903678caSJustin Bogner           Region.LineEnd <= FileLineRanges[*CovFileID].second)
298ee02499aSAlex Lorenz         MappingRegions.push_back(Region);
299ee02499aSAlex Lorenz     }
300ee02499aSAlex Lorenz   }
301ee02499aSAlex Lorenz 
302ee02499aSAlex Lorenz   /// \brief Generate the coverage counter mapping regions from collected
303ee02499aSAlex Lorenz   /// source regions.
304fc05ee34SIgor Kudrin   void emitSourceRegions(const SourceRegionFilter &Filter) {
305bf42cfd7SJustin Bogner     for (const auto &Region : SourceRegions) {
306bf42cfd7SJustin Bogner       assert(Region.hasEndLoc() && "incomplete region");
307ee02499aSAlex Lorenz 
308bf42cfd7SJustin Bogner       SourceLocation LocStart = Region.getStartLoc();
3098b563665SYaron Keren       assert(SM.getFileID(LocStart).isValid() && "region in invalid file");
310f59329b0SJustin Bogner 
31193205af0SVedant Kumar       // Ignore regions from system headers.
31293205af0SVedant Kumar       if (SM.isInSystemHeader(SM.getSpellingLoc(LocStart)))
31393205af0SVedant Kumar         continue;
31493205af0SVedant Kumar 
315bf42cfd7SJustin Bogner       auto CovFileID = getCoverageFileID(LocStart);
316bf42cfd7SJustin Bogner       // Ignore regions that don't have a file, such as builtin macros.
317bf42cfd7SJustin Bogner       if (!CovFileID)
318ee02499aSAlex Lorenz         continue;
319ee02499aSAlex Lorenz 
320f14b2078SJustin Bogner       SourceLocation LocEnd = Region.getEndLoc();
321bf42cfd7SJustin Bogner       assert(SM.isWrittenInSameFile(LocStart, LocEnd) &&
322bf42cfd7SJustin Bogner              "region spans multiple files");
323bf42cfd7SJustin Bogner 
324fc05ee34SIgor Kudrin       // Don't add code regions for the area covered by expansion regions.
325fc05ee34SIgor Kudrin       // This not only suppresses redundant regions, but sometimes prevents
326fc05ee34SIgor Kudrin       // creating regions with wrong counters if, for example, a statement's
327fc05ee34SIgor Kudrin       // body ends at the end of a nested macro.
328fc05ee34SIgor Kudrin       if (Filter.count(std::make_pair(LocStart, LocEnd)))
329fc05ee34SIgor Kudrin         continue;
330fc05ee34SIgor Kudrin 
331d7369648SVedant Kumar       // Find the spelling locations for the mapping region.
332d7369648SVedant Kumar       SpellingRegion SR{SM, LocStart, LocEnd};
333d7369648SVedant Kumar       assert(SR.isInSourceOrder() && "region start and end out of order");
334a1c4deb7SVedant Kumar 
335a1c4deb7SVedant Kumar       if (Region.isGap()) {
336a1c4deb7SVedant Kumar         MappingRegions.push_back(CounterMappingRegion::makeGapRegion(
337a1c4deb7SVedant Kumar             Region.getCounter(), *CovFileID, SR.LineStart, SR.ColumnStart,
338a1c4deb7SVedant Kumar             SR.LineEnd, SR.ColumnEnd));
339a1c4deb7SVedant Kumar       } else {
340bf42cfd7SJustin Bogner         MappingRegions.push_back(CounterMappingRegion::makeRegion(
341d7369648SVedant Kumar             Region.getCounter(), *CovFileID, SR.LineStart, SR.ColumnStart,
342d7369648SVedant Kumar             SR.LineEnd, SR.ColumnEnd));
343bf42cfd7SJustin Bogner       }
344bf42cfd7SJustin Bogner     }
345a1c4deb7SVedant Kumar   }
346bf42cfd7SJustin Bogner 
347bf42cfd7SJustin Bogner   /// \brief Generate expansion regions for each virtual file we've seen.
348fc05ee34SIgor Kudrin   SourceRegionFilter emitExpansionRegions() {
349fc05ee34SIgor Kudrin     SourceRegionFilter Filter;
350bf42cfd7SJustin Bogner     for (const auto &FM : FileIDMapping) {
351bf42cfd7SJustin Bogner       SourceLocation ExpandedLoc = FM.second.second;
352bf42cfd7SJustin Bogner       SourceLocation ParentLoc = getIncludeOrExpansionLoc(ExpandedLoc);
353bf42cfd7SJustin Bogner       if (ParentLoc.isInvalid())
354ee02499aSAlex Lorenz         continue;
355ee02499aSAlex Lorenz 
356bf42cfd7SJustin Bogner       auto ParentFileID = getCoverageFileID(ParentLoc);
357bf42cfd7SJustin Bogner       if (!ParentFileID)
358bf42cfd7SJustin Bogner         continue;
359bf42cfd7SJustin Bogner       auto ExpandedFileID = getCoverageFileID(ExpandedLoc);
360bf42cfd7SJustin Bogner       assert(ExpandedFileID && "expansion in uncovered file");
361bf42cfd7SJustin Bogner 
362bf42cfd7SJustin Bogner       SourceLocation LocEnd = getPreciseTokenLocEnd(ParentLoc);
363bf42cfd7SJustin Bogner       assert(SM.isWrittenInSameFile(ParentLoc, LocEnd) &&
364bf42cfd7SJustin Bogner              "region spans multiple files");
365fc05ee34SIgor Kudrin       Filter.insert(std::make_pair(ParentLoc, LocEnd));
366bf42cfd7SJustin Bogner 
367d7369648SVedant Kumar       SpellingRegion SR{SM, ParentLoc, LocEnd};
368d7369648SVedant Kumar       assert(SR.isInSourceOrder() && "region start and end out of order");
369bf42cfd7SJustin Bogner       MappingRegions.push_back(CounterMappingRegion::makeExpansion(
370d7369648SVedant Kumar           *ParentFileID, *ExpandedFileID, SR.LineStart, SR.ColumnStart,
371d7369648SVedant Kumar           SR.LineEnd, SR.ColumnEnd));
372ee02499aSAlex Lorenz     }
373fc05ee34SIgor Kudrin     return Filter;
374ee02499aSAlex Lorenz   }
375ee02499aSAlex Lorenz };
376ee02499aSAlex Lorenz 
377ee02499aSAlex Lorenz /// \brief Creates unreachable coverage regions for the functions that
378ee02499aSAlex Lorenz /// are not emitted.
379ee02499aSAlex Lorenz struct EmptyCoverageMappingBuilder : public CoverageMappingBuilder {
380ee02499aSAlex Lorenz   EmptyCoverageMappingBuilder(CoverageMappingModuleGen &CVM, SourceManager &SM,
381ee02499aSAlex Lorenz                               const LangOptions &LangOpts)
382ee02499aSAlex Lorenz       : CoverageMappingBuilder(CVM, SM, LangOpts) {}
383ee02499aSAlex Lorenz 
384ee02499aSAlex Lorenz   void VisitDecl(const Decl *D) {
385ee02499aSAlex Lorenz     if (!D->hasBody())
386ee02499aSAlex Lorenz       return;
387ee02499aSAlex Lorenz     auto Body = D->getBody();
388d9e1a61dSIgor Kudrin     SourceLocation Start = getStart(Body);
389d9e1a61dSIgor Kudrin     SourceLocation End = getEnd(Body);
390d9e1a61dSIgor Kudrin     if (!SM.isWrittenInSameFile(Start, End)) {
391d9e1a61dSIgor Kudrin       // Walk up to find the common ancestor.
392d9e1a61dSIgor Kudrin       // Correct the locations accordingly.
393d9e1a61dSIgor Kudrin       FileID StartFileID = SM.getFileID(Start);
394d9e1a61dSIgor Kudrin       FileID EndFileID = SM.getFileID(End);
395d9e1a61dSIgor Kudrin       while (StartFileID != EndFileID && !isNestedIn(End, StartFileID)) {
396d9e1a61dSIgor Kudrin         Start = getIncludeOrExpansionLoc(Start);
397d9e1a61dSIgor Kudrin         assert(Start.isValid() &&
398d9e1a61dSIgor Kudrin                "Declaration start location not nested within a known region");
399d9e1a61dSIgor Kudrin         StartFileID = SM.getFileID(Start);
400d9e1a61dSIgor Kudrin       }
401d9e1a61dSIgor Kudrin       while (StartFileID != EndFileID) {
402d9e1a61dSIgor Kudrin         End = getPreciseTokenLocEnd(getIncludeOrExpansionLoc(End));
403d9e1a61dSIgor Kudrin         assert(End.isValid() &&
404d9e1a61dSIgor Kudrin                "Declaration end location not nested within a known region");
405d9e1a61dSIgor Kudrin         EndFileID = SM.getFileID(End);
406d9e1a61dSIgor Kudrin       }
407d9e1a61dSIgor Kudrin     }
408d9e1a61dSIgor Kudrin     SourceRegions.emplace_back(Counter(), Start, End);
409ee02499aSAlex Lorenz   }
410ee02499aSAlex Lorenz 
411ee02499aSAlex Lorenz   /// \brief Write the mapping data to the output stream
412ee02499aSAlex Lorenz   void write(llvm::raw_ostream &OS) {
413ee02499aSAlex Lorenz     SmallVector<unsigned, 16> FileIDMapping;
414bf42cfd7SJustin Bogner     gatherFileIDs(FileIDMapping);
415fc05ee34SIgor Kudrin     emitSourceRegions(SourceRegionFilter());
416ee02499aSAlex Lorenz 
417efd319a2SVedant Kumar     if (MappingRegions.empty())
418efd319a2SVedant Kumar       return;
419efd319a2SVedant Kumar 
4205fc8fc2dSCraig Topper     CoverageMappingWriter Writer(FileIDMapping, None, MappingRegions);
421ee02499aSAlex Lorenz     Writer.write(OS);
422ee02499aSAlex Lorenz   }
423ee02499aSAlex Lorenz };
424ee02499aSAlex Lorenz 
425ee02499aSAlex Lorenz /// \brief A StmtVisitor that creates coverage mapping regions which map
426ee02499aSAlex Lorenz /// from the source code locations to the PGO counters.
427ee02499aSAlex Lorenz struct CounterCoverageMappingBuilder
428ee02499aSAlex Lorenz     : public CoverageMappingBuilder,
429ee02499aSAlex Lorenz       public ConstStmtVisitor<CounterCoverageMappingBuilder> {
430ee02499aSAlex Lorenz   /// \brief The map of statements to count values.
431ee02499aSAlex Lorenz   llvm::DenseMap<const Stmt *, unsigned> &CounterMap;
432ee02499aSAlex Lorenz 
433bf42cfd7SJustin Bogner   /// \brief A stack of currently live regions.
434bf42cfd7SJustin Bogner   std::vector<SourceMappingRegion> RegionStack;
435ee02499aSAlex Lorenz 
436747b0e29SVedant Kumar   /// The currently deferred region: its end location and count can be set once
437747b0e29SVedant Kumar   /// its parent has been popped from the region stack.
438747b0e29SVedant Kumar   Optional<SourceMappingRegion> DeferredRegion;
439747b0e29SVedant Kumar 
440ee02499aSAlex Lorenz   CounterExpressionBuilder Builder;
441ee02499aSAlex Lorenz 
442bf42cfd7SJustin Bogner   /// \brief A location in the most recently visited file or macro.
443bf42cfd7SJustin Bogner   ///
444bf42cfd7SJustin Bogner   /// This is used to adjust the active source regions appropriately when
445bf42cfd7SJustin Bogner   /// expressions cross file or macro boundaries.
446bf42cfd7SJustin Bogner   SourceLocation MostRecentLocation;
447bf42cfd7SJustin Bogner 
448bf42cfd7SJustin Bogner   /// \brief Return a counter for the subtraction of \c RHS from \c LHS
449ee02499aSAlex Lorenz   Counter subtractCounters(Counter LHS, Counter RHS) {
450ee02499aSAlex Lorenz     return Builder.subtract(LHS, RHS);
451ee02499aSAlex Lorenz   }
452ee02499aSAlex Lorenz 
453bf42cfd7SJustin Bogner   /// \brief Return a counter for the sum of \c LHS and \c RHS.
454ee02499aSAlex Lorenz   Counter addCounters(Counter LHS, Counter RHS) {
455ee02499aSAlex Lorenz     return Builder.add(LHS, RHS);
456ee02499aSAlex Lorenz   }
457ee02499aSAlex Lorenz 
458bf42cfd7SJustin Bogner   Counter addCounters(Counter C1, Counter C2, Counter C3) {
459bf42cfd7SJustin Bogner     return addCounters(addCounters(C1, C2), C3);
460bf42cfd7SJustin Bogner   }
461bf42cfd7SJustin Bogner 
462ee02499aSAlex Lorenz   /// \brief Return the region counter for the given statement.
463bf42cfd7SJustin Bogner   ///
464ee02499aSAlex Lorenz   /// This should only be called on statements that have a dedicated counter.
465bf42cfd7SJustin Bogner   Counter getRegionCounter(const Stmt *S) {
466bf42cfd7SJustin Bogner     return Counter::getCounter(CounterMap[S]);
467ee02499aSAlex Lorenz   }
468ee02499aSAlex Lorenz 
469bf42cfd7SJustin Bogner   /// \brief Push a region onto the stack.
470bf42cfd7SJustin Bogner   ///
471bf42cfd7SJustin Bogner   /// Returns the index on the stack where the region was pushed. This can be
472bf42cfd7SJustin Bogner   /// used with popRegions to exit a "scope", ending the region that was pushed.
473bf42cfd7SJustin Bogner   size_t pushRegion(Counter Count, Optional<SourceLocation> StartLoc = None,
474bf42cfd7SJustin Bogner                     Optional<SourceLocation> EndLoc = None) {
475747b0e29SVedant Kumar     if (StartLoc) {
476bf42cfd7SJustin Bogner       MostRecentLocation = *StartLoc;
477747b0e29SVedant Kumar       completeDeferred(Count, MostRecentLocation);
478747b0e29SVedant Kumar     }
479bf42cfd7SJustin Bogner     RegionStack.emplace_back(Count, StartLoc, EndLoc);
480ee02499aSAlex Lorenz 
481bf42cfd7SJustin Bogner     return RegionStack.size() - 1;
482ee02499aSAlex Lorenz   }
483ee02499aSAlex Lorenz 
484747b0e29SVedant Kumar   /// Complete any pending deferred region by setting its end location and
485747b0e29SVedant Kumar   /// count, and then pushing it onto the region stack.
486747b0e29SVedant Kumar   size_t completeDeferred(Counter Count, SourceLocation DeferredEndLoc) {
487747b0e29SVedant Kumar     size_t Index = RegionStack.size();
488747b0e29SVedant Kumar     if (!DeferredRegion)
489747b0e29SVedant Kumar       return Index;
490747b0e29SVedant Kumar 
491747b0e29SVedant Kumar     // Consume the pending region.
492747b0e29SVedant Kumar     SourceMappingRegion DR = DeferredRegion.getValue();
493747b0e29SVedant Kumar     DeferredRegion = None;
494747b0e29SVedant Kumar 
495747b0e29SVedant Kumar     // If the region ends in an expansion, find the expansion site.
496747b0e29SVedant Kumar     if (SM.getFileID(DeferredEndLoc) != SM.getMainFileID()) {
497747b0e29SVedant Kumar       FileID StartFile = SM.getFileID(DR.getStartLoc());
498747b0e29SVedant Kumar       if (isNestedIn(DeferredEndLoc, StartFile)) {
499747b0e29SVedant Kumar         do {
500747b0e29SVedant Kumar           DeferredEndLoc = getIncludeOrExpansionLoc(DeferredEndLoc);
501747b0e29SVedant Kumar         } while (StartFile != SM.getFileID(DeferredEndLoc));
502747b0e29SVedant Kumar       }
503747b0e29SVedant Kumar     }
504747b0e29SVedant Kumar 
505747b0e29SVedant Kumar     // The parent of this deferred region ends where the containing decl ends,
506747b0e29SVedant Kumar     // so the region isn't useful.
507747b0e29SVedant Kumar     if (DR.getStartLoc() == DeferredEndLoc)
508747b0e29SVedant Kumar       return Index;
509747b0e29SVedant Kumar 
510747b0e29SVedant Kumar     // If we're visiting statements in non-source order (e.g switch cases or
511747b0e29SVedant Kumar     // a loop condition) we can't construct a sensible deferred region.
512747b0e29SVedant Kumar     if (!SpellingRegion(SM, DR.getStartLoc(), DeferredEndLoc).isInSourceOrder())
513747b0e29SVedant Kumar       return Index;
514747b0e29SVedant Kumar 
515a1c4deb7SVedant Kumar     DR.setGap(true);
516747b0e29SVedant Kumar     DR.setCounter(Count);
517747b0e29SVedant Kumar     DR.setEndLoc(DeferredEndLoc);
518747b0e29SVedant Kumar     handleFileExit(DeferredEndLoc);
519747b0e29SVedant Kumar     RegionStack.push_back(DR);
520747b0e29SVedant Kumar     return Index;
521747b0e29SVedant Kumar   }
522747b0e29SVedant Kumar 
523bf42cfd7SJustin Bogner   /// \brief Pop regions from the stack into the function's list of regions.
524bf42cfd7SJustin Bogner   ///
525bf42cfd7SJustin Bogner   /// Adds all regions from \c ParentIndex to the top of the stack to the
526bf42cfd7SJustin Bogner   /// function's \c SourceRegions.
527bf42cfd7SJustin Bogner   void popRegions(size_t ParentIndex) {
528bf42cfd7SJustin Bogner     assert(RegionStack.size() >= ParentIndex && "parent not in stack");
529747b0e29SVedant Kumar     bool ParentOfDeferredRegion = false;
530bf42cfd7SJustin Bogner     while (RegionStack.size() > ParentIndex) {
531bf42cfd7SJustin Bogner       SourceMappingRegion &Region = RegionStack.back();
532bf42cfd7SJustin Bogner       if (Region.hasStartLoc()) {
533bf42cfd7SJustin Bogner         SourceLocation StartLoc = Region.getStartLoc();
534bf42cfd7SJustin Bogner         SourceLocation EndLoc = Region.hasEndLoc()
535bf42cfd7SJustin Bogner                                     ? Region.getEndLoc()
536bf42cfd7SJustin Bogner                                     : RegionStack[ParentIndex].getEndLoc();
537bf42cfd7SJustin Bogner         while (!SM.isWrittenInSameFile(StartLoc, EndLoc)) {
538bf42cfd7SJustin Bogner           // The region ends in a nested file or macro expansion. Create a
539bf42cfd7SJustin Bogner           // separate region for each expansion.
540bf42cfd7SJustin Bogner           SourceLocation NestedLoc = getStartOfFileOrMacro(EndLoc);
541bf42cfd7SJustin Bogner           assert(SM.isWrittenInSameFile(NestedLoc, EndLoc));
542bf42cfd7SJustin Bogner 
5438545dae2SIgor Kudrin           if (!isRegionAlreadyAdded(NestedLoc, EndLoc))
544bf42cfd7SJustin Bogner             SourceRegions.emplace_back(Region.getCounter(), NestedLoc, EndLoc);
545bf42cfd7SJustin Bogner 
546f14b2078SJustin Bogner           EndLoc = getPreciseTokenLocEnd(getIncludeOrExpansionLoc(EndLoc));
547dceaaadfSJustin Bogner           if (EndLoc.isInvalid())
548dceaaadfSJustin Bogner             llvm::report_fatal_error("File exit not handled before popRegions");
549bf42cfd7SJustin Bogner         }
550bf42cfd7SJustin Bogner         Region.setEndLoc(EndLoc);
551bf42cfd7SJustin Bogner 
552bf42cfd7SJustin Bogner         MostRecentLocation = EndLoc;
553bf42cfd7SJustin Bogner         // If this region happens to span an entire expansion, we need to make
554bf42cfd7SJustin Bogner         // sure we don't overlap the parent region with it.
555bf42cfd7SJustin Bogner         if (StartLoc == getStartOfFileOrMacro(StartLoc) &&
556bf42cfd7SJustin Bogner             EndLoc == getEndOfFileOrMacro(EndLoc))
557bf42cfd7SJustin Bogner           MostRecentLocation = getIncludeOrExpansionLoc(EndLoc);
558bf42cfd7SJustin Bogner 
559bf42cfd7SJustin Bogner         assert(SM.isWrittenInSameFile(Region.getStartLoc(), EndLoc));
560f36a5c4aSCraig Topper         SourceRegions.push_back(Region);
561747b0e29SVedant Kumar 
562747b0e29SVedant Kumar         if (ParentOfDeferredRegion) {
563747b0e29SVedant Kumar           ParentOfDeferredRegion = false;
564747b0e29SVedant Kumar 
565747b0e29SVedant Kumar           // If there's an existing deferred region, keep the old one, because
566747b0e29SVedant Kumar           // it means there are two consecutive returns (or a similar pattern).
567747b0e29SVedant Kumar           if (!DeferredRegion.hasValue() &&
568747b0e29SVedant Kumar               // File IDs aren't gathered within macro expansions, so it isn't
569747b0e29SVedant Kumar               // useful to try and create a deferred region inside of one.
570747b0e29SVedant Kumar               (SM.getFileID(EndLoc) == SM.getMainFileID()))
571747b0e29SVedant Kumar             DeferredRegion =
572747b0e29SVedant Kumar                 SourceMappingRegion(Counter::getZero(), EndLoc, None);
573747b0e29SVedant Kumar         }
574747b0e29SVedant Kumar       } else if (Region.isDeferred()) {
575747b0e29SVedant Kumar         assert(!ParentOfDeferredRegion && "Consecutive deferred regions");
576747b0e29SVedant Kumar         ParentOfDeferredRegion = true;
577bf42cfd7SJustin Bogner       }
578bf42cfd7SJustin Bogner       RegionStack.pop_back();
579bf42cfd7SJustin Bogner     }
580747b0e29SVedant Kumar     assert(!ParentOfDeferredRegion && "Deferred region with no parent");
581ee02499aSAlex Lorenz   }
582ee02499aSAlex Lorenz 
583bf42cfd7SJustin Bogner   /// \brief Return the currently active region.
584bf42cfd7SJustin Bogner   SourceMappingRegion &getRegion() {
585bf42cfd7SJustin Bogner     assert(!RegionStack.empty() && "statement has no region");
586bf42cfd7SJustin Bogner     return RegionStack.back();
587ee02499aSAlex Lorenz   }
588ee02499aSAlex Lorenz 
589bf42cfd7SJustin Bogner   /// \brief Propagate counts through the children of \c S.
590bf42cfd7SJustin Bogner   Counter propagateCounts(Counter TopCount, const Stmt *S) {
5917838696eSVedant Kumar     SourceLocation StartLoc = getStart(S);
5927838696eSVedant Kumar     SourceLocation EndLoc = getEnd(S);
5937838696eSVedant Kumar     size_t Index = pushRegion(TopCount, StartLoc, EndLoc);
594bf42cfd7SJustin Bogner     Visit(S);
595bf42cfd7SJustin Bogner     Counter ExitCount = getRegion().getCounter();
596bf42cfd7SJustin Bogner     popRegions(Index);
59739f01975SVedant Kumar 
59839f01975SVedant Kumar     // The statement may be spanned by an expansion. Make sure we handle a file
59939f01975SVedant Kumar     // exit out of this expansion before moving to the next statement.
6007838696eSVedant Kumar     if (SM.isBeforeInTranslationUnit(StartLoc, S->getLocStart()))
6017838696eSVedant Kumar       MostRecentLocation = EndLoc;
60239f01975SVedant Kumar 
603bf42cfd7SJustin Bogner     return ExitCount;
604ee02499aSAlex Lorenz   }
605ee02499aSAlex Lorenz 
6060a7c9d11SIgor Kudrin   /// \brief Check whether a region with bounds \c StartLoc and \c EndLoc
6070a7c9d11SIgor Kudrin   /// is already added to \c SourceRegions.
6080a7c9d11SIgor Kudrin   bool isRegionAlreadyAdded(SourceLocation StartLoc, SourceLocation EndLoc) {
6090a7c9d11SIgor Kudrin     return SourceRegions.rend() !=
6100a7c9d11SIgor Kudrin            std::find_if(SourceRegions.rbegin(), SourceRegions.rend(),
6110a7c9d11SIgor Kudrin                         [&](const SourceMappingRegion &Region) {
6120a7c9d11SIgor Kudrin                           return Region.getStartLoc() == StartLoc &&
6130a7c9d11SIgor Kudrin                                  Region.getEndLoc() == EndLoc;
6140a7c9d11SIgor Kudrin                         });
6150a7c9d11SIgor Kudrin   }
6160a7c9d11SIgor Kudrin 
617bf42cfd7SJustin Bogner   /// \brief Adjust the most recently visited location to \c EndLoc.
618bf42cfd7SJustin Bogner   ///
619bf42cfd7SJustin Bogner   /// This should be used after visiting any statements in non-source order.
620bf42cfd7SJustin Bogner   void adjustForOutOfOrderTraversal(SourceLocation EndLoc) {
621bf42cfd7SJustin Bogner     MostRecentLocation = EndLoc;
6220a7c9d11SIgor Kudrin     // The code region for a whole macro is created in handleFileExit() when
6230a7c9d11SIgor Kudrin     // it detects exiting of the virtual file of that macro. If we visited
6240a7c9d11SIgor Kudrin     // statements in non-source order, we might already have such a region
6250a7c9d11SIgor Kudrin     // added, for example, if a body of a loop is divided among multiple
6260a7c9d11SIgor Kudrin     // macros. Avoid adding duplicate regions in such case.
62796ae73f7SJustin Bogner     if (getRegion().hasEndLoc() &&
6280a7c9d11SIgor Kudrin         MostRecentLocation == getEndOfFileOrMacro(MostRecentLocation) &&
6290a7c9d11SIgor Kudrin         isRegionAlreadyAdded(getStartOfFileOrMacro(MostRecentLocation),
6300a7c9d11SIgor Kudrin                              MostRecentLocation))
631bf42cfd7SJustin Bogner       MostRecentLocation = getIncludeOrExpansionLoc(MostRecentLocation);
632ee02499aSAlex Lorenz   }
633ee02499aSAlex Lorenz 
634bf42cfd7SJustin Bogner   /// \brief Adjust regions and state when \c NewLoc exits a file.
635bf42cfd7SJustin Bogner   ///
636bf42cfd7SJustin Bogner   /// If moving from our most recently tracked location to \c NewLoc exits any
637bf42cfd7SJustin Bogner   /// files, this adjusts our current region stack and creates the file regions
638bf42cfd7SJustin Bogner   /// for the exited file.
639bf42cfd7SJustin Bogner   void handleFileExit(SourceLocation NewLoc) {
640e44dd6dbSJustin Bogner     if (NewLoc.isInvalid() ||
641e44dd6dbSJustin Bogner         SM.isWrittenInSameFile(MostRecentLocation, NewLoc))
642bf42cfd7SJustin Bogner       return;
643bf42cfd7SJustin Bogner 
644bf42cfd7SJustin Bogner     // If NewLoc is not in a file that contains MostRecentLocation, walk up to
645bf42cfd7SJustin Bogner     // find the common ancestor.
646bf42cfd7SJustin Bogner     SourceLocation LCA = NewLoc;
647bf42cfd7SJustin Bogner     FileID ParentFile = SM.getFileID(LCA);
648bf42cfd7SJustin Bogner     while (!isNestedIn(MostRecentLocation, ParentFile)) {
649bf42cfd7SJustin Bogner       LCA = getIncludeOrExpansionLoc(LCA);
650bf42cfd7SJustin Bogner       if (LCA.isInvalid() || SM.isWrittenInSameFile(LCA, MostRecentLocation)) {
651bf42cfd7SJustin Bogner         // Since there isn't a common ancestor, no file was exited. We just need
652bf42cfd7SJustin Bogner         // to adjust our location to the new file.
653bf42cfd7SJustin Bogner         MostRecentLocation = NewLoc;
654bf42cfd7SJustin Bogner         return;
655bf42cfd7SJustin Bogner       }
656bf42cfd7SJustin Bogner       ParentFile = SM.getFileID(LCA);
657ee02499aSAlex Lorenz     }
658ee02499aSAlex Lorenz 
659bf42cfd7SJustin Bogner     llvm::SmallSet<SourceLocation, 8> StartLocs;
660bf42cfd7SJustin Bogner     Optional<Counter> ParentCounter;
66157d3f145SPete Cooper     for (SourceMappingRegion &I : llvm::reverse(RegionStack)) {
66257d3f145SPete Cooper       if (!I.hasStartLoc())
663bf42cfd7SJustin Bogner         continue;
66457d3f145SPete Cooper       SourceLocation Loc = I.getStartLoc();
665bf42cfd7SJustin Bogner       if (!isNestedIn(Loc, ParentFile)) {
66657d3f145SPete Cooper         ParentCounter = I.getCounter();
667bf42cfd7SJustin Bogner         break;
668ee02499aSAlex Lorenz       }
669bf42cfd7SJustin Bogner 
670bf42cfd7SJustin Bogner       while (!SM.isInFileID(Loc, ParentFile)) {
671bf42cfd7SJustin Bogner         // The most nested region for each start location is the one with the
672bf42cfd7SJustin Bogner         // correct count. We avoid creating redundant regions by stopping once
673bf42cfd7SJustin Bogner         // we've seen this region.
674bf42cfd7SJustin Bogner         if (StartLocs.insert(Loc).second)
67557d3f145SPete Cooper           SourceRegions.emplace_back(I.getCounter(), Loc,
676bf42cfd7SJustin Bogner                                      getEndOfFileOrMacro(Loc));
677bf42cfd7SJustin Bogner         Loc = getIncludeOrExpansionLoc(Loc);
678ee02499aSAlex Lorenz       }
67957d3f145SPete Cooper       I.setStartLoc(getPreciseTokenLocEnd(Loc));
680bf42cfd7SJustin Bogner     }
681bf42cfd7SJustin Bogner 
682bf42cfd7SJustin Bogner     if (ParentCounter) {
683bf42cfd7SJustin Bogner       // If the file is contained completely by another region and doesn't
684bf42cfd7SJustin Bogner       // immediately start its own region, the whole file gets a region
685bf42cfd7SJustin Bogner       // corresponding to the parent.
686bf42cfd7SJustin Bogner       SourceLocation Loc = MostRecentLocation;
687bf42cfd7SJustin Bogner       while (isNestedIn(Loc, ParentFile)) {
688bf42cfd7SJustin Bogner         SourceLocation FileStart = getStartOfFileOrMacro(Loc);
689bf42cfd7SJustin Bogner         if (StartLocs.insert(FileStart).second)
690bf42cfd7SJustin Bogner           SourceRegions.emplace_back(*ParentCounter, FileStart,
691bf42cfd7SJustin Bogner                                      getEndOfFileOrMacro(Loc));
692bf42cfd7SJustin Bogner         Loc = getIncludeOrExpansionLoc(Loc);
693bf42cfd7SJustin Bogner       }
694bf42cfd7SJustin Bogner     }
695bf42cfd7SJustin Bogner 
696bf42cfd7SJustin Bogner     MostRecentLocation = NewLoc;
697bf42cfd7SJustin Bogner   }
698bf42cfd7SJustin Bogner 
699bf42cfd7SJustin Bogner   /// \brief Ensure that \c S is included in the current region.
700bf42cfd7SJustin Bogner   void extendRegion(const Stmt *S) {
701bf42cfd7SJustin Bogner     SourceMappingRegion &Region = getRegion();
702bf42cfd7SJustin Bogner     SourceLocation StartLoc = getStart(S);
703bf42cfd7SJustin Bogner 
704bf42cfd7SJustin Bogner     handleFileExit(StartLoc);
705bf42cfd7SJustin Bogner     if (!Region.hasStartLoc())
706bf42cfd7SJustin Bogner       Region.setStartLoc(StartLoc);
707747b0e29SVedant Kumar 
708747b0e29SVedant Kumar     completeDeferred(Region.getCounter(), StartLoc);
709bf42cfd7SJustin Bogner   }
710bf42cfd7SJustin Bogner 
711bf42cfd7SJustin Bogner   /// \brief Mark \c S as a terminator, starting a zero region.
712bf42cfd7SJustin Bogner   void terminateRegion(const Stmt *S) {
713bf42cfd7SJustin Bogner     extendRegion(S);
714bf42cfd7SJustin Bogner     SourceMappingRegion &Region = getRegion();
715bf42cfd7SJustin Bogner     if (!Region.hasEndLoc())
716bf42cfd7SJustin Bogner       Region.setEndLoc(getEnd(S));
717bf42cfd7SJustin Bogner     pushRegion(Counter::getZero());
718747b0e29SVedant Kumar     getRegion().setDeferred(true);
719bf42cfd7SJustin Bogner   }
720ee02499aSAlex Lorenz 
721ee02499aSAlex Lorenz   /// \brief Keep counts of breaks and continues inside loops.
722ee02499aSAlex Lorenz   struct BreakContinue {
723ee02499aSAlex Lorenz     Counter BreakCount;
724ee02499aSAlex Lorenz     Counter ContinueCount;
725ee02499aSAlex Lorenz   };
726ee02499aSAlex Lorenz   SmallVector<BreakContinue, 8> BreakContinueStack;
727ee02499aSAlex Lorenz 
728ee02499aSAlex Lorenz   CounterCoverageMappingBuilder(
729ee02499aSAlex Lorenz       CoverageMappingModuleGen &CVM,
730e5ee6c58SJustin Bogner       llvm::DenseMap<const Stmt *, unsigned> &CounterMap, SourceManager &SM,
731ee02499aSAlex Lorenz       const LangOptions &LangOpts)
732747b0e29SVedant Kumar       : CoverageMappingBuilder(CVM, SM, LangOpts), CounterMap(CounterMap),
733747b0e29SVedant Kumar         DeferredRegion(None) {}
734ee02499aSAlex Lorenz 
735ee02499aSAlex Lorenz   /// \brief Write the mapping data to the output stream
736ee02499aSAlex Lorenz   void write(llvm::raw_ostream &OS) {
737ee02499aSAlex Lorenz     llvm::SmallVector<unsigned, 8> VirtualFileMapping;
738bf42cfd7SJustin Bogner     gatherFileIDs(VirtualFileMapping);
739fc05ee34SIgor Kudrin     SourceRegionFilter Filter = emitExpansionRegions();
740747b0e29SVedant Kumar     assert(!DeferredRegion && "Deferred region never completed");
741fc05ee34SIgor Kudrin     emitSourceRegions(Filter);
742ee02499aSAlex Lorenz     gatherSkippedRegions();
743ee02499aSAlex Lorenz 
744efd319a2SVedant Kumar     if (MappingRegions.empty())
745efd319a2SVedant Kumar       return;
746efd319a2SVedant Kumar 
7474da909b2SJustin Bogner     CoverageMappingWriter Writer(VirtualFileMapping, Builder.getExpressions(),
7484da909b2SJustin Bogner                                  MappingRegions);
749ee02499aSAlex Lorenz     Writer.write(OS);
750ee02499aSAlex Lorenz   }
751ee02499aSAlex Lorenz 
752ee02499aSAlex Lorenz   void VisitStmt(const Stmt *S) {
753ed1fe5d0SYaron Keren     if (S->getLocStart().isValid())
754bf42cfd7SJustin Bogner       extendRegion(S);
755642f173aSBenjamin Kramer     for (const Stmt *Child : S->children())
756642f173aSBenjamin Kramer       if (Child)
757642f173aSBenjamin Kramer         this->Visit(Child);
758bf42cfd7SJustin Bogner     handleFileExit(getEnd(S));
759ee02499aSAlex Lorenz   }
760ee02499aSAlex Lorenz 
761ee02499aSAlex Lorenz   void VisitDecl(const Decl *D) {
762747b0e29SVedant Kumar     assert(!DeferredRegion && "Deferred region never completed");
763747b0e29SVedant Kumar 
764bf42cfd7SJustin Bogner     Stmt *Body = D->getBody();
765efd319a2SVedant Kumar 
766efd319a2SVedant Kumar     // Do not propagate region counts into system headers.
767efd319a2SVedant Kumar     if (Body && SM.isInSystemHeader(SM.getSpellingLoc(getStart(Body))))
768efd319a2SVedant Kumar       return;
769efd319a2SVedant Kumar 
770747b0e29SVedant Kumar     Counter ExitCount = propagateCounts(getRegionCounter(Body), Body);
771747b0e29SVedant Kumar     assert(RegionStack.empty() && "Regions entered but never exited");
772747b0e29SVedant Kumar 
773*ef8e05ffSVedant Kumar     // Special case: if the last statement is a return, throw away the
774*ef8e05ffSVedant Kumar     // deferred region. This allows the closing brace to have a count.
775*ef8e05ffSVedant Kumar     if (auto *CS = dyn_cast_or_null<CompoundStmt>(Body))
776*ef8e05ffSVedant Kumar       if (dyn_cast_or_null<ReturnStmt>(CS->body_back()))
777*ef8e05ffSVedant Kumar         DeferredRegion = None;
778*ef8e05ffSVedant Kumar 
779*ef8e05ffSVedant Kumar     // Complete any deferred regions introduced by the last statement.
780747b0e29SVedant Kumar     popRegions(completeDeferred(ExitCount, getEnd(Body)));
781ee02499aSAlex Lorenz   }
782ee02499aSAlex Lorenz 
783ee02499aSAlex Lorenz   void VisitReturnStmt(const ReturnStmt *S) {
784bf42cfd7SJustin Bogner     extendRegion(S);
785ee02499aSAlex Lorenz     if (S->getRetValue())
786ee02499aSAlex Lorenz       Visit(S->getRetValue());
787bf42cfd7SJustin Bogner     terminateRegion(S);
788ee02499aSAlex Lorenz   }
789ee02499aSAlex Lorenz 
790f959febfSJustin Bogner   void VisitCXXThrowExpr(const CXXThrowExpr *E) {
791f959febfSJustin Bogner     extendRegion(E);
792f959febfSJustin Bogner     if (E->getSubExpr())
793f959febfSJustin Bogner       Visit(E->getSubExpr());
794f959febfSJustin Bogner     terminateRegion(E);
795f959febfSJustin Bogner   }
796f959febfSJustin Bogner 
797bf42cfd7SJustin Bogner   void VisitGotoStmt(const GotoStmt *S) { terminateRegion(S); }
798ee02499aSAlex Lorenz 
799ee02499aSAlex Lorenz   void VisitLabelStmt(const LabelStmt *S) {
800bf42cfd7SJustin Bogner     SourceLocation Start = getStart(S);
801bf42cfd7SJustin Bogner     // We can't extendRegion here or we risk overlapping with our new region.
802bf42cfd7SJustin Bogner     handleFileExit(Start);
803bf42cfd7SJustin Bogner     pushRegion(getRegionCounter(S), Start);
804ee02499aSAlex Lorenz     Visit(S->getSubStmt());
805ee02499aSAlex Lorenz   }
806ee02499aSAlex Lorenz 
807ee02499aSAlex Lorenz   void VisitBreakStmt(const BreakStmt *S) {
808ee02499aSAlex Lorenz     assert(!BreakContinueStack.empty() && "break not in a loop or switch!");
809ee02499aSAlex Lorenz     BreakContinueStack.back().BreakCount = addCounters(
810bf42cfd7SJustin Bogner         BreakContinueStack.back().BreakCount, getRegion().getCounter());
8117f53fbfcSEli Friedman     // FIXME: a break in a switch should terminate regions for all preceding
8127f53fbfcSEli Friedman     // case statements, not just the most recent one.
813bf42cfd7SJustin Bogner     terminateRegion(S);
814ee02499aSAlex Lorenz   }
815ee02499aSAlex Lorenz 
816ee02499aSAlex Lorenz   void VisitContinueStmt(const ContinueStmt *S) {
817ee02499aSAlex Lorenz     assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
818ee02499aSAlex Lorenz     BreakContinueStack.back().ContinueCount = addCounters(
819bf42cfd7SJustin Bogner         BreakContinueStack.back().ContinueCount, getRegion().getCounter());
820bf42cfd7SJustin Bogner     terminateRegion(S);
821ee02499aSAlex Lorenz   }
822ee02499aSAlex Lorenz 
823181dfe4cSEli Friedman   void VisitCallExpr(const CallExpr *E) {
824181dfe4cSEli Friedman     VisitStmt(E);
825181dfe4cSEli Friedman 
826181dfe4cSEli Friedman     // Terminate the region when we hit a noreturn function.
827181dfe4cSEli Friedman     // (This is helpful dealing with switch statements.)
828181dfe4cSEli Friedman     QualType CalleeType = E->getCallee()->getType();
829181dfe4cSEli Friedman     if (getFunctionExtInfo(*CalleeType).getNoReturn())
830181dfe4cSEli Friedman       terminateRegion(E);
831181dfe4cSEli Friedman   }
832181dfe4cSEli Friedman 
833ee02499aSAlex Lorenz   void VisitWhileStmt(const WhileStmt *S) {
834bf42cfd7SJustin Bogner     extendRegion(S);
835ee02499aSAlex Lorenz 
836bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
837bf42cfd7SJustin Bogner     Counter BodyCount = getRegionCounter(S);
838bf42cfd7SJustin Bogner 
839bf42cfd7SJustin Bogner     // Handle the body first so that we can get the backedge count.
840bf42cfd7SJustin Bogner     BreakContinueStack.push_back(BreakContinue());
841bf42cfd7SJustin Bogner     extendRegion(S->getBody());
842bf42cfd7SJustin Bogner     Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
843ee02499aSAlex Lorenz     BreakContinue BC = BreakContinueStack.pop_back_val();
844bf42cfd7SJustin Bogner 
845bf42cfd7SJustin Bogner     // Go back to handle the condition.
846bf42cfd7SJustin Bogner     Counter CondCount =
847bf42cfd7SJustin Bogner         addCounters(ParentCount, BackedgeCount, BC.ContinueCount);
848bf42cfd7SJustin Bogner     propagateCounts(CondCount, S->getCond());
849bf42cfd7SJustin Bogner     adjustForOutOfOrderTraversal(getEnd(S));
850bf42cfd7SJustin Bogner 
851bf42cfd7SJustin Bogner     Counter OutCount =
852bf42cfd7SJustin Bogner         addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount));
853bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
854bf42cfd7SJustin Bogner       pushRegion(OutCount);
855ee02499aSAlex Lorenz   }
856ee02499aSAlex Lorenz 
857ee02499aSAlex Lorenz   void VisitDoStmt(const DoStmt *S) {
858bf42cfd7SJustin Bogner     extendRegion(S);
859ee02499aSAlex Lorenz 
860bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
861bf42cfd7SJustin Bogner     Counter BodyCount = getRegionCounter(S);
862bf42cfd7SJustin Bogner 
863bf42cfd7SJustin Bogner     BreakContinueStack.push_back(BreakContinue());
864bf42cfd7SJustin Bogner     extendRegion(S->getBody());
865bf42cfd7SJustin Bogner     Counter BackedgeCount =
866bf42cfd7SJustin Bogner         propagateCounts(addCounters(ParentCount, BodyCount), S->getBody());
867ee02499aSAlex Lorenz     BreakContinue BC = BreakContinueStack.pop_back_val();
868bf42cfd7SJustin Bogner 
869bf42cfd7SJustin Bogner     Counter CondCount = addCounters(BackedgeCount, BC.ContinueCount);
870bf42cfd7SJustin Bogner     propagateCounts(CondCount, S->getCond());
871bf42cfd7SJustin Bogner 
872bf42cfd7SJustin Bogner     Counter OutCount =
873bf42cfd7SJustin Bogner         addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount));
874bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
875bf42cfd7SJustin Bogner       pushRegion(OutCount);
876ee02499aSAlex Lorenz   }
877ee02499aSAlex Lorenz 
878ee02499aSAlex Lorenz   void VisitForStmt(const ForStmt *S) {
879bf42cfd7SJustin Bogner     extendRegion(S);
880ee02499aSAlex Lorenz     if (S->getInit())
881ee02499aSAlex Lorenz       Visit(S->getInit());
882ee02499aSAlex Lorenz 
883bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
884bf42cfd7SJustin Bogner     Counter BodyCount = getRegionCounter(S);
885bf42cfd7SJustin Bogner 
886bf42cfd7SJustin Bogner     // Handle the body first so that we can get the backedge count.
887ee02499aSAlex Lorenz     BreakContinueStack.push_back(BreakContinue());
888bf42cfd7SJustin Bogner     extendRegion(S->getBody());
889bf42cfd7SJustin Bogner     Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
890bf42cfd7SJustin Bogner     BreakContinue BC = BreakContinueStack.pop_back_val();
891ee02499aSAlex Lorenz 
892ee02499aSAlex Lorenz     // The increment is essentially part of the body but it needs to include
893ee02499aSAlex Lorenz     // the count for all the continue statements.
894bf42cfd7SJustin Bogner     if (const Stmt *Inc = S->getInc())
895bf42cfd7SJustin Bogner       propagateCounts(addCounters(BackedgeCount, BC.ContinueCount), Inc);
896bf42cfd7SJustin Bogner 
897bf42cfd7SJustin Bogner     // Go back to handle the condition.
898bf42cfd7SJustin Bogner     Counter CondCount =
899bf42cfd7SJustin Bogner         addCounters(ParentCount, BackedgeCount, BC.ContinueCount);
900bf42cfd7SJustin Bogner     if (const Expr *Cond = S->getCond()) {
901bf42cfd7SJustin Bogner       propagateCounts(CondCount, Cond);
902bf42cfd7SJustin Bogner       adjustForOutOfOrderTraversal(getEnd(S));
903ee02499aSAlex Lorenz     }
904ee02499aSAlex Lorenz 
905bf42cfd7SJustin Bogner     Counter OutCount =
906bf42cfd7SJustin Bogner         addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount));
907bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
908bf42cfd7SJustin Bogner       pushRegion(OutCount);
909ee02499aSAlex Lorenz   }
910ee02499aSAlex Lorenz 
911ee02499aSAlex Lorenz   void VisitCXXForRangeStmt(const CXXForRangeStmt *S) {
912bf42cfd7SJustin Bogner     extendRegion(S);
913bf42cfd7SJustin Bogner     Visit(S->getLoopVarStmt());
914ee02499aSAlex Lorenz     Visit(S->getRangeStmt());
915bf42cfd7SJustin Bogner 
916bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
917bf42cfd7SJustin Bogner     Counter BodyCount = getRegionCounter(S);
918bf42cfd7SJustin Bogner 
919ee02499aSAlex Lorenz     BreakContinueStack.push_back(BreakContinue());
920bf42cfd7SJustin Bogner     extendRegion(S->getBody());
921bf42cfd7SJustin Bogner     Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
922ee02499aSAlex Lorenz     BreakContinue BC = BreakContinueStack.pop_back_val();
923bf42cfd7SJustin Bogner 
9241587432dSJustin Bogner     Counter LoopCount =
9251587432dSJustin Bogner         addCounters(ParentCount, BackedgeCount, BC.ContinueCount);
9261587432dSJustin Bogner     Counter OutCount =
9271587432dSJustin Bogner         addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount));
928bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
929bf42cfd7SJustin Bogner       pushRegion(OutCount);
930ee02499aSAlex Lorenz   }
931ee02499aSAlex Lorenz 
932ee02499aSAlex Lorenz   void VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S) {
933bf42cfd7SJustin Bogner     extendRegion(S);
934ee02499aSAlex Lorenz     Visit(S->getElement());
935bf42cfd7SJustin Bogner 
936bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
937bf42cfd7SJustin Bogner     Counter BodyCount = getRegionCounter(S);
938bf42cfd7SJustin Bogner 
939ee02499aSAlex Lorenz     BreakContinueStack.push_back(BreakContinue());
940bf42cfd7SJustin Bogner     extendRegion(S->getBody());
941bf42cfd7SJustin Bogner     Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
942ee02499aSAlex Lorenz     BreakContinue BC = BreakContinueStack.pop_back_val();
943bf42cfd7SJustin Bogner 
9441587432dSJustin Bogner     Counter LoopCount =
9451587432dSJustin Bogner         addCounters(ParentCount, BackedgeCount, BC.ContinueCount);
9461587432dSJustin Bogner     Counter OutCount =
9471587432dSJustin Bogner         addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount));
948bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
949bf42cfd7SJustin Bogner       pushRegion(OutCount);
950ee02499aSAlex Lorenz   }
951ee02499aSAlex Lorenz 
952ee02499aSAlex Lorenz   void VisitSwitchStmt(const SwitchStmt *S) {
953bf42cfd7SJustin Bogner     extendRegion(S);
954f2a6ec55SVedant Kumar     if (S->getInit())
955f2a6ec55SVedant Kumar       Visit(S->getInit());
956ee02499aSAlex Lorenz     Visit(S->getCond());
957bf42cfd7SJustin Bogner 
958ee02499aSAlex Lorenz     BreakContinueStack.push_back(BreakContinue());
959bf42cfd7SJustin Bogner 
960bf42cfd7SJustin Bogner     const Stmt *Body = S->getBody();
961bf42cfd7SJustin Bogner     extendRegion(Body);
962bf42cfd7SJustin Bogner     if (const auto *CS = dyn_cast<CompoundStmt>(Body)) {
963bf42cfd7SJustin Bogner       if (!CS->body_empty()) {
9647f53fbfcSEli Friedman         // Make a region for the body of the switch.  If the body starts with
9657f53fbfcSEli Friedman         // a case, that case will reuse this region; otherwise, this covers
9667f53fbfcSEli Friedman         // the unreachable code at the beginning of the switch body.
967bf42cfd7SJustin Bogner         size_t Index =
9687f53fbfcSEli Friedman             pushRegion(Counter::getZero(), getStart(CS->body_front()));
969b5841332SRichard Trieu         for (const auto *Child : CS->children())
970bf42cfd7SJustin Bogner           Visit(Child);
9717f53fbfcSEli Friedman 
9727f53fbfcSEli Friedman         // Set the end for the body of the switch, if it isn't already set.
9737f53fbfcSEli Friedman         for (size_t i = RegionStack.size(); i != Index; --i) {
9747f53fbfcSEli Friedman           if (!RegionStack[i - 1].hasEndLoc())
9757f53fbfcSEli Friedman             RegionStack[i - 1].setEndLoc(getEnd(CS->body_back()));
9767f53fbfcSEli Friedman         }
9777f53fbfcSEli Friedman 
978bf42cfd7SJustin Bogner         popRegions(Index);
979ee02499aSAlex Lorenz       }
98087ea3b05SVedant Kumar     } else
981bf42cfd7SJustin Bogner       propagateCounts(Counter::getZero(), Body);
982ee02499aSAlex Lorenz     BreakContinue BC = BreakContinueStack.pop_back_val();
983bf42cfd7SJustin Bogner 
984ee02499aSAlex Lorenz     if (!BreakContinueStack.empty())
985ee02499aSAlex Lorenz       BreakContinueStack.back().ContinueCount = addCounters(
986ee02499aSAlex Lorenz           BreakContinueStack.back().ContinueCount, BC.ContinueCount);
987bf42cfd7SJustin Bogner 
988bf42cfd7SJustin Bogner     Counter ExitCount = getRegionCounter(S);
9893836482aSVedant Kumar     SourceLocation ExitLoc = getEnd(S);
99008780529SAlex Lorenz     pushRegion(ExitCount);
99108780529SAlex Lorenz 
99208780529SAlex Lorenz     // Ensure that handleFileExit recognizes when the end location is located
99308780529SAlex Lorenz     // in a different file.
99408780529SAlex Lorenz     MostRecentLocation = getStart(S);
9953836482aSVedant Kumar     handleFileExit(ExitLoc);
996ee02499aSAlex Lorenz   }
997ee02499aSAlex Lorenz 
998bf42cfd7SJustin Bogner   void VisitSwitchCase(const SwitchCase *S) {
999bf42cfd7SJustin Bogner     extendRegion(S);
1000ee02499aSAlex Lorenz 
1001bf42cfd7SJustin Bogner     SourceMappingRegion &Parent = getRegion();
1002bf42cfd7SJustin Bogner 
1003bf42cfd7SJustin Bogner     Counter Count = addCounters(Parent.getCounter(), getRegionCounter(S));
1004bf42cfd7SJustin Bogner     // Reuse the existing region if it starts at our label. This is typical of
1005bf42cfd7SJustin Bogner     // the first case in a switch.
1006bf42cfd7SJustin Bogner     if (Parent.hasStartLoc() && Parent.getStartLoc() == getStart(S))
1007bf42cfd7SJustin Bogner       Parent.setCounter(Count);
1008bf42cfd7SJustin Bogner     else
1009bf42cfd7SJustin Bogner       pushRegion(Count, getStart(S));
1010bf42cfd7SJustin Bogner 
1011376c06c2SSanjay Patel     if (const auto *CS = dyn_cast<CaseStmt>(S)) {
1012bf42cfd7SJustin Bogner       Visit(CS->getLHS());
1013bf42cfd7SJustin Bogner       if (const Expr *RHS = CS->getRHS())
1014bf42cfd7SJustin Bogner         Visit(RHS);
1015bf42cfd7SJustin Bogner     }
1016ee02499aSAlex Lorenz     Visit(S->getSubStmt());
1017ee02499aSAlex Lorenz   }
1018ee02499aSAlex Lorenz 
1019ee02499aSAlex Lorenz   void VisitIfStmt(const IfStmt *S) {
1020bf42cfd7SJustin Bogner     extendRegion(S);
10219d2a16b9SVedant Kumar     if (S->getInit())
10229d2a16b9SVedant Kumar       Visit(S->getInit());
10239d2a16b9SVedant Kumar 
1024055ebc34SJustin Bogner     // Extend into the condition before we propagate through it below - this is
1025055ebc34SJustin Bogner     // needed to handle macros that generate the "if" but not the condition.
1026055ebc34SJustin Bogner     extendRegion(S->getCond());
1027ee02499aSAlex Lorenz 
1028bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
1029bf42cfd7SJustin Bogner     Counter ThenCount = getRegionCounter(S);
1030ee02499aSAlex Lorenz 
103191f2e3c9SJustin Bogner     // Emitting a counter for the condition makes it easier to interpret the
103291f2e3c9SJustin Bogner     // counter for the body when looking at the coverage.
103391f2e3c9SJustin Bogner     propagateCounts(ParentCount, S->getCond());
103491f2e3c9SJustin Bogner 
1035bf42cfd7SJustin Bogner     extendRegion(S->getThen());
1036bf42cfd7SJustin Bogner     Counter OutCount = propagateCounts(ThenCount, S->getThen());
1037bf42cfd7SJustin Bogner 
1038bf42cfd7SJustin Bogner     Counter ElseCount = subtractCounters(ParentCount, ThenCount);
1039bf42cfd7SJustin Bogner     if (const Stmt *Else = S->getElse()) {
1040bf42cfd7SJustin Bogner       extendRegion(S->getElse());
1041bf42cfd7SJustin Bogner       OutCount = addCounters(OutCount, propagateCounts(ElseCount, Else));
1042bf42cfd7SJustin Bogner     } else
1043bf42cfd7SJustin Bogner       OutCount = addCounters(OutCount, ElseCount);
1044bf42cfd7SJustin Bogner 
1045bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
1046bf42cfd7SJustin Bogner       pushRegion(OutCount);
1047ee02499aSAlex Lorenz   }
1048ee02499aSAlex Lorenz 
1049ee02499aSAlex Lorenz   void VisitCXXTryStmt(const CXXTryStmt *S) {
1050bf42cfd7SJustin Bogner     extendRegion(S);
1051049908b2SVedant Kumar     // Handle macros that generate the "try" but not the rest.
1052049908b2SVedant Kumar     extendRegion(S->getTryBlock());
1053049908b2SVedant Kumar 
1054049908b2SVedant Kumar     Counter ParentCount = getRegion().getCounter();
1055049908b2SVedant Kumar     propagateCounts(ParentCount, S->getTryBlock());
1056049908b2SVedant Kumar 
1057ee02499aSAlex Lorenz     for (unsigned I = 0, E = S->getNumHandlers(); I < E; ++I)
1058ee02499aSAlex Lorenz       Visit(S->getHandler(I));
1059bf42cfd7SJustin Bogner 
1060bf42cfd7SJustin Bogner     Counter ExitCount = getRegionCounter(S);
1061bf42cfd7SJustin Bogner     pushRegion(ExitCount);
1062ee02499aSAlex Lorenz   }
1063ee02499aSAlex Lorenz 
1064ee02499aSAlex Lorenz   void VisitCXXCatchStmt(const CXXCatchStmt *S) {
1065bf42cfd7SJustin Bogner     propagateCounts(getRegionCounter(S), S->getHandlerBlock());
1066ee02499aSAlex Lorenz   }
1067ee02499aSAlex Lorenz 
1068ee02499aSAlex Lorenz   void VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
1069bf42cfd7SJustin Bogner     extendRegion(E);
1070ee02499aSAlex Lorenz 
1071bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
1072bf42cfd7SJustin Bogner     Counter TrueCount = getRegionCounter(E);
1073ee02499aSAlex Lorenz 
1074e3654ce7SJustin Bogner     Visit(E->getCond());
1075e3654ce7SJustin Bogner 
1076e3654ce7SJustin Bogner     if (!isa<BinaryConditionalOperator>(E)) {
1077e3654ce7SJustin Bogner       extendRegion(E->getTrueExpr());
1078bf42cfd7SJustin Bogner       propagateCounts(TrueCount, E->getTrueExpr());
1079e3654ce7SJustin Bogner     }
1080e3654ce7SJustin Bogner     extendRegion(E->getFalseExpr());
1081bf42cfd7SJustin Bogner     propagateCounts(subtractCounters(ParentCount, TrueCount),
1082bf42cfd7SJustin Bogner                     E->getFalseExpr());
1083ee02499aSAlex Lorenz   }
1084ee02499aSAlex Lorenz 
1085ee02499aSAlex Lorenz   void VisitBinLAnd(const BinaryOperator *E) {
1086bf42cfd7SJustin Bogner     extendRegion(E);
1087ee02499aSAlex Lorenz     Visit(E->getLHS());
1088bf42cfd7SJustin Bogner 
1089bf42cfd7SJustin Bogner     extendRegion(E->getRHS());
1090bf42cfd7SJustin Bogner     propagateCounts(getRegionCounter(E), E->getRHS());
1091ee02499aSAlex Lorenz   }
1092ee02499aSAlex Lorenz 
1093ee02499aSAlex Lorenz   void VisitBinLOr(const BinaryOperator *E) {
1094bf42cfd7SJustin Bogner     extendRegion(E);
1095ee02499aSAlex Lorenz     Visit(E->getLHS());
1096ee02499aSAlex Lorenz 
1097bf42cfd7SJustin Bogner     extendRegion(E->getRHS());
1098bf42cfd7SJustin Bogner     propagateCounts(getRegionCounter(E), E->getRHS());
109901a0d062SAlex Lorenz   }
1100c109102eSJustin Bogner 
1101c109102eSJustin Bogner   void VisitLambdaExpr(const LambdaExpr *LE) {
1102c109102eSJustin Bogner     // Lambdas are treated as their own functions for now, so we shouldn't
1103c109102eSJustin Bogner     // propagate counts into them.
1104c109102eSJustin Bogner   }
1105ee02499aSAlex Lorenz };
1106ee02499aSAlex Lorenz 
11071f39fcf2SXinliang David Li std::string getCoverageSection(const CodeGenModule &CGM) {
11088a767a43SVedant Kumar   return llvm::getInstrProfSectionName(
11098a767a43SVedant Kumar       llvm::IPSK_covmap,
11108a767a43SVedant Kumar       CGM.getContext().getTargetInfo().getTriple().getObjectFormat());
1111ee02499aSAlex Lorenz }
1112ee02499aSAlex Lorenz 
111314f8fb68SVedant Kumar std::string normalizeFilename(StringRef Filename) {
111414f8fb68SVedant Kumar   llvm::SmallString<256> Path(Filename);
111514f8fb68SVedant Kumar   llvm::sys::fs::make_absolute(Path);
1116d04929d8SVedant Kumar   llvm::sys::path::remove_dots(Path, /*remove_dot_dots=*/true);
111714f8fb68SVedant Kumar   return Path.str().str();
111814f8fb68SVedant Kumar }
111914f8fb68SVedant Kumar 
112014f8fb68SVedant Kumar } // end anonymous namespace
112114f8fb68SVedant Kumar 
1122a432d176SJustin Bogner static void dump(llvm::raw_ostream &OS, StringRef FunctionName,
1123a432d176SJustin Bogner                  ArrayRef<CounterExpression> Expressions,
1124a432d176SJustin Bogner                  ArrayRef<CounterMappingRegion> Regions) {
1125a432d176SJustin Bogner   OS << FunctionName << ":\n";
1126a432d176SJustin Bogner   CounterMappingContext Ctx(Expressions);
1127a432d176SJustin Bogner   for (const auto &R : Regions) {
1128f2cf38e0SAlex Lorenz     OS.indent(2);
1129f2cf38e0SAlex Lorenz     switch (R.Kind) {
1130f2cf38e0SAlex Lorenz     case CounterMappingRegion::CodeRegion:
1131f2cf38e0SAlex Lorenz       break;
1132f2cf38e0SAlex Lorenz     case CounterMappingRegion::ExpansionRegion:
1133f2cf38e0SAlex Lorenz       OS << "Expansion,";
1134f2cf38e0SAlex Lorenz       break;
1135f2cf38e0SAlex Lorenz     case CounterMappingRegion::SkippedRegion:
1136f2cf38e0SAlex Lorenz       OS << "Skipped,";
1137f2cf38e0SAlex Lorenz       break;
1138a1c4deb7SVedant Kumar     case CounterMappingRegion::GapRegion:
1139a1c4deb7SVedant Kumar       OS << "Gap,";
1140a1c4deb7SVedant Kumar       break;
1141f2cf38e0SAlex Lorenz     }
1142f2cf38e0SAlex Lorenz 
11434da909b2SJustin Bogner     OS << "File " << R.FileID << ", " << R.LineStart << ":" << R.ColumnStart
11444da909b2SJustin Bogner        << " -> " << R.LineEnd << ":" << R.ColumnEnd << " = ";
1145f69dc349SJustin Bogner     Ctx.dump(R.Count, OS);
1146f2cf38e0SAlex Lorenz     if (R.Kind == CounterMappingRegion::ExpansionRegion)
11474da909b2SJustin Bogner       OS << " (Expanded file = " << R.ExpandedFileID << ")";
11484da909b2SJustin Bogner     OS << "\n";
1149f2cf38e0SAlex Lorenz   }
1150f2cf38e0SAlex Lorenz }
1151f2cf38e0SAlex Lorenz 
1152ee02499aSAlex Lorenz void CoverageMappingModuleGen::addFunctionMappingRecord(
11532129ae53SXinliang David Li     llvm::GlobalVariable *NamePtr, StringRef NameValue, uint64_t FuncHash,
1154848da137SXinliang David Li     const std::string &CoverageMapping, bool IsUsed) {
1155ee02499aSAlex Lorenz   llvm::LLVMContext &Ctx = CGM.getLLVMContext();
1156ee02499aSAlex Lorenz   if (!FunctionRecordTy) {
1157a026a437SXinliang David Li #define COVMAP_FUNC_RECORD(Type, LLVMType, Name, Init) LLVMType,
1158a026a437SXinliang David Li     llvm::Type *FunctionRecordTypes[] = {
1159a026a437SXinliang David Li       #include "llvm/ProfileData/InstrProfData.inc"
1160a026a437SXinliang David Li     };
1161ee02499aSAlex Lorenz     FunctionRecordTy =
11624dc5adc7SJustin Bogner         llvm::StructType::get(Ctx, makeArrayRef(FunctionRecordTypes),
11634dc5adc7SJustin Bogner                               /*isPacked=*/true);
1164ee02499aSAlex Lorenz   }
1165ee02499aSAlex Lorenz 
1166a026a437SXinliang David Li   #define COVMAP_FUNC_RECORD(Type, LLVMType, Name, Init) Init,
1167ee02499aSAlex Lorenz   llvm::Constant *FunctionRecordVals[] = {
1168a026a437SXinliang David Li       #include "llvm/ProfileData/InstrProfData.inc"
1169a026a437SXinliang David Li   };
1170ee02499aSAlex Lorenz   FunctionRecords.push_back(llvm::ConstantStruct::get(
1171ee02499aSAlex Lorenz       FunctionRecordTy, makeArrayRef(FunctionRecordVals)));
1172848da137SXinliang David Li   if (!IsUsed)
11732129ae53SXinliang David Li     FunctionNames.push_back(
11742129ae53SXinliang David Li         llvm::ConstantExpr::getBitCast(NamePtr, llvm::Type::getInt8PtrTy(Ctx)));
1175ca3326c0SVedant Kumar   CoverageMappings.push_back(CoverageMapping);
1176f2cf38e0SAlex Lorenz 
1177f2cf38e0SAlex Lorenz   if (CGM.getCodeGenOpts().DumpCoverageMapping) {
1178f2cf38e0SAlex Lorenz     // Dump the coverage mapping data for this function by decoding the
1179f2cf38e0SAlex Lorenz     // encoded data. This allows us to dump the mapping regions which were
1180f2cf38e0SAlex Lorenz     // also processed by the CoverageMappingWriter which performs
1181f2cf38e0SAlex Lorenz     // additional minimization operations such as reducing the number of
1182f2cf38e0SAlex Lorenz     // expressions.
1183f2cf38e0SAlex Lorenz     std::vector<StringRef> Filenames;
1184f2cf38e0SAlex Lorenz     std::vector<CounterExpression> Expressions;
1185f2cf38e0SAlex Lorenz     std::vector<CounterMappingRegion> Regions;
1186b31ee819SJordan Rose     llvm::SmallVector<std::string, 16> FilenameStrs;
1187f2cf38e0SAlex Lorenz     llvm::SmallVector<StringRef, 16> FilenameRefs;
1188b31ee819SJordan Rose     FilenameStrs.resize(FileEntries.size());
1189f2cf38e0SAlex Lorenz     FilenameRefs.resize(FileEntries.size());
1190b31ee819SJordan Rose     for (const auto &Entry : FileEntries) {
1191b31ee819SJordan Rose       auto I = Entry.second;
1192b31ee819SJordan Rose       FilenameStrs[I] = normalizeFilename(Entry.first->getName());
1193b31ee819SJordan Rose       FilenameRefs[I] = FilenameStrs[I];
1194b31ee819SJordan Rose     }
1195a432d176SJustin Bogner     RawCoverageMappingReader Reader(CoverageMapping, FilenameRefs, Filenames,
1196a432d176SJustin Bogner                                     Expressions, Regions);
1197a432d176SJustin Bogner     if (Reader.read())
1198f2cf38e0SAlex Lorenz       return;
1199a026a437SXinliang David Li     dump(llvm::outs(), NameValue, Expressions, Regions);
1200f2cf38e0SAlex Lorenz   }
1201ee02499aSAlex Lorenz }
1202ee02499aSAlex Lorenz 
1203ee02499aSAlex Lorenz void CoverageMappingModuleGen::emit() {
1204ee02499aSAlex Lorenz   if (FunctionRecords.empty())
1205ee02499aSAlex Lorenz     return;
1206ee02499aSAlex Lorenz   llvm::LLVMContext &Ctx = CGM.getLLVMContext();
1207ee02499aSAlex Lorenz   auto *Int32Ty = llvm::Type::getInt32Ty(Ctx);
1208ee02499aSAlex Lorenz 
1209ee02499aSAlex Lorenz   // Create the filenames and merge them with coverage mappings
1210ee02499aSAlex Lorenz   llvm::SmallVector<std::string, 16> FilenameStrs;
12119e324dd1SVedant Kumar   llvm::SmallVector<StringRef, 16> FilenameRefs;
1212ee02499aSAlex Lorenz   FilenameStrs.resize(FileEntries.size());
12139e324dd1SVedant Kumar   FilenameRefs.resize(FileEntries.size());
1214ee02499aSAlex Lorenz   for (const auto &Entry : FileEntries) {
1215ee02499aSAlex Lorenz     auto I = Entry.second;
121614f8fb68SVedant Kumar     FilenameStrs[I] = normalizeFilename(Entry.first->getName());
12179e324dd1SVedant Kumar     FilenameRefs[I] = FilenameStrs[I];
1218ee02499aSAlex Lorenz   }
1219ee02499aSAlex Lorenz 
12209e324dd1SVedant Kumar   std::string FilenamesAndCoverageMappings;
12219e324dd1SVedant Kumar   llvm::raw_string_ostream OS(FilenamesAndCoverageMappings);
12229e324dd1SVedant Kumar   CoverageFilenamesSectionWriter(FilenameRefs).write(OS);
12239e324dd1SVedant Kumar   std::string RawCoverageMappings =
12249e324dd1SVedant Kumar       llvm::join(CoverageMappings.begin(), CoverageMappings.end(), "");
12259e324dd1SVedant Kumar   OS << RawCoverageMappings;
12269e324dd1SVedant Kumar   size_t CoverageMappingSize = RawCoverageMappings.size();
12279e324dd1SVedant Kumar   size_t FilenamesSize = OS.str().size() - CoverageMappingSize;
12289e324dd1SVedant Kumar   // Append extra zeroes if necessary to ensure that the size of the filenames
12299e324dd1SVedant Kumar   // and coverage mappings is a multiple of 8.
12309e324dd1SVedant Kumar   if (size_t Rem = OS.str().size() % 8) {
12319e324dd1SVedant Kumar     CoverageMappingSize += 8 - Rem;
12329e324dd1SVedant Kumar     for (size_t I = 0, S = 8 - Rem; I < S; ++I)
12339e324dd1SVedant Kumar       OS << '\0';
1234ee02499aSAlex Lorenz   }
1235ee02499aSAlex Lorenz   auto *FilenamesAndMappingsVal =
12369e324dd1SVedant Kumar       llvm::ConstantDataArray::getString(Ctx, OS.str(), false);
1237ee02499aSAlex Lorenz 
1238ee02499aSAlex Lorenz   // Create the deferred function records array
1239ee02499aSAlex Lorenz   auto RecordsTy =
1240ee02499aSAlex Lorenz       llvm::ArrayType::get(FunctionRecordTy, FunctionRecords.size());
1241ee02499aSAlex Lorenz   auto RecordsVal = llvm::ConstantArray::get(RecordsTy, FunctionRecords);
1242ee02499aSAlex Lorenz 
124320b188c0SXinliang David Li   llvm::Type *CovDataHeaderTypes[] = {
124420b188c0SXinliang David Li #define COVMAP_HEADER(Type, LLVMType, Name, Init) LLVMType,
124520b188c0SXinliang David Li #include "llvm/ProfileData/InstrProfData.inc"
124620b188c0SXinliang David Li   };
124720b188c0SXinliang David Li   auto CovDataHeaderTy =
124820b188c0SXinliang David Li       llvm::StructType::get(Ctx, makeArrayRef(CovDataHeaderTypes));
124920b188c0SXinliang David Li   llvm::Constant *CovDataHeaderVals[] = {
125020b188c0SXinliang David Li #define COVMAP_HEADER(Type, LLVMType, Name, Init) Init,
125120b188c0SXinliang David Li #include "llvm/ProfileData/InstrProfData.inc"
125220b188c0SXinliang David Li   };
125320b188c0SXinliang David Li   auto CovDataHeaderVal = llvm::ConstantStruct::get(
125420b188c0SXinliang David Li       CovDataHeaderTy, makeArrayRef(CovDataHeaderVals));
125520b188c0SXinliang David Li 
1256ee02499aSAlex Lorenz   // Create the coverage data record
125720b188c0SXinliang David Li   llvm::Type *CovDataTypes[] = {CovDataHeaderTy, RecordsTy,
125820b188c0SXinliang David Li                                 FilenamesAndMappingsVal->getType()};
1259ee02499aSAlex Lorenz   auto CovDataTy = llvm::StructType::get(Ctx, makeArrayRef(CovDataTypes));
126020b188c0SXinliang David Li   llvm::Constant *TUDataVals[] = {CovDataHeaderVal, RecordsVal,
126120b188c0SXinliang David Li                                   FilenamesAndMappingsVal};
1262ee02499aSAlex Lorenz   auto CovDataVal =
1263ee02499aSAlex Lorenz       llvm::ConstantStruct::get(CovDataTy, makeArrayRef(TUDataVals));
126420b188c0SXinliang David Li   auto CovData = new llvm::GlobalVariable(
126520b188c0SXinliang David Li       CGM.getModule(), CovDataTy, true, llvm::GlobalValue::InternalLinkage,
126620b188c0SXinliang David Li       CovDataVal, llvm::getCoverageMappingVarName());
1267ee02499aSAlex Lorenz 
1268ee02499aSAlex Lorenz   CovData->setSection(getCoverageSection(CGM));
1269ee02499aSAlex Lorenz   CovData->setAlignment(8);
1270ee02499aSAlex Lorenz 
1271ee02499aSAlex Lorenz   // Make sure the data doesn't get deleted.
1272ee02499aSAlex Lorenz   CGM.addUsedGlobal(CovData);
12732129ae53SXinliang David Li   // Create the deferred function records array
12742129ae53SXinliang David Li   if (!FunctionNames.empty()) {
12752129ae53SXinliang David Li     auto NamesArrTy = llvm::ArrayType::get(llvm::Type::getInt8PtrTy(Ctx),
12762129ae53SXinliang David Li                                            FunctionNames.size());
12772129ae53SXinliang David Li     auto NamesArrVal = llvm::ConstantArray::get(NamesArrTy, FunctionNames);
12782129ae53SXinliang David Li     // This variable will *NOT* be emitted to the object file. It is used
12792129ae53SXinliang David Li     // to pass the list of names referenced to codegen.
12802129ae53SXinliang David Li     new llvm::GlobalVariable(CGM.getModule(), NamesArrTy, true,
12812129ae53SXinliang David Li                              llvm::GlobalValue::InternalLinkage, NamesArrVal,
12827077f0afSXinliang David Li                              llvm::getCoverageUnusedNamesVarName());
12832129ae53SXinliang David Li   }
1284ee02499aSAlex Lorenz }
1285ee02499aSAlex Lorenz 
1286ee02499aSAlex Lorenz unsigned CoverageMappingModuleGen::getFileID(const FileEntry *File) {
1287ee02499aSAlex Lorenz   auto It = FileEntries.find(File);
1288ee02499aSAlex Lorenz   if (It != FileEntries.end())
1289ee02499aSAlex Lorenz     return It->second;
1290ee02499aSAlex Lorenz   unsigned FileID = FileEntries.size();
1291ee02499aSAlex Lorenz   FileEntries.insert(std::make_pair(File, FileID));
1292ee02499aSAlex Lorenz   return FileID;
1293ee02499aSAlex Lorenz }
1294ee02499aSAlex Lorenz 
1295ee02499aSAlex Lorenz void CoverageMappingGen::emitCounterMapping(const Decl *D,
1296ee02499aSAlex Lorenz                                             llvm::raw_ostream &OS) {
1297ee02499aSAlex Lorenz   assert(CounterMap);
1298e5ee6c58SJustin Bogner   CounterCoverageMappingBuilder Walker(CVM, *CounterMap, SM, LangOpts);
1299ee02499aSAlex Lorenz   Walker.VisitDecl(D);
1300ee02499aSAlex Lorenz   Walker.write(OS);
1301ee02499aSAlex Lorenz }
1302ee02499aSAlex Lorenz 
1303ee02499aSAlex Lorenz void CoverageMappingGen::emitEmptyMapping(const Decl *D,
1304ee02499aSAlex Lorenz                                           llvm::raw_ostream &OS) {
1305ee02499aSAlex Lorenz   EmptyCoverageMappingBuilder Walker(CVM, SM, LangOpts);
1306ee02499aSAlex Lorenz   Walker.VisitDecl(D);
1307ee02499aSAlex Lorenz   Walker.write(OS);
1308ee02499aSAlex Lorenz }
1309