1 //===- Transforms/Instrumentation/GCOVProfiler.h ----------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 /// This file provides the interface for the GCOV style profiler pass.
10 //===----------------------------------------------------------------------===//
12 #ifndef LLVM_TRANSFORMS_GCOVPROFILER_H
13 #define LLVM_TRANSFORMS_GCOVPROFILER_H
15 #include "llvm/IR/PassManager.h"
16 #include "llvm/Transforms/Instrumentation.h"
19 /// The gcov-style instrumentation pass
20 class GCOVProfilerPass
: public PassInfoMixin
<GCOVProfilerPass
> {
22 GCOVProfilerPass(const GCOVOptions
&Options
= GCOVOptions::getDefault()) : GCOVOpts(Options
) { }
23 PreservedAnalyses
run(Module
&M
, ModuleAnalysisManager
&AM
);
29 } // End llvm namespace