blob: c202fe899343bdd0b12dbf282f42a44d4482d59e [file] [log] [blame]
Alex Lorenzee024992014-08-04 18:41:51 +00001//===---- 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 Kramer2f5db8b2014-08-13 16:25:19 +000014#ifndef LLVM_CLANG_LIB_CODEGEN_COVERAGEMAPPINGGEN_H
15#define LLVM_CLANG_LIB_CODEGEN_COVERAGEMAPPINGGEN_H
Alex Lorenzee024992014-08-04 18:41:51 +000016
17#include "clang/Basic/LLVM.h"
18#include "clang/Basic/SourceLocation.h"
Saleem Abdulrasool10a49722016-04-08 16:52:00 +000019#include "clang/Frontend/CodeGenOptions.h"
Chandler Carruth0d9593d2015-01-14 11:29:14 +000020#include "clang/Lex/PPCallbacks.h"
Alex Lorenzee024992014-08-04 18:41:51 +000021#include "llvm/ADT/DenseMap.h"
Chandler Carruth0d9593d2015-01-14 11:29:14 +000022#include "llvm/ADT/StringMap.h"
Alex Lorenzee024992014-08-04 18:41:51 +000023#include "llvm/IR/GlobalValue.h"
24#include "llvm/Support/raw_ostream.h"
25
26namespace clang {
27
28class LangOptions;
29class SourceManager;
30class FileEntry;
31class Preprocessor;
32class Decl;
33class Stmt;
34
35/// \brief Stores additional source code information like skipped ranges which
36/// is required by the coverage mapping generator and is obtained from
37/// the preprocessor.
38class CoverageSourceInfo : public PPCallbacks {
39 std::vector<SourceRange> SkippedRanges;
40public:
41 ArrayRef<SourceRange> getSkippedRanges() const { return SkippedRanges; }
42
43 void SourceRangeSkipped(SourceRange Range) override;
44};
45
46namespace CodeGen {
47
48class CodeGenModule;
49
50/// \brief Organizes the cross-function state that is used while generating
51/// code coverage mapping data.
52class CoverageMappingModuleGen {
53 CodeGenModule &CGM;
54 CoverageSourceInfo &SourceInfo;
55 llvm::SmallDenseMap<const FileEntry *, unsigned, 8> FileEntries;
56 std::vector<llvm::Constant *> FunctionRecords;
Xinliang David Li2129ae52016-01-07 20:05:55 +000057 std::vector<llvm::Constant *> FunctionNames;
Alex Lorenzee024992014-08-04 18:41:51 +000058 llvm::StructType *FunctionRecordTy;
Vedant Kumarca3326c2016-01-21 19:25:35 +000059 std::vector<std::string> CoverageMappings;
Alex Lorenzee024992014-08-04 18:41:51 +000060
61public:
62 CoverageMappingModuleGen(CodeGenModule &CGM, CoverageSourceInfo &SourceInfo)
63 : CGM(CGM), SourceInfo(SourceInfo), FunctionRecordTy(nullptr) {}
64
65 CoverageSourceInfo &getSourceInfo() const {
66 return SourceInfo;
67 }
68
69 /// \brief Add a function's coverage mapping record to the collection of the
70 /// function mapping records.
71 void addFunctionMappingRecord(llvm::GlobalVariable *FunctionName,
Alex Lorenzf2cf38e2014-08-08 23:41:24 +000072 StringRef FunctionNameValue,
Alex Lorenz1d45c5b2014-08-21 19:25:27 +000073 uint64_t FunctionHash,
Xinliang David Li2129ae52016-01-07 20:05:55 +000074 const std::string &CoverageMapping,
Xinliang David Li848da132016-01-19 00:49:06 +000075 bool IsUsed = true);
Alex Lorenzee024992014-08-04 18:41:51 +000076
77 /// \brief Emit the coverage mapping data for a translation unit.
78 void emit();
79
80 /// \brief Return the coverage mapping translation unit file id
81 /// for the given file.
82 unsigned getFileID(const FileEntry *File);
83};
84
85/// \brief Organizes the per-function state that is used while generating
86/// code coverage mapping data.
87class CoverageMappingGen {
88 CoverageMappingModuleGen &CVM;
89 SourceManager &SM;
90 const LangOptions &LangOpts;
91 llvm::DenseMap<const Stmt *, unsigned> *CounterMap;
Alex Lorenzee024992014-08-04 18:41:51 +000092
93public:
94 CoverageMappingGen(CoverageMappingModuleGen &CVM, SourceManager &SM,
95 const LangOptions &LangOpts)
Justin Bognere5ee6c52014-10-02 16:44:01 +000096 : CVM(CVM), SM(SM), LangOpts(LangOpts), CounterMap(nullptr) {}
Alex Lorenzee024992014-08-04 18:41:51 +000097
98 CoverageMappingGen(CoverageMappingModuleGen &CVM, SourceManager &SM,
99 const LangOptions &LangOpts,
Justin Bognere5ee6c52014-10-02 16:44:01 +0000100 llvm::DenseMap<const Stmt *, unsigned> *CounterMap)
101 : CVM(CVM), SM(SM), LangOpts(LangOpts), CounterMap(CounterMap) {}
Alex Lorenzee024992014-08-04 18:41:51 +0000102
103 /// \brief Emit the coverage mapping data which maps the regions of
104 /// code to counters that will be used to find the execution
105 /// counts for those regions.
106 void emitCounterMapping(const Decl *D, llvm::raw_ostream &OS);
107
108 /// \brief Emit the coverage mapping data for an unused function.
109 /// It creates mapping regions with the counter of zero.
110 void emitEmptyMapping(const Decl *D, llvm::raw_ostream &OS);
111};
112
113} // end namespace CodeGen
114} // end namespace clang
115
116#endif