//===- DomPrinter.cpp - DOT printer for the dominance trees ------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines '-dot-dom' and '-dot-postdom' analysis passes, which emit // a dom..dot or postdom..dot file for each function in the // program, with a graph of the dominance/postdominance tree of that // function. // // There are also passes available to directly call dotty ('-view-dom' or // '-view-postdom'). By appending '-only' like '-dot-dom-only' only the // names of the bbs are printed, but the content is hidden. // //===----------------------------------------------------------------------===// #include "llvm/Analysis/DomPrinter.h" #include "llvm/Analysis/Dominators.h" #include "llvm/Analysis/DOTGraphTraitsPass.h" #include "llvm/Analysis/PostDominators.h" using namespace llvm; namespace llvm { template<> struct DOTGraphTraits : public DefaultDOTGraphTraits { DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {} std::string getNodeLabel(DomTreeNode *Node, DomTreeNode *Graph) { BasicBlock *BB = Node->getBlock(); if (!BB) return "Post dominance root node"; if (isSimple()) return DOTGraphTraits ::getSimpleNodeLabel(BB, BB->getParent()); else return DOTGraphTraits ::getCompleteNodeLabel(BB, BB->getParent()); } }; template<> struct DOTGraphTraits : public DOTGraphTraits { DOTGraphTraits (bool isSimple=false) : DOTGraphTraits(isSimple) {} static std::string getGraphName(DominatorTree *DT) { return "Dominator tree"; } std::string getNodeLabel(DomTreeNode *Node, DominatorTree *G) { return DOTGraphTraits::getNodeLabel(Node, G->getRootNode()); } }; template<> struct DOTGraphTraits : public DOTGraphTraits { DOTGraphTraits (bool isSimple=false) : DOTGraphTraits(isSimple) {} static std::string getGraphName(PostDominatorTree *DT) { return "Post dominator tree"; } std::string getNodeLabel(DomTreeNode *Node, PostDominatorTree *G ) { return DOTGraphTraits::getNodeLabel(Node, G->getRootNode()); } }; } namespace { template struct GenericGraphViewer : public FunctionPass { std::string Name; GenericGraphViewer(std::string GraphName, const void *ID) : FunctionPass(ID) { Name = GraphName; } virtual bool runOnFunction(Function &F) { Analysis *Graph; std::string Title, GraphName; Graph = &getAnalysis(); GraphName = DOTGraphTraits::getGraphName(Graph); Title = GraphName + " for '" + F.getNameStr() + "' function"; ViewGraph(Graph, Name, OnlyBBS, Title); return false; } virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); AU.addRequired(); } }; struct DomViewer : public DOTGraphTraitsViewer { static char ID; DomViewer() : DOTGraphTraitsViewer("dom", &ID){} }; struct DomOnlyViewer : public DOTGraphTraitsViewer { static char ID; DomOnlyViewer() : DOTGraphTraitsViewer("domonly", &ID){} }; struct PostDomViewer : public DOTGraphTraitsViewer { static char ID; PostDomViewer() : DOTGraphTraitsViewer("postdom", &ID){} }; struct PostDomOnlyViewer : public DOTGraphTraitsViewer { static char ID; PostDomOnlyViewer() : DOTGraphTraitsViewer("postdomonly", &ID){} }; } // end anonymous namespace char DomViewer::ID = 0; RegisterPass A("view-dom", "View dominance tree of function"); char DomOnlyViewer::ID = 0; RegisterPass B("view-dom-only", "View dominance tree of function " "(with no function bodies)"); char PostDomViewer::ID = 0; RegisterPass C("view-postdom", "View postdominance tree of function"); char PostDomOnlyViewer::ID = 0; RegisterPass D("view-postdom-only", "View postdominance tree of function " "(with no function bodies)"); namespace { struct DomPrinter : public DOTGraphTraitsPrinter { static char ID; DomPrinter() : DOTGraphTraitsPrinter("dom", &ID) {} }; struct DomOnlyPrinter : public DOTGraphTraitsPrinter { static char ID; DomOnlyPrinter() : DOTGraphTraitsPrinter("domonly", &ID) {} }; struct PostDomPrinter : public DOTGraphTraitsPrinter { static char ID; PostDomPrinter() : DOTGraphTraitsPrinter("postdom", &ID) {} }; struct PostDomOnlyPrinter : public DOTGraphTraitsPrinter { static char ID; PostDomOnlyPrinter() : DOTGraphTraitsPrinter("postdomonly", &ID) {} }; } // end anonymous namespace char DomPrinter::ID = 0; RegisterPass E("dot-dom", "Print dominance tree of function " "to 'dot' file"); char DomOnlyPrinter::ID = 0; RegisterPass F("dot-dom-only", "Print dominance tree of function " "to 'dot' file " "(with no function bodies)"); char PostDomPrinter::ID = 0; RegisterPass G("dot-postdom", "Print postdominance tree of function " "to 'dot' file"); char PostDomOnlyPrinter::ID = 0; RegisterPass H("dot-postdom-only", "Print postdominance tree of function " "to 'dot' file " "(with no function bodies)"); // Create methods available outside of this file, to use them // "include/llvm/LinkAllPasses.h". Otherwise the pass would be deleted by // the link time optimization. FunctionPass *llvm::createDomPrinterPass() { return new DomPrinter(); } FunctionPass *llvm::createDomOnlyPrinterPass() { return new DomOnlyPrinter(); } FunctionPass *llvm::createDomViewerPass() { return new DomViewer(); } FunctionPass *llvm::createDomOnlyViewerPass() { return new DomOnlyViewer(); } FunctionPass *llvm::createPostDomPrinterPass() { return new PostDomPrinter(); } FunctionPass *llvm::createPostDomOnlyPrinterPass() { return new PostDomOnlyPrinter(); } FunctionPass *llvm::createPostDomViewerPass() { return new PostDomViewer(); } FunctionPass *llvm::createPostDomOnlyViewerPass() { return new PostDomOnlyViewer(); }