1 //===- GraphPrinters.cpp - DOT printers for various graph types -----------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines several printers for various different types of graphs used
11 // by the LLVM infrastructure. It uses the generic graph interface to convert
12 // the graph into a .dot graph. These graphs can then be processed with the
13 // "dot" tool to convert them to postscript or some other suitable format.
15 //===----------------------------------------------------------------------===//
17 #include "llvm/IR/Dominators.h"
18 #include "llvm/Pass.h"
22 //===----------------------------------------------------------------------===//
23 // DomInfoPrinter Pass
24 //===----------------------------------------------------------------------===//
27 class DomInfoPrinter
: public FunctionPass
{
29 static char ID
; // Pass identification, replacement for typeid
30 DomInfoPrinter() : FunctionPass(ID
) {}
32 void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
34 AU
.addRequired
<DominatorTreeWrapperPass
>();
37 bool runOnFunction(Function
&F
) override
{
38 getAnalysis
<DominatorTreeWrapperPass
>().print(dbgs());
44 char DomInfoPrinter::ID
= 0;
45 static RegisterPass
<DomInfoPrinter
>
46 DIP("print-dom-info", "Dominator Info Printer", true, true);