1//===- Transforms/Instrumentation/CGProfile.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 LLVM's Call Graph Profile pass.
10//===----------------------------------------------------------------------===//
11
12#ifndef LLVM_TRANSFORMS_INSTRUMENTATION_CGPROFILE_H
13#define LLVM_TRANSFORMS_INSTRUMENTATION_CGPROFILE_H
14
15#include "llvm/IR/PassManager.h"
16
17namespace llvm {
18class Module;
19class CGProfilePass : public PassInfoMixin<CGProfilePass> {
20public:
21 CGProfilePass(bool InLTO) : InLTO(InLTO) {}
22 PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM);
23
24private:
25 bool InLTO = false;
26};
27} // end namespace llvm
28
29#endif // LLVM_TRANSFORMS_INSTRUMENTATION_CGPROFILE_H
30

source code of llvm/include/llvm/Transforms/Instrumentation/CGProfile.h