[InstCombine] Signed saturation patterns
[llvm-core.git] / include / llvm / Transforms / Instrumentation / GCOVProfiler.h
blobb3971e49754ea774b29b16e5f8b894e7a2b9447c
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 //===----------------------------------------------------------------------===//
12 #ifndef LLVM_TRANSFORMS_GCOVPROFILER_H
13 #define LLVM_TRANSFORMS_GCOVPROFILER_H
15 #include "llvm/IR/PassManager.h"
16 #include "llvm/Transforms/Instrumentation.h"
18 namespace llvm {
19 /// The gcov-style instrumentation pass
20 class GCOVProfilerPass : public PassInfoMixin<GCOVProfilerPass> {
21 public:
22 GCOVProfilerPass(const GCOVOptions &Options = GCOVOptions::getDefault()) : GCOVOpts(Options) { }
23 PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM);
25 private:
26 GCOVOptions GCOVOpts;
29 } // End llvm namespace
30 #endif