]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / lib / CodeGen / CoverageMappingGen.h
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
14 #ifndef LLVM_CLANG_LIB_CODEGEN_COVERAGEMAPPINGGEN_H
15 #define LLVM_CLANG_LIB_CODEGEN_COVERAGEMAPPINGGEN_H
16
17 #include "clang/Basic/LLVM.h"
18 #include "clang/Basic/SourceLocation.h"
19 #include "clang/Lex/PPCallbacks.h"
20 #include "llvm/ADT/DenseMap.h"
21 #include "llvm/IR/GlobalValue.h"
22 #include "llvm/Support/raw_ostream.h"
23
24 namespace clang {
25
26 class LangOptions;
27 class SourceManager;
28 class FileEntry;
29 class Preprocessor;
30 class Decl;
31 class Stmt;
32
33 /// Stores additional source code information like skipped ranges which
34 /// is required by the coverage mapping generator and is obtained from
35 /// the preprocessor.
36 class CoverageSourceInfo : public PPCallbacks {
37   std::vector<SourceRange> SkippedRanges;
38 public:
39   ArrayRef<SourceRange> getSkippedRanges() const { return SkippedRanges; }
40
41   void SourceRangeSkipped(SourceRange Range, SourceLocation EndifLoc) override;
42 };
43
44 namespace CodeGen {
45
46 class CodeGenModule;
47
48 /// Organizes the cross-function state that is used while generating
49 /// code coverage mapping data.
50 class CoverageMappingModuleGen {
51   CodeGenModule &CGM;
52   CoverageSourceInfo &SourceInfo;
53   llvm::SmallDenseMap<const FileEntry *, unsigned, 8> FileEntries;
54   std::vector<llvm::Constant *> FunctionRecords;
55   std::vector<llvm::Constant *> FunctionNames;
56   llvm::StructType *FunctionRecordTy;
57   std::vector<std::string> CoverageMappings;
58
59 public:
60   CoverageMappingModuleGen(CodeGenModule &CGM, CoverageSourceInfo &SourceInfo)
61       : CGM(CGM), SourceInfo(SourceInfo), FunctionRecordTy(nullptr) {}
62
63   CoverageSourceInfo &getSourceInfo() const {
64     return SourceInfo;
65   }
66
67   /// Add a function's coverage mapping record to the collection of the
68   /// function mapping records.
69   void addFunctionMappingRecord(llvm::GlobalVariable *FunctionName,
70                                 StringRef FunctionNameValue,
71                                 uint64_t FunctionHash,
72                                 const std::string &CoverageMapping,
73                                 bool IsUsed = true);
74
75   /// Emit the coverage mapping data for a translation unit.
76   void emit();
77
78   /// Return the coverage mapping translation unit file id
79   /// for the given file.
80   unsigned getFileID(const FileEntry *File);
81 };
82
83 /// Organizes the per-function state that is used while generating
84 /// code coverage mapping data.
85 class CoverageMappingGen {
86   CoverageMappingModuleGen &CVM;
87   SourceManager &SM;
88   const LangOptions &LangOpts;
89   llvm::DenseMap<const Stmt *, unsigned> *CounterMap;
90
91 public:
92   CoverageMappingGen(CoverageMappingModuleGen &CVM, SourceManager &SM,
93                      const LangOptions &LangOpts)
94       : CVM(CVM), SM(SM), LangOpts(LangOpts), CounterMap(nullptr) {}
95
96   CoverageMappingGen(CoverageMappingModuleGen &CVM, SourceManager &SM,
97                      const LangOptions &LangOpts,
98                      llvm::DenseMap<const Stmt *, unsigned> *CounterMap)
99       : CVM(CVM), SM(SM), LangOpts(LangOpts), CounterMap(CounterMap) {}
100
101   /// Emit the coverage mapping data which maps the regions of
102   /// code to counters that will be used to find the execution
103   /// counts for those regions.
104   void emitCounterMapping(const Decl *D, llvm::raw_ostream &OS);
105
106   /// Emit the coverage mapping data for an unused function.
107   /// It creates mapping regions with the counter of zero.
108   void emitEmptyMapping(const Decl *D, llvm::raw_ostream &OS);
109 };
110
111 } // end namespace CodeGen
112 } // end namespace clang
113
114 #endif