1ee02499aSAlex Lorenz //===--- CoverageMappingGen.cpp - Coverage mapping generation ---*- C++ -*-===// 2ee02499aSAlex Lorenz // 3ee02499aSAlex Lorenz // The LLVM Compiler Infrastructure 4ee02499aSAlex Lorenz // 5ee02499aSAlex Lorenz // This file is distributed under the University of Illinois Open Source 6ee02499aSAlex Lorenz // License. See LICENSE.TXT for details. 7ee02499aSAlex Lorenz // 8ee02499aSAlex Lorenz //===----------------------------------------------------------------------===// 9ee02499aSAlex Lorenz // 10ee02499aSAlex Lorenz // Instrumentation-based code coverage mapping generator 11ee02499aSAlex Lorenz // 12ee02499aSAlex Lorenz //===----------------------------------------------------------------------===// 13ee02499aSAlex Lorenz 14ee02499aSAlex Lorenz #include "CoverageMappingGen.h" 15ee02499aSAlex Lorenz #include "CodeGenFunction.h" 16ee02499aSAlex Lorenz #include "clang/AST/StmtVisitor.h" 17ee02499aSAlex Lorenz #include "clang/Lex/Lexer.h" 18bc6b80a0SVedant Kumar #include "llvm/ADT/SmallSet.h" 19ca3326c0SVedant Kumar #include "llvm/ADT/StringExtras.h" 20bf42cfd7SJustin Bogner #include "llvm/ADT/Optional.h" 21b014ee46SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMapping.h" 22b014ee46SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMappingReader.h" 23b014ee46SEaswaran Raman #include "llvm/ProfileData/Coverage/CoverageMappingWriter.h" 240d9593ddSChandler Carruth #include "llvm/ProfileData/InstrProfReader.h" 25ee02499aSAlex Lorenz #include "llvm/Support/FileSystem.h" 26ee02499aSAlex Lorenz 27ee02499aSAlex Lorenz using namespace clang; 28ee02499aSAlex Lorenz using namespace CodeGen; 29ee02499aSAlex Lorenz using namespace llvm::coverage; 30ee02499aSAlex Lorenz 31ee02499aSAlex Lorenz void CoverageSourceInfo::SourceRangeSkipped(SourceRange Range) { 32ee02499aSAlex Lorenz SkippedRanges.push_back(Range); 33ee02499aSAlex Lorenz } 34ee02499aSAlex Lorenz 35ee02499aSAlex Lorenz namespace { 36ee02499aSAlex Lorenz 37ee02499aSAlex Lorenz /// \brief A region of source code that can be mapped to a counter. 3809c7179bSJustin Bogner class SourceMappingRegion { 39ee02499aSAlex Lorenz Counter Count; 40ee02499aSAlex Lorenz 41ee02499aSAlex Lorenz /// \brief The region's starting location. 42bf42cfd7SJustin Bogner Optional<SourceLocation> LocStart; 43ee02499aSAlex Lorenz 44ee02499aSAlex Lorenz /// \brief The region's ending location. 45bf42cfd7SJustin Bogner Optional<SourceLocation> LocEnd; 46ee02499aSAlex Lorenz 4709c7179bSJustin Bogner public: 48bf42cfd7SJustin Bogner SourceMappingRegion(Counter Count, Optional<SourceLocation> LocStart, 49bf42cfd7SJustin Bogner Optional<SourceLocation> LocEnd) 50bf42cfd7SJustin Bogner : Count(Count), LocStart(LocStart), LocEnd(LocEnd) {} 51ee02499aSAlex Lorenz 5209c7179bSJustin Bogner const Counter &getCounter() const { return Count; } 5309c7179bSJustin Bogner 54bf42cfd7SJustin Bogner void setCounter(Counter C) { Count = C; } 5509c7179bSJustin Bogner 56bf42cfd7SJustin Bogner bool hasStartLoc() const { return LocStart.hasValue(); } 57bf42cfd7SJustin Bogner 58bf42cfd7SJustin Bogner void setStartLoc(SourceLocation Loc) { LocStart = Loc; } 59bf42cfd7SJustin Bogner 60462c77b4SCraig Topper SourceLocation getStartLoc() const { 61bf42cfd7SJustin Bogner assert(LocStart && "Region has no start location"); 62bf42cfd7SJustin Bogner return *LocStart; 6309c7179bSJustin Bogner } 6409c7179bSJustin Bogner 65bf42cfd7SJustin Bogner bool hasEndLoc() const { return LocEnd.hasValue(); } 66ee02499aSAlex Lorenz 67bf42cfd7SJustin Bogner void setEndLoc(SourceLocation Loc) { LocEnd = Loc; } 68ee02499aSAlex Lorenz 69462c77b4SCraig Topper SourceLocation getEndLoc() const { 70bf42cfd7SJustin Bogner assert(LocEnd && "Region has no end location"); 71bf42cfd7SJustin Bogner return *LocEnd; 72ee02499aSAlex Lorenz } 73ee02499aSAlex Lorenz }; 74ee02499aSAlex Lorenz 75ee02499aSAlex Lorenz /// \brief Provides the common functionality for the different 76ee02499aSAlex Lorenz /// coverage mapping region builders. 77ee02499aSAlex Lorenz class CoverageMappingBuilder { 78ee02499aSAlex Lorenz public: 79ee02499aSAlex Lorenz CoverageMappingModuleGen &CVM; 80ee02499aSAlex Lorenz SourceManager &SM; 81ee02499aSAlex Lorenz const LangOptions &LangOpts; 82ee02499aSAlex Lorenz 83ee02499aSAlex Lorenz private: 84bf42cfd7SJustin Bogner /// \brief Map of clang's FileIDs to IDs used for coverage mapping. 85bf42cfd7SJustin Bogner llvm::SmallDenseMap<FileID, std::pair<unsigned, SourceLocation>, 8> 86bf42cfd7SJustin Bogner FileIDMapping; 87ee02499aSAlex Lorenz 88ee02499aSAlex Lorenz public: 89ee02499aSAlex Lorenz /// \brief The coverage mapping regions for this function 90ee02499aSAlex Lorenz llvm::SmallVector<CounterMappingRegion, 32> MappingRegions; 91ee02499aSAlex Lorenz /// \brief The source mapping regions for this function. 92f59329b0SJustin Bogner std::vector<SourceMappingRegion> SourceRegions; 93ee02499aSAlex Lorenz 94ee02499aSAlex Lorenz CoverageMappingBuilder(CoverageMappingModuleGen &CVM, SourceManager &SM, 95ee02499aSAlex Lorenz const LangOptions &LangOpts) 96bf42cfd7SJustin Bogner : CVM(CVM), SM(SM), LangOpts(LangOpts) {} 97ee02499aSAlex Lorenz 98ee02499aSAlex Lorenz /// \brief Return the precise end location for the given token. 99ee02499aSAlex Lorenz SourceLocation getPreciseTokenLocEnd(SourceLocation Loc) { 100bf42cfd7SJustin Bogner // We avoid getLocForEndOfToken here, because it doesn't do what we want for 101bf42cfd7SJustin Bogner // macro locations, which we just treat as expanded files. 102bf42cfd7SJustin Bogner unsigned TokLen = 103bf42cfd7SJustin Bogner Lexer::MeasureTokenLength(SM.getSpellingLoc(Loc), SM, LangOpts); 104bf42cfd7SJustin Bogner return Loc.getLocWithOffset(TokLen); 105ee02499aSAlex Lorenz } 106ee02499aSAlex Lorenz 107bf42cfd7SJustin Bogner /// \brief Return the start location of an included file or expanded macro. 108bf42cfd7SJustin Bogner SourceLocation getStartOfFileOrMacro(SourceLocation Loc) { 109bf42cfd7SJustin Bogner if (Loc.isMacroID()) 110bf42cfd7SJustin Bogner return Loc.getLocWithOffset(-SM.getFileOffset(Loc)); 111bf42cfd7SJustin Bogner return SM.getLocForStartOfFile(SM.getFileID(Loc)); 112ee02499aSAlex Lorenz } 113ee02499aSAlex Lorenz 114bf42cfd7SJustin Bogner /// \brief Return the end location of an included file or expanded macro. 115bf42cfd7SJustin Bogner SourceLocation getEndOfFileOrMacro(SourceLocation Loc) { 116bf42cfd7SJustin Bogner if (Loc.isMacroID()) 117bf42cfd7SJustin Bogner return Loc.getLocWithOffset(SM.getFileIDSize(SM.getFileID(Loc)) - 118f14b2078SJustin Bogner SM.getFileOffset(Loc)); 119bf42cfd7SJustin Bogner return SM.getLocForEndOfFile(SM.getFileID(Loc)); 120bf42cfd7SJustin Bogner } 121ee02499aSAlex Lorenz 122bf42cfd7SJustin Bogner /// \brief Find out where the current file is included or macro is expanded. 123bf42cfd7SJustin Bogner SourceLocation getIncludeOrExpansionLoc(SourceLocation Loc) { 124bf42cfd7SJustin Bogner return Loc.isMacroID() ? SM.getImmediateExpansionRange(Loc).first 125bf42cfd7SJustin Bogner : SM.getIncludeLoc(SM.getFileID(Loc)); 126bf42cfd7SJustin Bogner } 127bf42cfd7SJustin Bogner 128682bfbf3SJustin Bogner /// \brief Return true if \c Loc is a location in a built-in macro. 129682bfbf3SJustin Bogner bool isInBuiltin(SourceLocation Loc) { 130682bfbf3SJustin Bogner return strcmp(SM.getBufferName(SM.getSpellingLoc(Loc)), "<built-in>") == 0; 131682bfbf3SJustin Bogner } 132682bfbf3SJustin Bogner 133d9e1a61dSIgor Kudrin /// \brief Check whether \c Loc is included or expanded from \c Parent. 134d9e1a61dSIgor Kudrin bool isNestedIn(SourceLocation Loc, FileID Parent) { 135d9e1a61dSIgor Kudrin do { 136d9e1a61dSIgor Kudrin Loc = getIncludeOrExpansionLoc(Loc); 137d9e1a61dSIgor Kudrin if (Loc.isInvalid()) 138d9e1a61dSIgor Kudrin return false; 139d9e1a61dSIgor Kudrin } while (!SM.isInFileID(Loc, Parent)); 140d9e1a61dSIgor Kudrin return true; 141d9e1a61dSIgor Kudrin } 142d9e1a61dSIgor Kudrin 143682bfbf3SJustin Bogner /// \brief Get the start of \c S ignoring macro arguments and builtin macros. 144bf42cfd7SJustin Bogner SourceLocation getStart(const Stmt *S) { 145bf42cfd7SJustin Bogner SourceLocation Loc = S->getLocStart(); 146682bfbf3SJustin Bogner while (SM.isMacroArgExpansion(Loc) || isInBuiltin(Loc)) 147bf42cfd7SJustin Bogner Loc = SM.getImmediateExpansionRange(Loc).first; 148bf42cfd7SJustin Bogner return Loc; 149bf42cfd7SJustin Bogner } 150bf42cfd7SJustin Bogner 151682bfbf3SJustin Bogner /// \brief Get the end of \c S ignoring macro arguments and builtin macros. 152bf42cfd7SJustin Bogner SourceLocation getEnd(const Stmt *S) { 153bf42cfd7SJustin Bogner SourceLocation Loc = S->getLocEnd(); 154682bfbf3SJustin Bogner while (SM.isMacroArgExpansion(Loc) || isInBuiltin(Loc)) 155bf42cfd7SJustin Bogner Loc = SM.getImmediateExpansionRange(Loc).first; 156f14b2078SJustin Bogner return getPreciseTokenLocEnd(Loc); 157bf42cfd7SJustin Bogner } 158bf42cfd7SJustin Bogner 159bf42cfd7SJustin Bogner /// \brief Find the set of files we have regions for and assign IDs 160bf42cfd7SJustin Bogner /// 161bf42cfd7SJustin Bogner /// Fills \c Mapping with the virtual file mapping needed to write out 162bf42cfd7SJustin Bogner /// coverage and collects the necessary file information to emit source and 163bf42cfd7SJustin Bogner /// expansion regions. 164bf42cfd7SJustin Bogner void gatherFileIDs(SmallVectorImpl<unsigned> &Mapping) { 165bf42cfd7SJustin Bogner FileIDMapping.clear(); 166bf42cfd7SJustin Bogner 167bc6b80a0SVedant Kumar llvm::SmallSet<FileID, 8> Visited; 168bf42cfd7SJustin Bogner SmallVector<std::pair<SourceLocation, unsigned>, 8> FileLocs; 169bf42cfd7SJustin Bogner for (const auto &Region : SourceRegions) { 170bf42cfd7SJustin Bogner SourceLocation Loc = Region.getStartLoc(); 171bf42cfd7SJustin Bogner FileID File = SM.getFileID(Loc); 172bc6b80a0SVedant Kumar if (!Visited.insert(File).second) 173bf42cfd7SJustin Bogner continue; 174bf42cfd7SJustin Bogner 175bf42cfd7SJustin Bogner unsigned Depth = 0; 176bf42cfd7SJustin Bogner for (SourceLocation Parent = getIncludeOrExpansionLoc(Loc); 177ed1fe5d0SYaron Keren Parent.isValid(); Parent = getIncludeOrExpansionLoc(Parent)) 178bf42cfd7SJustin Bogner ++Depth; 179bf42cfd7SJustin Bogner FileLocs.push_back(std::make_pair(Loc, Depth)); 180bf42cfd7SJustin Bogner } 181bf42cfd7SJustin Bogner std::stable_sort(FileLocs.begin(), FileLocs.end(), llvm::less_second()); 182bf42cfd7SJustin Bogner 183bf42cfd7SJustin Bogner for (const auto &FL : FileLocs) { 184bf42cfd7SJustin Bogner SourceLocation Loc = FL.first; 185bf42cfd7SJustin Bogner FileID SpellingFile = SM.getDecomposedSpellingLoc(Loc).first; 186ee02499aSAlex Lorenz auto Entry = SM.getFileEntryForID(SpellingFile); 187ee02499aSAlex Lorenz if (!Entry) 188bf42cfd7SJustin Bogner continue; 189ee02499aSAlex Lorenz 190bf42cfd7SJustin Bogner FileIDMapping[SM.getFileID(Loc)] = std::make_pair(Mapping.size(), Loc); 191bf42cfd7SJustin Bogner Mapping.push_back(CVM.getFileID(Entry)); 192bf42cfd7SJustin Bogner } 193ee02499aSAlex Lorenz } 194ee02499aSAlex Lorenz 195bf42cfd7SJustin Bogner /// \brief Get the coverage mapping file ID for \c Loc. 196bf42cfd7SJustin Bogner /// 197bf42cfd7SJustin Bogner /// If such file id doesn't exist, return None. 198bf42cfd7SJustin Bogner Optional<unsigned> getCoverageFileID(SourceLocation Loc) { 199bf42cfd7SJustin Bogner auto Mapping = FileIDMapping.find(SM.getFileID(Loc)); 200bf42cfd7SJustin Bogner if (Mapping != FileIDMapping.end()) 201bf42cfd7SJustin Bogner return Mapping->second.first; 202903678caSJustin Bogner return None; 203ee02499aSAlex Lorenz } 204ee02499aSAlex Lorenz 205ee02499aSAlex Lorenz /// \brief Return true if the given clang's file id has a corresponding 206ee02499aSAlex Lorenz /// coverage file id. 207ee02499aSAlex Lorenz bool hasExistingCoverageFileID(FileID File) const { 208ee02499aSAlex Lorenz return FileIDMapping.count(File); 209ee02499aSAlex Lorenz } 210ee02499aSAlex Lorenz 211ee02499aSAlex Lorenz /// \brief Gather all the regions that were skipped by the preprocessor 212ee02499aSAlex Lorenz /// using the constructs like #if. 213ee02499aSAlex Lorenz void gatherSkippedRegions() { 214ee02499aSAlex Lorenz /// An array of the minimum lineStarts and the maximum lineEnds 215ee02499aSAlex Lorenz /// for mapping regions from the appropriate source files. 216ee02499aSAlex Lorenz llvm::SmallVector<std::pair<unsigned, unsigned>, 8> FileLineRanges; 217ee02499aSAlex Lorenz FileLineRanges.resize( 218ee02499aSAlex Lorenz FileIDMapping.size(), 219ee02499aSAlex Lorenz std::make_pair(std::numeric_limits<unsigned>::max(), 0)); 220ee02499aSAlex Lorenz for (const auto &R : MappingRegions) { 221ee02499aSAlex Lorenz FileLineRanges[R.FileID].first = 222ee02499aSAlex Lorenz std::min(FileLineRanges[R.FileID].first, R.LineStart); 223ee02499aSAlex Lorenz FileLineRanges[R.FileID].second = 224ee02499aSAlex Lorenz std::max(FileLineRanges[R.FileID].second, R.LineEnd); 225ee02499aSAlex Lorenz } 226ee02499aSAlex Lorenz 227ee02499aSAlex Lorenz auto SkippedRanges = CVM.getSourceInfo().getSkippedRanges(); 228ee02499aSAlex Lorenz for (const auto &I : SkippedRanges) { 229ee02499aSAlex Lorenz auto LocStart = I.getBegin(); 230ee02499aSAlex Lorenz auto LocEnd = I.getEnd(); 231bf42cfd7SJustin Bogner assert(SM.isWrittenInSameFile(LocStart, LocEnd) && 232bf42cfd7SJustin Bogner "region spans multiple files"); 233ee02499aSAlex Lorenz 234bf42cfd7SJustin Bogner auto CovFileID = getCoverageFileID(LocStart); 235903678caSJustin Bogner if (!CovFileID) 236ee02499aSAlex Lorenz continue; 237ee02499aSAlex Lorenz unsigned LineStart = SM.getSpellingLineNumber(LocStart); 238ee02499aSAlex Lorenz unsigned ColumnStart = SM.getSpellingColumnNumber(LocStart); 239ee02499aSAlex Lorenz unsigned LineEnd = SM.getSpellingLineNumber(LocEnd); 240ee02499aSAlex Lorenz unsigned ColumnEnd = SM.getSpellingColumnNumber(LocEnd); 241fd34280bSJustin Bogner auto Region = CounterMappingRegion::makeSkipped( 242fd34280bSJustin Bogner *CovFileID, LineStart, ColumnStart, LineEnd, ColumnEnd); 243ee02499aSAlex Lorenz // Make sure that we only collect the regions that are inside 244ee02499aSAlex Lorenz // the souce code of this function. 245903678caSJustin Bogner if (Region.LineStart >= FileLineRanges[*CovFileID].first && 246903678caSJustin Bogner Region.LineEnd <= FileLineRanges[*CovFileID].second) 247ee02499aSAlex Lorenz MappingRegions.push_back(Region); 248ee02499aSAlex Lorenz } 249ee02499aSAlex Lorenz } 250ee02499aSAlex Lorenz 251ee02499aSAlex Lorenz /// \brief Generate the coverage counter mapping regions from collected 252ee02499aSAlex Lorenz /// source regions. 253ee02499aSAlex Lorenz void emitSourceRegions() { 254bf42cfd7SJustin Bogner for (const auto &Region : SourceRegions) { 255bf42cfd7SJustin Bogner assert(Region.hasEndLoc() && "incomplete region"); 256ee02499aSAlex Lorenz 257bf42cfd7SJustin Bogner SourceLocation LocStart = Region.getStartLoc(); 2588b563665SYaron Keren assert(SM.getFileID(LocStart).isValid() && "region in invalid file"); 259f59329b0SJustin Bogner 260bf42cfd7SJustin Bogner auto CovFileID = getCoverageFileID(LocStart); 261bf42cfd7SJustin Bogner // Ignore regions that don't have a file, such as builtin macros. 262bf42cfd7SJustin Bogner if (!CovFileID) 263ee02499aSAlex Lorenz continue; 264ee02499aSAlex Lorenz 265f14b2078SJustin Bogner SourceLocation LocEnd = Region.getEndLoc(); 266bf42cfd7SJustin Bogner assert(SM.isWrittenInSameFile(LocStart, LocEnd) && 267bf42cfd7SJustin Bogner "region spans multiple files"); 268bf42cfd7SJustin Bogner 269f59329b0SJustin Bogner // Find the spilling locations for the mapping region. 270ee02499aSAlex Lorenz unsigned LineStart = SM.getSpellingLineNumber(LocStart); 271ee02499aSAlex Lorenz unsigned ColumnStart = SM.getSpellingColumnNumber(LocStart); 272ee02499aSAlex Lorenz unsigned LineEnd = SM.getSpellingLineNumber(LocEnd); 273ee02499aSAlex Lorenz unsigned ColumnEnd = SM.getSpellingColumnNumber(LocEnd); 274ee02499aSAlex Lorenz 275bf42cfd7SJustin Bogner assert(LineStart <= LineEnd && "region start and end out of order"); 276bf42cfd7SJustin Bogner MappingRegions.push_back(CounterMappingRegion::makeRegion( 277bf42cfd7SJustin Bogner Region.getCounter(), *CovFileID, LineStart, ColumnStart, LineEnd, 278bf42cfd7SJustin Bogner ColumnEnd)); 279bf42cfd7SJustin Bogner } 280bf42cfd7SJustin Bogner } 281bf42cfd7SJustin Bogner 282bf42cfd7SJustin Bogner /// \brief Generate expansion regions for each virtual file we've seen. 283bf42cfd7SJustin Bogner void emitExpansionRegions() { 284bf42cfd7SJustin Bogner for (const auto &FM : FileIDMapping) { 285bf42cfd7SJustin Bogner SourceLocation ExpandedLoc = FM.second.second; 286bf42cfd7SJustin Bogner SourceLocation ParentLoc = getIncludeOrExpansionLoc(ExpandedLoc); 287bf42cfd7SJustin Bogner if (ParentLoc.isInvalid()) 288ee02499aSAlex Lorenz continue; 289ee02499aSAlex Lorenz 290bf42cfd7SJustin Bogner auto ParentFileID = getCoverageFileID(ParentLoc); 291bf42cfd7SJustin Bogner if (!ParentFileID) 292bf42cfd7SJustin Bogner continue; 293bf42cfd7SJustin Bogner auto ExpandedFileID = getCoverageFileID(ExpandedLoc); 294bf42cfd7SJustin Bogner assert(ExpandedFileID && "expansion in uncovered file"); 295bf42cfd7SJustin Bogner 296bf42cfd7SJustin Bogner SourceLocation LocEnd = getPreciseTokenLocEnd(ParentLoc); 297bf42cfd7SJustin Bogner assert(SM.isWrittenInSameFile(ParentLoc, LocEnd) && 298bf42cfd7SJustin Bogner "region spans multiple files"); 299bf42cfd7SJustin Bogner 300bf42cfd7SJustin Bogner unsigned LineStart = SM.getSpellingLineNumber(ParentLoc); 301bf42cfd7SJustin Bogner unsigned ColumnStart = SM.getSpellingColumnNumber(ParentLoc); 302bf42cfd7SJustin Bogner unsigned LineEnd = SM.getSpellingLineNumber(LocEnd); 303bf42cfd7SJustin Bogner unsigned ColumnEnd = SM.getSpellingColumnNumber(LocEnd); 304bf42cfd7SJustin Bogner 305bf42cfd7SJustin Bogner MappingRegions.push_back(CounterMappingRegion::makeExpansion( 306bf42cfd7SJustin Bogner *ParentFileID, *ExpandedFileID, LineStart, ColumnStart, LineEnd, 307fd34280bSJustin Bogner ColumnEnd)); 308ee02499aSAlex Lorenz } 309ee02499aSAlex Lorenz } 310ee02499aSAlex Lorenz }; 311ee02499aSAlex Lorenz 312ee02499aSAlex Lorenz /// \brief Creates unreachable coverage regions for the functions that 313ee02499aSAlex Lorenz /// are not emitted. 314ee02499aSAlex Lorenz struct EmptyCoverageMappingBuilder : public CoverageMappingBuilder { 315ee02499aSAlex Lorenz EmptyCoverageMappingBuilder(CoverageMappingModuleGen &CVM, SourceManager &SM, 316ee02499aSAlex Lorenz const LangOptions &LangOpts) 317ee02499aSAlex Lorenz : CoverageMappingBuilder(CVM, SM, LangOpts) {} 318ee02499aSAlex Lorenz 319ee02499aSAlex Lorenz void VisitDecl(const Decl *D) { 320ee02499aSAlex Lorenz if (!D->hasBody()) 321ee02499aSAlex Lorenz return; 322ee02499aSAlex Lorenz auto Body = D->getBody(); 323d9e1a61dSIgor Kudrin SourceLocation Start = getStart(Body); 324d9e1a61dSIgor Kudrin SourceLocation End = getEnd(Body); 325d9e1a61dSIgor Kudrin if (!SM.isWrittenInSameFile(Start, End)) { 326d9e1a61dSIgor Kudrin // Walk up to find the common ancestor. 327d9e1a61dSIgor Kudrin // Correct the locations accordingly. 328d9e1a61dSIgor Kudrin FileID StartFileID = SM.getFileID(Start); 329d9e1a61dSIgor Kudrin FileID EndFileID = SM.getFileID(End); 330d9e1a61dSIgor Kudrin while (StartFileID != EndFileID && !isNestedIn(End, StartFileID)) { 331d9e1a61dSIgor Kudrin Start = getIncludeOrExpansionLoc(Start); 332d9e1a61dSIgor Kudrin assert(Start.isValid() && 333d9e1a61dSIgor Kudrin "Declaration start location not nested within a known region"); 334d9e1a61dSIgor Kudrin StartFileID = SM.getFileID(Start); 335d9e1a61dSIgor Kudrin } 336d9e1a61dSIgor Kudrin while (StartFileID != EndFileID) { 337d9e1a61dSIgor Kudrin End = getPreciseTokenLocEnd(getIncludeOrExpansionLoc(End)); 338d9e1a61dSIgor Kudrin assert(End.isValid() && 339d9e1a61dSIgor Kudrin "Declaration end location not nested within a known region"); 340d9e1a61dSIgor Kudrin EndFileID = SM.getFileID(End); 341d9e1a61dSIgor Kudrin } 342d9e1a61dSIgor Kudrin } 343d9e1a61dSIgor Kudrin SourceRegions.emplace_back(Counter(), Start, End); 344ee02499aSAlex Lorenz } 345ee02499aSAlex Lorenz 346ee02499aSAlex Lorenz /// \brief Write the mapping data to the output stream 347ee02499aSAlex Lorenz void write(llvm::raw_ostream &OS) { 348ee02499aSAlex Lorenz SmallVector<unsigned, 16> FileIDMapping; 349bf42cfd7SJustin Bogner gatherFileIDs(FileIDMapping); 350bf42cfd7SJustin Bogner emitSourceRegions(); 351ee02499aSAlex Lorenz 3525fc8fc2dSCraig Topper CoverageMappingWriter Writer(FileIDMapping, None, MappingRegions); 353ee02499aSAlex Lorenz Writer.write(OS); 354ee02499aSAlex Lorenz } 355ee02499aSAlex Lorenz }; 356ee02499aSAlex Lorenz 357ee02499aSAlex Lorenz /// \brief A StmtVisitor that creates coverage mapping regions which map 358ee02499aSAlex Lorenz /// from the source code locations to the PGO counters. 359ee02499aSAlex Lorenz struct CounterCoverageMappingBuilder 360ee02499aSAlex Lorenz : public CoverageMappingBuilder, 361ee02499aSAlex Lorenz public ConstStmtVisitor<CounterCoverageMappingBuilder> { 362ee02499aSAlex Lorenz /// \brief The map of statements to count values. 363ee02499aSAlex Lorenz llvm::DenseMap<const Stmt *, unsigned> &CounterMap; 364ee02499aSAlex Lorenz 365bf42cfd7SJustin Bogner /// \brief A stack of currently live regions. 366bf42cfd7SJustin Bogner std::vector<SourceMappingRegion> RegionStack; 367ee02499aSAlex Lorenz 368ee02499aSAlex Lorenz CounterExpressionBuilder Builder; 369ee02499aSAlex Lorenz 370bf42cfd7SJustin Bogner /// \brief A location in the most recently visited file or macro. 371bf42cfd7SJustin Bogner /// 372bf42cfd7SJustin Bogner /// This is used to adjust the active source regions appropriately when 373bf42cfd7SJustin Bogner /// expressions cross file or macro boundaries. 374bf42cfd7SJustin Bogner SourceLocation MostRecentLocation; 375bf42cfd7SJustin Bogner 376bf42cfd7SJustin Bogner /// \brief Return a counter for the subtraction of \c RHS from \c LHS 377ee02499aSAlex Lorenz Counter subtractCounters(Counter LHS, Counter RHS) { 378ee02499aSAlex Lorenz return Builder.subtract(LHS, RHS); 379ee02499aSAlex Lorenz } 380ee02499aSAlex Lorenz 381bf42cfd7SJustin Bogner /// \brief Return a counter for the sum of \c LHS and \c RHS. 382ee02499aSAlex Lorenz Counter addCounters(Counter LHS, Counter RHS) { 383ee02499aSAlex Lorenz return Builder.add(LHS, RHS); 384ee02499aSAlex Lorenz } 385ee02499aSAlex Lorenz 386bf42cfd7SJustin Bogner Counter addCounters(Counter C1, Counter C2, Counter C3) { 387bf42cfd7SJustin Bogner return addCounters(addCounters(C1, C2), C3); 388bf42cfd7SJustin Bogner } 389bf42cfd7SJustin Bogner 390bf42cfd7SJustin Bogner Counter addCounters(Counter C1, Counter C2, Counter C3, Counter C4) { 391bf42cfd7SJustin Bogner return addCounters(addCounters(C1, C2, C3), C4); 392bf42cfd7SJustin Bogner } 393bf42cfd7SJustin Bogner 394ee02499aSAlex Lorenz /// \brief Return the region counter for the given statement. 395bf42cfd7SJustin Bogner /// 396ee02499aSAlex Lorenz /// This should only be called on statements that have a dedicated counter. 397bf42cfd7SJustin Bogner Counter getRegionCounter(const Stmt *S) { 398bf42cfd7SJustin Bogner return Counter::getCounter(CounterMap[S]); 399ee02499aSAlex Lorenz } 400ee02499aSAlex Lorenz 401bf42cfd7SJustin Bogner /// \brief Push a region onto the stack. 402bf42cfd7SJustin Bogner /// 403bf42cfd7SJustin Bogner /// Returns the index on the stack where the region was pushed. This can be 404bf42cfd7SJustin Bogner /// used with popRegions to exit a "scope", ending the region that was pushed. 405bf42cfd7SJustin Bogner size_t pushRegion(Counter Count, Optional<SourceLocation> StartLoc = None, 406bf42cfd7SJustin Bogner Optional<SourceLocation> EndLoc = None) { 407bf42cfd7SJustin Bogner if (StartLoc) 408bf42cfd7SJustin Bogner MostRecentLocation = *StartLoc; 409bf42cfd7SJustin Bogner RegionStack.emplace_back(Count, StartLoc, EndLoc); 410ee02499aSAlex Lorenz 411bf42cfd7SJustin Bogner return RegionStack.size() - 1; 412ee02499aSAlex Lorenz } 413ee02499aSAlex Lorenz 414bf42cfd7SJustin Bogner /// \brief Pop regions from the stack into the function's list of regions. 415bf42cfd7SJustin Bogner /// 416bf42cfd7SJustin Bogner /// Adds all regions from \c ParentIndex to the top of the stack to the 417bf42cfd7SJustin Bogner /// function's \c SourceRegions. 418bf42cfd7SJustin Bogner void popRegions(size_t ParentIndex) { 419bf42cfd7SJustin Bogner assert(RegionStack.size() >= ParentIndex && "parent not in stack"); 420bf42cfd7SJustin Bogner while (RegionStack.size() > ParentIndex) { 421bf42cfd7SJustin Bogner SourceMappingRegion &Region = RegionStack.back(); 422bf42cfd7SJustin Bogner if (Region.hasStartLoc()) { 423bf42cfd7SJustin Bogner SourceLocation StartLoc = Region.getStartLoc(); 424bf42cfd7SJustin Bogner SourceLocation EndLoc = Region.hasEndLoc() 425bf42cfd7SJustin Bogner ? Region.getEndLoc() 426bf42cfd7SJustin Bogner : RegionStack[ParentIndex].getEndLoc(); 427bf42cfd7SJustin Bogner while (!SM.isWrittenInSameFile(StartLoc, EndLoc)) { 428bf42cfd7SJustin Bogner // The region ends in a nested file or macro expansion. Create a 429bf42cfd7SJustin Bogner // separate region for each expansion. 430bf42cfd7SJustin Bogner SourceLocation NestedLoc = getStartOfFileOrMacro(EndLoc); 431bf42cfd7SJustin Bogner assert(SM.isWrittenInSameFile(NestedLoc, EndLoc)); 432bf42cfd7SJustin Bogner 433bf42cfd7SJustin Bogner SourceRegions.emplace_back(Region.getCounter(), NestedLoc, EndLoc); 434bf42cfd7SJustin Bogner 435f14b2078SJustin Bogner EndLoc = getPreciseTokenLocEnd(getIncludeOrExpansionLoc(EndLoc)); 436dceaaadfSJustin Bogner if (EndLoc.isInvalid()) 437dceaaadfSJustin Bogner llvm::report_fatal_error("File exit not handled before popRegions"); 438bf42cfd7SJustin Bogner } 439bf42cfd7SJustin Bogner Region.setEndLoc(EndLoc); 440bf42cfd7SJustin Bogner 441bf42cfd7SJustin Bogner MostRecentLocation = EndLoc; 442bf42cfd7SJustin Bogner // If this region happens to span an entire expansion, we need to make 443bf42cfd7SJustin Bogner // sure we don't overlap the parent region with it. 444bf42cfd7SJustin Bogner if (StartLoc == getStartOfFileOrMacro(StartLoc) && 445bf42cfd7SJustin Bogner EndLoc == getEndOfFileOrMacro(EndLoc)) 446bf42cfd7SJustin Bogner MostRecentLocation = getIncludeOrExpansionLoc(EndLoc); 447bf42cfd7SJustin Bogner 448bf42cfd7SJustin Bogner assert(SM.isWrittenInSameFile(Region.getStartLoc(), EndLoc)); 449f36a5c4aSCraig Topper SourceRegions.push_back(Region); 450bf42cfd7SJustin Bogner } 451bf42cfd7SJustin Bogner RegionStack.pop_back(); 452bf42cfd7SJustin Bogner } 453ee02499aSAlex Lorenz } 454ee02499aSAlex Lorenz 455bf42cfd7SJustin Bogner /// \brief Return the currently active region. 456bf42cfd7SJustin Bogner SourceMappingRegion &getRegion() { 457bf42cfd7SJustin Bogner assert(!RegionStack.empty() && "statement has no region"); 458bf42cfd7SJustin Bogner return RegionStack.back(); 459ee02499aSAlex Lorenz } 460ee02499aSAlex Lorenz 461bf42cfd7SJustin Bogner /// \brief Propagate counts through the children of \c S. 462bf42cfd7SJustin Bogner Counter propagateCounts(Counter TopCount, const Stmt *S) { 463bf42cfd7SJustin Bogner size_t Index = pushRegion(TopCount, getStart(S), getEnd(S)); 464bf42cfd7SJustin Bogner Visit(S); 465bf42cfd7SJustin Bogner Counter ExitCount = getRegion().getCounter(); 466bf42cfd7SJustin Bogner popRegions(Index); 46739f01975SVedant Kumar 46839f01975SVedant Kumar // The statement may be spanned by an expansion. Make sure we handle a file 46939f01975SVedant Kumar // exit out of this expansion before moving to the next statement. 47039f01975SVedant Kumar if (SM.isBeforeInTranslationUnit(getStart(S), S->getLocStart())) 47139f01975SVedant Kumar MostRecentLocation = getEnd(S); 47239f01975SVedant Kumar 473bf42cfd7SJustin Bogner return ExitCount; 474ee02499aSAlex Lorenz } 475ee02499aSAlex Lorenz 4760a7c9d11SIgor Kudrin /// \brief Check whether a region with bounds \c StartLoc and \c EndLoc 4770a7c9d11SIgor Kudrin /// is already added to \c SourceRegions. 4780a7c9d11SIgor Kudrin bool isRegionAlreadyAdded(SourceLocation StartLoc, SourceLocation EndLoc) { 4790a7c9d11SIgor Kudrin return SourceRegions.rend() != 4800a7c9d11SIgor Kudrin std::find_if(SourceRegions.rbegin(), SourceRegions.rend(), 4810a7c9d11SIgor Kudrin [&](const SourceMappingRegion &Region) { 4820a7c9d11SIgor Kudrin return Region.getStartLoc() == StartLoc && 4830a7c9d11SIgor Kudrin Region.getEndLoc() == EndLoc; 4840a7c9d11SIgor Kudrin }); 4850a7c9d11SIgor Kudrin } 4860a7c9d11SIgor Kudrin 487bf42cfd7SJustin Bogner /// \brief Adjust the most recently visited location to \c EndLoc. 488bf42cfd7SJustin Bogner /// 489bf42cfd7SJustin Bogner /// This should be used after visiting any statements in non-source order. 490bf42cfd7SJustin Bogner void adjustForOutOfOrderTraversal(SourceLocation EndLoc) { 491bf42cfd7SJustin Bogner MostRecentLocation = EndLoc; 4920a7c9d11SIgor Kudrin // The code region for a whole macro is created in handleFileExit() when 4930a7c9d11SIgor Kudrin // it detects exiting of the virtual file of that macro. If we visited 4940a7c9d11SIgor Kudrin // statements in non-source order, we might already have such a region 4950a7c9d11SIgor Kudrin // added, for example, if a body of a loop is divided among multiple 4960a7c9d11SIgor Kudrin // macros. Avoid adding duplicate regions in such case. 49796ae73f7SJustin Bogner if (getRegion().hasEndLoc() && 4980a7c9d11SIgor Kudrin MostRecentLocation == getEndOfFileOrMacro(MostRecentLocation) && 4990a7c9d11SIgor Kudrin isRegionAlreadyAdded(getStartOfFileOrMacro(MostRecentLocation), 5000a7c9d11SIgor Kudrin MostRecentLocation)) 501bf42cfd7SJustin Bogner MostRecentLocation = getIncludeOrExpansionLoc(MostRecentLocation); 502ee02499aSAlex Lorenz } 503ee02499aSAlex Lorenz 504bf42cfd7SJustin Bogner /// \brief Adjust regions and state when \c NewLoc exits a file. 505bf42cfd7SJustin Bogner /// 506bf42cfd7SJustin Bogner /// If moving from our most recently tracked location to \c NewLoc exits any 507bf42cfd7SJustin Bogner /// files, this adjusts our current region stack and creates the file regions 508bf42cfd7SJustin Bogner /// for the exited file. 509bf42cfd7SJustin Bogner void handleFileExit(SourceLocation NewLoc) { 510e44dd6dbSJustin Bogner if (NewLoc.isInvalid() || 511e44dd6dbSJustin Bogner SM.isWrittenInSameFile(MostRecentLocation, NewLoc)) 512bf42cfd7SJustin Bogner return; 513bf42cfd7SJustin Bogner 514bf42cfd7SJustin Bogner // If NewLoc is not in a file that contains MostRecentLocation, walk up to 515bf42cfd7SJustin Bogner // find the common ancestor. 516bf42cfd7SJustin Bogner SourceLocation LCA = NewLoc; 517bf42cfd7SJustin Bogner FileID ParentFile = SM.getFileID(LCA); 518bf42cfd7SJustin Bogner while (!isNestedIn(MostRecentLocation, ParentFile)) { 519bf42cfd7SJustin Bogner LCA = getIncludeOrExpansionLoc(LCA); 520bf42cfd7SJustin Bogner if (LCA.isInvalid() || SM.isWrittenInSameFile(LCA, MostRecentLocation)) { 521bf42cfd7SJustin Bogner // Since there isn't a common ancestor, no file was exited. We just need 522bf42cfd7SJustin Bogner // to adjust our location to the new file. 523bf42cfd7SJustin Bogner MostRecentLocation = NewLoc; 524bf42cfd7SJustin Bogner return; 525bf42cfd7SJustin Bogner } 526bf42cfd7SJustin Bogner ParentFile = SM.getFileID(LCA); 527ee02499aSAlex Lorenz } 528ee02499aSAlex Lorenz 529bf42cfd7SJustin Bogner llvm::SmallSet<SourceLocation, 8> StartLocs; 530bf42cfd7SJustin Bogner Optional<Counter> ParentCounter; 53157d3f145SPete Cooper for (SourceMappingRegion &I : llvm::reverse(RegionStack)) { 53257d3f145SPete Cooper if (!I.hasStartLoc()) 533bf42cfd7SJustin Bogner continue; 53457d3f145SPete Cooper SourceLocation Loc = I.getStartLoc(); 535bf42cfd7SJustin Bogner if (!isNestedIn(Loc, ParentFile)) { 53657d3f145SPete Cooper ParentCounter = I.getCounter(); 537bf42cfd7SJustin Bogner break; 538ee02499aSAlex Lorenz } 539bf42cfd7SJustin Bogner 540bf42cfd7SJustin Bogner while (!SM.isInFileID(Loc, ParentFile)) { 541bf42cfd7SJustin Bogner // The most nested region for each start location is the one with the 542bf42cfd7SJustin Bogner // correct count. We avoid creating redundant regions by stopping once 543bf42cfd7SJustin Bogner // we've seen this region. 544bf42cfd7SJustin Bogner if (StartLocs.insert(Loc).second) 54557d3f145SPete Cooper SourceRegions.emplace_back(I.getCounter(), Loc, 546bf42cfd7SJustin Bogner getEndOfFileOrMacro(Loc)); 547bf42cfd7SJustin Bogner Loc = getIncludeOrExpansionLoc(Loc); 548ee02499aSAlex Lorenz } 54957d3f145SPete Cooper I.setStartLoc(getPreciseTokenLocEnd(Loc)); 550bf42cfd7SJustin Bogner } 551bf42cfd7SJustin Bogner 552bf42cfd7SJustin Bogner if (ParentCounter) { 553bf42cfd7SJustin Bogner // If the file is contained completely by another region and doesn't 554bf42cfd7SJustin Bogner // immediately start its own region, the whole file gets a region 555bf42cfd7SJustin Bogner // corresponding to the parent. 556bf42cfd7SJustin Bogner SourceLocation Loc = MostRecentLocation; 557bf42cfd7SJustin Bogner while (isNestedIn(Loc, ParentFile)) { 558bf42cfd7SJustin Bogner SourceLocation FileStart = getStartOfFileOrMacro(Loc); 559bf42cfd7SJustin Bogner if (StartLocs.insert(FileStart).second) 560bf42cfd7SJustin Bogner SourceRegions.emplace_back(*ParentCounter, FileStart, 561bf42cfd7SJustin Bogner getEndOfFileOrMacro(Loc)); 562bf42cfd7SJustin Bogner Loc = getIncludeOrExpansionLoc(Loc); 563bf42cfd7SJustin Bogner } 564bf42cfd7SJustin Bogner } 565bf42cfd7SJustin Bogner 566bf42cfd7SJustin Bogner MostRecentLocation = NewLoc; 567bf42cfd7SJustin Bogner } 568bf42cfd7SJustin Bogner 569bf42cfd7SJustin Bogner /// \brief Ensure that \c S is included in the current region. 570bf42cfd7SJustin Bogner void extendRegion(const Stmt *S) { 571bf42cfd7SJustin Bogner SourceMappingRegion &Region = getRegion(); 572bf42cfd7SJustin Bogner SourceLocation StartLoc = getStart(S); 573bf42cfd7SJustin Bogner 574bf42cfd7SJustin Bogner handleFileExit(StartLoc); 575bf42cfd7SJustin Bogner if (!Region.hasStartLoc()) 576bf42cfd7SJustin Bogner Region.setStartLoc(StartLoc); 577bf42cfd7SJustin Bogner } 578bf42cfd7SJustin Bogner 579bf42cfd7SJustin Bogner /// \brief Mark \c S as a terminator, starting a zero region. 580bf42cfd7SJustin Bogner void terminateRegion(const Stmt *S) { 581bf42cfd7SJustin Bogner extendRegion(S); 582bf42cfd7SJustin Bogner SourceMappingRegion &Region = getRegion(); 583bf42cfd7SJustin Bogner if (!Region.hasEndLoc()) 584bf42cfd7SJustin Bogner Region.setEndLoc(getEnd(S)); 585bf42cfd7SJustin Bogner pushRegion(Counter::getZero()); 586bf42cfd7SJustin Bogner } 587ee02499aSAlex Lorenz 588ee02499aSAlex Lorenz /// \brief Keep counts of breaks and continues inside loops. 589ee02499aSAlex Lorenz struct BreakContinue { 590ee02499aSAlex Lorenz Counter BreakCount; 591ee02499aSAlex Lorenz Counter ContinueCount; 592ee02499aSAlex Lorenz }; 593ee02499aSAlex Lorenz SmallVector<BreakContinue, 8> BreakContinueStack; 594ee02499aSAlex Lorenz 595ee02499aSAlex Lorenz CounterCoverageMappingBuilder( 596ee02499aSAlex Lorenz CoverageMappingModuleGen &CVM, 597e5ee6c58SJustin Bogner llvm::DenseMap<const Stmt *, unsigned> &CounterMap, SourceManager &SM, 598ee02499aSAlex Lorenz const LangOptions &LangOpts) 599e5ee6c58SJustin Bogner : CoverageMappingBuilder(CVM, SM, LangOpts), CounterMap(CounterMap) {} 600ee02499aSAlex Lorenz 601ee02499aSAlex Lorenz /// \brief Write the mapping data to the output stream 602ee02499aSAlex Lorenz void write(llvm::raw_ostream &OS) { 603ee02499aSAlex Lorenz llvm::SmallVector<unsigned, 8> VirtualFileMapping; 604bf42cfd7SJustin Bogner gatherFileIDs(VirtualFileMapping); 605bf42cfd7SJustin Bogner emitSourceRegions(); 606bf42cfd7SJustin Bogner emitExpansionRegions(); 607ee02499aSAlex Lorenz gatherSkippedRegions(); 608ee02499aSAlex Lorenz 6094da909b2SJustin Bogner CoverageMappingWriter Writer(VirtualFileMapping, Builder.getExpressions(), 6104da909b2SJustin Bogner MappingRegions); 611ee02499aSAlex Lorenz Writer.write(OS); 612ee02499aSAlex Lorenz } 613ee02499aSAlex Lorenz 614ee02499aSAlex Lorenz void VisitStmt(const Stmt *S) { 615ed1fe5d0SYaron Keren if (S->getLocStart().isValid()) 616bf42cfd7SJustin Bogner extendRegion(S); 617642f173aSBenjamin Kramer for (const Stmt *Child : S->children()) 618642f173aSBenjamin Kramer if (Child) 619642f173aSBenjamin Kramer this->Visit(Child); 620bf42cfd7SJustin Bogner handleFileExit(getEnd(S)); 621ee02499aSAlex Lorenz } 622ee02499aSAlex Lorenz 623ee02499aSAlex Lorenz void VisitDecl(const Decl *D) { 624bf42cfd7SJustin Bogner Stmt *Body = D->getBody(); 625bf42cfd7SJustin Bogner propagateCounts(getRegionCounter(Body), Body); 626ee02499aSAlex Lorenz } 627ee02499aSAlex Lorenz 628ee02499aSAlex Lorenz void VisitReturnStmt(const ReturnStmt *S) { 629bf42cfd7SJustin Bogner extendRegion(S); 630ee02499aSAlex Lorenz if (S->getRetValue()) 631ee02499aSAlex Lorenz Visit(S->getRetValue()); 632bf42cfd7SJustin Bogner terminateRegion(S); 633ee02499aSAlex Lorenz } 634ee02499aSAlex Lorenz 635f959febfSJustin Bogner void VisitCXXThrowExpr(const CXXThrowExpr *E) { 636f959febfSJustin Bogner extendRegion(E); 637f959febfSJustin Bogner if (E->getSubExpr()) 638f959febfSJustin Bogner Visit(E->getSubExpr()); 639f959febfSJustin Bogner terminateRegion(E); 640f959febfSJustin Bogner } 641f959febfSJustin Bogner 642bf42cfd7SJustin Bogner void VisitGotoStmt(const GotoStmt *S) { terminateRegion(S); } 643ee02499aSAlex Lorenz 644ee02499aSAlex Lorenz void VisitLabelStmt(const LabelStmt *S) { 645bf42cfd7SJustin Bogner SourceLocation Start = getStart(S); 646bf42cfd7SJustin Bogner // We can't extendRegion here or we risk overlapping with our new region. 647bf42cfd7SJustin Bogner handleFileExit(Start); 648bf42cfd7SJustin Bogner pushRegion(getRegionCounter(S), Start); 649ee02499aSAlex Lorenz Visit(S->getSubStmt()); 650ee02499aSAlex Lorenz } 651ee02499aSAlex Lorenz 652ee02499aSAlex Lorenz void VisitBreakStmt(const BreakStmt *S) { 653ee02499aSAlex Lorenz assert(!BreakContinueStack.empty() && "break not in a loop or switch!"); 654ee02499aSAlex Lorenz BreakContinueStack.back().BreakCount = addCounters( 655bf42cfd7SJustin Bogner BreakContinueStack.back().BreakCount, getRegion().getCounter()); 656bf42cfd7SJustin Bogner terminateRegion(S); 657ee02499aSAlex Lorenz } 658ee02499aSAlex Lorenz 659ee02499aSAlex Lorenz void VisitContinueStmt(const ContinueStmt *S) { 660ee02499aSAlex Lorenz assert(!BreakContinueStack.empty() && "continue stmt not in a loop!"); 661ee02499aSAlex Lorenz BreakContinueStack.back().ContinueCount = addCounters( 662bf42cfd7SJustin Bogner BreakContinueStack.back().ContinueCount, getRegion().getCounter()); 663bf42cfd7SJustin Bogner terminateRegion(S); 664ee02499aSAlex Lorenz } 665ee02499aSAlex Lorenz 666ee02499aSAlex Lorenz void VisitWhileStmt(const WhileStmt *S) { 667bf42cfd7SJustin Bogner extendRegion(S); 668ee02499aSAlex Lorenz 669bf42cfd7SJustin Bogner Counter ParentCount = getRegion().getCounter(); 670bf42cfd7SJustin Bogner Counter BodyCount = getRegionCounter(S); 671bf42cfd7SJustin Bogner 672bf42cfd7SJustin Bogner // Handle the body first so that we can get the backedge count. 673bf42cfd7SJustin Bogner BreakContinueStack.push_back(BreakContinue()); 674bf42cfd7SJustin Bogner extendRegion(S->getBody()); 675bf42cfd7SJustin Bogner Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); 676ee02499aSAlex Lorenz BreakContinue BC = BreakContinueStack.pop_back_val(); 677bf42cfd7SJustin Bogner 678bf42cfd7SJustin Bogner // Go back to handle the condition. 679bf42cfd7SJustin Bogner Counter CondCount = 680bf42cfd7SJustin Bogner addCounters(ParentCount, BackedgeCount, BC.ContinueCount); 681bf42cfd7SJustin Bogner propagateCounts(CondCount, S->getCond()); 682bf42cfd7SJustin Bogner adjustForOutOfOrderTraversal(getEnd(S)); 683bf42cfd7SJustin Bogner 684bf42cfd7SJustin Bogner Counter OutCount = 685bf42cfd7SJustin Bogner addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount)); 686bf42cfd7SJustin Bogner if (OutCount != ParentCount) 687bf42cfd7SJustin Bogner pushRegion(OutCount); 688ee02499aSAlex Lorenz } 689ee02499aSAlex Lorenz 690ee02499aSAlex Lorenz void VisitDoStmt(const DoStmt *S) { 691bf42cfd7SJustin Bogner extendRegion(S); 692ee02499aSAlex Lorenz 693bf42cfd7SJustin Bogner Counter ParentCount = getRegion().getCounter(); 694bf42cfd7SJustin Bogner Counter BodyCount = getRegionCounter(S); 695bf42cfd7SJustin Bogner 696bf42cfd7SJustin Bogner BreakContinueStack.push_back(BreakContinue()); 697bf42cfd7SJustin Bogner extendRegion(S->getBody()); 698bf42cfd7SJustin Bogner Counter BackedgeCount = 699bf42cfd7SJustin Bogner propagateCounts(addCounters(ParentCount, BodyCount), S->getBody()); 700ee02499aSAlex Lorenz BreakContinue BC = BreakContinueStack.pop_back_val(); 701bf42cfd7SJustin Bogner 702bf42cfd7SJustin Bogner Counter CondCount = addCounters(BackedgeCount, BC.ContinueCount); 703bf42cfd7SJustin Bogner propagateCounts(CondCount, S->getCond()); 704bf42cfd7SJustin Bogner 705bf42cfd7SJustin Bogner Counter OutCount = 706bf42cfd7SJustin Bogner addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount)); 707bf42cfd7SJustin Bogner if (OutCount != ParentCount) 708bf42cfd7SJustin Bogner pushRegion(OutCount); 709ee02499aSAlex Lorenz } 710ee02499aSAlex Lorenz 711ee02499aSAlex Lorenz void VisitForStmt(const ForStmt *S) { 712bf42cfd7SJustin Bogner extendRegion(S); 713ee02499aSAlex Lorenz if (S->getInit()) 714ee02499aSAlex Lorenz Visit(S->getInit()); 715ee02499aSAlex Lorenz 716bf42cfd7SJustin Bogner Counter ParentCount = getRegion().getCounter(); 717bf42cfd7SJustin Bogner Counter BodyCount = getRegionCounter(S); 718bf42cfd7SJustin Bogner 719bf42cfd7SJustin Bogner // Handle the body first so that we can get the backedge count. 720ee02499aSAlex Lorenz BreakContinueStack.push_back(BreakContinue()); 721bf42cfd7SJustin Bogner extendRegion(S->getBody()); 722bf42cfd7SJustin Bogner Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); 723bf42cfd7SJustin Bogner BreakContinue BC = BreakContinueStack.pop_back_val(); 724ee02499aSAlex Lorenz 725ee02499aSAlex Lorenz // The increment is essentially part of the body but it needs to include 726ee02499aSAlex Lorenz // the count for all the continue statements. 727bf42cfd7SJustin Bogner if (const Stmt *Inc = S->getInc()) 728bf42cfd7SJustin Bogner propagateCounts(addCounters(BackedgeCount, BC.ContinueCount), Inc); 729bf42cfd7SJustin Bogner 730bf42cfd7SJustin Bogner // Go back to handle the condition. 731bf42cfd7SJustin Bogner Counter CondCount = 732bf42cfd7SJustin Bogner addCounters(ParentCount, BackedgeCount, BC.ContinueCount); 733bf42cfd7SJustin Bogner if (const Expr *Cond = S->getCond()) { 734bf42cfd7SJustin Bogner propagateCounts(CondCount, Cond); 735bf42cfd7SJustin Bogner adjustForOutOfOrderTraversal(getEnd(S)); 736ee02499aSAlex Lorenz } 737ee02499aSAlex Lorenz 738bf42cfd7SJustin Bogner Counter OutCount = 739bf42cfd7SJustin Bogner addCounters(BC.BreakCount, subtractCounters(CondCount, BodyCount)); 740bf42cfd7SJustin Bogner if (OutCount != ParentCount) 741bf42cfd7SJustin Bogner pushRegion(OutCount); 742ee02499aSAlex Lorenz } 743ee02499aSAlex Lorenz 744ee02499aSAlex Lorenz void VisitCXXForRangeStmt(const CXXForRangeStmt *S) { 745bf42cfd7SJustin Bogner extendRegion(S); 746bf42cfd7SJustin Bogner Visit(S->getLoopVarStmt()); 747ee02499aSAlex Lorenz Visit(S->getRangeStmt()); 748bf42cfd7SJustin Bogner 749bf42cfd7SJustin Bogner Counter ParentCount = getRegion().getCounter(); 750bf42cfd7SJustin Bogner Counter BodyCount = getRegionCounter(S); 751bf42cfd7SJustin Bogner 752ee02499aSAlex Lorenz BreakContinueStack.push_back(BreakContinue()); 753bf42cfd7SJustin Bogner extendRegion(S->getBody()); 754bf42cfd7SJustin Bogner Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); 755ee02499aSAlex Lorenz BreakContinue BC = BreakContinueStack.pop_back_val(); 756bf42cfd7SJustin Bogner 7571587432dSJustin Bogner Counter LoopCount = 7581587432dSJustin Bogner addCounters(ParentCount, BackedgeCount, BC.ContinueCount); 7591587432dSJustin Bogner Counter OutCount = 7601587432dSJustin Bogner addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount)); 761bf42cfd7SJustin Bogner if (OutCount != ParentCount) 762bf42cfd7SJustin Bogner pushRegion(OutCount); 763ee02499aSAlex Lorenz } 764ee02499aSAlex Lorenz 765ee02499aSAlex Lorenz void VisitObjCForCollectionStmt(const ObjCForCollectionStmt *S) { 766bf42cfd7SJustin Bogner extendRegion(S); 767ee02499aSAlex Lorenz Visit(S->getElement()); 768bf42cfd7SJustin Bogner 769bf42cfd7SJustin Bogner Counter ParentCount = getRegion().getCounter(); 770bf42cfd7SJustin Bogner Counter BodyCount = getRegionCounter(S); 771bf42cfd7SJustin Bogner 772ee02499aSAlex Lorenz BreakContinueStack.push_back(BreakContinue()); 773bf42cfd7SJustin Bogner extendRegion(S->getBody()); 774bf42cfd7SJustin Bogner Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); 775ee02499aSAlex Lorenz BreakContinue BC = BreakContinueStack.pop_back_val(); 776bf42cfd7SJustin Bogner 7771587432dSJustin Bogner Counter LoopCount = 7781587432dSJustin Bogner addCounters(ParentCount, BackedgeCount, BC.ContinueCount); 7791587432dSJustin Bogner Counter OutCount = 7801587432dSJustin Bogner addCounters(BC.BreakCount, subtractCounters(LoopCount, BodyCount)); 781bf42cfd7SJustin Bogner if (OutCount != ParentCount) 782bf42cfd7SJustin Bogner pushRegion(OutCount); 783ee02499aSAlex Lorenz } 784ee02499aSAlex Lorenz 785ee02499aSAlex Lorenz void VisitSwitchStmt(const SwitchStmt *S) { 786bf42cfd7SJustin Bogner extendRegion(S); 787ee02499aSAlex Lorenz Visit(S->getCond()); 788bf42cfd7SJustin Bogner 789ee02499aSAlex Lorenz BreakContinueStack.push_back(BreakContinue()); 790bf42cfd7SJustin Bogner 791bf42cfd7SJustin Bogner const Stmt *Body = S->getBody(); 792bf42cfd7SJustin Bogner extendRegion(Body); 793bf42cfd7SJustin Bogner if (const auto *CS = dyn_cast<CompoundStmt>(Body)) { 794bf42cfd7SJustin Bogner if (!CS->body_empty()) { 795bf42cfd7SJustin Bogner // The body of the switch needs a zero region so that fallthrough counts 796bf42cfd7SJustin Bogner // behave correctly, but it would be misleading to include the braces of 797bf42cfd7SJustin Bogner // the compound statement in the zeroed area, so we need to handle this 798bf42cfd7SJustin Bogner // specially. 799bf42cfd7SJustin Bogner size_t Index = 800bf42cfd7SJustin Bogner pushRegion(Counter::getZero(), getStart(CS->body_front()), 801bf42cfd7SJustin Bogner getEnd(CS->body_back())); 802b5841332SRichard Trieu for (const auto *Child : CS->children()) 803bf42cfd7SJustin Bogner Visit(Child); 804bf42cfd7SJustin Bogner popRegions(Index); 805ee02499aSAlex Lorenz } 80687ea3b05SVedant Kumar } else 807bf42cfd7SJustin Bogner propagateCounts(Counter::getZero(), Body); 808ee02499aSAlex Lorenz BreakContinue BC = BreakContinueStack.pop_back_val(); 809bf42cfd7SJustin Bogner 810ee02499aSAlex Lorenz if (!BreakContinueStack.empty()) 811ee02499aSAlex Lorenz BreakContinueStack.back().ContinueCount = addCounters( 812ee02499aSAlex Lorenz BreakContinueStack.back().ContinueCount, BC.ContinueCount); 813bf42cfd7SJustin Bogner 814bf42cfd7SJustin Bogner Counter ExitCount = getRegionCounter(S); 8153836482aSVedant Kumar SourceLocation ExitLoc = getEnd(S); 8163836482aSVedant Kumar pushRegion(ExitCount, getStart(S), ExitLoc); 8173836482aSVedant Kumar handleFileExit(ExitLoc); 818ee02499aSAlex Lorenz } 819ee02499aSAlex Lorenz 820bf42cfd7SJustin Bogner void VisitSwitchCase(const SwitchCase *S) { 821bf42cfd7SJustin Bogner extendRegion(S); 822ee02499aSAlex Lorenz 823bf42cfd7SJustin Bogner SourceMappingRegion &Parent = getRegion(); 824bf42cfd7SJustin Bogner 825bf42cfd7SJustin Bogner Counter Count = addCounters(Parent.getCounter(), getRegionCounter(S)); 826bf42cfd7SJustin Bogner // Reuse the existing region if it starts at our label. This is typical of 827bf42cfd7SJustin Bogner // the first case in a switch. 828bf42cfd7SJustin Bogner if (Parent.hasStartLoc() && Parent.getStartLoc() == getStart(S)) 829bf42cfd7SJustin Bogner Parent.setCounter(Count); 830bf42cfd7SJustin Bogner else 831bf42cfd7SJustin Bogner pushRegion(Count, getStart(S)); 832bf42cfd7SJustin Bogner 833376c06c2SSanjay Patel if (const auto *CS = dyn_cast<CaseStmt>(S)) { 834bf42cfd7SJustin Bogner Visit(CS->getLHS()); 835bf42cfd7SJustin Bogner if (const Expr *RHS = CS->getRHS()) 836bf42cfd7SJustin Bogner Visit(RHS); 837bf42cfd7SJustin Bogner } 838ee02499aSAlex Lorenz Visit(S->getSubStmt()); 839ee02499aSAlex Lorenz } 840ee02499aSAlex Lorenz 841ee02499aSAlex Lorenz void VisitIfStmt(const IfStmt *S) { 842bf42cfd7SJustin Bogner extendRegion(S); 843055ebc34SJustin Bogner // Extend into the condition before we propagate through it below - this is 844055ebc34SJustin Bogner // needed to handle macros that generate the "if" but not the condition. 845055ebc34SJustin Bogner extendRegion(S->getCond()); 846ee02499aSAlex Lorenz 847bf42cfd7SJustin Bogner Counter ParentCount = getRegion().getCounter(); 848bf42cfd7SJustin Bogner Counter ThenCount = getRegionCounter(S); 849ee02499aSAlex Lorenz 85091f2e3c9SJustin Bogner // Emitting a counter for the condition makes it easier to interpret the 85191f2e3c9SJustin Bogner // counter for the body when looking at the coverage. 85291f2e3c9SJustin Bogner propagateCounts(ParentCount, S->getCond()); 85391f2e3c9SJustin Bogner 854bf42cfd7SJustin Bogner extendRegion(S->getThen()); 855bf42cfd7SJustin Bogner Counter OutCount = propagateCounts(ThenCount, S->getThen()); 856bf42cfd7SJustin Bogner 857bf42cfd7SJustin Bogner Counter ElseCount = subtractCounters(ParentCount, ThenCount); 858bf42cfd7SJustin Bogner if (const Stmt *Else = S->getElse()) { 859bf42cfd7SJustin Bogner extendRegion(S->getElse()); 860bf42cfd7SJustin Bogner OutCount = addCounters(OutCount, propagateCounts(ElseCount, Else)); 861bf42cfd7SJustin Bogner } else 862bf42cfd7SJustin Bogner OutCount = addCounters(OutCount, ElseCount); 863bf42cfd7SJustin Bogner 864bf42cfd7SJustin Bogner if (OutCount != ParentCount) 865bf42cfd7SJustin Bogner pushRegion(OutCount); 866ee02499aSAlex Lorenz } 867ee02499aSAlex Lorenz 868ee02499aSAlex Lorenz void VisitCXXTryStmt(const CXXTryStmt *S) { 869bf42cfd7SJustin Bogner extendRegion(S); 870*049908b2SVedant Kumar // Handle macros that generate the "try" but not the rest. 871*049908b2SVedant Kumar extendRegion(S->getTryBlock()); 872*049908b2SVedant Kumar 873*049908b2SVedant Kumar Counter ParentCount = getRegion().getCounter(); 874*049908b2SVedant Kumar propagateCounts(ParentCount, S->getTryBlock()); 875*049908b2SVedant Kumar 876ee02499aSAlex Lorenz for (unsigned I = 0, E = S->getNumHandlers(); I < E; ++I) 877ee02499aSAlex Lorenz Visit(S->getHandler(I)); 878bf42cfd7SJustin Bogner 879bf42cfd7SJustin Bogner Counter ExitCount = getRegionCounter(S); 880bf42cfd7SJustin Bogner pushRegion(ExitCount); 881ee02499aSAlex Lorenz } 882ee02499aSAlex Lorenz 883ee02499aSAlex Lorenz void VisitCXXCatchStmt(const CXXCatchStmt *S) { 884bf42cfd7SJustin Bogner propagateCounts(getRegionCounter(S), S->getHandlerBlock()); 885ee02499aSAlex Lorenz } 886ee02499aSAlex Lorenz 887ee02499aSAlex Lorenz void VisitAbstractConditionalOperator(const AbstractConditionalOperator *E) { 888bf42cfd7SJustin Bogner extendRegion(E); 889ee02499aSAlex Lorenz 890bf42cfd7SJustin Bogner Counter ParentCount = getRegion().getCounter(); 891bf42cfd7SJustin Bogner Counter TrueCount = getRegionCounter(E); 892ee02499aSAlex Lorenz 893e3654ce7SJustin Bogner Visit(E->getCond()); 894e3654ce7SJustin Bogner 895e3654ce7SJustin Bogner if (!isa<BinaryConditionalOperator>(E)) { 896e3654ce7SJustin Bogner extendRegion(E->getTrueExpr()); 897bf42cfd7SJustin Bogner propagateCounts(TrueCount, E->getTrueExpr()); 898e3654ce7SJustin Bogner } 899e3654ce7SJustin Bogner extendRegion(E->getFalseExpr()); 900bf42cfd7SJustin Bogner propagateCounts(subtractCounters(ParentCount, TrueCount), 901bf42cfd7SJustin Bogner E->getFalseExpr()); 902ee02499aSAlex Lorenz } 903ee02499aSAlex Lorenz 904ee02499aSAlex Lorenz void VisitBinLAnd(const BinaryOperator *E) { 905bf42cfd7SJustin Bogner extendRegion(E); 906ee02499aSAlex Lorenz Visit(E->getLHS()); 907bf42cfd7SJustin Bogner 908bf42cfd7SJustin Bogner extendRegion(E->getRHS()); 909bf42cfd7SJustin Bogner propagateCounts(getRegionCounter(E), E->getRHS()); 910ee02499aSAlex Lorenz } 911ee02499aSAlex Lorenz 912ee02499aSAlex Lorenz void VisitBinLOr(const BinaryOperator *E) { 913bf42cfd7SJustin Bogner extendRegion(E); 914ee02499aSAlex Lorenz Visit(E->getLHS()); 915ee02499aSAlex Lorenz 916bf42cfd7SJustin Bogner extendRegion(E->getRHS()); 917bf42cfd7SJustin Bogner propagateCounts(getRegionCounter(E), E->getRHS()); 91801a0d062SAlex Lorenz } 919c109102eSJustin Bogner 920c109102eSJustin Bogner void VisitLambdaExpr(const LambdaExpr *LE) { 921c109102eSJustin Bogner // Lambdas are treated as their own functions for now, so we shouldn't 922c109102eSJustin Bogner // propagate counts into them. 923c109102eSJustin Bogner } 924ee02499aSAlex Lorenz }; 925ab9db510SAlexander Kornienko } 926ee02499aSAlex Lorenz 927ee02499aSAlex Lorenz static bool isMachO(const CodeGenModule &CGM) { 928ee02499aSAlex Lorenz return CGM.getTarget().getTriple().isOSBinFormatMachO(); 929ee02499aSAlex Lorenz } 930ee02499aSAlex Lorenz 931ee02499aSAlex Lorenz static StringRef getCoverageSection(const CodeGenModule &CGM) { 93203711cbdSXinliang David Li return llvm::getInstrProfCoverageSectionName(isMachO(CGM)); 933ee02499aSAlex Lorenz } 934ee02499aSAlex Lorenz 935a432d176SJustin Bogner static void dump(llvm::raw_ostream &OS, StringRef FunctionName, 936a432d176SJustin Bogner ArrayRef<CounterExpression> Expressions, 937a432d176SJustin Bogner ArrayRef<CounterMappingRegion> Regions) { 938a432d176SJustin Bogner OS << FunctionName << ":\n"; 939a432d176SJustin Bogner CounterMappingContext Ctx(Expressions); 940a432d176SJustin Bogner for (const auto &R : Regions) { 941f2cf38e0SAlex Lorenz OS.indent(2); 942f2cf38e0SAlex Lorenz switch (R.Kind) { 943f2cf38e0SAlex Lorenz case CounterMappingRegion::CodeRegion: 944f2cf38e0SAlex Lorenz break; 945f2cf38e0SAlex Lorenz case CounterMappingRegion::ExpansionRegion: 946f2cf38e0SAlex Lorenz OS << "Expansion,"; 947f2cf38e0SAlex Lorenz break; 948f2cf38e0SAlex Lorenz case CounterMappingRegion::SkippedRegion: 949f2cf38e0SAlex Lorenz OS << "Skipped,"; 950f2cf38e0SAlex Lorenz break; 951f2cf38e0SAlex Lorenz } 952f2cf38e0SAlex Lorenz 9534da909b2SJustin Bogner OS << "File " << R.FileID << ", " << R.LineStart << ":" << R.ColumnStart 9544da909b2SJustin Bogner << " -> " << R.LineEnd << ":" << R.ColumnEnd << " = "; 955f69dc349SJustin Bogner Ctx.dump(R.Count, OS); 956f2cf38e0SAlex Lorenz if (R.Kind == CounterMappingRegion::ExpansionRegion) 9574da909b2SJustin Bogner OS << " (Expanded file = " << R.ExpandedFileID << ")"; 9584da909b2SJustin Bogner OS << "\n"; 959f2cf38e0SAlex Lorenz } 960f2cf38e0SAlex Lorenz } 961f2cf38e0SAlex Lorenz 962ee02499aSAlex Lorenz void CoverageMappingModuleGen::addFunctionMappingRecord( 9632129ae53SXinliang David Li llvm::GlobalVariable *NamePtr, StringRef NameValue, uint64_t FuncHash, 964848da137SXinliang David Li const std::string &CoverageMapping, bool IsUsed) { 965ee02499aSAlex Lorenz llvm::LLVMContext &Ctx = CGM.getLLVMContext(); 966ee02499aSAlex Lorenz if (!FunctionRecordTy) { 967a026a437SXinliang David Li #define COVMAP_FUNC_RECORD(Type, LLVMType, Name, Init) LLVMType, 968a026a437SXinliang David Li llvm::Type *FunctionRecordTypes[] = { 969a026a437SXinliang David Li #include "llvm/ProfileData/InstrProfData.inc" 970a026a437SXinliang David Li }; 971ee02499aSAlex Lorenz FunctionRecordTy = 9724dc5adc7SJustin Bogner llvm::StructType::get(Ctx, makeArrayRef(FunctionRecordTypes), 9734dc5adc7SJustin Bogner /*isPacked=*/true); 974ee02499aSAlex Lorenz } 975ee02499aSAlex Lorenz 976a026a437SXinliang David Li #define COVMAP_FUNC_RECORD(Type, LLVMType, Name, Init) Init, 977ee02499aSAlex Lorenz llvm::Constant *FunctionRecordVals[] = { 978a026a437SXinliang David Li #include "llvm/ProfileData/InstrProfData.inc" 979a026a437SXinliang David Li }; 980ee02499aSAlex Lorenz FunctionRecords.push_back(llvm::ConstantStruct::get( 981ee02499aSAlex Lorenz FunctionRecordTy, makeArrayRef(FunctionRecordVals))); 982848da137SXinliang David Li if (!IsUsed) 9832129ae53SXinliang David Li FunctionNames.push_back( 9842129ae53SXinliang David Li llvm::ConstantExpr::getBitCast(NamePtr, llvm::Type::getInt8PtrTy(Ctx))); 985ca3326c0SVedant Kumar CoverageMappings.push_back(CoverageMapping); 986f2cf38e0SAlex Lorenz 987f2cf38e0SAlex Lorenz if (CGM.getCodeGenOpts().DumpCoverageMapping) { 988f2cf38e0SAlex Lorenz // Dump the coverage mapping data for this function by decoding the 989f2cf38e0SAlex Lorenz // encoded data. This allows us to dump the mapping regions which were 990f2cf38e0SAlex Lorenz // also processed by the CoverageMappingWriter which performs 991f2cf38e0SAlex Lorenz // additional minimization operations such as reducing the number of 992f2cf38e0SAlex Lorenz // expressions. 993f2cf38e0SAlex Lorenz std::vector<StringRef> Filenames; 994f2cf38e0SAlex Lorenz std::vector<CounterExpression> Expressions; 995f2cf38e0SAlex Lorenz std::vector<CounterMappingRegion> Regions; 996f2cf38e0SAlex Lorenz llvm::SmallVector<StringRef, 16> FilenameRefs; 997f2cf38e0SAlex Lorenz FilenameRefs.resize(FileEntries.size()); 998f2cf38e0SAlex Lorenz for (const auto &Entry : FileEntries) 999f2cf38e0SAlex Lorenz FilenameRefs[Entry.second] = Entry.first->getName(); 1000a432d176SJustin Bogner RawCoverageMappingReader Reader(CoverageMapping, FilenameRefs, Filenames, 1001a432d176SJustin Bogner Expressions, Regions); 1002a432d176SJustin Bogner if (Reader.read()) 1003f2cf38e0SAlex Lorenz return; 1004a026a437SXinliang David Li dump(llvm::outs(), NameValue, Expressions, Regions); 1005f2cf38e0SAlex Lorenz } 1006ee02499aSAlex Lorenz } 1007ee02499aSAlex Lorenz 1008ee02499aSAlex Lorenz void CoverageMappingModuleGen::emit() { 1009ee02499aSAlex Lorenz if (FunctionRecords.empty()) 1010ee02499aSAlex Lorenz return; 1011ee02499aSAlex Lorenz llvm::LLVMContext &Ctx = CGM.getLLVMContext(); 1012ee02499aSAlex Lorenz auto *Int32Ty = llvm::Type::getInt32Ty(Ctx); 1013ee02499aSAlex Lorenz 1014ee02499aSAlex Lorenz // Create the filenames and merge them with coverage mappings 1015ee02499aSAlex Lorenz llvm::SmallVector<std::string, 16> FilenameStrs; 1016ee02499aSAlex Lorenz FilenameStrs.resize(FileEntries.size()); 1017ee02499aSAlex Lorenz for (const auto &Entry : FileEntries) { 1018ee02499aSAlex Lorenz llvm::SmallString<256> Path(Entry.first->getName()); 1019ee02499aSAlex Lorenz llvm::sys::fs::make_absolute(Path); 1020ee02499aSAlex Lorenz 1021ee02499aSAlex Lorenz auto I = Entry.second; 1022d1ffdda4SRichard Trieu FilenameStrs[I] = std::string(Path.begin(), Path.end()); 1023ee02499aSAlex Lorenz } 1024ee02499aSAlex Lorenz 1025aecc0267SVedant Kumar size_t FilenamesSize; 1026aecc0267SVedant Kumar size_t CoverageMappingSize; 1027aecc0267SVedant Kumar llvm::Expected<std::string> CoverageDataOrErr = encodeFilenamesAndRawMappings( 1028aecc0267SVedant Kumar FilenameStrs, CoverageMappings, FilenamesSize, CoverageMappingSize); 1029aecc0267SVedant Kumar if (llvm::Error E = CoverageDataOrErr.takeError()) { 1030aecc0267SVedant Kumar llvm::handleAllErrors(std::move(E), [](llvm::ErrorInfoBase &EI) { 1031aecc0267SVedant Kumar llvm::report_fatal_error(EI.message()); 1032aecc0267SVedant Kumar }); 1033ee02499aSAlex Lorenz } 1034aecc0267SVedant Kumar std::string CoverageData = std::move(CoverageDataOrErr.get()); 1035ee02499aSAlex Lorenz auto *FilenamesAndMappingsVal = 1036aecc0267SVedant Kumar llvm::ConstantDataArray::getString(Ctx, CoverageData, false); 1037ee02499aSAlex Lorenz 1038ee02499aSAlex Lorenz // Create the deferred function records array 1039ee02499aSAlex Lorenz auto RecordsTy = 1040ee02499aSAlex Lorenz llvm::ArrayType::get(FunctionRecordTy, FunctionRecords.size()); 1041ee02499aSAlex Lorenz auto RecordsVal = llvm::ConstantArray::get(RecordsTy, FunctionRecords); 1042ee02499aSAlex Lorenz 104320b188c0SXinliang David Li llvm::Type *CovDataHeaderTypes[] = { 104420b188c0SXinliang David Li #define COVMAP_HEADER(Type, LLVMType, Name, Init) LLVMType, 104520b188c0SXinliang David Li #include "llvm/ProfileData/InstrProfData.inc" 104620b188c0SXinliang David Li }; 104720b188c0SXinliang David Li auto CovDataHeaderTy = 104820b188c0SXinliang David Li llvm::StructType::get(Ctx, makeArrayRef(CovDataHeaderTypes)); 104920b188c0SXinliang David Li llvm::Constant *CovDataHeaderVals[] = { 105020b188c0SXinliang David Li #define COVMAP_HEADER(Type, LLVMType, Name, Init) Init, 105120b188c0SXinliang David Li #include "llvm/ProfileData/InstrProfData.inc" 105220b188c0SXinliang David Li }; 105320b188c0SXinliang David Li auto CovDataHeaderVal = llvm::ConstantStruct::get( 105420b188c0SXinliang David Li CovDataHeaderTy, makeArrayRef(CovDataHeaderVals)); 105520b188c0SXinliang David Li 1056ee02499aSAlex Lorenz // Create the coverage data record 105720b188c0SXinliang David Li llvm::Type *CovDataTypes[] = {CovDataHeaderTy, RecordsTy, 105820b188c0SXinliang David Li FilenamesAndMappingsVal->getType()}; 1059ee02499aSAlex Lorenz auto CovDataTy = llvm::StructType::get(Ctx, makeArrayRef(CovDataTypes)); 106020b188c0SXinliang David Li llvm::Constant *TUDataVals[] = {CovDataHeaderVal, RecordsVal, 106120b188c0SXinliang David Li FilenamesAndMappingsVal}; 1062ee02499aSAlex Lorenz auto CovDataVal = 1063ee02499aSAlex Lorenz llvm::ConstantStruct::get(CovDataTy, makeArrayRef(TUDataVals)); 106420b188c0SXinliang David Li auto CovData = new llvm::GlobalVariable( 106520b188c0SXinliang David Li CGM.getModule(), CovDataTy, true, llvm::GlobalValue::InternalLinkage, 106620b188c0SXinliang David Li CovDataVal, llvm::getCoverageMappingVarName()); 1067ee02499aSAlex Lorenz 1068ee02499aSAlex Lorenz CovData->setSection(getCoverageSection(CGM)); 1069ee02499aSAlex Lorenz CovData->setAlignment(8); 1070ee02499aSAlex Lorenz 1071ee02499aSAlex Lorenz // Make sure the data doesn't get deleted. 1072ee02499aSAlex Lorenz CGM.addUsedGlobal(CovData); 10732129ae53SXinliang David Li // Create the deferred function records array 10742129ae53SXinliang David Li if (!FunctionNames.empty()) { 10752129ae53SXinliang David Li auto NamesArrTy = llvm::ArrayType::get(llvm::Type::getInt8PtrTy(Ctx), 10762129ae53SXinliang David Li FunctionNames.size()); 10772129ae53SXinliang David Li auto NamesArrVal = llvm::ConstantArray::get(NamesArrTy, FunctionNames); 10782129ae53SXinliang David Li // This variable will *NOT* be emitted to the object file. It is used 10792129ae53SXinliang David Li // to pass the list of names referenced to codegen. 10802129ae53SXinliang David Li new llvm::GlobalVariable(CGM.getModule(), NamesArrTy, true, 10812129ae53SXinliang David Li llvm::GlobalValue::InternalLinkage, NamesArrVal, 10827077f0afSXinliang David Li llvm::getCoverageUnusedNamesVarName()); 10832129ae53SXinliang David Li } 1084ee02499aSAlex Lorenz } 1085ee02499aSAlex Lorenz 1086ee02499aSAlex Lorenz unsigned CoverageMappingModuleGen::getFileID(const FileEntry *File) { 1087ee02499aSAlex Lorenz auto It = FileEntries.find(File); 1088ee02499aSAlex Lorenz if (It != FileEntries.end()) 1089ee02499aSAlex Lorenz return It->second; 1090ee02499aSAlex Lorenz unsigned FileID = FileEntries.size(); 1091ee02499aSAlex Lorenz FileEntries.insert(std::make_pair(File, FileID)); 1092ee02499aSAlex Lorenz return FileID; 1093ee02499aSAlex Lorenz } 1094ee02499aSAlex Lorenz 1095ee02499aSAlex Lorenz void CoverageMappingGen::emitCounterMapping(const Decl *D, 1096ee02499aSAlex Lorenz llvm::raw_ostream &OS) { 1097ee02499aSAlex Lorenz assert(CounterMap); 1098e5ee6c58SJustin Bogner CounterCoverageMappingBuilder Walker(CVM, *CounterMap, SM, LangOpts); 1099ee02499aSAlex Lorenz Walker.VisitDecl(D); 1100ee02499aSAlex Lorenz Walker.write(OS); 1101ee02499aSAlex Lorenz } 1102ee02499aSAlex Lorenz 1103ee02499aSAlex Lorenz void CoverageMappingGen::emitEmptyMapping(const Decl *D, 1104ee02499aSAlex Lorenz llvm::raw_ostream &OS) { 1105ee02499aSAlex Lorenz EmptyCoverageMappingBuilder Walker(CVM, SM, LangOpts); 1106ee02499aSAlex Lorenz Walker.VisitDecl(D); 1107ee02499aSAlex Lorenz Walker.write(OS); 1108ee02499aSAlex Lorenz } 1109