[yaml2obj/obj2yaml] - Add support for .stack_sizes sections.
[llvm-complete.git] / include / llvm / Transforms / Instrumentation / CGProfile.h
blob28fd3804dec91b4e837f361f79ed7792385e2f6b
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 //===----------------------------------------------------------------------===//
12 #ifndef LLVM_TRANSFORMS_CGPROFILE_H
13 #define LLVM_TRANSFORMS_CGPROFILE_H
15 #include "llvm/ADT/MapVector.h"
16 #include "llvm/IR/PassManager.h"
18 namespace llvm {
19 class CGProfilePass : public PassInfoMixin<CGProfilePass> {
20 public:
21 PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM);
23 private:
24 void addModuleFlags(
25 Module &M,
26 MapVector<std::pair<Function *, Function *>, uint64_t> &Counts) const;
28 } // end namespace llvm
30 #endif // LLVM_TRANSFORMS_CGPROFILE_H