| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 1 | //===---- CoverageMappingGen.h - Coverage mapping generation ----*- C++ -*-===// | 
|  | 2 | // | 
| Chandler Carruth | 2946cd7 | 2019-01-19 08:50:56 +0000 | [diff] [blame] | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | 
|  | 4 | // See https://llvm.org/LICENSE.txt for license information. | 
|  | 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 6 | // | 
|  | 7 | //===----------------------------------------------------------------------===// | 
|  | 8 | // | 
|  | 9 | // Instrumentation-based code coverage mapping generator | 
|  | 10 | // | 
|  | 11 | //===----------------------------------------------------------------------===// | 
|  | 12 |  | 
| Benjamin Kramer | 2f5db8b | 2014-08-13 16:25:19 +0000 | [diff] [blame] | 13 | #ifndef LLVM_CLANG_LIB_CODEGEN_COVERAGEMAPPINGGEN_H | 
|  | 14 | #define LLVM_CLANG_LIB_CODEGEN_COVERAGEMAPPINGGEN_H | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 15 |  | 
|  | 16 | #include "clang/Basic/LLVM.h" | 
|  | 17 | #include "clang/Basic/SourceLocation.h" | 
| Chandler Carruth | 0d9593d | 2015-01-14 11:29:14 +0000 | [diff] [blame] | 18 | #include "clang/Lex/PPCallbacks.h" | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/DenseMap.h" | 
|  | 20 | #include "llvm/IR/GlobalValue.h" | 
|  | 21 | #include "llvm/Support/raw_ostream.h" | 
|  | 22 |  | 
|  | 23 | namespace clang { | 
|  | 24 |  | 
|  | 25 | class LangOptions; | 
|  | 26 | class SourceManager; | 
|  | 27 | class FileEntry; | 
|  | 28 | class Preprocessor; | 
|  | 29 | class Decl; | 
|  | 30 | class Stmt; | 
|  | 31 |  | 
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 32 | /// Stores additional source code information like skipped ranges which | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 33 | /// is required by the coverage mapping generator and is obtained from | 
|  | 34 | /// the preprocessor. | 
|  | 35 | class CoverageSourceInfo : public PPCallbacks { | 
|  | 36 | std::vector<SourceRange> SkippedRanges; | 
|  | 37 | public: | 
|  | 38 | ArrayRef<SourceRange> getSkippedRanges() const { return SkippedRanges; } | 
|  | 39 |  | 
| Vedant Kumar | 3919a50 | 2017-09-11 20:47:42 +0000 | [diff] [blame] | 40 | void SourceRangeSkipped(SourceRange Range, SourceLocation EndifLoc) override; | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 41 | }; | 
|  | 42 |  | 
|  | 43 | namespace CodeGen { | 
|  | 44 |  | 
|  | 45 | class CodeGenModule; | 
|  | 46 |  | 
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 47 | /// Organizes the cross-function state that is used while generating | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 48 | /// code coverage mapping data. | 
|  | 49 | class CoverageMappingModuleGen { | 
|  | 50 | CodeGenModule &CGM; | 
|  | 51 | CoverageSourceInfo &SourceInfo; | 
|  | 52 | llvm::SmallDenseMap<const FileEntry *, unsigned, 8> FileEntries; | 
|  | 53 | std::vector<llvm::Constant *> FunctionRecords; | 
| Xinliang David Li | 2129ae5 | 2016-01-07 20:05:55 +0000 | [diff] [blame] | 54 | std::vector<llvm::Constant *> FunctionNames; | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 55 | llvm::StructType *FunctionRecordTy; | 
| Vedant Kumar | ca3326c | 2016-01-21 19:25:35 +0000 | [diff] [blame] | 56 | std::vector<std::string> CoverageMappings; | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 57 |  | 
|  | 58 | public: | 
|  | 59 | CoverageMappingModuleGen(CodeGenModule &CGM, CoverageSourceInfo &SourceInfo) | 
|  | 60 | : CGM(CGM), SourceInfo(SourceInfo), FunctionRecordTy(nullptr) {} | 
|  | 61 |  | 
|  | 62 | CoverageSourceInfo &getSourceInfo() const { | 
|  | 63 | return SourceInfo; | 
|  | 64 | } | 
|  | 65 |  | 
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 66 | /// Add a function's coverage mapping record to the collection of the | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 67 | /// function mapping records. | 
|  | 68 | void addFunctionMappingRecord(llvm::GlobalVariable *FunctionName, | 
| Alex Lorenz | f2cf38e | 2014-08-08 23:41:24 +0000 | [diff] [blame] | 69 | StringRef FunctionNameValue, | 
| Alex Lorenz | 1d45c5b | 2014-08-21 19:25:27 +0000 | [diff] [blame] | 70 | uint64_t FunctionHash, | 
| Xinliang David Li | 2129ae5 | 2016-01-07 20:05:55 +0000 | [diff] [blame] | 71 | const std::string &CoverageMapping, | 
| Xinliang David Li | 848da13 | 2016-01-19 00:49:06 +0000 | [diff] [blame] | 72 | bool IsUsed = true); | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 73 |  | 
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 74 | /// Emit the coverage mapping data for a translation unit. | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 75 | void emit(); | 
|  | 76 |  | 
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 77 | /// Return the coverage mapping translation unit file id | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 78 | /// for the given file. | 
|  | 79 | unsigned getFileID(const FileEntry *File); | 
|  | 80 | }; | 
|  | 81 |  | 
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 82 | /// Organizes the per-function state that is used while generating | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 83 | /// code coverage mapping data. | 
|  | 84 | class CoverageMappingGen { | 
|  | 85 | CoverageMappingModuleGen &CVM; | 
|  | 86 | SourceManager &SM; | 
|  | 87 | const LangOptions &LangOpts; | 
|  | 88 | llvm::DenseMap<const Stmt *, unsigned> *CounterMap; | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 89 |  | 
|  | 90 | public: | 
|  | 91 | CoverageMappingGen(CoverageMappingModuleGen &CVM, SourceManager &SM, | 
|  | 92 | const LangOptions &LangOpts) | 
| Justin Bogner | e5ee6c5 | 2014-10-02 16:44:01 +0000 | [diff] [blame] | 93 | : CVM(CVM), SM(SM), LangOpts(LangOpts), CounterMap(nullptr) {} | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 94 |  | 
|  | 95 | CoverageMappingGen(CoverageMappingModuleGen &CVM, SourceManager &SM, | 
|  | 96 | const LangOptions &LangOpts, | 
| Justin Bogner | e5ee6c5 | 2014-10-02 16:44:01 +0000 | [diff] [blame] | 97 | llvm::DenseMap<const Stmt *, unsigned> *CounterMap) | 
|  | 98 | : CVM(CVM), SM(SM), LangOpts(LangOpts), CounterMap(CounterMap) {} | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 99 |  | 
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 100 | /// Emit the coverage mapping data which maps the regions of | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 101 | /// code to counters that will be used to find the execution | 
|  | 102 | /// counts for those regions. | 
|  | 103 | void emitCounterMapping(const Decl *D, llvm::raw_ostream &OS); | 
|  | 104 |  | 
| Adrian Prantl | 9fc8faf | 2018-05-09 01:00:01 +0000 | [diff] [blame] | 105 | /// Emit the coverage mapping data for an unused function. | 
| Alex Lorenz | ee02499 | 2014-08-04 18:41:51 +0000 | [diff] [blame] | 106 | /// It creates mapping regions with the counter of zero. | 
|  | 107 | void emitEmptyMapping(const Decl *D, llvm::raw_ostream &OS); | 
|  | 108 | }; | 
|  | 109 |  | 
|  | 110 | } // end namespace CodeGen | 
|  | 111 | } // end namespace clang | 
|  | 112 |  | 
|  | 113 | #endif |