blob: 024a45dba2b73c14d765c47224804338c61d75f2 [file] [log] [blame]
Alex Lorenzee024992014-08-04 18:41:51 +00001//===--- CoverageMappingGen.cpp - Coverage mapping generation ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Instrumentation-based code coverage mapping generator
11//
12//===----------------------------------------------------------------------===//
13
14#include "CoverageMappingGen.h"
15#include "CodeGenFunction.h"
16#include "clang/AST/StmtVisitor.h"
17#include "clang/Lex/Lexer.h"
Justin Bognerbf42cfd2015-02-18 21:24:51 +000018#include "llvm/ADT/Optional.h"
Alex Lorenzee024992014-08-04 18:41:51 +000019#include "llvm/ProfileData/CoverageMapping.h"
Alex Lorenzf2cf38e2014-08-08 23:41:24 +000020#include "llvm/ProfileData/CoverageMappingReader.h"
Chandler Carruth0d9593d2015-01-14 11:29:14 +000021#include "llvm/ProfileData/CoverageMappingWriter.h"
22#include "llvm/ProfileData/InstrProfReader.h"
Alex Lorenzee024992014-08-04 18:41:51 +000023#include "llvm/Support/FileSystem.h"
24
25using namespace clang;
26using namespace CodeGen;
27using namespace llvm::coverage;
28
29void CoverageSourceInfo::SourceRangeSkipped(SourceRange Range) {
30 SkippedRanges.push_back(Range);
31}
32
33namespace {
34
35/// \brief A region of source code that can be mapped to a counter.
Justin Bogner09c71792014-10-01 03:33:49 +000036class SourceMappingRegion {
Alex Lorenzee024992014-08-04 18:41:51 +000037 Counter Count;
38
Alex Lorenzee024992014-08-04 18:41:51 +000039 /// \brief The region's starting location.
Justin Bognerbf42cfd2015-02-18 21:24:51 +000040 Optional<SourceLocation> LocStart;
Alex Lorenzee024992014-08-04 18:41:51 +000041
42 /// \brief The region's ending location.
Justin Bognerbf42cfd2015-02-18 21:24:51 +000043 Optional<SourceLocation> LocEnd;
Alex Lorenzee024992014-08-04 18:41:51 +000044
Justin Bogner09c71792014-10-01 03:33:49 +000045public:
Justin Bognerbf42cfd2015-02-18 21:24:51 +000046 SourceMappingRegion(Counter Count, Optional<SourceLocation> LocStart,
47 Optional<SourceLocation> LocEnd)
48 : Count(Count), LocStart(LocStart), LocEnd(LocEnd) {}
Alex Lorenzee024992014-08-04 18:41:51 +000049
Justin Bognerbf42cfd2015-02-18 21:24:51 +000050 SourceMappingRegion(SourceMappingRegion &&Region)
51 : Count(std::move(Region.Count)), LocStart(std::move(Region.LocStart)),
52 LocEnd(std::move(Region.LocEnd)) {}
53
54 SourceMappingRegion &operator=(SourceMappingRegion &&RHS) {
55 Count = std::move(RHS.Count);
56 LocStart = std::move(RHS.LocStart);
57 LocEnd = std::move(RHS.LocEnd);
58 return *this;
59 }
Justin Bogner09c71792014-10-01 03:33:49 +000060
61 const Counter &getCounter() const { return Count; }
62
Justin Bognerbf42cfd2015-02-18 21:24:51 +000063 void setCounter(Counter C) { Count = C; }
Justin Bogner09c71792014-10-01 03:33:49 +000064
Justin Bognerbf42cfd2015-02-18 21:24:51 +000065 bool hasStartLoc() const { return LocStart.hasValue(); }
66
67 void setStartLoc(SourceLocation Loc) { LocStart = Loc; }
68
69 const SourceLocation &getStartLoc() const {
70 assert(LocStart && "Region has no start location");
71 return *LocStart;
Justin Bogner09c71792014-10-01 03:33:49 +000072 }
73
Justin Bognerbf42cfd2015-02-18 21:24:51 +000074 bool hasEndLoc() const { return LocEnd.hasValue(); }
Alex Lorenzee024992014-08-04 18:41:51 +000075
Justin Bognerbf42cfd2015-02-18 21:24:51 +000076 void setEndLoc(SourceLocation Loc) { LocEnd = Loc; }
Alex Lorenzee024992014-08-04 18:41:51 +000077
Justin Bognerbf42cfd2015-02-18 21:24:51 +000078 const SourceLocation &getEndLoc() const {
79 assert(LocEnd && "Region has no end location");
80 return *LocEnd;
Alex Lorenzee024992014-08-04 18:41:51 +000081 }
82};
83
Alex Lorenzee024992014-08-04 18:41:51 +000084/// \brief Provides the common functionality for the different
85/// coverage mapping region builders.
86class CoverageMappingBuilder {
87public:
88 CoverageMappingModuleGen &CVM;
89 SourceManager &SM;
90 const LangOptions &LangOpts;
91
92private:
Justin Bognerbf42cfd2015-02-18 21:24:51 +000093 /// \brief Map of clang's FileIDs to IDs used for coverage mapping.
94 llvm::SmallDenseMap<FileID, std::pair<unsigned, SourceLocation>, 8>
95 FileIDMapping;
Alex Lorenzee024992014-08-04 18:41:51 +000096
97public:
Alex Lorenzee024992014-08-04 18:41:51 +000098 /// \brief The coverage mapping regions for this function
99 llvm::SmallVector<CounterMappingRegion, 32> MappingRegions;
100 /// \brief The source mapping regions for this function.
Justin Bognerf59329b2014-10-01 03:33:52 +0000101 std::vector<SourceMappingRegion> SourceRegions;
Alex Lorenzee024992014-08-04 18:41:51 +0000102
103 CoverageMappingBuilder(CoverageMappingModuleGen &CVM, SourceManager &SM,
104 const LangOptions &LangOpts)
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000105 : CVM(CVM), SM(SM), LangOpts(LangOpts) {}
Alex Lorenzee024992014-08-04 18:41:51 +0000106
107 /// \brief Return the precise end location for the given token.
108 SourceLocation getPreciseTokenLocEnd(SourceLocation Loc) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000109 // We avoid getLocForEndOfToken here, because it doesn't do what we want for
110 // macro locations, which we just treat as expanded files.
111 unsigned TokLen =
112 Lexer::MeasureTokenLength(SM.getSpellingLoc(Loc), SM, LangOpts);
113 return Loc.getLocWithOffset(TokLen);
Alex Lorenzee024992014-08-04 18:41:51 +0000114 }
115
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000116 /// \brief Return the start location of an included file or expanded macro.
117 SourceLocation getStartOfFileOrMacro(SourceLocation Loc) {
118 if (Loc.isMacroID())
119 return Loc.getLocWithOffset(-SM.getFileOffset(Loc));
120 return SM.getLocForStartOfFile(SM.getFileID(Loc));
Alex Lorenzee024992014-08-04 18:41:51 +0000121 }
122
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000123 /// \brief Return the end location of an included file or expanded macro.
124 SourceLocation getEndOfFileOrMacro(SourceLocation Loc) {
125 if (Loc.isMacroID())
126 return Loc.getLocWithOffset(SM.getFileIDSize(SM.getFileID(Loc)) -
Justin Bognerf14b2072015-03-25 04:13:49 +0000127 SM.getFileOffset(Loc));
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000128 return SM.getLocForEndOfFile(SM.getFileID(Loc));
129 }
130
131 /// \brief Find out where the current file is included or macro is expanded.
132 SourceLocation getIncludeOrExpansionLoc(SourceLocation Loc) {
133 return Loc.isMacroID() ? SM.getImmediateExpansionRange(Loc).first
134 : SM.getIncludeLoc(SM.getFileID(Loc));
135 }
136
Justin Bogner682bfbf2015-05-14 22:14:10 +0000137 /// \brief Return true if \c Loc is a location in a built-in macro.
138 bool isInBuiltin(SourceLocation Loc) {
139 return strcmp(SM.getBufferName(SM.getSpellingLoc(Loc)), "<built-in>") == 0;
140 }
141
142 /// \brief Get the start of \c S ignoring macro arguments and builtin macros.
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000143 SourceLocation getStart(const Stmt *S) {
144 SourceLocation Loc = S->getLocStart();
Justin Bogner682bfbf2015-05-14 22:14:10 +0000145 while (SM.isMacroArgExpansion(Loc) || isInBuiltin(Loc))
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000146 Loc = SM.getImmediateExpansionRange(Loc).first;
147 return Loc;
148 }
149
Justin Bogner682bfbf2015-05-14 22:14:10 +0000150 /// \brief Get the end of \c S ignoring macro arguments and builtin macros.
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000151 SourceLocation getEnd(const Stmt *S) {
152 SourceLocation Loc = S->getLocEnd();
Justin Bogner682bfbf2015-05-14 22:14:10 +0000153 while (SM.isMacroArgExpansion(Loc) || isInBuiltin(Loc))
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000154 Loc = SM.getImmediateExpansionRange(Loc).first;
Justin Bognerf14b2072015-03-25 04:13:49 +0000155 return getPreciseTokenLocEnd(Loc);
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000156 }
157
158 /// \brief Find the set of files we have regions for and assign IDs
159 ///
160 /// Fills \c Mapping with the virtual file mapping needed to write out
161 /// coverage and collects the necessary file information to emit source and
162 /// expansion regions.
163 void gatherFileIDs(SmallVectorImpl<unsigned> &Mapping) {
164 FileIDMapping.clear();
165
166 SmallVector<FileID, 8> Visited;
167 SmallVector<std::pair<SourceLocation, unsigned>, 8> FileLocs;
168 for (const auto &Region : SourceRegions) {
169 SourceLocation Loc = Region.getStartLoc();
170 FileID File = SM.getFileID(Loc);
171 if (std::find(Visited.begin(), Visited.end(), File) != Visited.end())
172 continue;
173 Visited.push_back(File);
174
175 unsigned Depth = 0;
176 for (SourceLocation Parent = getIncludeOrExpansionLoc(Loc);
177 !Parent.isInvalid(); Parent = getIncludeOrExpansionLoc(Parent))
178 ++Depth;
179 FileLocs.push_back(std::make_pair(Loc, Depth));
180 }
181 std::stable_sort(FileLocs.begin(), FileLocs.end(), llvm::less_second());
182
183 for (const auto &FL : FileLocs) {
184 SourceLocation Loc = FL.first;
185 FileID SpellingFile = SM.getDecomposedSpellingLoc(Loc).first;
186 auto Entry = SM.getFileEntryForID(SpellingFile);
187 if (!Entry)
188 continue;
189
190 FileIDMapping[SM.getFileID(Loc)] = std::make_pair(Mapping.size(), Loc);
191 Mapping.push_back(CVM.getFileID(Entry));
192 }
193 }
194
195 /// \brief Get the coverage mapping file ID for \c Loc.
196 ///
197 /// If such file id doesn't exist, return None.
198 Optional<unsigned> getCoverageFileID(SourceLocation Loc) {
199 auto Mapping = FileIDMapping.find(SM.getFileID(Loc));
Justin Bogner903678c2015-01-24 20:22:32 +0000200 if (Mapping != FileIDMapping.end())
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000201 return Mapping->second.first;
202 return None;
Alex Lorenzee024992014-08-04 18:41:51 +0000203 }
204
205 /// \brief Return true if the given clang's file id has a corresponding
206 /// coverage file id.
207 bool hasExistingCoverageFileID(FileID File) const {
208 return FileIDMapping.count(File);
209 }
210
211 /// \brief Gather all the regions that were skipped by the preprocessor
212 /// using the constructs like #if.
213 void gatherSkippedRegions() {
214 /// An array of the minimum lineStarts and the maximum lineEnds
215 /// for mapping regions from the appropriate source files.
216 llvm::SmallVector<std::pair<unsigned, unsigned>, 8> FileLineRanges;
217 FileLineRanges.resize(
218 FileIDMapping.size(),
219 std::make_pair(std::numeric_limits<unsigned>::max(), 0));
220 for (const auto &R : MappingRegions) {
221 FileLineRanges[R.FileID].first =
222 std::min(FileLineRanges[R.FileID].first, R.LineStart);
223 FileLineRanges[R.FileID].second =
224 std::max(FileLineRanges[R.FileID].second, R.LineEnd);
225 }
226
227 auto SkippedRanges = CVM.getSourceInfo().getSkippedRanges();
228 for (const auto &I : SkippedRanges) {
229 auto LocStart = I.getBegin();
230 auto LocEnd = I.getEnd();
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000231 assert(SM.isWrittenInSameFile(LocStart, LocEnd) &&
232 "region spans multiple files");
Alex Lorenzee024992014-08-04 18:41:51 +0000233
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000234 auto CovFileID = getCoverageFileID(LocStart);
Justin Bogner903678c2015-01-24 20:22:32 +0000235 if (!CovFileID)
Alex Lorenzee024992014-08-04 18:41:51 +0000236 continue;
237 unsigned LineStart = SM.getSpellingLineNumber(LocStart);
238 unsigned ColumnStart = SM.getSpellingColumnNumber(LocStart);
239 unsigned LineEnd = SM.getSpellingLineNumber(LocEnd);
240 unsigned ColumnEnd = SM.getSpellingColumnNumber(LocEnd);
Justin Bognerfd34280b2015-02-03 23:59:48 +0000241 auto Region = CounterMappingRegion::makeSkipped(
242 *CovFileID, LineStart, ColumnStart, LineEnd, ColumnEnd);
Alex Lorenzee024992014-08-04 18:41:51 +0000243 // Make sure that we only collect the regions that are inside
244 // the souce code of this function.
Justin Bogner903678c2015-01-24 20:22:32 +0000245 if (Region.LineStart >= FileLineRanges[*CovFileID].first &&
246 Region.LineEnd <= FileLineRanges[*CovFileID].second)
Alex Lorenzee024992014-08-04 18:41:51 +0000247 MappingRegions.push_back(Region);
248 }
249 }
250
Alex Lorenzee024992014-08-04 18:41:51 +0000251 /// \brief Generate the coverage counter mapping regions from collected
252 /// source regions.
253 void emitSourceRegions() {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000254 for (const auto &Region : SourceRegions) {
255 assert(Region.hasEndLoc() && "incomplete region");
Alex Lorenzee024992014-08-04 18:41:51 +0000256
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000257 SourceLocation LocStart = Region.getStartLoc();
258 assert(!SM.getFileID(LocStart).isInvalid() && "region in invalid file");
Justin Bognerf59329b2014-10-01 03:33:52 +0000259
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000260 auto CovFileID = getCoverageFileID(LocStart);
261 // Ignore regions that don't have a file, such as builtin macros.
262 if (!CovFileID)
Alex Lorenzee024992014-08-04 18:41:51 +0000263 continue;
264
Justin Bognerf14b2072015-03-25 04:13:49 +0000265 SourceLocation LocEnd = Region.getEndLoc();
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000266 assert(SM.isWrittenInSameFile(LocStart, LocEnd) &&
267 "region spans multiple files");
268
Justin Bognerf59329b2014-10-01 03:33:52 +0000269 // Find the spilling locations for the mapping region.
Alex Lorenzee024992014-08-04 18:41:51 +0000270 unsigned LineStart = SM.getSpellingLineNumber(LocStart);
271 unsigned ColumnStart = SM.getSpellingColumnNumber(LocStart);
272 unsigned LineEnd = SM.getSpellingLineNumber(LocEnd);
273 unsigned ColumnEnd = SM.getSpellingColumnNumber(LocEnd);
274
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000275 assert(LineStart <= LineEnd && "region start and end out of order");
276 MappingRegions.push_back(CounterMappingRegion::makeRegion(
277 Region.getCounter(), *CovFileID, LineStart, ColumnStart, LineEnd,
278 ColumnEnd));
279 }
280 }
281
282 /// \brief Generate expansion regions for each virtual file we've seen.
283 void emitExpansionRegions() {
284 for (const auto &FM : FileIDMapping) {
285 SourceLocation ExpandedLoc = FM.second.second;
286 SourceLocation ParentLoc = getIncludeOrExpansionLoc(ExpandedLoc);
287 if (ParentLoc.isInvalid())
Alex Lorenzee024992014-08-04 18:41:51 +0000288 continue;
289
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000290 auto ParentFileID = getCoverageFileID(ParentLoc);
291 if (!ParentFileID)
292 continue;
293 auto ExpandedFileID = getCoverageFileID(ExpandedLoc);
294 assert(ExpandedFileID && "expansion in uncovered file");
295
296 SourceLocation LocEnd = getPreciseTokenLocEnd(ParentLoc);
297 assert(SM.isWrittenInSameFile(ParentLoc, LocEnd) &&
298 "region spans multiple files");
299
300 unsigned LineStart = SM.getSpellingLineNumber(ParentLoc);
301 unsigned ColumnStart = SM.getSpellingColumnNumber(ParentLoc);
302 unsigned LineEnd = SM.getSpellingLineNumber(LocEnd);
303 unsigned ColumnEnd = SM.getSpellingColumnNumber(LocEnd);
304
305 MappingRegions.push_back(CounterMappingRegion::makeExpansion(
306 *ParentFileID, *ExpandedFileID, LineStart, ColumnStart, LineEnd,
Justin Bognerfd34280b2015-02-03 23:59:48 +0000307 ColumnEnd));
Alex Lorenzee024992014-08-04 18:41:51 +0000308 }
309 }
310};
311
312/// \brief Creates unreachable coverage regions for the functions that
313/// are not emitted.
314struct EmptyCoverageMappingBuilder : public CoverageMappingBuilder {
315 EmptyCoverageMappingBuilder(CoverageMappingModuleGen &CVM, SourceManager &SM,
316 const LangOptions &LangOpts)
317 : CoverageMappingBuilder(CVM, SM, LangOpts) {}
318
319 void VisitDecl(const Decl *D) {
320 if (!D->hasBody())
321 return;
322 auto Body = D->getBody();
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000323 SourceRegions.emplace_back(Counter(), getStart(Body), getEnd(Body));
Alex Lorenzee024992014-08-04 18:41:51 +0000324 }
325
326 /// \brief Write the mapping data to the output stream
327 void write(llvm::raw_ostream &OS) {
Alex Lorenzee024992014-08-04 18:41:51 +0000328 SmallVector<unsigned, 16> FileIDMapping;
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000329 gatherFileIDs(FileIDMapping);
330 emitSourceRegions();
Alex Lorenzee024992014-08-04 18:41:51 +0000331
Craig Topper5fc8fc22014-08-27 06:28:36 +0000332 CoverageMappingWriter Writer(FileIDMapping, None, MappingRegions);
Alex Lorenzee024992014-08-04 18:41:51 +0000333 Writer.write(OS);
334 }
335};
336
337/// \brief A StmtVisitor that creates coverage mapping regions which map
338/// from the source code locations to the PGO counters.
339struct CounterCoverageMappingBuilder
340 : public CoverageMappingBuilder,
341 public ConstStmtVisitor<CounterCoverageMappingBuilder> {
342 /// \brief The map of statements to count values.
343 llvm::DenseMap<const Stmt *, unsigned> &CounterMap;
344
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000345 /// \brief A stack of currently live regions.
346 std::vector<SourceMappingRegion> RegionStack;
Alex Lorenzee024992014-08-04 18:41:51 +0000347
348 CounterExpressionBuilder Builder;
349
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000350 /// \brief A location in the most recently visited file or macro.
351 ///
352 /// This is used to adjust the active source regions appropriately when
353 /// expressions cross file or macro boundaries.
354 SourceLocation MostRecentLocation;
355
356 /// \brief Return a counter for the subtraction of \c RHS from \c LHS
Alex Lorenzee024992014-08-04 18:41:51 +0000357 Counter subtractCounters(Counter LHS, Counter RHS) {
358 return Builder.subtract(LHS, RHS);
359 }
360
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000361 /// \brief Return a counter for the sum of \c LHS and \c RHS.
Alex Lorenzee024992014-08-04 18:41:51 +0000362 Counter addCounters(Counter LHS, Counter RHS) {
363 return Builder.add(LHS, RHS);
364 }
365
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000366 Counter addCounters(Counter C1, Counter C2, Counter C3) {
367 return addCounters(addCounters(C1, C2), C3);
368 }
369
370 Counter addCounters(Counter C1, Counter C2, Counter C3, Counter C4) {
371 return addCounters(addCounters(C1, C2, C3), C4);
372 }
373
Alex Lorenzee024992014-08-04 18:41:51 +0000374 /// \brief Return the region counter for the given statement.
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000375 ///
Alex Lorenzee024992014-08-04 18:41:51 +0000376 /// This should only be called on statements that have a dedicated counter.
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000377 Counter getRegionCounter(const Stmt *S) {
378 return Counter::getCounter(CounterMap[S]);
Alex Lorenzee024992014-08-04 18:41:51 +0000379 }
380
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000381 /// \brief Push a region onto the stack.
382 ///
383 /// Returns the index on the stack where the region was pushed. This can be
384 /// used with popRegions to exit a "scope", ending the region that was pushed.
385 size_t pushRegion(Counter Count, Optional<SourceLocation> StartLoc = None,
386 Optional<SourceLocation> EndLoc = None) {
387 if (StartLoc)
388 MostRecentLocation = *StartLoc;
389 RegionStack.emplace_back(Count, StartLoc, EndLoc);
Alex Lorenzee024992014-08-04 18:41:51 +0000390
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000391 return RegionStack.size() - 1;
Alex Lorenzee024992014-08-04 18:41:51 +0000392 }
393
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000394 /// \brief Pop regions from the stack into the function's list of regions.
395 ///
396 /// Adds all regions from \c ParentIndex to the top of the stack to the
397 /// function's \c SourceRegions.
398 void popRegions(size_t ParentIndex) {
399 assert(RegionStack.size() >= ParentIndex && "parent not in stack");
400 while (RegionStack.size() > ParentIndex) {
401 SourceMappingRegion &Region = RegionStack.back();
402 if (Region.hasStartLoc()) {
403 SourceLocation StartLoc = Region.getStartLoc();
404 SourceLocation EndLoc = Region.hasEndLoc()
405 ? Region.getEndLoc()
406 : RegionStack[ParentIndex].getEndLoc();
407 while (!SM.isWrittenInSameFile(StartLoc, EndLoc)) {
408 // The region ends in a nested file or macro expansion. Create a
409 // separate region for each expansion.
410 SourceLocation NestedLoc = getStartOfFileOrMacro(EndLoc);
411 assert(SM.isWrittenInSameFile(NestedLoc, EndLoc));
412
413 SourceRegions.emplace_back(Region.getCounter(), NestedLoc, EndLoc);
414
Justin Bognerf14b2072015-03-25 04:13:49 +0000415 EndLoc = getPreciseTokenLocEnd(getIncludeOrExpansionLoc(EndLoc));
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000416 assert(!EndLoc.isInvalid() &&
417 "File exit was not handled before popRegions");
418 }
419 Region.setEndLoc(EndLoc);
420
421 MostRecentLocation = EndLoc;
422 // If this region happens to span an entire expansion, we need to make
423 // sure we don't overlap the parent region with it.
424 if (StartLoc == getStartOfFileOrMacro(StartLoc) &&
425 EndLoc == getEndOfFileOrMacro(EndLoc))
426 MostRecentLocation = getIncludeOrExpansionLoc(EndLoc);
427
428 assert(SM.isWrittenInSameFile(Region.getStartLoc(), EndLoc));
429 SourceRegions.push_back(std::move(Region));
430 }
431 RegionStack.pop_back();
432 }
Alex Lorenzee024992014-08-04 18:41:51 +0000433 }
434
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000435 /// \brief Return the currently active region.
436 SourceMappingRegion &getRegion() {
437 assert(!RegionStack.empty() && "statement has no region");
438 return RegionStack.back();
439 }
Alex Lorenzee024992014-08-04 18:41:51 +0000440
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000441 /// \brief Propagate counts through the children of \c S.
442 Counter propagateCounts(Counter TopCount, const Stmt *S) {
443 size_t Index = pushRegion(TopCount, getStart(S), getEnd(S));
444 Visit(S);
445 Counter ExitCount = getRegion().getCounter();
446 popRegions(Index);
447 return ExitCount;
448 }
Alex Lorenzee024992014-08-04 18:41:51 +0000449
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000450 /// \brief Adjust the most recently visited location to \c EndLoc.
451 ///
452 /// This should be used after visiting any statements in non-source order.
453 void adjustForOutOfOrderTraversal(SourceLocation EndLoc) {
454 MostRecentLocation = EndLoc;
Justin Bogner96ae73f2015-05-01 19:23:34 +0000455 // Avoid adding duplicate regions if we have a completed region on the top
456 // of the stack and are adjusting to the end of a virtual file.
457 if (getRegion().hasEndLoc() &&
458 MostRecentLocation == getEndOfFileOrMacro(MostRecentLocation))
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000459 MostRecentLocation = getIncludeOrExpansionLoc(MostRecentLocation);
460 }
Alex Lorenzee024992014-08-04 18:41:51 +0000461
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000462 /// \brief Check whether \c Loc is included or expanded from \c Parent.
463 bool isNestedIn(SourceLocation Loc, FileID Parent) {
464 do {
465 Loc = getIncludeOrExpansionLoc(Loc);
466 if (Loc.isInvalid())
467 return false;
468 } while (!SM.isInFileID(Loc, Parent));
469 return true;
470 }
471
472 /// \brief Adjust regions and state when \c NewLoc exits a file.
473 ///
474 /// If moving from our most recently tracked location to \c NewLoc exits any
475 /// files, this adjusts our current region stack and creates the file regions
476 /// for the exited file.
477 void handleFileExit(SourceLocation NewLoc) {
478 if (SM.isWrittenInSameFile(MostRecentLocation, NewLoc))
479 return;
480
481 // If NewLoc is not in a file that contains MostRecentLocation, walk up to
482 // find the common ancestor.
483 SourceLocation LCA = NewLoc;
484 FileID ParentFile = SM.getFileID(LCA);
485 while (!isNestedIn(MostRecentLocation, ParentFile)) {
486 LCA = getIncludeOrExpansionLoc(LCA);
487 if (LCA.isInvalid() || SM.isWrittenInSameFile(LCA, MostRecentLocation)) {
488 // Since there isn't a common ancestor, no file was exited. We just need
489 // to adjust our location to the new file.
490 MostRecentLocation = NewLoc;
491 return;
492 }
493 ParentFile = SM.getFileID(LCA);
Alex Lorenzee024992014-08-04 18:41:51 +0000494 }
495
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000496 llvm::SmallSet<SourceLocation, 8> StartLocs;
497 Optional<Counter> ParentCounter;
498 for (auto I = RegionStack.rbegin(), E = RegionStack.rend(); I != E; ++I) {
499 if (!I->hasStartLoc())
500 continue;
501 SourceLocation Loc = I->getStartLoc();
502 if (!isNestedIn(Loc, ParentFile)) {
503 ParentCounter = I->getCounter();
504 break;
505 }
Alex Lorenzee024992014-08-04 18:41:51 +0000506
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000507 while (!SM.isInFileID(Loc, ParentFile)) {
508 // The most nested region for each start location is the one with the
509 // correct count. We avoid creating redundant regions by stopping once
510 // we've seen this region.
511 if (StartLocs.insert(Loc).second)
512 SourceRegions.emplace_back(I->getCounter(), Loc,
513 getEndOfFileOrMacro(Loc));
514 Loc = getIncludeOrExpansionLoc(Loc);
515 }
516 I->setStartLoc(getPreciseTokenLocEnd(Loc));
Alex Lorenzee024992014-08-04 18:41:51 +0000517 }
518
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000519 if (ParentCounter) {
520 // If the file is contained completely by another region and doesn't
521 // immediately start its own region, the whole file gets a region
522 // corresponding to the parent.
523 SourceLocation Loc = MostRecentLocation;
524 while (isNestedIn(Loc, ParentFile)) {
525 SourceLocation FileStart = getStartOfFileOrMacro(Loc);
526 if (StartLocs.insert(FileStart).second)
527 SourceRegions.emplace_back(*ParentCounter, FileStart,
528 getEndOfFileOrMacro(Loc));
529 Loc = getIncludeOrExpansionLoc(Loc);
530 }
Alex Lorenzee024992014-08-04 18:41:51 +0000531 }
532
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000533 MostRecentLocation = NewLoc;
534 }
Alex Lorenzee024992014-08-04 18:41:51 +0000535
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000536 /// \brief Ensure that \c S is included in the current region.
537 void extendRegion(const Stmt *S) {
538 SourceMappingRegion &Region = getRegion();
539 SourceLocation StartLoc = getStart(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000540
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000541 handleFileExit(StartLoc);
542 if (!Region.hasStartLoc())
543 Region.setStartLoc(StartLoc);
544 }
545
546 /// \brief Mark \c S as a terminator, starting a zero region.
547 void terminateRegion(const Stmt *S) {
548 extendRegion(S);
549 SourceMappingRegion &Region = getRegion();
550 if (!Region.hasEndLoc())
551 Region.setEndLoc(getEnd(S));
552 pushRegion(Counter::getZero());
553 }
Alex Lorenzee024992014-08-04 18:41:51 +0000554
555 /// \brief Keep counts of breaks and continues inside loops.
556 struct BreakContinue {
557 Counter BreakCount;
558 Counter ContinueCount;
559 };
560 SmallVector<BreakContinue, 8> BreakContinueStack;
561
562 CounterCoverageMappingBuilder(
563 CoverageMappingModuleGen &CVM,
Justin Bognere5ee6c52014-10-02 16:44:01 +0000564 llvm::DenseMap<const Stmt *, unsigned> &CounterMap, SourceManager &SM,
Alex Lorenzee024992014-08-04 18:41:51 +0000565 const LangOptions &LangOpts)
Justin Bognere5ee6c52014-10-02 16:44:01 +0000566 : CoverageMappingBuilder(CVM, SM, LangOpts), CounterMap(CounterMap) {}
Alex Lorenzee024992014-08-04 18:41:51 +0000567
568 /// \brief Write the mapping data to the output stream
569 void write(llvm::raw_ostream &OS) {
Alex Lorenzee024992014-08-04 18:41:51 +0000570 llvm::SmallVector<unsigned, 8> VirtualFileMapping;
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000571 gatherFileIDs(VirtualFileMapping);
572 emitSourceRegions();
573 emitExpansionRegions();
Alex Lorenzee024992014-08-04 18:41:51 +0000574 gatherSkippedRegions();
575
Justin Bogner4da909b2015-02-03 21:35:49 +0000576 CoverageMappingWriter Writer(VirtualFileMapping, Builder.getExpressions(),
577 MappingRegions);
Alex Lorenzee024992014-08-04 18:41:51 +0000578 Writer.write(OS);
579 }
580
Alex Lorenzee024992014-08-04 18:41:51 +0000581 void VisitStmt(const Stmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000582 if (!S->getLocStart().isInvalid())
583 extendRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000584 for (Stmt::const_child_range I = S->children(); I; ++I) {
585 if (*I)
586 this->Visit(*I);
587 }
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000588 handleFileExit(getEnd(S));
Alex Lorenzee024992014-08-04 18:41:51 +0000589 }
590
Alex Lorenzee024992014-08-04 18:41:51 +0000591 void VisitDecl(const Decl *D) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000592 Stmt *Body = D->getBody();
593 propagateCounts(getRegionCounter(Body), Body);
Alex Lorenzee024992014-08-04 18:41:51 +0000594 }
595
596 void VisitReturnStmt(const ReturnStmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000597 extendRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000598 if (S->getRetValue())
599 Visit(S->getRetValue());
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000600 terminateRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000601 }
602
Justin Bognerf959feb2015-04-28 06:31:55 +0000603 void VisitCXXThrowExpr(const CXXThrowExpr *E) {
604 extendRegion(E);
605 if (E->getSubExpr())
606 Visit(E->getSubExpr());
607 terminateRegion(E);
608 }
609
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000610 void VisitGotoStmt(const GotoStmt *S) { terminateRegion(S); }
Alex Lorenzee024992014-08-04 18:41:51 +0000611
612 void VisitLabelStmt(const LabelStmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000613 SourceLocation Start = getStart(S);
614 // We can't extendRegion here or we risk overlapping with our new region.
615 handleFileExit(Start);
616 pushRegion(getRegionCounter(S), Start);
Alex Lorenzee024992014-08-04 18:41:51 +0000617 Visit(S->getSubStmt());
618 }
619
620 void VisitBreakStmt(const BreakStmt *S) {
Alex Lorenzee024992014-08-04 18:41:51 +0000621 assert(!BreakContinueStack.empty() && "break not in a loop or switch!");
622 BreakContinueStack.back().BreakCount = addCounters(
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000623 BreakContinueStack.back().BreakCount, getRegion().getCounter());
624 terminateRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000625 }
626
627 void VisitContinueStmt(const ContinueStmt *S) {
Alex Lorenzee024992014-08-04 18:41:51 +0000628 assert(!BreakContinueStack.empty() && "continue stmt not in a loop!");
629 BreakContinueStack.back().ContinueCount = addCounters(
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000630 BreakContinueStack.back().ContinueCount, getRegion().getCounter());
631 terminateRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000632 }
633
634 void VisitWhileStmt(const WhileStmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000635 extendRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000636
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000637 Counter ParentCount = getRegion().getCounter();
638 Counter BodyCount = getRegionCounter(S);
639
640 // Handle the body first so that we can get the backedge count.
641 BreakContinueStack.push_back(BreakContinue());
642 extendRegion(S->getBody());
643 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
Alex Lorenzee024992014-08-04 18:41:51 +0000644 BreakContinue BC = BreakContinueStack.pop_back_val();
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000645
646 // Go back to handle the condition.
647 Counter CondCount =
648 addCounters(ParentCount, BackedgeCount, BC.ContinueCount);
649 propagateCounts(CondCount, S->getCond());
650 adjustForOutOfOrderTraversal(getEnd(S));
651
652 Counter OutCount =
653 addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount));
654 if (OutCount != ParentCount)
655 pushRegion(OutCount);
Alex Lorenzee024992014-08-04 18:41:51 +0000656 }
657
658 void VisitDoStmt(const DoStmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000659 extendRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000660
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000661 Counter ParentCount = getRegion().getCounter();
662 Counter BodyCount = getRegionCounter(S);
663
664 BreakContinueStack.push_back(BreakContinue());
665 extendRegion(S->getBody());
666 Counter BackedgeCount =
667 propagateCounts(addCounters(ParentCount, BodyCount), S->getBody());
Alex Lorenzee024992014-08-04 18:41:51 +0000668 BreakContinue BC = BreakContinueStack.pop_back_val();
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000669
670 Counter CondCount = addCounters(BackedgeCount, BC.ContinueCount);
671 propagateCounts(CondCount, S->getCond());
672
673 Counter OutCount =
674 addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount));
675 if (OutCount != ParentCount)
676 pushRegion(OutCount);
Alex Lorenzee024992014-08-04 18:41:51 +0000677 }
678
679 void VisitForStmt(const ForStmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000680 extendRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000681 if (S->getInit())
682 Visit(S->getInit());
683
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000684 Counter ParentCount = getRegion().getCounter();
685 Counter BodyCount = getRegionCounter(S);
686
687 // Handle the body first so that we can get the backedge count.
Alex Lorenzee024992014-08-04 18:41:51 +0000688 BreakContinueStack.push_back(BreakContinue());
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000689 extendRegion(S->getBody());
690 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
691 BreakContinue BC = BreakContinueStack.pop_back_val();
Alex Lorenzee024992014-08-04 18:41:51 +0000692
693 // The increment is essentially part of the body but it needs to include
694 // the count for all the continue statements.
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000695 if (const Stmt *Inc = S->getInc())
696 propagateCounts(addCounters(BackedgeCount, BC.ContinueCount), Inc);
697
698 // Go back to handle the condition.
699 Counter CondCount =
700 addCounters(ParentCount, BackedgeCount, BC.ContinueCount);
701 if (const Expr *Cond = S->getCond()) {
702 propagateCounts(CondCount, Cond);
703 adjustForOutOfOrderTraversal(getEnd(S));
Alex Lorenzee024992014-08-04 18:41:51 +0000704 }
705
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000706 Counter OutCount =
707 addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount));
708 if (OutCount != ParentCount)
709 pushRegion(OutCount);
Alex Lorenzee024992014-08-04 18:41:51 +0000710 }
711
712 void VisitCXXForRangeStmt(const CXXForRangeStmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000713 extendRegion(S);
714 Visit(S->getLoopVarStmt());
Alex Lorenzee024992014-08-04 18:41:51 +0000715 Visit(S->getRangeStmt());
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000716
717 Counter ParentCount = getRegion().getCounter();
718 Counter BodyCount = getRegionCounter(S);
719
Alex Lorenzee024992014-08-04 18:41:51 +0000720 BreakContinueStack.push_back(BreakContinue());
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000721 extendRegion(S->getBody());
722 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
Alex Lorenzee024992014-08-04 18:41:51 +0000723 BreakContinue BC = BreakContinueStack.pop_back_val();
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000724
Justin Bogner15874322015-04-30 21:31:02 +0000725 Counter LoopCount =
726 addCounters(ParentCount, BackedgeCount, BC.ContinueCount);
727 Counter OutCount =
728 addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount));
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000729 if (OutCount != ParentCount)
730 pushRegion(OutCount);
Alex Lorenzee024992014-08-04 18:41:51 +0000731 }
732
733 void VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000734 extendRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000735 Visit(S->getElement());
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000736
737 Counter ParentCount = getRegion().getCounter();
738 Counter BodyCount = getRegionCounter(S);
739
Alex Lorenzee024992014-08-04 18:41:51 +0000740 BreakContinueStack.push_back(BreakContinue());
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000741 extendRegion(S->getBody());
742 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody());
Alex Lorenzee024992014-08-04 18:41:51 +0000743 BreakContinue BC = BreakContinueStack.pop_back_val();
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000744
Justin Bogner15874322015-04-30 21:31:02 +0000745 Counter LoopCount =
746 addCounters(ParentCount, BackedgeCount, BC.ContinueCount);
747 Counter OutCount =
748 addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount));
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000749 if (OutCount != ParentCount)
750 pushRegion(OutCount);
Alex Lorenzee024992014-08-04 18:41:51 +0000751 }
752
753 void VisitSwitchStmt(const SwitchStmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000754 extendRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000755 Visit(S->getCond());
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000756
Alex Lorenzee024992014-08-04 18:41:51 +0000757 BreakContinueStack.push_back(BreakContinue());
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000758
759 const Stmt *Body = S->getBody();
760 extendRegion(Body);
761 if (const auto *CS = dyn_cast<CompoundStmt>(Body)) {
762 if (!CS->body_empty()) {
763 // The body of the switch needs a zero region so that fallthrough counts
764 // behave correctly, but it would be misleading to include the braces of
765 // the compound statement in the zeroed area, so we need to handle this
766 // specially.
767 size_t Index =
768 pushRegion(Counter::getZero(), getStart(CS->body_front()),
769 getEnd(CS->body_back()));
Richard Trieub5841332015-04-15 01:21:42 +0000770 for (const auto *Child : CS->children())
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000771 Visit(Child);
772 popRegions(Index);
Alex Lorenzee024992014-08-04 18:41:51 +0000773 }
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000774 } else
775 propagateCounts(Counter::getZero(), Body);
Alex Lorenzee024992014-08-04 18:41:51 +0000776 BreakContinue BC = BreakContinueStack.pop_back_val();
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000777
Alex Lorenzee024992014-08-04 18:41:51 +0000778 if (!BreakContinueStack.empty())
779 BreakContinueStack.back().ContinueCount = addCounters(
780 BreakContinueStack.back().ContinueCount, BC.ContinueCount);
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000781
782 Counter ExitCount = getRegionCounter(S);
783 pushRegion(ExitCount);
Alex Lorenzee024992014-08-04 18:41:51 +0000784 }
785
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000786 void VisitSwitchCase(const SwitchCase *S) {
787 extendRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000788
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000789 SourceMappingRegion &Parent = getRegion();
790
791 Counter Count = addCounters(Parent.getCounter(), getRegionCounter(S));
792 // Reuse the existing region if it starts at our label. This is typical of
793 // the first case in a switch.
794 if (Parent.hasStartLoc() && Parent.getStartLoc() == getStart(S))
795 Parent.setCounter(Count);
796 else
797 pushRegion(Count, getStart(S));
798
799 if (const CaseStmt *CS = dyn_cast<CaseStmt>(S)) {
800 Visit(CS->getLHS());
801 if (const Expr *RHS = CS->getRHS())
802 Visit(RHS);
803 }
Alex Lorenzee024992014-08-04 18:41:51 +0000804 Visit(S->getSubStmt());
805 }
806
807 void VisitIfStmt(const IfStmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000808 extendRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000809
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000810 Counter ParentCount = getRegion().getCounter();
811 Counter ThenCount = getRegionCounter(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000812
Justin Bogner91f2e3c2015-02-19 03:10:30 +0000813 // Emitting a counter for the condition makes it easier to interpret the
814 // counter for the body when looking at the coverage.
815 propagateCounts(ParentCount, S->getCond());
816
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000817 extendRegion(S->getThen());
818 Counter OutCount = propagateCounts(ThenCount, S->getThen());
819
820 Counter ElseCount = subtractCounters(ParentCount, ThenCount);
821 if (const Stmt *Else = S->getElse()) {
822 extendRegion(S->getElse());
823 OutCount = addCounters(OutCount, propagateCounts(ElseCount, Else));
824 } else
825 OutCount = addCounters(OutCount, ElseCount);
826
827 if (OutCount != ParentCount)
828 pushRegion(OutCount);
Alex Lorenzee024992014-08-04 18:41:51 +0000829 }
830
831 void VisitCXXTryStmt(const CXXTryStmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000832 extendRegion(S);
Alex Lorenzee024992014-08-04 18:41:51 +0000833 Visit(S->getTryBlock());
834 for (unsigned I = 0, E = S->getNumHandlers(); I < E; ++I)
835 Visit(S->getHandler(I));
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000836
837 Counter ExitCount = getRegionCounter(S);
838 pushRegion(ExitCount);
Alex Lorenzee024992014-08-04 18:41:51 +0000839 }
840
841 void VisitCXXCatchStmt(const CXXCatchStmt *S) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000842 extendRegion(S);
843 propagateCounts(getRegionCounter(S), S->getHandlerBlock());
Alex Lorenzee024992014-08-04 18:41:51 +0000844 }
845
846 void VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000847 extendRegion(E);
Alex Lorenzee024992014-08-04 18:41:51 +0000848
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000849 Counter ParentCount = getRegion().getCounter();
850 Counter TrueCount = getRegionCounter(E);
Alex Lorenzee024992014-08-04 18:41:51 +0000851
Justin Bognere3654ce2015-04-24 23:37:57 +0000852 Visit(E->getCond());
853
854 if (!isa<BinaryConditionalOperator>(E)) {
855 extendRegion(E->getTrueExpr());
856 propagateCounts(TrueCount, E->getTrueExpr());
857 }
858 extendRegion(E->getFalseExpr());
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000859 propagateCounts(subtractCounters(ParentCount, TrueCount),
860 E->getFalseExpr());
Alex Lorenzee024992014-08-04 18:41:51 +0000861 }
862
863 void VisitBinLAnd(const BinaryOperator *E) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000864 extendRegion(E);
Alex Lorenzee024992014-08-04 18:41:51 +0000865 Visit(E->getLHS());
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000866
867 extendRegion(E->getRHS());
868 propagateCounts(getRegionCounter(E), E->getRHS());
Alex Lorenzee024992014-08-04 18:41:51 +0000869 }
870
871 void VisitBinLOr(const BinaryOperator *E) {
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000872 extendRegion(E);
Alex Lorenzee024992014-08-04 18:41:51 +0000873 Visit(E->getLHS());
Alex Lorenzee024992014-08-04 18:41:51 +0000874
Justin Bognerbf42cfd2015-02-18 21:24:51 +0000875 extendRegion(E->getRHS());
876 propagateCounts(getRegionCounter(E), E->getRHS());
Alex Lorenz01a0d062014-08-20 17:10:56 +0000877 }
Justin Bognerc1091022015-02-24 04:13:56 +0000878
879 void VisitLambdaExpr(const LambdaExpr *LE) {
880 // Lambdas are treated as their own functions for now, so we shouldn't
881 // propagate counts into them.
882 }
Alex Lorenzee024992014-08-04 18:41:51 +0000883};
884}
885
886static bool isMachO(const CodeGenModule &CGM) {
887 return CGM.getTarget().getTriple().isOSBinFormatMachO();
888}
889
890static StringRef getCoverageSection(const CodeGenModule &CGM) {
891 return isMachO(CGM) ? "__DATA,__llvm_covmap" : "__llvm_covmap";
892}
893
Justin Bognera432d172015-02-03 00:20:24 +0000894static void dump(llvm::raw_ostream &OS, StringRef FunctionName,
895 ArrayRef<CounterExpression> Expressions,
896 ArrayRef<CounterMappingRegion> Regions) {
897 OS << FunctionName << ":\n";
898 CounterMappingContext Ctx(Expressions);
899 for (const auto &R : Regions) {
Alex Lorenzf2cf38e2014-08-08 23:41:24 +0000900 OS.indent(2);
901 switch (R.Kind) {
902 case CounterMappingRegion::CodeRegion:
903 break;
904 case CounterMappingRegion::ExpansionRegion:
905 OS << "Expansion,";
906 break;
907 case CounterMappingRegion::SkippedRegion:
908 OS << "Skipped,";
909 break;
910 }
911
Justin Bogner4da909b2015-02-03 21:35:49 +0000912 OS << "File " << R.FileID << ", " << R.LineStart << ":" << R.ColumnStart
913 << " -> " << R.LineEnd << ":" << R.ColumnEnd << " = ";
Justin Bognerf69dc342015-01-23 23:46:13 +0000914 Ctx.dump(R.Count, OS);
Alex Lorenzf2cf38e2014-08-08 23:41:24 +0000915 if (R.Kind == CounterMappingRegion::ExpansionRegion)
Justin Bogner4da909b2015-02-03 21:35:49 +0000916 OS << " (Expanded file = " << R.ExpandedFileID << ")";
917 OS << "\n";
Alex Lorenzf2cf38e2014-08-08 23:41:24 +0000918 }
919}
920
Alex Lorenzee024992014-08-04 18:41:51 +0000921void CoverageMappingModuleGen::addFunctionMappingRecord(
Alex Lorenzf2cf38e2014-08-08 23:41:24 +0000922 llvm::GlobalVariable *FunctionName, StringRef FunctionNameValue,
Alex Lorenz1d45c5b2014-08-21 19:25:27 +0000923 uint64_t FunctionHash, const std::string &CoverageMapping) {
Alex Lorenzee024992014-08-04 18:41:51 +0000924 llvm::LLVMContext &Ctx = CGM.getLLVMContext();
925 auto *Int32Ty = llvm::Type::getInt32Ty(Ctx);
Alex Lorenz1d45c5b2014-08-21 19:25:27 +0000926 auto *Int64Ty = llvm::Type::getInt64Ty(Ctx);
Alex Lorenzee024992014-08-04 18:41:51 +0000927 auto *Int8PtrTy = llvm::Type::getInt8PtrTy(Ctx);
928 if (!FunctionRecordTy) {
Alex Lorenz1d45c5b2014-08-21 19:25:27 +0000929 llvm::Type *FunctionRecordTypes[] = {Int8PtrTy, Int32Ty, Int32Ty, Int64Ty};
Alex Lorenzee024992014-08-04 18:41:51 +0000930 FunctionRecordTy =
931 llvm::StructType::get(Ctx, makeArrayRef(FunctionRecordTypes));
932 }
933
934 llvm::Constant *FunctionRecordVals[] = {
935 llvm::ConstantExpr::getBitCast(FunctionName, Int8PtrTy),
Alex Lorenzf2cf38e2014-08-08 23:41:24 +0000936 llvm::ConstantInt::get(Int32Ty, FunctionNameValue.size()),
Alex Lorenz1d45c5b2014-08-21 19:25:27 +0000937 llvm::ConstantInt::get(Int32Ty, CoverageMapping.size()),
938 llvm::ConstantInt::get(Int64Ty, FunctionHash)};
Alex Lorenzee024992014-08-04 18:41:51 +0000939 FunctionRecords.push_back(llvm::ConstantStruct::get(
940 FunctionRecordTy, makeArrayRef(FunctionRecordVals)));
941 CoverageMappings += CoverageMapping;
Alex Lorenzf2cf38e2014-08-08 23:41:24 +0000942
943 if (CGM.getCodeGenOpts().DumpCoverageMapping) {
944 // Dump the coverage mapping data for this function by decoding the
945 // encoded data. This allows us to dump the mapping regions which were
946 // also processed by the CoverageMappingWriter which performs
947 // additional minimization operations such as reducing the number of
948 // expressions.
949 std::vector<StringRef> Filenames;
950 std::vector<CounterExpression> Expressions;
951 std::vector<CounterMappingRegion> Regions;
952 llvm::SmallVector<StringRef, 16> FilenameRefs;
953 FilenameRefs.resize(FileEntries.size());
954 for (const auto &Entry : FileEntries)
955 FilenameRefs[Entry.second] = Entry.first->getName();
Justin Bognera432d172015-02-03 00:20:24 +0000956 RawCoverageMappingReader Reader(CoverageMapping, FilenameRefs, Filenames,
957 Expressions, Regions);
958 if (Reader.read())
Alex Lorenzf2cf38e2014-08-08 23:41:24 +0000959 return;
Justin Bognera432d172015-02-03 00:20:24 +0000960 dump(llvm::outs(), FunctionNameValue, Expressions, Regions);
Alex Lorenzf2cf38e2014-08-08 23:41:24 +0000961 }
Alex Lorenzee024992014-08-04 18:41:51 +0000962}
963
964void CoverageMappingModuleGen::emit() {
965 if (FunctionRecords.empty())
966 return;
967 llvm::LLVMContext &Ctx = CGM.getLLVMContext();
968 auto *Int32Ty = llvm::Type::getInt32Ty(Ctx);
969
970 // Create the filenames and merge them with coverage mappings
971 llvm::SmallVector<std::string, 16> FilenameStrs;
972 llvm::SmallVector<StringRef, 16> FilenameRefs;
973 FilenameStrs.resize(FileEntries.size());
974 FilenameRefs.resize(FileEntries.size());
975 for (const auto &Entry : FileEntries) {
976 llvm::SmallString<256> Path(Entry.first->getName());
977 llvm::sys::fs::make_absolute(Path);
978
979 auto I = Entry.second;
Richard Trieud1ffdda2015-04-30 23:13:52 +0000980 FilenameStrs[I] = std::string(Path.begin(), Path.end());
Alex Lorenzee024992014-08-04 18:41:51 +0000981 FilenameRefs[I] = FilenameStrs[I];
982 }
983
984 std::string FilenamesAndCoverageMappings;
985 llvm::raw_string_ostream OS(FilenamesAndCoverageMappings);
986 CoverageFilenamesSectionWriter(FilenameRefs).write(OS);
987 OS << CoverageMappings;
988 size_t CoverageMappingSize = CoverageMappings.size();
989 size_t FilenamesSize = OS.str().size() - CoverageMappingSize;
990 // Append extra zeroes if necessary to ensure that the size of the filenames
991 // and coverage mappings is a multiple of 8.
992 if (size_t Rem = OS.str().size() % 8) {
993 CoverageMappingSize += 8 - Rem;
994 for (size_t I = 0, S = 8 - Rem; I < S; ++I)
995 OS << '\0';
996 }
997 auto *FilenamesAndMappingsVal =
998 llvm::ConstantDataArray::getString(Ctx, OS.str(), false);
999
1000 // Create the deferred function records array
1001 auto RecordsTy =
1002 llvm::ArrayType::get(FunctionRecordTy, FunctionRecords.size());
1003 auto RecordsVal = llvm::ConstantArray::get(RecordsTy, FunctionRecords);
1004
1005 // Create the coverage data record
1006 llvm::Type *CovDataTypes[] = {Int32Ty, Int32Ty,
1007 Int32Ty, Int32Ty,
1008 RecordsTy, FilenamesAndMappingsVal->getType()};
1009 auto CovDataTy = llvm::StructType::get(Ctx, makeArrayRef(CovDataTypes));
1010 llvm::Constant *TUDataVals[] = {
1011 llvm::ConstantInt::get(Int32Ty, FunctionRecords.size()),
1012 llvm::ConstantInt::get(Int32Ty, FilenamesSize),
1013 llvm::ConstantInt::get(Int32Ty, CoverageMappingSize),
1014 llvm::ConstantInt::get(Int32Ty,
1015 /*Version=*/CoverageMappingVersion1),
1016 RecordsVal, FilenamesAndMappingsVal};
1017 auto CovDataVal =
1018 llvm::ConstantStruct::get(CovDataTy, makeArrayRef(TUDataVals));
1019 auto CovData = new llvm::GlobalVariable(CGM.getModule(), CovDataTy, true,
1020 llvm::GlobalValue::InternalLinkage,
1021 CovDataVal,
1022 "__llvm_coverage_mapping");
1023
1024 CovData->setSection(getCoverageSection(CGM));
1025 CovData->setAlignment(8);
1026
1027 // Make sure the data doesn't get deleted.
1028 CGM.addUsedGlobal(CovData);
1029}
1030
1031unsigned CoverageMappingModuleGen::getFileID(const FileEntry *File) {
1032 auto It = FileEntries.find(File);
1033 if (It != FileEntries.end())
1034 return It->second;
1035 unsigned FileID = FileEntries.size();
1036 FileEntries.insert(std::make_pair(File, FileID));
1037 return FileID;
1038}
1039
1040void CoverageMappingGen::emitCounterMapping(const Decl *D,
1041 llvm::raw_ostream &OS) {
1042 assert(CounterMap);
Justin Bognere5ee6c52014-10-02 16:44:01 +00001043 CounterCoverageMappingBuilder Walker(CVM, *CounterMap, SM, LangOpts);
Alex Lorenzee024992014-08-04 18:41:51 +00001044 Walker.VisitDecl(D);
1045 Walker.write(OS);
1046}
1047
1048void CoverageMappingGen::emitEmptyMapping(const Decl *D,
1049 llvm::raw_ostream &OS) {
1050 EmptyCoverageMappingBuilder Walker(CVM, SM, LangOpts);
1051 Walker.VisitDecl(D);
1052 Walker.write(OS);
1053}