Coverage Report

Created: 2019-07-24 05:18

/Users/buildslave/jenkins/workspace/clang-stage2-coverage-R/llvm/include/llvm/Transforms/Instrumentation/GCOVProfiler.h
Line
Count
Source
1
//===- Transforms/Instrumentation/GCOVProfiler.h ----------------*- C++ -*-===//
2
//
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
6
//
7
//===----------------------------------------------------------------------===//
8
/// \file
9
/// This file provides the interface for the GCOV style profiler  pass.
10
//===----------------------------------------------------------------------===//
11
12
#ifndef LLVM_TRANSFORMS_GCOVPROFILER_H
13
#define LLVM_TRANSFORMS_GCOVPROFILER_H
14
15
#include "llvm/IR/PassManager.h"
16
#include "llvm/Transforms/Instrumentation.h"
17
18
namespace llvm {
19
/// The gcov-style instrumentation pass
20
class GCOVProfilerPass : public PassInfoMixin<GCOVProfilerPass> {
21
public:
22
11
  GCOVProfilerPass(const GCOVOptions &Options = GCOVOptions::getDefault()) : GCOVOpts(Options) { }
23
  PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM);
24
25
private:
26
  GCOVOptions GCOVOpts;
27
};
28
29
} // End llvm namespace
30
#endif