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