1ee02499aSAlex Lorenz //===--- CoverageMappingGen.cpp - Coverage mapping generation ---*- C++ -*-===//
2ee02499aSAlex Lorenz //
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
6ee02499aSAlex Lorenz //
7ee02499aSAlex Lorenz //===----------------------------------------------------------------------===//
8ee02499aSAlex Lorenz //
9ee02499aSAlex Lorenz // Instrumentation-based code coverage mapping generator
10ee02499aSAlex Lorenz //
11ee02499aSAlex Lorenz //===----------------------------------------------------------------------===//
12ee02499aSAlex Lorenz 
13ee02499aSAlex Lorenz #include "CoverageMappingGen.h"
14ee02499aSAlex Lorenz #include "CodeGenFunction.h"
15ee02499aSAlex Lorenz #include "clang/AST/StmtVisitor.h"
16*dd1ea9deSVedant Kumar #include "clang/Basic/Diagnostic.h"
17*dd1ea9deSVedant Kumar #include "clang/Frontend/FrontendDiagnostic.h"
18ee02499aSAlex Lorenz #include "clang/Lex/Lexer.h"
19bc6b80a0SVedant Kumar #include "llvm/ADT/SmallSet.h"
20ca3326c0SVedant Kumar #include "llvm/ADT/StringExtras.h"
21bf42cfd7SJustin Bogner #include "llvm/ADT/Optional.h"
22b014ee46SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMapping.h"
23b014ee46SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMappingReader.h"
24b014ee46SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMappingWriter.h"
250d9593ddSChandler Carruth #include "llvm/ProfileData/InstrProfReader.h"
26ee02499aSAlex Lorenz #include "llvm/Support/FileSystem.h"
2714f8fb68SVedant Kumar #include "llvm/Support/Path.h"
28ee02499aSAlex Lorenz 
29*dd1ea9deSVedant Kumar // This selects the coverage mapping format defined when `InstrProfData.inc`
30*dd1ea9deSVedant Kumar // is textually included.
31*dd1ea9deSVedant Kumar #define COVMAP_V3
32*dd1ea9deSVedant Kumar 
33ee02499aSAlex Lorenz using namespace clang;
34ee02499aSAlex Lorenz using namespace CodeGen;
35ee02499aSAlex Lorenz using namespace llvm::coverage;
36ee02499aSAlex Lorenz 
373919a501SVedant Kumar void CoverageSourceInfo::SourceRangeSkipped(SourceRange Range, SourceLocation) {
38ee02499aSAlex Lorenz   SkippedRanges.push_back(Range);
39ee02499aSAlex Lorenz }
40ee02499aSAlex Lorenz 
41ee02499aSAlex Lorenz namespace {
42ee02499aSAlex Lorenz 
439fc8faf9SAdrian Prantl /// A region of source code that can be mapped to a counter.
4409c7179bSJustin Bogner class SourceMappingRegion {
45ee02499aSAlex Lorenz   Counter Count;
46ee02499aSAlex Lorenz 
479fc8faf9SAdrian Prantl   /// The region's starting location.
48bf42cfd7SJustin Bogner   Optional<SourceLocation> LocStart;
49ee02499aSAlex Lorenz 
509fc8faf9SAdrian Prantl   /// The region's ending location.
51bf42cfd7SJustin Bogner   Optional<SourceLocation> LocEnd;
52ee02499aSAlex Lorenz 
53747b0e29SVedant Kumar   /// Whether this region should be emitted after its parent is emitted.
54747b0e29SVedant Kumar   bool DeferRegion;
55747b0e29SVedant Kumar 
56a1c4deb7SVedant Kumar   /// Whether this region is a gap region. The count from a gap region is set
57a1c4deb7SVedant Kumar   /// as the line execution count if there are no other regions on the line.
58a1c4deb7SVedant Kumar   bool GapRegion;
59a1c4deb7SVedant Kumar 
6009c7179bSJustin Bogner public:
61bf42cfd7SJustin Bogner   SourceMappingRegion(Counter Count, Optional<SourceLocation> LocStart,
62a1c4deb7SVedant Kumar                       Optional<SourceLocation> LocEnd, bool DeferRegion = false,
63a1c4deb7SVedant Kumar                       bool GapRegion = false)
64747b0e29SVedant Kumar       : Count(Count), LocStart(LocStart), LocEnd(LocEnd),
65a1c4deb7SVedant Kumar         DeferRegion(DeferRegion), GapRegion(GapRegion) {}
66ee02499aSAlex Lorenz 
6709c7179bSJustin Bogner   const Counter &getCounter() const { return Count; }
6809c7179bSJustin Bogner 
69bf42cfd7SJustin Bogner   void setCounter(Counter C) { Count = C; }
7009c7179bSJustin Bogner 
71bf42cfd7SJustin Bogner   bool hasStartLoc() const { return LocStart.hasValue(); }
72bf42cfd7SJustin Bogner 
73bf42cfd7SJustin Bogner   void setStartLoc(SourceLocation Loc) { LocStart = Loc; }
74bf42cfd7SJustin Bogner 
753cffc4c7SStephen Kelly   SourceLocation getBeginLoc() const {
76bf42cfd7SJustin Bogner     assert(LocStart && "Region has no start location");
77bf42cfd7SJustin Bogner     return *LocStart;
7809c7179bSJustin Bogner   }
7909c7179bSJustin Bogner 
80bf42cfd7SJustin Bogner   bool hasEndLoc() const { return LocEnd.hasValue(); }
81ee02499aSAlex Lorenz 
82a14a1f92SVedant Kumar   void setEndLoc(SourceLocation Loc) {
83a14a1f92SVedant Kumar     assert(Loc.isValid() && "Setting an invalid end location");
84a14a1f92SVedant Kumar     LocEnd = Loc;
85a14a1f92SVedant Kumar   }
86ee02499aSAlex Lorenz 
87462c77b4SCraig Topper   SourceLocation getEndLoc() const {
88bf42cfd7SJustin Bogner     assert(LocEnd && "Region has no end location");
89bf42cfd7SJustin Bogner     return *LocEnd;
90ee02499aSAlex Lorenz   }
91747b0e29SVedant Kumar 
92747b0e29SVedant Kumar   bool isDeferred() const { return DeferRegion; }
93747b0e29SVedant Kumar 
94747b0e29SVedant Kumar   void setDeferred(bool Deferred) { DeferRegion = Deferred; }
95a1c4deb7SVedant Kumar 
96a1c4deb7SVedant Kumar   bool isGap() const { return GapRegion; }
97a1c4deb7SVedant Kumar 
98a1c4deb7SVedant Kumar   void setGap(bool Gap) { GapRegion = Gap; }
99ee02499aSAlex Lorenz };
100ee02499aSAlex Lorenz 
101d7369648SVedant Kumar /// Spelling locations for the start and end of a source region.
102d7369648SVedant Kumar struct SpellingRegion {
103d7369648SVedant Kumar   /// The line where the region starts.
104d7369648SVedant Kumar   unsigned LineStart;
105d7369648SVedant Kumar 
106d7369648SVedant Kumar   /// The column where the region starts.
107d7369648SVedant Kumar   unsigned ColumnStart;
108d7369648SVedant Kumar 
109d7369648SVedant Kumar   /// The line where the region ends.
110d7369648SVedant Kumar   unsigned LineEnd;
111d7369648SVedant Kumar 
112d7369648SVedant Kumar   /// The column where the region ends.
113d7369648SVedant Kumar   unsigned ColumnEnd;
114d7369648SVedant Kumar 
115d7369648SVedant Kumar   SpellingRegion(SourceManager &SM, SourceLocation LocStart,
116d7369648SVedant Kumar                  SourceLocation LocEnd) {
117d7369648SVedant Kumar     LineStart = SM.getSpellingLineNumber(LocStart);
118d7369648SVedant Kumar     ColumnStart = SM.getSpellingColumnNumber(LocStart);
119d7369648SVedant Kumar     LineEnd = SM.getSpellingLineNumber(LocEnd);
120d7369648SVedant Kumar     ColumnEnd = SM.getSpellingColumnNumber(LocEnd);
121d7369648SVedant Kumar   }
122d7369648SVedant Kumar 
123fa8fa044SVedant Kumar   SpellingRegion(SourceManager &SM, SourceMappingRegion &R)
124a6e4358fSStephen Kelly       : SpellingRegion(SM, R.getBeginLoc(), R.getEndLoc()) {}
125fa8fa044SVedant Kumar 
126d7369648SVedant Kumar   /// Check if the start and end locations appear in source order, i.e
127d7369648SVedant Kumar   /// top->bottom, left->right.
128d7369648SVedant Kumar   bool isInSourceOrder() const {
129d7369648SVedant Kumar     return (LineStart < LineEnd) ||
130d7369648SVedant Kumar            (LineStart == LineEnd && ColumnStart <= ColumnEnd);
131d7369648SVedant Kumar   }
132d7369648SVedant Kumar };
133d7369648SVedant Kumar 
1349fc8faf9SAdrian Prantl /// Provides the common functionality for the different
135ee02499aSAlex Lorenz /// coverage mapping region builders.
136ee02499aSAlex Lorenz class CoverageMappingBuilder {
137ee02499aSAlex Lorenz public:
138ee02499aSAlex Lorenz   CoverageMappingModuleGen &CVM;
139ee02499aSAlex Lorenz   SourceManager &SM;
140ee02499aSAlex Lorenz   const LangOptions &LangOpts;
141ee02499aSAlex Lorenz 
142ee02499aSAlex Lorenz private:
1439fc8faf9SAdrian Prantl   /// Map of clang's FileIDs to IDs used for coverage mapping.
144bf42cfd7SJustin Bogner   llvm::SmallDenseMap<FileID, std::pair<unsigned, SourceLocation>, 8>
145bf42cfd7SJustin Bogner       FileIDMapping;
146ee02499aSAlex Lorenz 
147ee02499aSAlex Lorenz public:
1489fc8faf9SAdrian Prantl   /// The coverage mapping regions for this function
149ee02499aSAlex Lorenz   llvm::SmallVector<CounterMappingRegion, 32> MappingRegions;
1509fc8faf9SAdrian Prantl   /// The source mapping regions for this function.
151f59329b0SJustin Bogner   std::vector<SourceMappingRegion> SourceRegions;
152ee02499aSAlex Lorenz 
1539fc8faf9SAdrian Prantl   /// A set of regions which can be used as a filter.
154fc05ee34SIgor Kudrin   ///
155fc05ee34SIgor Kudrin   /// It is produced by emitExpansionRegions() and is used in
156fc05ee34SIgor Kudrin   /// emitSourceRegions() to suppress producing code regions if
157fc05ee34SIgor Kudrin   /// the same area is covered by expansion regions.
158fc05ee34SIgor Kudrin   typedef llvm::SmallSet<std::pair<SourceLocation, SourceLocation>, 8>
159fc05ee34SIgor Kudrin       SourceRegionFilter;
160fc05ee34SIgor Kudrin 
161ee02499aSAlex Lorenz   CoverageMappingBuilder(CoverageMappingModuleGen &CVM, SourceManager &SM,
162ee02499aSAlex Lorenz                          const LangOptions &LangOpts)
163bf42cfd7SJustin Bogner       : CVM(CVM), SM(SM), LangOpts(LangOpts) {}
164ee02499aSAlex Lorenz 
1659fc8faf9SAdrian Prantl   /// Return the precise end location for the given token.
166ee02499aSAlex Lorenz   SourceLocation getPreciseTokenLocEnd(SourceLocation Loc) {
167bf42cfd7SJustin Bogner     // We avoid getLocForEndOfToken here, because it doesn't do what we want for
168bf42cfd7SJustin Bogner     // macro locations, which we just treat as expanded files.
169bf42cfd7SJustin Bogner     unsigned TokLen =
170bf42cfd7SJustin Bogner         Lexer::MeasureTokenLength(SM.getSpellingLoc(Loc), SM, LangOpts);
171bf42cfd7SJustin Bogner     return Loc.getLocWithOffset(TokLen);
172ee02499aSAlex Lorenz   }
173ee02499aSAlex Lorenz 
1749fc8faf9SAdrian Prantl   /// Return the start location of an included file or expanded macro.
175bf42cfd7SJustin Bogner   SourceLocation getStartOfFileOrMacro(SourceLocation Loc) {
176bf42cfd7SJustin Bogner     if (Loc.isMacroID())
177bf42cfd7SJustin Bogner       return Loc.getLocWithOffset(-SM.getFileOffset(Loc));
178bf42cfd7SJustin Bogner     return SM.getLocForStartOfFile(SM.getFileID(Loc));
179ee02499aSAlex Lorenz   }
180ee02499aSAlex Lorenz 
1819fc8faf9SAdrian Prantl   /// Return the end location of an included file or expanded macro.
182bf42cfd7SJustin Bogner   SourceLocation getEndOfFileOrMacro(SourceLocation Loc) {
183bf42cfd7SJustin Bogner     if (Loc.isMacroID())
184bf42cfd7SJustin Bogner       return Loc.getLocWithOffset(SM.getFileIDSize(SM.getFileID(Loc)) -
185f14b2078SJustin Bogner                                   SM.getFileOffset(Loc));
186bf42cfd7SJustin Bogner     return SM.getLocForEndOfFile(SM.getFileID(Loc));
187bf42cfd7SJustin Bogner   }
188ee02499aSAlex Lorenz 
1899fc8faf9SAdrian Prantl   /// Find out where the current file is included or macro is expanded.
190bf42cfd7SJustin Bogner   SourceLocation getIncludeOrExpansionLoc(SourceLocation Loc) {
191b5f8171aSRichard Smith     return Loc.isMacroID() ? SM.getImmediateExpansionRange(Loc).getBegin()
192bf42cfd7SJustin Bogner                            : SM.getIncludeLoc(SM.getFileID(Loc));
193bf42cfd7SJustin Bogner   }
194bf42cfd7SJustin Bogner 
1959fc8faf9SAdrian Prantl   /// Return true if \c Loc is a location in a built-in macro.
196682bfbf3SJustin Bogner   bool isInBuiltin(SourceLocation Loc) {
19799d1b295SMehdi Amini     return SM.getBufferName(SM.getSpellingLoc(Loc)) == "<built-in>";
198682bfbf3SJustin Bogner   }
199682bfbf3SJustin Bogner 
2009fc8faf9SAdrian Prantl   /// Check whether \c Loc is included or expanded from \c Parent.
201d9e1a61dSIgor Kudrin   bool isNestedIn(SourceLocation Loc, FileID Parent) {
202d9e1a61dSIgor Kudrin     do {
203d9e1a61dSIgor Kudrin       Loc = getIncludeOrExpansionLoc(Loc);
204d9e1a61dSIgor Kudrin       if (Loc.isInvalid())
205d9e1a61dSIgor Kudrin         return false;
206d9e1a61dSIgor Kudrin     } while (!SM.isInFileID(Loc, Parent));
207d9e1a61dSIgor Kudrin     return true;
208d9e1a61dSIgor Kudrin   }
209d9e1a61dSIgor Kudrin 
2109fc8faf9SAdrian Prantl   /// Get the start of \c S ignoring macro arguments and builtin macros.
211bf42cfd7SJustin Bogner   SourceLocation getStart(const Stmt *S) {
212f2ceec48SStephen Kelly     SourceLocation Loc = S->getBeginLoc();
213682bfbf3SJustin Bogner     while (SM.isMacroArgExpansion(Loc) || isInBuiltin(Loc))
214b5f8171aSRichard Smith       Loc = SM.getImmediateExpansionRange(Loc).getBegin();
215bf42cfd7SJustin Bogner     return Loc;
216bf42cfd7SJustin Bogner   }
217bf42cfd7SJustin Bogner 
2189fc8faf9SAdrian Prantl   /// Get the end of \c S ignoring macro arguments and builtin macros.
219bf42cfd7SJustin Bogner   SourceLocation getEnd(const Stmt *S) {
2201c301dcbSStephen Kelly     SourceLocation Loc = S->getEndLoc();
221682bfbf3SJustin Bogner     while (SM.isMacroArgExpansion(Loc) || isInBuiltin(Loc))
222b5f8171aSRichard Smith       Loc = SM.getImmediateExpansionRange(Loc).getBegin();
223f14b2078SJustin Bogner     return getPreciseTokenLocEnd(Loc);
224bf42cfd7SJustin Bogner   }
225bf42cfd7SJustin Bogner 
2269fc8faf9SAdrian Prantl   /// Find the set of files we have regions for and assign IDs
227bf42cfd7SJustin Bogner   ///
228bf42cfd7SJustin Bogner   /// Fills \c Mapping with the virtual file mapping needed to write out
229bf42cfd7SJustin Bogner   /// coverage and collects the necessary file information to emit source and
230bf42cfd7SJustin Bogner   /// expansion regions.
231bf42cfd7SJustin Bogner   void gatherFileIDs(SmallVectorImpl<unsigned> &Mapping) {
232bf42cfd7SJustin Bogner     FileIDMapping.clear();
233bf42cfd7SJustin Bogner 
234bc6b80a0SVedant Kumar     llvm::SmallSet<FileID, 8> Visited;
235bf42cfd7SJustin Bogner     SmallVector<std::pair<SourceLocation, unsigned>, 8> FileLocs;
236bf42cfd7SJustin Bogner     for (const auto &Region : SourceRegions) {
237a6e4358fSStephen Kelly       SourceLocation Loc = Region.getBeginLoc();
238bf42cfd7SJustin Bogner       FileID File = SM.getFileID(Loc);
239bc6b80a0SVedant Kumar       if (!Visited.insert(File).second)
240bf42cfd7SJustin Bogner         continue;
241bf42cfd7SJustin Bogner 
24293205af0SVedant Kumar       // Do not map FileID's associated with system headers.
24393205af0SVedant Kumar       if (SM.isInSystemHeader(SM.getSpellingLoc(Loc)))
24493205af0SVedant Kumar         continue;
24593205af0SVedant Kumar 
246bf42cfd7SJustin Bogner       unsigned Depth = 0;
247bf42cfd7SJustin Bogner       for (SourceLocation Parent = getIncludeOrExpansionLoc(Loc);
248ed1fe5d0SYaron Keren            Parent.isValid(); Parent = getIncludeOrExpansionLoc(Parent))
249bf42cfd7SJustin Bogner         ++Depth;
250bf42cfd7SJustin Bogner       FileLocs.push_back(std::make_pair(Loc, Depth));
251bf42cfd7SJustin Bogner     }
252899d1392SFangrui Song     llvm::stable_sort(FileLocs, llvm::less_second());
253bf42cfd7SJustin Bogner 
254bf42cfd7SJustin Bogner     for (const auto &FL : FileLocs) {
255bf42cfd7SJustin Bogner       SourceLocation Loc = FL.first;
256bf42cfd7SJustin Bogner       FileID SpellingFile = SM.getDecomposedSpellingLoc(Loc).first;
257ee02499aSAlex Lorenz       auto Entry = SM.getFileEntryForID(SpellingFile);
258ee02499aSAlex Lorenz       if (!Entry)
259bf42cfd7SJustin Bogner         continue;
260ee02499aSAlex Lorenz 
261bf42cfd7SJustin Bogner       FileIDMapping[SM.getFileID(Loc)] = std::make_pair(Mapping.size(), Loc);
262bf42cfd7SJustin Bogner       Mapping.push_back(CVM.getFileID(Entry));
263bf42cfd7SJustin Bogner     }
264ee02499aSAlex Lorenz   }
265ee02499aSAlex Lorenz 
2669fc8faf9SAdrian Prantl   /// Get the coverage mapping file ID for \c Loc.
267bf42cfd7SJustin Bogner   ///
268bf42cfd7SJustin Bogner   /// If such file id doesn't exist, return None.
269bf42cfd7SJustin Bogner   Optional<unsigned> getCoverageFileID(SourceLocation Loc) {
270bf42cfd7SJustin Bogner     auto Mapping = FileIDMapping.find(SM.getFileID(Loc));
271bf42cfd7SJustin Bogner     if (Mapping != FileIDMapping.end())
272bf42cfd7SJustin Bogner       return Mapping->second.first;
273903678caSJustin Bogner     return None;
274ee02499aSAlex Lorenz   }
275ee02499aSAlex Lorenz 
2769fc8faf9SAdrian Prantl   /// Gather all the regions that were skipped by the preprocessor
277ee02499aSAlex Lorenz   /// using the constructs like #if.
278ee02499aSAlex Lorenz   void gatherSkippedRegions() {
279ee02499aSAlex Lorenz     /// An array of the minimum lineStarts and the maximum lineEnds
280ee02499aSAlex Lorenz     /// for mapping regions from the appropriate source files.
281ee02499aSAlex Lorenz     llvm::SmallVector<std::pair<unsigned, unsigned>, 8> FileLineRanges;
282ee02499aSAlex Lorenz     FileLineRanges.resize(
283ee02499aSAlex Lorenz         FileIDMapping.size(),
284ee02499aSAlex Lorenz         std::make_pair(std::numeric_limits<unsigned>::max(), 0));
285ee02499aSAlex Lorenz     for (const auto &R : MappingRegions) {
286ee02499aSAlex Lorenz       FileLineRanges[R.FileID].first =
287ee02499aSAlex Lorenz           std::min(FileLineRanges[R.FileID].first, R.LineStart);
288ee02499aSAlex Lorenz       FileLineRanges[R.FileID].second =
289ee02499aSAlex Lorenz           std::max(FileLineRanges[R.FileID].second, R.LineEnd);
290ee02499aSAlex Lorenz     }
291ee02499aSAlex Lorenz 
292ee02499aSAlex Lorenz     auto SkippedRanges = CVM.getSourceInfo().getSkippedRanges();
293ee02499aSAlex Lorenz     for (const auto &I : SkippedRanges) {
294ee02499aSAlex Lorenz       auto LocStart = I.getBegin();
295ee02499aSAlex Lorenz       auto LocEnd = I.getEnd();
296bf42cfd7SJustin Bogner       assert(SM.isWrittenInSameFile(LocStart, LocEnd) &&
297bf42cfd7SJustin Bogner              "region spans multiple files");
298ee02499aSAlex Lorenz 
299bf42cfd7SJustin Bogner       auto CovFileID = getCoverageFileID(LocStart);
300903678caSJustin Bogner       if (!CovFileID)
301ee02499aSAlex Lorenz         continue;
302d7369648SVedant Kumar       SpellingRegion SR{SM, LocStart, LocEnd};
303fd34280bSJustin Bogner       auto Region = CounterMappingRegion::makeSkipped(
304d7369648SVedant Kumar           *CovFileID, SR.LineStart, SR.ColumnStart, SR.LineEnd, SR.ColumnEnd);
305ee02499aSAlex Lorenz       // Make sure that we only collect the regions that are inside
3062a8c18d9SAlexander Kornienko       // the source code of this function.
307903678caSJustin Bogner       if (Region.LineStart >= FileLineRanges[*CovFileID].first &&
308903678caSJustin Bogner           Region.LineEnd <= FileLineRanges[*CovFileID].second)
309ee02499aSAlex Lorenz         MappingRegions.push_back(Region);
310ee02499aSAlex Lorenz     }
311ee02499aSAlex Lorenz   }
312ee02499aSAlex Lorenz 
3139fc8faf9SAdrian Prantl   /// Generate the coverage counter mapping regions from collected
314ee02499aSAlex Lorenz   /// source regions.
315fc05ee34SIgor Kudrin   void emitSourceRegions(const SourceRegionFilter &Filter) {
316bf42cfd7SJustin Bogner     for (const auto &Region : SourceRegions) {
317bf42cfd7SJustin Bogner       assert(Region.hasEndLoc() && "incomplete region");
318ee02499aSAlex Lorenz 
319a6e4358fSStephen Kelly       SourceLocation LocStart = Region.getBeginLoc();
3208b563665SYaron Keren       assert(SM.getFileID(LocStart).isValid() && "region in invalid file");
321f59329b0SJustin Bogner 
32293205af0SVedant Kumar       // Ignore regions from system headers.
32393205af0SVedant Kumar       if (SM.isInSystemHeader(SM.getSpellingLoc(LocStart)))
32493205af0SVedant Kumar         continue;
32593205af0SVedant Kumar 
326bf42cfd7SJustin Bogner       auto CovFileID = getCoverageFileID(LocStart);
327bf42cfd7SJustin Bogner       // Ignore regions that don't have a file, such as builtin macros.
328bf42cfd7SJustin Bogner       if (!CovFileID)
329ee02499aSAlex Lorenz         continue;
330ee02499aSAlex Lorenz 
331f14b2078SJustin Bogner       SourceLocation LocEnd = Region.getEndLoc();
332bf42cfd7SJustin Bogner       assert(SM.isWrittenInSameFile(LocStart, LocEnd) &&
333bf42cfd7SJustin Bogner              "region spans multiple files");
334bf42cfd7SJustin Bogner 
335fc05ee34SIgor Kudrin       // Don't add code regions for the area covered by expansion regions.
336fc05ee34SIgor Kudrin       // This not only suppresses redundant regions, but sometimes prevents
337fc05ee34SIgor Kudrin       // creating regions with wrong counters if, for example, a statement's
338fc05ee34SIgor Kudrin       // body ends at the end of a nested macro.
339fc05ee34SIgor Kudrin       if (Filter.count(std::make_pair(LocStart, LocEnd)))
340fc05ee34SIgor Kudrin         continue;
341fc05ee34SIgor Kudrin 
342d7369648SVedant Kumar       // Find the spelling locations for the mapping region.
343d7369648SVedant Kumar       SpellingRegion SR{SM, LocStart, LocEnd};
344d7369648SVedant Kumar       assert(SR.isInSourceOrder() && "region start and end out of order");
345a1c4deb7SVedant Kumar 
346a1c4deb7SVedant Kumar       if (Region.isGap()) {
347a1c4deb7SVedant Kumar         MappingRegions.push_back(CounterMappingRegion::makeGapRegion(
348a1c4deb7SVedant Kumar             Region.getCounter(), *CovFileID, SR.LineStart, SR.ColumnStart,
349a1c4deb7SVedant Kumar             SR.LineEnd, SR.ColumnEnd));
350a1c4deb7SVedant Kumar       } else {
351bf42cfd7SJustin Bogner         MappingRegions.push_back(CounterMappingRegion::makeRegion(
352d7369648SVedant Kumar             Region.getCounter(), *CovFileID, SR.LineStart, SR.ColumnStart,
353d7369648SVedant Kumar             SR.LineEnd, SR.ColumnEnd));
354bf42cfd7SJustin Bogner       }
355bf42cfd7SJustin Bogner     }
356a1c4deb7SVedant Kumar   }
357bf42cfd7SJustin Bogner 
3589fc8faf9SAdrian Prantl   /// Generate expansion regions for each virtual file we've seen.
359fc05ee34SIgor Kudrin   SourceRegionFilter emitExpansionRegions() {
360fc05ee34SIgor Kudrin     SourceRegionFilter Filter;
361bf42cfd7SJustin Bogner     for (const auto &FM : FileIDMapping) {
362bf42cfd7SJustin Bogner       SourceLocation ExpandedLoc = FM.second.second;
363bf42cfd7SJustin Bogner       SourceLocation ParentLoc = getIncludeOrExpansionLoc(ExpandedLoc);
364bf42cfd7SJustin Bogner       if (ParentLoc.isInvalid())
365ee02499aSAlex Lorenz         continue;
366ee02499aSAlex Lorenz 
367bf42cfd7SJustin Bogner       auto ParentFileID = getCoverageFileID(ParentLoc);
368bf42cfd7SJustin Bogner       if (!ParentFileID)
369bf42cfd7SJustin Bogner         continue;
370bf42cfd7SJustin Bogner       auto ExpandedFileID = getCoverageFileID(ExpandedLoc);
371bf42cfd7SJustin Bogner       assert(ExpandedFileID && "expansion in uncovered file");
372bf42cfd7SJustin Bogner 
373bf42cfd7SJustin Bogner       SourceLocation LocEnd = getPreciseTokenLocEnd(ParentLoc);
374bf42cfd7SJustin Bogner       assert(SM.isWrittenInSameFile(ParentLoc, LocEnd) &&
375bf42cfd7SJustin Bogner              "region spans multiple files");
376fc05ee34SIgor Kudrin       Filter.insert(std::make_pair(ParentLoc, LocEnd));
377bf42cfd7SJustin Bogner 
378d7369648SVedant Kumar       SpellingRegion SR{SM, ParentLoc, LocEnd};
379d7369648SVedant Kumar       assert(SR.isInSourceOrder() && "region start and end out of order");
380bf42cfd7SJustin Bogner       MappingRegions.push_back(CounterMappingRegion::makeExpansion(
381d7369648SVedant Kumar           *ParentFileID, *ExpandedFileID, SR.LineStart, SR.ColumnStart,
382d7369648SVedant Kumar           SR.LineEnd, SR.ColumnEnd));
383ee02499aSAlex Lorenz     }
384fc05ee34SIgor Kudrin     return Filter;
385ee02499aSAlex Lorenz   }
386ee02499aSAlex Lorenz };
387ee02499aSAlex Lorenz 
3889fc8faf9SAdrian Prantl /// Creates unreachable coverage regions for the functions that
389ee02499aSAlex Lorenz /// are not emitted.
390ee02499aSAlex Lorenz struct EmptyCoverageMappingBuilder : public CoverageMappingBuilder {
391ee02499aSAlex Lorenz   EmptyCoverageMappingBuilder(CoverageMappingModuleGen &CVM, SourceManager &SM,
392ee02499aSAlex Lorenz                               const LangOptions &LangOpts)
393ee02499aSAlex Lorenz       : CoverageMappingBuilder(CVM, SM, LangOpts) {}
394ee02499aSAlex Lorenz 
395ee02499aSAlex Lorenz   void VisitDecl(const Decl *D) {
396ee02499aSAlex Lorenz     if (!D->hasBody())
397ee02499aSAlex Lorenz       return;
398ee02499aSAlex Lorenz     auto Body = D->getBody();
399d9e1a61dSIgor Kudrin     SourceLocation Start = getStart(Body);
400d9e1a61dSIgor Kudrin     SourceLocation End = getEnd(Body);
401d9e1a61dSIgor Kudrin     if (!SM.isWrittenInSameFile(Start, End)) {
402d9e1a61dSIgor Kudrin       // Walk up to find the common ancestor.
403d9e1a61dSIgor Kudrin       // Correct the locations accordingly.
404d9e1a61dSIgor Kudrin       FileID StartFileID = SM.getFileID(Start);
405d9e1a61dSIgor Kudrin       FileID EndFileID = SM.getFileID(End);
406d9e1a61dSIgor Kudrin       while (StartFileID != EndFileID && !isNestedIn(End, StartFileID)) {
407d9e1a61dSIgor Kudrin         Start = getIncludeOrExpansionLoc(Start);
408d9e1a61dSIgor Kudrin         assert(Start.isValid() &&
409d9e1a61dSIgor Kudrin                "Declaration start location not nested within a known region");
410d9e1a61dSIgor Kudrin         StartFileID = SM.getFileID(Start);
411d9e1a61dSIgor Kudrin       }
412d9e1a61dSIgor Kudrin       while (StartFileID != EndFileID) {
413d9e1a61dSIgor Kudrin         End = getPreciseTokenLocEnd(getIncludeOrExpansionLoc(End));
414d9e1a61dSIgor Kudrin         assert(End.isValid() &&
415d9e1a61dSIgor Kudrin                "Declaration end location not nested within a known region");
416d9e1a61dSIgor Kudrin         EndFileID = SM.getFileID(End);
417d9e1a61dSIgor Kudrin       }
418d9e1a61dSIgor Kudrin     }
419d9e1a61dSIgor Kudrin     SourceRegions.emplace_back(Counter(), Start, End);
420ee02499aSAlex Lorenz   }
421ee02499aSAlex Lorenz 
4229fc8faf9SAdrian Prantl   /// Write the mapping data to the output stream
423ee02499aSAlex Lorenz   void write(llvm::raw_ostream &OS) {
424ee02499aSAlex Lorenz     SmallVector<unsigned, 16> FileIDMapping;
425bf42cfd7SJustin Bogner     gatherFileIDs(FileIDMapping);
426fc05ee34SIgor Kudrin     emitSourceRegions(SourceRegionFilter());
427ee02499aSAlex Lorenz 
428efd319a2SVedant Kumar     if (MappingRegions.empty())
429efd319a2SVedant Kumar       return;
430efd319a2SVedant Kumar 
4315fc8fc2dSCraig Topper     CoverageMappingWriter Writer(FileIDMapping, None, MappingRegions);
432ee02499aSAlex Lorenz     Writer.write(OS);
433ee02499aSAlex Lorenz   }
434ee02499aSAlex Lorenz };
435ee02499aSAlex Lorenz 
4369fc8faf9SAdrian Prantl /// A StmtVisitor that creates coverage mapping regions which map
437ee02499aSAlex Lorenz /// from the source code locations to the PGO counters.
438ee02499aSAlex Lorenz struct CounterCoverageMappingBuilder
439ee02499aSAlex Lorenz     : public CoverageMappingBuilder,
440ee02499aSAlex Lorenz       public ConstStmtVisitor<CounterCoverageMappingBuilder> {
4419fc8faf9SAdrian Prantl   /// The map of statements to count values.
442ee02499aSAlex Lorenz   llvm::DenseMap<const Stmt *, unsigned> &CounterMap;
443ee02499aSAlex Lorenz 
4449fc8faf9SAdrian Prantl   /// A stack of currently live regions.
445bf42cfd7SJustin Bogner   std::vector<SourceMappingRegion> RegionStack;
446ee02499aSAlex Lorenz 
447747b0e29SVedant Kumar   /// The currently deferred region: its end location and count can be set once
448747b0e29SVedant Kumar   /// its parent has been popped from the region stack.
449747b0e29SVedant Kumar   Optional<SourceMappingRegion> DeferredRegion;
450747b0e29SVedant Kumar 
451ee02499aSAlex Lorenz   CounterExpressionBuilder Builder;
452ee02499aSAlex Lorenz 
4539fc8faf9SAdrian Prantl   /// A location in the most recently visited file or macro.
454bf42cfd7SJustin Bogner   ///
455bf42cfd7SJustin Bogner   /// This is used to adjust the active source regions appropriately when
456bf42cfd7SJustin Bogner   /// expressions cross file or macro boundaries.
457bf42cfd7SJustin Bogner   SourceLocation MostRecentLocation;
458bf42cfd7SJustin Bogner 
4598046d22aSVedant Kumar   /// Location of the last terminated region.
4608046d22aSVedant Kumar   Optional<std::pair<SourceLocation, size_t>> LastTerminatedRegion;
4618046d22aSVedant Kumar 
4629fc8faf9SAdrian Prantl   /// Return a counter for the subtraction of \c RHS from \c LHS
463ee02499aSAlex Lorenz   Counter subtractCounters(Counter LHS, Counter RHS) {
464ee02499aSAlex Lorenz     return Builder.subtract(LHS, RHS);
465ee02499aSAlex Lorenz   }
466ee02499aSAlex Lorenz 
4679fc8faf9SAdrian Prantl   /// Return a counter for the sum of \c LHS and \c RHS.
468ee02499aSAlex Lorenz   Counter addCounters(Counter LHS, Counter RHS) {
469ee02499aSAlex Lorenz     return Builder.add(LHS, RHS);
470ee02499aSAlex Lorenz   }
471ee02499aSAlex Lorenz 
472bf42cfd7SJustin Bogner   Counter addCounters(Counter C1, Counter C2, Counter C3) {
473bf42cfd7SJustin Bogner     return addCounters(addCounters(C1, C2), C3);
474bf42cfd7SJustin Bogner   }
475bf42cfd7SJustin Bogner 
4769fc8faf9SAdrian Prantl   /// Return the region counter for the given statement.
477bf42cfd7SJustin Bogner   ///
478ee02499aSAlex Lorenz   /// This should only be called on statements that have a dedicated counter.
479bf42cfd7SJustin Bogner   Counter getRegionCounter(const Stmt *S) {
480bf42cfd7SJustin Bogner     return Counter::getCounter(CounterMap[S]);
481ee02499aSAlex Lorenz   }
482ee02499aSAlex Lorenz 
4839fc8faf9SAdrian Prantl   /// Push a region onto the stack.
484bf42cfd7SJustin Bogner   ///
485bf42cfd7SJustin Bogner   /// Returns the index on the stack where the region was pushed. This can be
486bf42cfd7SJustin Bogner   /// used with popRegions to exit a "scope", ending the region that was pushed.
487bf42cfd7SJustin Bogner   size_t pushRegion(Counter Count, Optional<SourceLocation> StartLoc = None,
488bf42cfd7SJustin Bogner                     Optional<SourceLocation> EndLoc = None) {
489747b0e29SVedant Kumar     if (StartLoc) {
490bf42cfd7SJustin Bogner       MostRecentLocation = *StartLoc;
491747b0e29SVedant Kumar       completeDeferred(Count, MostRecentLocation);
492747b0e29SVedant Kumar     }
493bf42cfd7SJustin Bogner     RegionStack.emplace_back(Count, StartLoc, EndLoc);
494ee02499aSAlex Lorenz 
495bf42cfd7SJustin Bogner     return RegionStack.size() - 1;
496ee02499aSAlex Lorenz   }
497ee02499aSAlex Lorenz 
498747b0e29SVedant Kumar   /// Complete any pending deferred region by setting its end location and
499747b0e29SVedant Kumar   /// count, and then pushing it onto the region stack.
500747b0e29SVedant Kumar   size_t completeDeferred(Counter Count, SourceLocation DeferredEndLoc) {
501747b0e29SVedant Kumar     size_t Index = RegionStack.size();
502747b0e29SVedant Kumar     if (!DeferredRegion)
503747b0e29SVedant Kumar       return Index;
504747b0e29SVedant Kumar 
505747b0e29SVedant Kumar     // Consume the pending region.
506747b0e29SVedant Kumar     SourceMappingRegion DR = DeferredRegion.getValue();
507747b0e29SVedant Kumar     DeferredRegion = None;
508747b0e29SVedant Kumar 
509747b0e29SVedant Kumar     // If the region ends in an expansion, find the expansion site.
510a6e4358fSStephen Kelly     FileID StartFile = SM.getFileID(DR.getBeginLoc());
511f9a0d44eSVedant Kumar     if (SM.getFileID(DeferredEndLoc) != StartFile) {
512747b0e29SVedant Kumar       if (isNestedIn(DeferredEndLoc, StartFile)) {
513747b0e29SVedant Kumar         do {
514747b0e29SVedant Kumar           DeferredEndLoc = getIncludeOrExpansionLoc(DeferredEndLoc);
515747b0e29SVedant Kumar         } while (StartFile != SM.getFileID(DeferredEndLoc));
516f9a0d44eSVedant Kumar       } else {
517f9a0d44eSVedant Kumar         return Index;
518747b0e29SVedant Kumar       }
519747b0e29SVedant Kumar     }
520747b0e29SVedant Kumar 
521747b0e29SVedant Kumar     // The parent of this deferred region ends where the containing decl ends,
522747b0e29SVedant Kumar     // so the region isn't useful.
523a6e4358fSStephen Kelly     if (DR.getBeginLoc() == DeferredEndLoc)
524747b0e29SVedant Kumar       return Index;
525747b0e29SVedant Kumar 
526747b0e29SVedant Kumar     // If we're visiting statements in non-source order (e.g switch cases or
527747b0e29SVedant Kumar     // a loop condition) we can't construct a sensible deferred region.
528a6e4358fSStephen Kelly     if (!SpellingRegion(SM, DR.getBeginLoc(), DeferredEndLoc).isInSourceOrder())
529747b0e29SVedant Kumar       return Index;
530747b0e29SVedant Kumar 
531a1c4deb7SVedant Kumar     DR.setGap(true);
532747b0e29SVedant Kumar     DR.setCounter(Count);
533747b0e29SVedant Kumar     DR.setEndLoc(DeferredEndLoc);
534747b0e29SVedant Kumar     handleFileExit(DeferredEndLoc);
535747b0e29SVedant Kumar     RegionStack.push_back(DR);
536747b0e29SVedant Kumar     return Index;
537747b0e29SVedant Kumar   }
538747b0e29SVedant Kumar 
5398046d22aSVedant Kumar   /// Complete a deferred region created after a terminated region at the
5408046d22aSVedant Kumar   /// top-level.
5418046d22aSVedant Kumar   void completeTopLevelDeferredRegion(Counter Count,
5428046d22aSVedant Kumar                                       SourceLocation DeferredEndLoc) {
5438046d22aSVedant Kumar     if (DeferredRegion || !LastTerminatedRegion)
5448046d22aSVedant Kumar       return;
5458046d22aSVedant Kumar 
5468046d22aSVedant Kumar     if (LastTerminatedRegion->second != RegionStack.size())
5478046d22aSVedant Kumar       return;
5488046d22aSVedant Kumar 
5498046d22aSVedant Kumar     SourceLocation Start = LastTerminatedRegion->first;
5508046d22aSVedant Kumar     if (SM.getFileID(Start) != SM.getMainFileID())
5518046d22aSVedant Kumar       return;
5528046d22aSVedant Kumar 
5538046d22aSVedant Kumar     SourceMappingRegion DR = RegionStack.back();
5548046d22aSVedant Kumar     DR.setStartLoc(Start);
5558046d22aSVedant Kumar     DR.setDeferred(false);
5568046d22aSVedant Kumar     DeferredRegion = DR;
5578046d22aSVedant Kumar     completeDeferred(Count, DeferredEndLoc);
5588046d22aSVedant Kumar   }
5598046d22aSVedant Kumar 
5600c3e3115SVedant Kumar   size_t locationDepth(SourceLocation Loc) {
5610c3e3115SVedant Kumar     size_t Depth = 0;
5620c3e3115SVedant Kumar     while (Loc.isValid()) {
5630c3e3115SVedant Kumar       Loc = getIncludeOrExpansionLoc(Loc);
5640c3e3115SVedant Kumar       Depth++;
5650c3e3115SVedant Kumar     }
5660c3e3115SVedant Kumar     return Depth;
5670c3e3115SVedant Kumar   }
5680c3e3115SVedant Kumar 
5699fc8faf9SAdrian Prantl   /// Pop regions from the stack into the function's list of regions.
570bf42cfd7SJustin Bogner   ///
571bf42cfd7SJustin Bogner   /// Adds all regions from \c ParentIndex to the top of the stack to the
572bf42cfd7SJustin Bogner   /// function's \c SourceRegions.
573bf42cfd7SJustin Bogner   void popRegions(size_t ParentIndex) {
574bf42cfd7SJustin Bogner     assert(RegionStack.size() >= ParentIndex && "parent not in stack");
575747b0e29SVedant Kumar     bool ParentOfDeferredRegion = false;
576bf42cfd7SJustin Bogner     while (RegionStack.size() > ParentIndex) {
577bf42cfd7SJustin Bogner       SourceMappingRegion &Region = RegionStack.back();
578bf42cfd7SJustin Bogner       if (Region.hasStartLoc()) {
579a6e4358fSStephen Kelly         SourceLocation StartLoc = Region.getBeginLoc();
580bf42cfd7SJustin Bogner         SourceLocation EndLoc = Region.hasEndLoc()
581bf42cfd7SJustin Bogner                                     ? Region.getEndLoc()
582bf42cfd7SJustin Bogner                                     : RegionStack[ParentIndex].getEndLoc();
5830c3e3115SVedant Kumar         size_t StartDepth = locationDepth(StartLoc);
5840c3e3115SVedant Kumar         size_t EndDepth = locationDepth(EndLoc);
585bf42cfd7SJustin Bogner         while (!SM.isWrittenInSameFile(StartLoc, EndLoc)) {
5860c3e3115SVedant Kumar           bool UnnestStart = StartDepth >= EndDepth;
5870c3e3115SVedant Kumar           bool UnnestEnd = EndDepth >= StartDepth;
5880c3e3115SVedant Kumar           if (UnnestEnd) {
589bf42cfd7SJustin Bogner             // The region ends in a nested file or macro expansion. Create a
590bf42cfd7SJustin Bogner             // separate region for each expansion.
591bf42cfd7SJustin Bogner             SourceLocation NestedLoc = getStartOfFileOrMacro(EndLoc);
592bf42cfd7SJustin Bogner             assert(SM.isWrittenInSameFile(NestedLoc, EndLoc));
593bf42cfd7SJustin Bogner 
5948545dae2SIgor Kudrin             if (!isRegionAlreadyAdded(NestedLoc, EndLoc))
595bf42cfd7SJustin Bogner               SourceRegions.emplace_back(Region.getCounter(), NestedLoc, EndLoc);
596bf42cfd7SJustin Bogner 
597f14b2078SJustin Bogner             EndLoc = getPreciseTokenLocEnd(getIncludeOrExpansionLoc(EndLoc));
598dceaaadfSJustin Bogner             if (EndLoc.isInvalid())
599dceaaadfSJustin Bogner               llvm::report_fatal_error("File exit not handled before popRegions");
6000c3e3115SVedant Kumar             EndDepth--;
601bf42cfd7SJustin Bogner           }
6020c3e3115SVedant Kumar           if (UnnestStart) {
6030c3e3115SVedant Kumar             // The region begins in a nested file or macro expansion. Create a
6040c3e3115SVedant Kumar             // separate region for each expansion.
6050c3e3115SVedant Kumar             SourceLocation NestedLoc = getEndOfFileOrMacro(StartLoc);
6060c3e3115SVedant Kumar             assert(SM.isWrittenInSameFile(StartLoc, NestedLoc));
6070c3e3115SVedant Kumar 
6080c3e3115SVedant Kumar             if (!isRegionAlreadyAdded(StartLoc, NestedLoc))
6090c3e3115SVedant Kumar               SourceRegions.emplace_back(Region.getCounter(), StartLoc, NestedLoc);
6100c3e3115SVedant Kumar 
6110c3e3115SVedant Kumar             StartLoc = getIncludeOrExpansionLoc(StartLoc);
6120c3e3115SVedant Kumar             if (StartLoc.isInvalid())
6130c3e3115SVedant Kumar               llvm::report_fatal_error("File exit not handled before popRegions");
6140c3e3115SVedant Kumar             StartDepth--;
6150c3e3115SVedant Kumar           }
6160c3e3115SVedant Kumar         }
6170c3e3115SVedant Kumar         Region.setStartLoc(StartLoc);
618bf42cfd7SJustin Bogner         Region.setEndLoc(EndLoc);
619bf42cfd7SJustin Bogner 
620bf42cfd7SJustin Bogner         MostRecentLocation = EndLoc;
621bf42cfd7SJustin Bogner         // If this region happens to span an entire expansion, we need to make
622bf42cfd7SJustin Bogner         // sure we don't overlap the parent region with it.
623bf42cfd7SJustin Bogner         if (StartLoc == getStartOfFileOrMacro(StartLoc) &&
624bf42cfd7SJustin Bogner             EndLoc == getEndOfFileOrMacro(EndLoc))
625bf42cfd7SJustin Bogner           MostRecentLocation = getIncludeOrExpansionLoc(EndLoc);
626bf42cfd7SJustin Bogner 
627a6e4358fSStephen Kelly         assert(SM.isWrittenInSameFile(Region.getBeginLoc(), EndLoc));
628fa8fa044SVedant Kumar         assert(SpellingRegion(SM, Region).isInSourceOrder());
629f36a5c4aSCraig Topper         SourceRegions.push_back(Region);
630747b0e29SVedant Kumar 
631747b0e29SVedant Kumar         if (ParentOfDeferredRegion) {
632747b0e29SVedant Kumar           ParentOfDeferredRegion = false;
633747b0e29SVedant Kumar 
634747b0e29SVedant Kumar           // If there's an existing deferred region, keep the old one, because
635747b0e29SVedant Kumar           // it means there are two consecutive returns (or a similar pattern).
636747b0e29SVedant Kumar           if (!DeferredRegion.hasValue() &&
637747b0e29SVedant Kumar               // File IDs aren't gathered within macro expansions, so it isn't
638747b0e29SVedant Kumar               // useful to try and create a deferred region inside of one.
639f9a0d44eSVedant Kumar               !EndLoc.isMacroID())
640747b0e29SVedant Kumar             DeferredRegion =
641747b0e29SVedant Kumar                 SourceMappingRegion(Counter::getZero(), EndLoc, None);
642747b0e29SVedant Kumar         }
643747b0e29SVedant Kumar       } else if (Region.isDeferred()) {
644747b0e29SVedant Kumar         assert(!ParentOfDeferredRegion && "Consecutive deferred regions");
645747b0e29SVedant Kumar         ParentOfDeferredRegion = true;
646bf42cfd7SJustin Bogner       }
647bf42cfd7SJustin Bogner       RegionStack.pop_back();
6488046d22aSVedant Kumar 
6498046d22aSVedant Kumar       // If the zero region pushed after the last terminated region no longer
6508046d22aSVedant Kumar       // exists, clear its cached information.
6518046d22aSVedant Kumar       if (LastTerminatedRegion &&
6528046d22aSVedant Kumar           RegionStack.size() < LastTerminatedRegion->second)
6538046d22aSVedant Kumar         LastTerminatedRegion = None;
654bf42cfd7SJustin Bogner     }
655747b0e29SVedant Kumar     assert(!ParentOfDeferredRegion && "Deferred region with no parent");
656ee02499aSAlex Lorenz   }
657ee02499aSAlex Lorenz 
6589fc8faf9SAdrian Prantl   /// Return the currently active region.
659bf42cfd7SJustin Bogner   SourceMappingRegion &getRegion() {
660bf42cfd7SJustin Bogner     assert(!RegionStack.empty() && "statement has no region");
661bf42cfd7SJustin Bogner     return RegionStack.back();
662ee02499aSAlex Lorenz   }
663ee02499aSAlex Lorenz 
6647225a261SVedant Kumar   /// Propagate counts through the children of \p S if \p VisitChildren is true.
6657225a261SVedant Kumar   /// Otherwise, only emit a count for \p S itself.
6667225a261SVedant Kumar   Counter propagateCounts(Counter TopCount, const Stmt *S,
6677225a261SVedant Kumar                           bool VisitChildren = true) {
6687838696eSVedant Kumar     SourceLocation StartLoc = getStart(S);
6697838696eSVedant Kumar     SourceLocation EndLoc = getEnd(S);
6707838696eSVedant Kumar     size_t Index = pushRegion(TopCount, StartLoc, EndLoc);
6717225a261SVedant Kumar     if (VisitChildren)
672bf42cfd7SJustin Bogner       Visit(S);
673bf42cfd7SJustin Bogner     Counter ExitCount = getRegion().getCounter();
674bf42cfd7SJustin Bogner     popRegions(Index);
67539f01975SVedant Kumar 
67639f01975SVedant Kumar     // The statement may be spanned by an expansion. Make sure we handle a file
67739f01975SVedant Kumar     // exit out of this expansion before moving to the next statement.
678f2ceec48SStephen Kelly     if (SM.isBeforeInTranslationUnit(StartLoc, S->getBeginLoc()))
6797838696eSVedant Kumar       MostRecentLocation = EndLoc;
68039f01975SVedant Kumar 
681bf42cfd7SJustin Bogner     return ExitCount;
682ee02499aSAlex Lorenz   }
683ee02499aSAlex Lorenz 
6849fc8faf9SAdrian Prantl   /// Check whether a region with bounds \c StartLoc and \c EndLoc
6850a7c9d11SIgor Kudrin   /// is already added to \c SourceRegions.
6860a7c9d11SIgor Kudrin   bool isRegionAlreadyAdded(SourceLocation StartLoc, SourceLocation EndLoc) {
6870a7c9d11SIgor Kudrin     return SourceRegions.rend() !=
6880a7c9d11SIgor Kudrin            std::find_if(SourceRegions.rbegin(), SourceRegions.rend(),
6890a7c9d11SIgor Kudrin                         [&](const SourceMappingRegion &Region) {
690a6e4358fSStephen Kelly                           return Region.getBeginLoc() == StartLoc &&
6910a7c9d11SIgor Kudrin                                  Region.getEndLoc() == EndLoc;
6920a7c9d11SIgor Kudrin                         });
6930a7c9d11SIgor Kudrin   }
6940a7c9d11SIgor Kudrin 
6959fc8faf9SAdrian Prantl   /// Adjust the most recently visited location to \c EndLoc.
696bf42cfd7SJustin Bogner   ///
697bf42cfd7SJustin Bogner   /// This should be used after visiting any statements in non-source order.
698bf42cfd7SJustin Bogner   void adjustForOutOfOrderTraversal(SourceLocation EndLoc) {
699bf42cfd7SJustin Bogner     MostRecentLocation = EndLoc;
7000a7c9d11SIgor Kudrin     // The code region for a whole macro is created in handleFileExit() when
7010a7c9d11SIgor Kudrin     // it detects exiting of the virtual file of that macro. If we visited
7020a7c9d11SIgor Kudrin     // statements in non-source order, we might already have such a region
7030a7c9d11SIgor Kudrin     // added, for example, if a body of a loop is divided among multiple
7040a7c9d11SIgor Kudrin     // macros. Avoid adding duplicate regions in such case.
70596ae73f7SJustin Bogner     if (getRegion().hasEndLoc() &&
7060a7c9d11SIgor Kudrin         MostRecentLocation == getEndOfFileOrMacro(MostRecentLocation) &&
7070a7c9d11SIgor Kudrin         isRegionAlreadyAdded(getStartOfFileOrMacro(MostRecentLocation),
7080a7c9d11SIgor Kudrin                              MostRecentLocation))
709bf42cfd7SJustin Bogner       MostRecentLocation = getIncludeOrExpansionLoc(MostRecentLocation);
710ee02499aSAlex Lorenz   }
711ee02499aSAlex Lorenz 
7129fc8faf9SAdrian Prantl   /// Adjust regions and state when \c NewLoc exits a file.
713bf42cfd7SJustin Bogner   ///
714bf42cfd7SJustin Bogner   /// If moving from our most recently tracked location to \c NewLoc exits any
715bf42cfd7SJustin Bogner   /// files, this adjusts our current region stack and creates the file regions
716bf42cfd7SJustin Bogner   /// for the exited file.
717bf42cfd7SJustin Bogner   void handleFileExit(SourceLocation NewLoc) {
718e44dd6dbSJustin Bogner     if (NewLoc.isInvalid() ||
719e44dd6dbSJustin Bogner         SM.isWrittenInSameFile(MostRecentLocation, NewLoc))
720bf42cfd7SJustin Bogner       return;
721bf42cfd7SJustin Bogner 
722bf42cfd7SJustin Bogner     // If NewLoc is not in a file that contains MostRecentLocation, walk up to
723bf42cfd7SJustin Bogner     // find the common ancestor.
724bf42cfd7SJustin Bogner     SourceLocation LCA = NewLoc;
725bf42cfd7SJustin Bogner     FileID ParentFile = SM.getFileID(LCA);
726bf42cfd7SJustin Bogner     while (!isNestedIn(MostRecentLocation, ParentFile)) {
727bf42cfd7SJustin Bogner       LCA = getIncludeOrExpansionLoc(LCA);
728bf42cfd7SJustin Bogner       if (LCA.isInvalid() || SM.isWrittenInSameFile(LCA, MostRecentLocation)) {
729bf42cfd7SJustin Bogner         // Since there isn't a common ancestor, no file was exited. We just need
730bf42cfd7SJustin Bogner         // to adjust our location to the new file.
731bf42cfd7SJustin Bogner         MostRecentLocation = NewLoc;
732bf42cfd7SJustin Bogner         return;
733bf42cfd7SJustin Bogner       }
734bf42cfd7SJustin Bogner       ParentFile = SM.getFileID(LCA);
735ee02499aSAlex Lorenz     }
736ee02499aSAlex Lorenz 
737bf42cfd7SJustin Bogner     llvm::SmallSet<SourceLocation, 8> StartLocs;
738bf42cfd7SJustin Bogner     Optional<Counter> ParentCounter;
73957d3f145SPete Cooper     for (SourceMappingRegion &I : llvm::reverse(RegionStack)) {
74057d3f145SPete Cooper       if (!I.hasStartLoc())
741bf42cfd7SJustin Bogner         continue;
742a6e4358fSStephen Kelly       SourceLocation Loc = I.getBeginLoc();
743bf42cfd7SJustin Bogner       if (!isNestedIn(Loc, ParentFile)) {
74457d3f145SPete Cooper         ParentCounter = I.getCounter();
745bf42cfd7SJustin Bogner         break;
746ee02499aSAlex Lorenz       }
747bf42cfd7SJustin Bogner 
748bf42cfd7SJustin Bogner       while (!SM.isInFileID(Loc, ParentFile)) {
749bf42cfd7SJustin Bogner         // The most nested region for each start location is the one with the
750bf42cfd7SJustin Bogner         // correct count. We avoid creating redundant regions by stopping once
751bf42cfd7SJustin Bogner         // we've seen this region.
752bf42cfd7SJustin Bogner         if (StartLocs.insert(Loc).second)
75357d3f145SPete Cooper           SourceRegions.emplace_back(I.getCounter(), Loc,
754bf42cfd7SJustin Bogner                                      getEndOfFileOrMacro(Loc));
755bf42cfd7SJustin Bogner         Loc = getIncludeOrExpansionLoc(Loc);
756ee02499aSAlex Lorenz       }
75757d3f145SPete Cooper       I.setStartLoc(getPreciseTokenLocEnd(Loc));
758bf42cfd7SJustin Bogner     }
759bf42cfd7SJustin Bogner 
760bf42cfd7SJustin Bogner     if (ParentCounter) {
761bf42cfd7SJustin Bogner       // If the file is contained completely by another region and doesn't
762bf42cfd7SJustin Bogner       // immediately start its own region, the whole file gets a region
763bf42cfd7SJustin Bogner       // corresponding to the parent.
764bf42cfd7SJustin Bogner       SourceLocation Loc = MostRecentLocation;
765bf42cfd7SJustin Bogner       while (isNestedIn(Loc, ParentFile)) {
766bf42cfd7SJustin Bogner         SourceLocation FileStart = getStartOfFileOrMacro(Loc);
767fa8fa044SVedant Kumar         if (StartLocs.insert(FileStart).second) {
768bf42cfd7SJustin Bogner           SourceRegions.emplace_back(*ParentCounter, FileStart,
769bf42cfd7SJustin Bogner                                      getEndOfFileOrMacro(Loc));
770fa8fa044SVedant Kumar           assert(SpellingRegion(SM, SourceRegions.back()).isInSourceOrder());
771fa8fa044SVedant Kumar         }
772bf42cfd7SJustin Bogner         Loc = getIncludeOrExpansionLoc(Loc);
773bf42cfd7SJustin Bogner       }
774bf42cfd7SJustin Bogner     }
775bf42cfd7SJustin Bogner 
776bf42cfd7SJustin Bogner     MostRecentLocation = NewLoc;
777bf42cfd7SJustin Bogner   }
778bf42cfd7SJustin Bogner 
7799fc8faf9SAdrian Prantl   /// Ensure that \c S is included in the current region.
780bf42cfd7SJustin Bogner   void extendRegion(const Stmt *S) {
781bf42cfd7SJustin Bogner     SourceMappingRegion &Region = getRegion();
782bf42cfd7SJustin Bogner     SourceLocation StartLoc = getStart(S);
783bf42cfd7SJustin Bogner 
784bf42cfd7SJustin Bogner     handleFileExit(StartLoc);
785bf42cfd7SJustin Bogner     if (!Region.hasStartLoc())
786bf42cfd7SJustin Bogner       Region.setStartLoc(StartLoc);
787747b0e29SVedant Kumar 
788747b0e29SVedant Kumar     completeDeferred(Region.getCounter(), StartLoc);
789bf42cfd7SJustin Bogner   }
790bf42cfd7SJustin Bogner 
7919fc8faf9SAdrian Prantl   /// Mark \c S as a terminator, starting a zero region.
792bf42cfd7SJustin Bogner   void terminateRegion(const Stmt *S) {
793bf42cfd7SJustin Bogner     extendRegion(S);
794bf42cfd7SJustin Bogner     SourceMappingRegion &Region = getRegion();
7958046d22aSVedant Kumar     SourceLocation EndLoc = getEnd(S);
796bf42cfd7SJustin Bogner     if (!Region.hasEndLoc())
7978046d22aSVedant Kumar       Region.setEndLoc(EndLoc);
798bf42cfd7SJustin Bogner     pushRegion(Counter::getZero());
7998046d22aSVedant Kumar     auto &ZeroRegion = getRegion();
8008046d22aSVedant Kumar     ZeroRegion.setDeferred(true);
8018046d22aSVedant Kumar     LastTerminatedRegion = {EndLoc, RegionStack.size()};
802bf42cfd7SJustin Bogner   }
803ee02499aSAlex Lorenz 
804fa8fa044SVedant Kumar   /// Find a valid gap range between \p AfterLoc and \p BeforeLoc.
805fa8fa044SVedant Kumar   Optional<SourceRange> findGapAreaBetween(SourceLocation AfterLoc,
806fa8fa044SVedant Kumar                                            SourceLocation BeforeLoc) {
807fa8fa044SVedant Kumar     // If the start and end locations of the gap are both within the same macro
808fa8fa044SVedant Kumar     // file, the range may not be in source order.
809fa8fa044SVedant Kumar     if (AfterLoc.isMacroID() || BeforeLoc.isMacroID())
810fa8fa044SVedant Kumar       return None;
811fa8fa044SVedant Kumar     if (!SM.isWrittenInSameFile(AfterLoc, BeforeLoc))
812fa8fa044SVedant Kumar       return None;
813fa8fa044SVedant Kumar     return {{AfterLoc, BeforeLoc}};
814fa8fa044SVedant Kumar   }
815fa8fa044SVedant Kumar 
816fa8fa044SVedant Kumar   /// Find the source range after \p AfterStmt and before \p BeforeStmt.
817fa8fa044SVedant Kumar   Optional<SourceRange> findGapAreaBetween(const Stmt *AfterStmt,
818fa8fa044SVedant Kumar                                            const Stmt *BeforeStmt) {
819fa8fa044SVedant Kumar     return findGapAreaBetween(getPreciseTokenLocEnd(getEnd(AfterStmt)),
820fa8fa044SVedant Kumar                               getStart(BeforeStmt));
821fa8fa044SVedant Kumar   }
822fa8fa044SVedant Kumar 
8232e8c8759SVedant Kumar   /// Emit a gap region between \p StartLoc and \p EndLoc with the given count.
8242e8c8759SVedant Kumar   void fillGapAreaWithCount(SourceLocation StartLoc, SourceLocation EndLoc,
8252e8c8759SVedant Kumar                             Counter Count) {
826fa8fa044SVedant Kumar     if (StartLoc == EndLoc)
8272e8c8759SVedant Kumar       return;
828fa8fa044SVedant Kumar     assert(SpellingRegion(SM, StartLoc, EndLoc).isInSourceOrder());
8292e8c8759SVedant Kumar     handleFileExit(StartLoc);
8302e8c8759SVedant Kumar     size_t Index = pushRegion(Count, StartLoc, EndLoc);
8312e8c8759SVedant Kumar     getRegion().setGap(true);
8322e8c8759SVedant Kumar     handleFileExit(EndLoc);
8332e8c8759SVedant Kumar     popRegions(Index);
8342e8c8759SVedant Kumar   }
8352e8c8759SVedant Kumar 
8369fc8faf9SAdrian Prantl   /// Keep counts of breaks and continues inside loops.
837ee02499aSAlex Lorenz   struct BreakContinue {
838ee02499aSAlex Lorenz     Counter BreakCount;
839ee02499aSAlex Lorenz     Counter ContinueCount;
840ee02499aSAlex Lorenz   };
841ee02499aSAlex Lorenz   SmallVector<BreakContinue, 8> BreakContinueStack;
842ee02499aSAlex Lorenz 
843ee02499aSAlex Lorenz   CounterCoverageMappingBuilder(
844ee02499aSAlex Lorenz       CoverageMappingModuleGen &CVM,
845e5ee6c58SJustin Bogner       llvm::DenseMap<const Stmt *, unsigned> &CounterMap, SourceManager &SM,
846ee02499aSAlex Lorenz       const LangOptions &LangOpts)
847747b0e29SVedant Kumar       : CoverageMappingBuilder(CVM, SM, LangOpts), CounterMap(CounterMap),
848747b0e29SVedant Kumar         DeferredRegion(None) {}
849ee02499aSAlex Lorenz 
8509fc8faf9SAdrian Prantl   /// Write the mapping data to the output stream
851ee02499aSAlex Lorenz   void write(llvm::raw_ostream &OS) {
852ee02499aSAlex Lorenz     llvm::SmallVector<unsigned, 8> VirtualFileMapping;
853bf42cfd7SJustin Bogner     gatherFileIDs(VirtualFileMapping);
854fc05ee34SIgor Kudrin     SourceRegionFilter Filter = emitExpansionRegions();
855747b0e29SVedant Kumar     assert(!DeferredRegion && "Deferred region never completed");
856fc05ee34SIgor Kudrin     emitSourceRegions(Filter);
857ee02499aSAlex Lorenz     gatherSkippedRegions();
858ee02499aSAlex Lorenz 
859efd319a2SVedant Kumar     if (MappingRegions.empty())
860efd319a2SVedant Kumar       return;
861efd319a2SVedant Kumar 
8624da909b2SJustin Bogner     CoverageMappingWriter Writer(VirtualFileMapping, Builder.getExpressions(),
8634da909b2SJustin Bogner                                  MappingRegions);
864ee02499aSAlex Lorenz     Writer.write(OS);
865ee02499aSAlex Lorenz   }
866ee02499aSAlex Lorenz 
867ee02499aSAlex Lorenz   void VisitStmt(const Stmt *S) {
868f2ceec48SStephen Kelly     if (S->getBeginLoc().isValid())
869bf42cfd7SJustin Bogner       extendRegion(S);
870642f173aSBenjamin Kramer     for (const Stmt *Child : S->children())
871642f173aSBenjamin Kramer       if (Child)
872642f173aSBenjamin Kramer         this->Visit(Child);
873bf42cfd7SJustin Bogner     handleFileExit(getEnd(S));
874ee02499aSAlex Lorenz   }
875ee02499aSAlex Lorenz 
876ee02499aSAlex Lorenz   void VisitDecl(const Decl *D) {
877747b0e29SVedant Kumar     assert(!DeferredRegion && "Deferred region never completed");
878747b0e29SVedant Kumar 
879bf42cfd7SJustin Bogner     Stmt *Body = D->getBody();
880efd319a2SVedant Kumar 
881efd319a2SVedant Kumar     // Do not propagate region counts into system headers.
882efd319a2SVedant Kumar     if (Body && SM.isInSystemHeader(SM.getSpellingLoc(getStart(Body))))
883efd319a2SVedant Kumar       return;
884efd319a2SVedant Kumar 
8857225a261SVedant Kumar     // Do not visit the artificial children nodes of defaulted methods. The
8867225a261SVedant Kumar     // lexer may not be able to report back precise token end locations for
8877225a261SVedant Kumar     // these children nodes (llvm.org/PR39822), and moreover users will not be
8887225a261SVedant Kumar     // able to see coverage for them.
8897225a261SVedant Kumar     bool Defaulted = false;
8907225a261SVedant Kumar     if (auto *Method = dyn_cast<CXXMethodDecl>(D))
8917225a261SVedant Kumar       Defaulted = Method->isDefaulted();
8927225a261SVedant Kumar 
8937225a261SVedant Kumar     propagateCounts(getRegionCounter(Body), Body,
8947225a261SVedant Kumar                     /*VisitChildren=*/!Defaulted);
895747b0e29SVedant Kumar     assert(RegionStack.empty() && "Regions entered but never exited");
896747b0e29SVedant Kumar 
89761763b65SVedant Kumar     // Discard the last uncompleted deferred region in a decl, if one exists.
89861763b65SVedant Kumar     // This prevents lines at the end of a function containing only whitespace
89961763b65SVedant Kumar     // or closing braces from being marked as uncovered.
900ef8e05ffSVedant Kumar     DeferredRegion = None;
901341bf429SVedant Kumar   }
902ee02499aSAlex Lorenz 
903ee02499aSAlex Lorenz   void VisitReturnStmt(const ReturnStmt *S) {
904bf42cfd7SJustin Bogner     extendRegion(S);
905ee02499aSAlex Lorenz     if (S->getRetValue())
906ee02499aSAlex Lorenz       Visit(S->getRetValue());
907bf42cfd7SJustin Bogner     terminateRegion(S);
908ee02499aSAlex Lorenz   }
909ee02499aSAlex Lorenz 
910f959febfSJustin Bogner   void VisitCXXThrowExpr(const CXXThrowExpr *E) {
911f959febfSJustin Bogner     extendRegion(E);
912f959febfSJustin Bogner     if (E->getSubExpr())
913f959febfSJustin Bogner       Visit(E->getSubExpr());
914f959febfSJustin Bogner     terminateRegion(E);
915f959febfSJustin Bogner   }
916f959febfSJustin Bogner 
917bf42cfd7SJustin Bogner   void VisitGotoStmt(const GotoStmt *S) { terminateRegion(S); }
918ee02499aSAlex Lorenz 
919ee02499aSAlex Lorenz   void VisitLabelStmt(const LabelStmt *S) {
9208046d22aSVedant Kumar     Counter LabelCount = getRegionCounter(S);
921bf42cfd7SJustin Bogner     SourceLocation Start = getStart(S);
9228046d22aSVedant Kumar     completeTopLevelDeferredRegion(LabelCount, Start);
923d781d97eSVedant Kumar     completeDeferred(LabelCount, Start);
924bf42cfd7SJustin Bogner     // We can't extendRegion here or we risk overlapping with our new region.
925bf42cfd7SJustin Bogner     handleFileExit(Start);
9268046d22aSVedant Kumar     pushRegion(LabelCount, Start);
927ee02499aSAlex Lorenz     Visit(S->getSubStmt());
928ee02499aSAlex Lorenz   }
929ee02499aSAlex Lorenz 
930ee02499aSAlex Lorenz   void VisitBreakStmt(const BreakStmt *S) {
931ee02499aSAlex Lorenz     assert(!BreakContinueStack.empty() && "break not in a loop or switch!");
932ee02499aSAlex Lorenz     BreakContinueStack.back().BreakCount = addCounters(
933bf42cfd7SJustin Bogner         BreakContinueStack.back().BreakCount, getRegion().getCounter());
9347f53fbfcSEli Friedman     // FIXME: a break in a switch should terminate regions for all preceding
9357f53fbfcSEli Friedman     // case statements, not just the most recent one.
936bf42cfd7SJustin Bogner     terminateRegion(S);
937ee02499aSAlex Lorenz   }
938ee02499aSAlex Lorenz 
939ee02499aSAlex Lorenz   void VisitContinueStmt(const ContinueStmt *S) {
940ee02499aSAlex Lorenz     assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
941ee02499aSAlex Lorenz     BreakContinueStack.back().ContinueCount = addCounters(
942bf42cfd7SJustin Bogner         BreakContinueStack.back().ContinueCount, getRegion().getCounter());
943bf42cfd7SJustin Bogner     terminateRegion(S);
944ee02499aSAlex Lorenz   }
945ee02499aSAlex Lorenz 
946181dfe4cSEli Friedman   void VisitCallExpr(const CallExpr *E) {
947181dfe4cSEli Friedman     VisitStmt(E);
948181dfe4cSEli Friedman 
949181dfe4cSEli Friedman     // Terminate the region when we hit a noreturn function.
950181dfe4cSEli Friedman     // (This is helpful dealing with switch statements.)
951181dfe4cSEli Friedman     QualType CalleeType = E->getCallee()->getType();
952181dfe4cSEli Friedman     if (getFunctionExtInfo(*CalleeType).getNoReturn())
953181dfe4cSEli Friedman       terminateRegion(E);
954181dfe4cSEli Friedman   }
955181dfe4cSEli Friedman 
956ee02499aSAlex Lorenz   void VisitWhileStmt(const WhileStmt *S) {
957bf42cfd7SJustin Bogner     extendRegion(S);
958ee02499aSAlex Lorenz 
959bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
960bf42cfd7SJustin Bogner     Counter BodyCount = getRegionCounter(S);
961bf42cfd7SJustin Bogner 
962bf42cfd7SJustin Bogner     // Handle the body first so that we can get the backedge count.
963bf42cfd7SJustin Bogner     BreakContinueStack.push_back(BreakContinue());
964bf42cfd7SJustin Bogner     extendRegion(S->getBody());
965bf42cfd7SJustin Bogner     Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
966ee02499aSAlex Lorenz     BreakContinue BC = BreakContinueStack.pop_back_val();
967bf42cfd7SJustin Bogner 
968bf42cfd7SJustin Bogner     // Go back to handle the condition.
969bf42cfd7SJustin Bogner     Counter CondCount =
970bf42cfd7SJustin Bogner         addCounters(ParentCount, BackedgeCount, BC.ContinueCount);
971bf42cfd7SJustin Bogner     propagateCounts(CondCount, S->getCond());
972bf42cfd7SJustin Bogner     adjustForOutOfOrderTraversal(getEnd(S));
973bf42cfd7SJustin Bogner 
974fa8fa044SVedant Kumar     // The body count applies to the area immediately after the increment.
975fa8fa044SVedant Kumar     auto Gap = findGapAreaBetween(S->getCond(), S->getBody());
976fa8fa044SVedant Kumar     if (Gap)
977fa8fa044SVedant Kumar       fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount);
978fa8fa044SVedant Kumar 
979bf42cfd7SJustin Bogner     Counter OutCount =
980bf42cfd7SJustin Bogner         addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount));
981bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
982bf42cfd7SJustin Bogner       pushRegion(OutCount);
983ee02499aSAlex Lorenz   }
984ee02499aSAlex Lorenz 
985ee02499aSAlex Lorenz   void VisitDoStmt(const DoStmt *S) {
986bf42cfd7SJustin Bogner     extendRegion(S);
987ee02499aSAlex Lorenz 
988bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
989bf42cfd7SJustin Bogner     Counter BodyCount = getRegionCounter(S);
990bf42cfd7SJustin Bogner 
991bf42cfd7SJustin Bogner     BreakContinueStack.push_back(BreakContinue());
992bf42cfd7SJustin Bogner     extendRegion(S->getBody());
993bf42cfd7SJustin Bogner     Counter BackedgeCount =
994bf42cfd7SJustin Bogner         propagateCounts(addCounters(ParentCount, BodyCount), S->getBody());
995ee02499aSAlex Lorenz     BreakContinue BC = BreakContinueStack.pop_back_val();
996bf42cfd7SJustin Bogner 
997bf42cfd7SJustin Bogner     Counter CondCount = addCounters(BackedgeCount, BC.ContinueCount);
998bf42cfd7SJustin Bogner     propagateCounts(CondCount, S->getCond());
999bf42cfd7SJustin Bogner 
1000bf42cfd7SJustin Bogner     Counter OutCount =
1001bf42cfd7SJustin Bogner         addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount));
1002bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
1003bf42cfd7SJustin Bogner       pushRegion(OutCount);
1004ee02499aSAlex Lorenz   }
1005ee02499aSAlex Lorenz 
1006ee02499aSAlex Lorenz   void VisitForStmt(const ForStmt *S) {
1007bf42cfd7SJustin Bogner     extendRegion(S);
1008ee02499aSAlex Lorenz     if (S->getInit())
1009ee02499aSAlex Lorenz       Visit(S->getInit());
1010ee02499aSAlex Lorenz 
1011bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
1012bf42cfd7SJustin Bogner     Counter BodyCount = getRegionCounter(S);
1013bf42cfd7SJustin Bogner 
10143e2ae49aSVedant Kumar     // The loop increment may contain a break or continue.
10153e2ae49aSVedant Kumar     if (S->getInc())
10163e2ae49aSVedant Kumar       BreakContinueStack.emplace_back();
10173e2ae49aSVedant Kumar 
1018bf42cfd7SJustin Bogner     // Handle the body first so that we can get the backedge count.
10193e2ae49aSVedant Kumar     BreakContinueStack.emplace_back();
1020bf42cfd7SJustin Bogner     extendRegion(S->getBody());
1021bf42cfd7SJustin Bogner     Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
10223e2ae49aSVedant Kumar     BreakContinue BodyBC = BreakContinueStack.pop_back_val();
1023ee02499aSAlex Lorenz 
1024ee02499aSAlex Lorenz     // The increment is essentially part of the body but it needs to include
1025ee02499aSAlex Lorenz     // the count for all the continue statements.
10263e2ae49aSVedant Kumar     BreakContinue IncrementBC;
10273e2ae49aSVedant Kumar     if (const Stmt *Inc = S->getInc()) {
10283e2ae49aSVedant Kumar       propagateCounts(addCounters(BackedgeCount, BodyBC.ContinueCount), Inc);
10293e2ae49aSVedant Kumar       IncrementBC = BreakContinueStack.pop_back_val();
10303e2ae49aSVedant Kumar     }
1031bf42cfd7SJustin Bogner 
1032bf42cfd7SJustin Bogner     // Go back to handle the condition.
10333e2ae49aSVedant Kumar     Counter CondCount = addCounters(
10343e2ae49aSVedant Kumar         addCounters(ParentCount, BackedgeCount, BodyBC.ContinueCount),
10353e2ae49aSVedant Kumar         IncrementBC.ContinueCount);
1036bf42cfd7SJustin Bogner     if (const Expr *Cond = S->getCond()) {
1037bf42cfd7SJustin Bogner       propagateCounts(CondCount, Cond);
1038bf42cfd7SJustin Bogner       adjustForOutOfOrderTraversal(getEnd(S));
1039ee02499aSAlex Lorenz     }
1040ee02499aSAlex Lorenz 
1041fa8fa044SVedant Kumar     // The body count applies to the area immediately after the increment.
1042fa8fa044SVedant Kumar     auto Gap = findGapAreaBetween(getPreciseTokenLocEnd(S->getRParenLoc()),
1043fa8fa044SVedant Kumar                                   getStart(S->getBody()));
1044fa8fa044SVedant Kumar     if (Gap)
1045fa8fa044SVedant Kumar       fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount);
1046fa8fa044SVedant Kumar 
10473e2ae49aSVedant Kumar     Counter OutCount = addCounters(BodyBC.BreakCount, IncrementBC.BreakCount,
10483e2ae49aSVedant Kumar                                    subtractCounters(CondCount, BodyCount));
1049bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
1050bf42cfd7SJustin Bogner       pushRegion(OutCount);
1051ee02499aSAlex Lorenz   }
1052ee02499aSAlex Lorenz 
1053ee02499aSAlex Lorenz   void VisitCXXForRangeStmt(const CXXForRangeStmt *S) {
1054bf42cfd7SJustin Bogner     extendRegion(S);
10558baa5001SRichard Smith     if (S->getInit())
10568baa5001SRichard Smith       Visit(S->getInit());
1057bf42cfd7SJustin Bogner     Visit(S->getLoopVarStmt());
1058ee02499aSAlex Lorenz     Visit(S->getRangeStmt());
1059bf42cfd7SJustin Bogner 
1060bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
1061bf42cfd7SJustin Bogner     Counter BodyCount = getRegionCounter(S);
1062bf42cfd7SJustin Bogner 
1063ee02499aSAlex Lorenz     BreakContinueStack.push_back(BreakContinue());
1064bf42cfd7SJustin Bogner     extendRegion(S->getBody());
1065bf42cfd7SJustin Bogner     Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
1066ee02499aSAlex Lorenz     BreakContinue BC = BreakContinueStack.pop_back_val();
1067bf42cfd7SJustin Bogner 
1068fa8fa044SVedant Kumar     // The body count applies to the area immediately after the range.
1069fa8fa044SVedant Kumar     auto Gap = findGapAreaBetween(getPreciseTokenLocEnd(S->getRParenLoc()),
1070fa8fa044SVedant Kumar                                   getStart(S->getBody()));
1071fa8fa044SVedant Kumar     if (Gap)
1072fa8fa044SVedant Kumar       fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount);
1073fa8fa044SVedant Kumar 
10741587432dSJustin Bogner     Counter LoopCount =
10751587432dSJustin Bogner         addCounters(ParentCount, BackedgeCount, BC.ContinueCount);
10761587432dSJustin Bogner     Counter OutCount =
10771587432dSJustin Bogner         addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount));
1078bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
1079bf42cfd7SJustin Bogner       pushRegion(OutCount);
1080ee02499aSAlex Lorenz   }
1081ee02499aSAlex Lorenz 
1082ee02499aSAlex Lorenz   void VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S) {
1083bf42cfd7SJustin Bogner     extendRegion(S);
1084ee02499aSAlex Lorenz     Visit(S->getElement());
1085bf42cfd7SJustin Bogner 
1086bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
1087bf42cfd7SJustin Bogner     Counter BodyCount = getRegionCounter(S);
1088bf42cfd7SJustin Bogner 
1089ee02499aSAlex Lorenz     BreakContinueStack.push_back(BreakContinue());
1090bf42cfd7SJustin Bogner     extendRegion(S->getBody());
1091bf42cfd7SJustin Bogner     Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
1092ee02499aSAlex Lorenz     BreakContinue BC = BreakContinueStack.pop_back_val();
1093bf42cfd7SJustin Bogner 
1094fa8fa044SVedant Kumar     // The body count applies to the area immediately after the collection.
1095fa8fa044SVedant Kumar     auto Gap = findGapAreaBetween(getPreciseTokenLocEnd(S->getRParenLoc()),
1096fa8fa044SVedant Kumar                                   getStart(S->getBody()));
1097fa8fa044SVedant Kumar     if (Gap)
1098fa8fa044SVedant Kumar       fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), BodyCount);
1099fa8fa044SVedant Kumar 
11001587432dSJustin Bogner     Counter LoopCount =
11011587432dSJustin Bogner         addCounters(ParentCount, BackedgeCount, BC.ContinueCount);
11021587432dSJustin Bogner     Counter OutCount =
11031587432dSJustin Bogner         addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount));
1104bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
1105bf42cfd7SJustin Bogner       pushRegion(OutCount);
1106ee02499aSAlex Lorenz   }
1107ee02499aSAlex Lorenz 
1108ee02499aSAlex Lorenz   void VisitSwitchStmt(const SwitchStmt *S) {
1109bf42cfd7SJustin Bogner     extendRegion(S);
1110f2a6ec55SVedant Kumar     if (S->getInit())
1111f2a6ec55SVedant Kumar       Visit(S->getInit());
1112ee02499aSAlex Lorenz     Visit(S->getCond());
1113bf42cfd7SJustin Bogner 
1114ee02499aSAlex Lorenz     BreakContinueStack.push_back(BreakContinue());
1115bf42cfd7SJustin Bogner 
1116bf42cfd7SJustin Bogner     const Stmt *Body = S->getBody();
1117bf42cfd7SJustin Bogner     extendRegion(Body);
1118bf42cfd7SJustin Bogner     if (const auto *CS = dyn_cast<CompoundStmt>(Body)) {
1119bf42cfd7SJustin Bogner       if (!CS->body_empty()) {
11207f53fbfcSEli Friedman         // Make a region for the body of the switch.  If the body starts with
11217f53fbfcSEli Friedman         // a case, that case will reuse this region; otherwise, this covers
11227f53fbfcSEli Friedman         // the unreachable code at the beginning of the switch body.
1123859bf4d2SVedant Kumar         size_t Index = pushRegion(Counter::getZero(), getStart(CS));
1124859bf4d2SVedant Kumar         getRegion().setGap(true);
1125b5841332SRichard Trieu         for (const auto *Child : CS->children())
1126bf42cfd7SJustin Bogner           Visit(Child);
11277f53fbfcSEli Friedman 
11287f53fbfcSEli Friedman         // Set the end for the body of the switch, if it isn't already set.
11297f53fbfcSEli Friedman         for (size_t i = RegionStack.size(); i != Index; --i) {
11307f53fbfcSEli Friedman           if (!RegionStack[i - 1].hasEndLoc())
11317f53fbfcSEli Friedman             RegionStack[i - 1].setEndLoc(getEnd(CS->body_back()));
11327f53fbfcSEli Friedman         }
11337f53fbfcSEli Friedman 
1134bf42cfd7SJustin Bogner         popRegions(Index);
1135ee02499aSAlex Lorenz       }
113687ea3b05SVedant Kumar     } else
1137bf42cfd7SJustin Bogner       propagateCounts(Counter::getZero(), Body);
1138ee02499aSAlex Lorenz     BreakContinue BC = BreakContinueStack.pop_back_val();
1139bf42cfd7SJustin Bogner 
1140ee02499aSAlex Lorenz     if (!BreakContinueStack.empty())
1141ee02499aSAlex Lorenz       BreakContinueStack.back().ContinueCount = addCounters(
1142ee02499aSAlex Lorenz           BreakContinueStack.back().ContinueCount, BC.ContinueCount);
1143bf42cfd7SJustin Bogner 
1144bf42cfd7SJustin Bogner     Counter ExitCount = getRegionCounter(S);
11453836482aSVedant Kumar     SourceLocation ExitLoc = getEnd(S);
114608780529SAlex Lorenz     pushRegion(ExitCount);
114708780529SAlex Lorenz 
114808780529SAlex Lorenz     // Ensure that handleFileExit recognizes when the end location is located
114908780529SAlex Lorenz     // in a different file.
115008780529SAlex Lorenz     MostRecentLocation = getStart(S);
11513836482aSVedant Kumar     handleFileExit(ExitLoc);
1152ee02499aSAlex Lorenz   }
1153ee02499aSAlex Lorenz 
1154bf42cfd7SJustin Bogner   void VisitSwitchCase(const SwitchCase *S) {
1155bf42cfd7SJustin Bogner     extendRegion(S);
1156ee02499aSAlex Lorenz 
1157bf42cfd7SJustin Bogner     SourceMappingRegion &Parent = getRegion();
1158bf42cfd7SJustin Bogner 
1159bf42cfd7SJustin Bogner     Counter Count = addCounters(Parent.getCounter(), getRegionCounter(S));
1160bf42cfd7SJustin Bogner     // Reuse the existing region if it starts at our label. This is typical of
1161bf42cfd7SJustin Bogner     // the first case in a switch.
1162a6e4358fSStephen Kelly     if (Parent.hasStartLoc() && Parent.getBeginLoc() == getStart(S))
1163bf42cfd7SJustin Bogner       Parent.setCounter(Count);
1164bf42cfd7SJustin Bogner     else
1165bf42cfd7SJustin Bogner       pushRegion(Count, getStart(S));
1166bf42cfd7SJustin Bogner 
1167376c06c2SSanjay Patel     if (const auto *CS = dyn_cast<CaseStmt>(S)) {
1168bf42cfd7SJustin Bogner       Visit(CS->getLHS());
1169bf42cfd7SJustin Bogner       if (const Expr *RHS = CS->getRHS())
1170bf42cfd7SJustin Bogner         Visit(RHS);
1171bf42cfd7SJustin Bogner     }
1172ee02499aSAlex Lorenz     Visit(S->getSubStmt());
1173ee02499aSAlex Lorenz   }
1174ee02499aSAlex Lorenz 
1175ee02499aSAlex Lorenz   void VisitIfStmt(const IfStmt *S) {
1176bf42cfd7SJustin Bogner     extendRegion(S);
11779d2a16b9SVedant Kumar     if (S->getInit())
11789d2a16b9SVedant Kumar       Visit(S->getInit());
11799d2a16b9SVedant Kumar 
1180055ebc34SJustin Bogner     // Extend into the condition before we propagate through it below - this is
1181055ebc34SJustin Bogner     // needed to handle macros that generate the "if" but not the condition.
1182055ebc34SJustin Bogner     extendRegion(S->getCond());
1183ee02499aSAlex Lorenz 
1184bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
1185bf42cfd7SJustin Bogner     Counter ThenCount = getRegionCounter(S);
1186ee02499aSAlex Lorenz 
118791f2e3c9SJustin Bogner     // Emitting a counter for the condition makes it easier to interpret the
118891f2e3c9SJustin Bogner     // counter for the body when looking at the coverage.
118991f2e3c9SJustin Bogner     propagateCounts(ParentCount, S->getCond());
119091f2e3c9SJustin Bogner 
11912e8c8759SVedant Kumar     // The 'then' count applies to the area immediately after the condition.
1192fa8fa044SVedant Kumar     auto Gap = findGapAreaBetween(S->getCond(), S->getThen());
1193fa8fa044SVedant Kumar     if (Gap)
1194fa8fa044SVedant Kumar       fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), ThenCount);
11952e8c8759SVedant Kumar 
1196bf42cfd7SJustin Bogner     extendRegion(S->getThen());
1197bf42cfd7SJustin Bogner     Counter OutCount = propagateCounts(ThenCount, S->getThen());
1198bf42cfd7SJustin Bogner 
1199bf42cfd7SJustin Bogner     Counter ElseCount = subtractCounters(ParentCount, ThenCount);
1200bf42cfd7SJustin Bogner     if (const Stmt *Else = S->getElse()) {
12012e8c8759SVedant Kumar       // The 'else' count applies to the area immediately after the 'then'.
1202fa8fa044SVedant Kumar       Gap = findGapAreaBetween(S->getThen(), Else);
1203fa8fa044SVedant Kumar       if (Gap)
1204fa8fa044SVedant Kumar         fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), ElseCount);
12052e8c8759SVedant Kumar       extendRegion(Else);
1206bf42cfd7SJustin Bogner       OutCount = addCounters(OutCount, propagateCounts(ElseCount, Else));
1207bf42cfd7SJustin Bogner     } else
1208bf42cfd7SJustin Bogner       OutCount = addCounters(OutCount, ElseCount);
1209bf42cfd7SJustin Bogner 
1210bf42cfd7SJustin Bogner     if (OutCount != ParentCount)
1211bf42cfd7SJustin Bogner       pushRegion(OutCount);
1212ee02499aSAlex Lorenz   }
1213ee02499aSAlex Lorenz 
1214ee02499aSAlex Lorenz   void VisitCXXTryStmt(const CXXTryStmt *S) {
1215bf42cfd7SJustin Bogner     extendRegion(S);
1216049908b2SVedant Kumar     // Handle macros that generate the "try" but not the rest.
1217049908b2SVedant Kumar     extendRegion(S->getTryBlock());
1218049908b2SVedant Kumar 
1219049908b2SVedant Kumar     Counter ParentCount = getRegion().getCounter();
1220049908b2SVedant Kumar     propagateCounts(ParentCount, S->getTryBlock());
1221049908b2SVedant Kumar 
1222ee02499aSAlex Lorenz     for (unsigned I = 0, E = S->getNumHandlers(); I < E; ++I)
1223ee02499aSAlex Lorenz       Visit(S->getHandler(I));
1224bf42cfd7SJustin Bogner 
1225bf42cfd7SJustin Bogner     Counter ExitCount = getRegionCounter(S);
1226bf42cfd7SJustin Bogner     pushRegion(ExitCount);
1227ee02499aSAlex Lorenz   }
1228ee02499aSAlex Lorenz 
1229ee02499aSAlex Lorenz   void VisitCXXCatchStmt(const CXXCatchStmt *S) {
1230bf42cfd7SJustin Bogner     propagateCounts(getRegionCounter(S), S->getHandlerBlock());
1231ee02499aSAlex Lorenz   }
1232ee02499aSAlex Lorenz 
1233ee02499aSAlex Lorenz   void VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
1234bf42cfd7SJustin Bogner     extendRegion(E);
1235ee02499aSAlex Lorenz 
1236bf42cfd7SJustin Bogner     Counter ParentCount = getRegion().getCounter();
1237bf42cfd7SJustin Bogner     Counter TrueCount = getRegionCounter(E);
1238ee02499aSAlex Lorenz 
1239e3654ce7SJustin Bogner     Visit(E->getCond());
1240e3654ce7SJustin Bogner 
1241e3654ce7SJustin Bogner     if (!isa<BinaryConditionalOperator>(E)) {
12422e8c8759SVedant Kumar       // The 'then' count applies to the area immediately after the condition.
1243fa8fa044SVedant Kumar       auto Gap =
1244fa8fa044SVedant Kumar           findGapAreaBetween(E->getQuestionLoc(), getStart(E->getTrueExpr()));
1245fa8fa044SVedant Kumar       if (Gap)
1246fa8fa044SVedant Kumar         fillGapAreaWithCount(Gap->getBegin(), Gap->getEnd(), TrueCount);
12472e8c8759SVedant Kumar 
1248e3654ce7SJustin Bogner       extendRegion(E->getTrueExpr());
1249bf42cfd7SJustin Bogner       propagateCounts(TrueCount, E->getTrueExpr());
1250e3654ce7SJustin Bogner     }
12512e8c8759SVedant Kumar 
1252e3654ce7SJustin Bogner     extendRegion(E->getFalseExpr());
1253bf42cfd7SJustin Bogner     propagateCounts(subtractCounters(ParentCount, TrueCount),
1254bf42cfd7SJustin Bogner                     E->getFalseExpr());
1255ee02499aSAlex Lorenz   }
1256ee02499aSAlex Lorenz 
1257ee02499aSAlex Lorenz   void VisitBinLAnd(const BinaryOperator *E) {
1258e5f06a81SVedant Kumar     extendRegion(E->getLHS());
1259e5f06a81SVedant Kumar     propagateCounts(getRegion().getCounter(), E->getLHS());
1260e5f06a81SVedant Kumar     handleFileExit(getEnd(E->getLHS()));
1261bf42cfd7SJustin Bogner 
1262bf42cfd7SJustin Bogner     extendRegion(E->getRHS());
1263bf42cfd7SJustin Bogner     propagateCounts(getRegionCounter(E), E->getRHS());
1264ee02499aSAlex Lorenz   }
1265ee02499aSAlex Lorenz 
1266ee02499aSAlex Lorenz   void VisitBinLOr(const BinaryOperator *E) {
1267e5f06a81SVedant Kumar     extendRegion(E->getLHS());
1268e5f06a81SVedant Kumar     propagateCounts(getRegion().getCounter(), E->getLHS());
1269e5f06a81SVedant Kumar     handleFileExit(getEnd(E->getLHS()));
1270ee02499aSAlex Lorenz 
1271bf42cfd7SJustin Bogner     extendRegion(E->getRHS());
1272bf42cfd7SJustin Bogner     propagateCounts(getRegionCounter(E), E->getRHS());
127301a0d062SAlex Lorenz   }
1274c109102eSJustin Bogner 
1275c109102eSJustin Bogner   void VisitLambdaExpr(const LambdaExpr *LE) {
1276c109102eSJustin Bogner     // Lambdas are treated as their own functions for now, so we shouldn't
1277c109102eSJustin Bogner     // propagate counts into them.
1278c109102eSJustin Bogner   }
1279ee02499aSAlex Lorenz };
1280ee02499aSAlex Lorenz 
12817cd595dfSReid Kleckner std::string normalizeFilename(StringRef Filename) {
12827cd595dfSReid Kleckner   llvm::SmallString<256> Path(Filename);
12837cd595dfSReid Kleckner   llvm::sys::fs::make_absolute(Path);
12847cd595dfSReid Kleckner   llvm::sys::path::remove_dots(Path, /*remove_dot_dot=*/true);
1285509e21a1SJonas Devlieghere   return std::string(Path);
12867cd595dfSReid Kleckner }
12877cd595dfSReid Kleckner 
128814f8fb68SVedant Kumar } // end anonymous namespace
128914f8fb68SVedant Kumar 
1290a432d176SJustin Bogner static void dump(llvm::raw_ostream &OS, StringRef FunctionName,
1291a432d176SJustin Bogner                  ArrayRef<CounterExpression> Expressions,
1292a432d176SJustin Bogner                  ArrayRef<CounterMappingRegion> Regions) {
1293a432d176SJustin Bogner   OS << FunctionName << ":\n";
1294a432d176SJustin Bogner   CounterMappingContext Ctx(Expressions);
1295a432d176SJustin Bogner   for (const auto &R : Regions) {
1296f2cf38e0SAlex Lorenz     OS.indent(2);
1297f2cf38e0SAlex Lorenz     switch (R.Kind) {
1298f2cf38e0SAlex Lorenz     case CounterMappingRegion::CodeRegion:
1299f2cf38e0SAlex Lorenz       break;
1300f2cf38e0SAlex Lorenz     case CounterMappingRegion::ExpansionRegion:
1301f2cf38e0SAlex Lorenz       OS << "Expansion,";
1302f2cf38e0SAlex Lorenz       break;
1303f2cf38e0SAlex Lorenz     case CounterMappingRegion::SkippedRegion:
1304f2cf38e0SAlex Lorenz       OS << "Skipped,";
1305f2cf38e0SAlex Lorenz       break;
1306a1c4deb7SVedant Kumar     case CounterMappingRegion::GapRegion:
1307a1c4deb7SVedant Kumar       OS << "Gap,";
1308a1c4deb7SVedant Kumar       break;
1309f2cf38e0SAlex Lorenz     }
1310f2cf38e0SAlex Lorenz 
13114da909b2SJustin Bogner     OS << "File " << R.FileID << ", " << R.LineStart << ":" << R.ColumnStart
13124da909b2SJustin Bogner        << " -> " << R.LineEnd << ":" << R.ColumnEnd << " = ";
1313f69dc349SJustin Bogner     Ctx.dump(R.Count, OS);
1314f2cf38e0SAlex Lorenz     if (R.Kind == CounterMappingRegion::ExpansionRegion)
13154da909b2SJustin Bogner       OS << " (Expanded file = " << R.ExpandedFileID << ")";
13164da909b2SJustin Bogner     OS << "\n";
1317f2cf38e0SAlex Lorenz   }
1318f2cf38e0SAlex Lorenz }
1319f2cf38e0SAlex Lorenz 
1320*dd1ea9deSVedant Kumar static std::string getInstrProfSection(const CodeGenModule &CGM,
1321*dd1ea9deSVedant Kumar                                        llvm::InstrProfSectKind SK) {
1322*dd1ea9deSVedant Kumar   return llvm::getInstrProfSectionName(
1323*dd1ea9deSVedant Kumar       SK, CGM.getContext().getTargetInfo().getTriple().getObjectFormat());
1324*dd1ea9deSVedant Kumar }
1325*dd1ea9deSVedant Kumar 
1326*dd1ea9deSVedant Kumar void CoverageMappingModuleGen::emitFunctionMappingRecord(
1327*dd1ea9deSVedant Kumar     const FunctionInfo &Info, uint64_t FilenamesRef) {
132899317124SVedant Kumar   llvm::LLVMContext &Ctx = CGM.getLLVMContext();
1329*dd1ea9deSVedant Kumar 
1330*dd1ea9deSVedant Kumar   // Assign a name to the function record. This is used to merge duplicates.
1331*dd1ea9deSVedant Kumar   std::string FuncRecordName = "__covrec_" + llvm::utohexstr(Info.NameHash);
1332*dd1ea9deSVedant Kumar 
1333*dd1ea9deSVedant Kumar   // A dummy description for a function included-but-not-used in a TU can be
1334*dd1ea9deSVedant Kumar   // replaced by full description provided by a different TU. The two kinds of
1335*dd1ea9deSVedant Kumar   // descriptions play distinct roles: therefore, assign them different names
1336*dd1ea9deSVedant Kumar   // to prevent `linkonce_odr` merging.
1337*dd1ea9deSVedant Kumar   if (Info.IsUsed)
1338*dd1ea9deSVedant Kumar     FuncRecordName += "u";
1339*dd1ea9deSVedant Kumar 
1340*dd1ea9deSVedant Kumar   // Create the function record type.
1341*dd1ea9deSVedant Kumar   const uint64_t NameHash = Info.NameHash;
1342*dd1ea9deSVedant Kumar   const uint64_t FuncHash = Info.FuncHash;
1343*dd1ea9deSVedant Kumar   const std::string &CoverageMapping = Info.CoverageMapping;
134433888717SVedant Kumar #define COVMAP_FUNC_RECORD(Type, LLVMType, Name, Init) LLVMType,
134533888717SVedant Kumar   llvm::Type *FunctionRecordTypes[] = {
134633888717SVedant Kumar #include "llvm/ProfileData/InstrProfData.inc"
134733888717SVedant Kumar   };
1348*dd1ea9deSVedant Kumar   auto *FunctionRecordTy =
134933888717SVedant Kumar       llvm::StructType::get(Ctx, makeArrayRef(FunctionRecordTypes),
135033888717SVedant Kumar                             /*isPacked=*/true);
135199317124SVedant Kumar 
1352*dd1ea9deSVedant Kumar   // Create the function record constant.
135333888717SVedant Kumar #define COVMAP_FUNC_RECORD(Type, LLVMType, Name, Init) Init,
135433888717SVedant Kumar   llvm::Constant *FunctionRecordVals[] = {
135533888717SVedant Kumar       #include "llvm/ProfileData/InstrProfData.inc"
135633888717SVedant Kumar   };
1357*dd1ea9deSVedant Kumar   auto *FuncRecordConstant = llvm::ConstantStruct::get(
1358*dd1ea9deSVedant Kumar       FunctionRecordTy, makeArrayRef(FunctionRecordVals));
1359*dd1ea9deSVedant Kumar 
1360*dd1ea9deSVedant Kumar   // Create the function record global.
1361*dd1ea9deSVedant Kumar   auto *FuncRecord = new llvm::GlobalVariable(
1362*dd1ea9deSVedant Kumar       CGM.getModule(), FunctionRecordTy, /*isConstant=*/true,
1363*dd1ea9deSVedant Kumar       llvm::GlobalValue::LinkOnceODRLinkage, FuncRecordConstant,
1364*dd1ea9deSVedant Kumar       FuncRecordName);
1365*dd1ea9deSVedant Kumar   FuncRecord->setVisibility(llvm::GlobalValue::HiddenVisibility);
1366*dd1ea9deSVedant Kumar   FuncRecord->setSection(getInstrProfSection(CGM, llvm::IPSK_covfun));
1367*dd1ea9deSVedant Kumar   FuncRecord->setAlignment(llvm::Align(8));
1368*dd1ea9deSVedant Kumar   if (CGM.supportsCOMDAT())
1369*dd1ea9deSVedant Kumar     FuncRecord->setComdat(CGM.getModule().getOrInsertComdat(FuncRecordName));
1370*dd1ea9deSVedant Kumar 
1371*dd1ea9deSVedant Kumar   // Make sure the data doesn't get deleted.
1372*dd1ea9deSVedant Kumar   CGM.addUsedGlobal(FuncRecord);
1373*dd1ea9deSVedant Kumar }
1374*dd1ea9deSVedant Kumar 
1375*dd1ea9deSVedant Kumar void CoverageMappingModuleGen::addFunctionMappingRecord(
1376*dd1ea9deSVedant Kumar     llvm::GlobalVariable *NamePtr, StringRef NameValue, uint64_t FuncHash,
1377*dd1ea9deSVedant Kumar     const std::string &CoverageMapping, bool IsUsed) {
1378*dd1ea9deSVedant Kumar   llvm::LLVMContext &Ctx = CGM.getLLVMContext();
1379*dd1ea9deSVedant Kumar   const uint64_t NameHash = llvm::IndexedInstrProf::ComputeHash(NameValue);
1380*dd1ea9deSVedant Kumar   FunctionRecords.push_back({NameHash, FuncHash, CoverageMapping, IsUsed});
1381*dd1ea9deSVedant Kumar 
1382848da137SXinliang David Li   if (!IsUsed)
13832129ae53SXinliang David Li     FunctionNames.push_back(
13842129ae53SXinliang David Li         llvm::ConstantExpr::getBitCast(NamePtr, llvm::Type::getInt8PtrTy(Ctx)));
1385f2cf38e0SAlex Lorenz 
1386f2cf38e0SAlex Lorenz   if (CGM.getCodeGenOpts().DumpCoverageMapping) {
1387f2cf38e0SAlex Lorenz     // Dump the coverage mapping data for this function by decoding the
1388f2cf38e0SAlex Lorenz     // encoded data. This allows us to dump the mapping regions which were
1389f2cf38e0SAlex Lorenz     // also processed by the CoverageMappingWriter which performs
1390f2cf38e0SAlex Lorenz     // additional minimization operations such as reducing the number of
1391f2cf38e0SAlex Lorenz     // expressions.
1392f2cf38e0SAlex Lorenz     std::vector<StringRef> Filenames;
1393f2cf38e0SAlex Lorenz     std::vector<CounterExpression> Expressions;
1394f2cf38e0SAlex Lorenz     std::vector<CounterMappingRegion> Regions;
1395b31ee819SJordan Rose     llvm::SmallVector<std::string, 16> FilenameStrs;
1396f2cf38e0SAlex Lorenz     llvm::SmallVector<StringRef, 16> FilenameRefs;
1397b31ee819SJordan Rose     FilenameStrs.resize(FileEntries.size());
1398f2cf38e0SAlex Lorenz     FilenameRefs.resize(FileEntries.size());
1399b31ee819SJordan Rose     for (const auto &Entry : FileEntries) {
1400b31ee819SJordan Rose       auto I = Entry.second;
1401b31ee819SJordan Rose       FilenameStrs[I] = normalizeFilename(Entry.first->getName());
1402b31ee819SJordan Rose       FilenameRefs[I] = FilenameStrs[I];
1403b31ee819SJordan Rose     }
1404a432d176SJustin Bogner     RawCoverageMappingReader Reader(CoverageMapping, FilenameRefs, Filenames,
1405a432d176SJustin Bogner                                     Expressions, Regions);
1406a432d176SJustin Bogner     if (Reader.read())
1407f2cf38e0SAlex Lorenz       return;
1408a026a437SXinliang David Li     dump(llvm::outs(), NameValue, Expressions, Regions);
1409f2cf38e0SAlex Lorenz   }
1410ee02499aSAlex Lorenz }
1411ee02499aSAlex Lorenz 
1412ee02499aSAlex Lorenz void CoverageMappingModuleGen::emit() {
1413ee02499aSAlex Lorenz   if (FunctionRecords.empty())
1414ee02499aSAlex Lorenz     return;
1415ee02499aSAlex Lorenz   llvm::LLVMContext &Ctx = CGM.getLLVMContext();
1416ee02499aSAlex Lorenz   auto *Int32Ty = llvm::Type::getInt32Ty(Ctx);
1417ee02499aSAlex Lorenz 
1418ee02499aSAlex Lorenz   // Create the filenames and merge them with coverage mappings
1419ee02499aSAlex Lorenz   llvm::SmallVector<std::string, 16> FilenameStrs;
14209e324dd1SVedant Kumar   llvm::SmallVector<StringRef, 16> FilenameRefs;
1421ee02499aSAlex Lorenz   FilenameStrs.resize(FileEntries.size());
14229e324dd1SVedant Kumar   FilenameRefs.resize(FileEntries.size());
1423ee02499aSAlex Lorenz   for (const auto &Entry : FileEntries) {
1424ee02499aSAlex Lorenz     auto I = Entry.second;
142514f8fb68SVedant Kumar     FilenameStrs[I] = normalizeFilename(Entry.first->getName());
14269e324dd1SVedant Kumar     FilenameRefs[I] = FilenameStrs[I];
1427ee02499aSAlex Lorenz   }
1428ee02499aSAlex Lorenz 
1429*dd1ea9deSVedant Kumar   std::string Filenames;
1430*dd1ea9deSVedant Kumar   {
1431*dd1ea9deSVedant Kumar     llvm::raw_string_ostream OS(Filenames);
14329e324dd1SVedant Kumar     CoverageFilenamesSectionWriter(FilenameRefs).write(OS);
14334cd07dbeSSerge Guelton   }
1434*dd1ea9deSVedant Kumar   auto *FilenamesVal =
1435*dd1ea9deSVedant Kumar       llvm::ConstantDataArray::getString(Ctx, Filenames, false);
1436*dd1ea9deSVedant Kumar   const int64_t FilenamesRef = llvm::IndexedInstrProf::ComputeHash(Filenames);
14374cd07dbeSSerge Guelton 
1438*dd1ea9deSVedant Kumar   // Emit the function records.
1439*dd1ea9deSVedant Kumar   for (const FunctionInfo &Info : FunctionRecords)
1440*dd1ea9deSVedant Kumar     emitFunctionMappingRecord(Info, FilenamesRef);
1441ee02499aSAlex Lorenz 
1442*dd1ea9deSVedant Kumar   const unsigned NRecords = 0;
1443*dd1ea9deSVedant Kumar   const size_t FilenamesSize = Filenames.size();
1444*dd1ea9deSVedant Kumar   const unsigned CoverageMappingSize = 0;
144520b188c0SXinliang David Li   llvm::Type *CovDataHeaderTypes[] = {
144620b188c0SXinliang David Li #define COVMAP_HEADER(Type, LLVMType, Name, Init) LLVMType,
144720b188c0SXinliang David Li #include "llvm/ProfileData/InstrProfData.inc"
144820b188c0SXinliang David Li   };
144920b188c0SXinliang David Li   auto CovDataHeaderTy =
145020b188c0SXinliang David Li       llvm::StructType::get(Ctx, makeArrayRef(CovDataHeaderTypes));
145120b188c0SXinliang David Li   llvm::Constant *CovDataHeaderVals[] = {
145220b188c0SXinliang David Li #define COVMAP_HEADER(Type, LLVMType, Name, Init) Init,
145320b188c0SXinliang David Li #include "llvm/ProfileData/InstrProfData.inc"
145420b188c0SXinliang David Li   };
145520b188c0SXinliang David Li   auto CovDataHeaderVal = llvm::ConstantStruct::get(
145620b188c0SXinliang David Li       CovDataHeaderTy, makeArrayRef(CovDataHeaderVals));
145720b188c0SXinliang David Li 
1458ee02499aSAlex Lorenz   // Create the coverage data record
1459*dd1ea9deSVedant Kumar   llvm::Type *CovDataTypes[] = {CovDataHeaderTy, FilenamesVal->getType()};
1460ee02499aSAlex Lorenz   auto CovDataTy = llvm::StructType::get(Ctx, makeArrayRef(CovDataTypes));
1461*dd1ea9deSVedant Kumar   llvm::Constant *TUDataVals[] = {CovDataHeaderVal, FilenamesVal};
1462ee02499aSAlex Lorenz   auto CovDataVal =
1463ee02499aSAlex Lorenz       llvm::ConstantStruct::get(CovDataTy, makeArrayRef(TUDataVals));
146420b188c0SXinliang David Li   auto CovData = new llvm::GlobalVariable(
1465*dd1ea9deSVedant Kumar       CGM.getModule(), CovDataTy, true, llvm::GlobalValue::PrivateLinkage,
146620b188c0SXinliang David Li       CovDataVal, llvm::getCoverageMappingVarName());
1467ee02499aSAlex Lorenz 
1468*dd1ea9deSVedant Kumar   CovData->setSection(getInstrProfSection(CGM, llvm::IPSK_covmap));
1469c79099e0SGuillaume Chatelet   CovData->setAlignment(llvm::Align(8));
1470ee02499aSAlex Lorenz 
1471ee02499aSAlex Lorenz   // Make sure the data doesn't get deleted.
1472ee02499aSAlex Lorenz   CGM.addUsedGlobal(CovData);
14732129ae53SXinliang David Li   // Create the deferred function records array
14742129ae53SXinliang David Li   if (!FunctionNames.empty()) {
14752129ae53SXinliang David Li     auto NamesArrTy = llvm::ArrayType::get(llvm::Type::getInt8PtrTy(Ctx),
14762129ae53SXinliang David Li                                            FunctionNames.size());
14772129ae53SXinliang David Li     auto NamesArrVal = llvm::ConstantArray::get(NamesArrTy, FunctionNames);
14782129ae53SXinliang David Li     // This variable will *NOT* be emitted to the object file. It is used
14792129ae53SXinliang David Li     // to pass the list of names referenced to codegen.
14802129ae53SXinliang David Li     new llvm::GlobalVariable(CGM.getModule(), NamesArrTy, true,
14812129ae53SXinliang David Li                              llvm::GlobalValue::InternalLinkage, NamesArrVal,
14827077f0afSXinliang David Li                              llvm::getCoverageUnusedNamesVarName());
14832129ae53SXinliang David Li   }
1484ee02499aSAlex Lorenz }
1485ee02499aSAlex Lorenz 
1486ee02499aSAlex Lorenz unsigned CoverageMappingModuleGen::getFileID(const FileEntry *File) {
1487ee02499aSAlex Lorenz   auto It = FileEntries.find(File);
1488ee02499aSAlex Lorenz   if (It != FileEntries.end())
1489ee02499aSAlex Lorenz     return It->second;
1490ee02499aSAlex Lorenz   unsigned FileID = FileEntries.size();
1491ee02499aSAlex Lorenz   FileEntries.insert(std::make_pair(File, FileID));
1492ee02499aSAlex Lorenz   return FileID;
1493ee02499aSAlex Lorenz }
1494ee02499aSAlex Lorenz 
1495ee02499aSAlex Lorenz void CoverageMappingGen::emitCounterMapping(const Decl *D,
1496ee02499aSAlex Lorenz                                             llvm::raw_ostream &OS) {
1497ee02499aSAlex Lorenz   assert(CounterMap);
1498e5ee6c58SJustin Bogner   CounterCoverageMappingBuilder Walker(CVM, *CounterMap, SM, LangOpts);
1499ee02499aSAlex Lorenz   Walker.VisitDecl(D);
1500ee02499aSAlex Lorenz   Walker.write(OS);
1501ee02499aSAlex Lorenz }
1502ee02499aSAlex Lorenz 
1503ee02499aSAlex Lorenz void CoverageMappingGen::emitEmptyMapping(const Decl *D,
1504ee02499aSAlex Lorenz                                           llvm::raw_ostream &OS) {
1505ee02499aSAlex Lorenz   EmptyCoverageMappingBuilder Walker(CVM, SM, LangOpts);
1506ee02499aSAlex Lorenz   Walker.VisitDecl(D);
1507ee02499aSAlex Lorenz   Walker.write(OS);
1508ee02499aSAlex Lorenz }
1509