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: GCOVOpts(Options)22 GCOVProfilerPass(const GCOVOptions &Options = GCOVOptions::getDefault()) : GCOVOpts(Options) { } 23 PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM); 24 25 private: 26 GCOVOptions GCOVOpts; 27 }; 28 29 } // namespace llvm 30 #endif 31