[UpdateCCTestChecks] Detect function mangled name on separate line
[llvm-core.git] / tools / opt / PassPrinters.h
blobd4e7a4a97f31fe31730765cb317dcf9f82d05232
1 //=- PassPrinters.h - Utilities to print analysis info for passes -*- 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 ///
9 /// \file
10 /// Utilities to print analysis info for various kinds of passes.
11 ///
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_TOOLS_OPT_PASSPRINTERS_H
15 #define LLVM_TOOLS_OPT_PASSPRINTERS_H
17 #include "llvm/IR/PassManager.h"
19 namespace llvm {
21 class BasicBlockPass;
22 class CallGraphSCCPass;
23 class FunctionPass;
24 class ModulePass;
25 class LoopPass;
26 class PassInfo;
27 class raw_ostream;
28 class RegionPass;
29 class Module;
31 FunctionPass *createFunctionPassPrinter(const PassInfo *PI, raw_ostream &out,
32 bool Quiet);
34 CallGraphSCCPass *createCallGraphPassPrinter(const PassInfo *PI,
35 raw_ostream &out, bool Quiet);
37 ModulePass *createModulePassPrinter(const PassInfo *PI, raw_ostream &out,
38 bool Quiet);
40 LoopPass *createLoopPassPrinter(const PassInfo *PI, raw_ostream &out,
41 bool Quiet);
43 RegionPass *createRegionPassPrinter(const PassInfo *PI, raw_ostream &out,
44 bool Quiet);
46 BasicBlockPass *createBasicBlockPassPrinter(const PassInfo *PI,
47 raw_ostream &out, bool Quiet);
49 } // end namespace llvm
51 #endif // LLVM_TOOLS_OPT_PASSPRINTERS_H