1 //=- PassPrinters.h - Utilities to print analysis info for passes -*- C++ -*-=//
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
7 //===----------------------------------------------------------------------===//
10 /// Utilities to print analysis info for various kinds of passes.
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_TOOLS_OPT_PASSPRINTERS_H
15 #define LLVM_TOOLS_OPT_PASSPRINTERS_H
19 class CallGraphSCCPass
;
27 FunctionPass
*createFunctionPassPrinter(const PassInfo
*PI
, raw_ostream
&out
);
29 CallGraphSCCPass
*createCallGraphPassPrinter(const PassInfo
*PI
,
32 ModulePass
*createModulePassPrinter(const PassInfo
*PI
, raw_ostream
&out
);
34 LoopPass
*createLoopPassPrinter(const PassInfo
*PI
, raw_ostream
&out
);
36 RegionPass
*createRegionPassPrinter(const PassInfo
*PI
, raw_ostream
&out
);
38 } // end namespace llvm
40 #endif // LLVM_TOOLS_OPT_PASSPRINTERS_H