blob: 51d514b20aaacf6e21f12588fc5fdd8af5ba7cf2 [file] [log] [blame]
Ted Kremenek80de08f2007-09-19 21:29:43 +00001//===--- StmtViz.cpp - Graphviz visualization for Stmt ASTs -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Ted Kremenek80de08f2007-09-19 21:29:43 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements Stmt::viewAST, which generates a Graphviz DOT file
11// that depicts the AST and then calls Graphviz/dot+gv on it.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/AST/StmtGraphTraits.h"
16#include "llvm/Support/GraphWriter.h"
Ted Kremenek80de08f2007-09-19 21:29:43 +000017#include <sstream>
18
19using namespace clang;
20
21void Stmt::viewAST() const {
22#ifndef NDEBUG
23 llvm::ViewGraph(this,"AST");
24#else
Ted Kremenekbdd30c22008-01-14 16:44:48 +000025 llvm::cerr << "Stmt::viewAST is only available in debug builds on "
Ted Kremenek80de08f2007-09-19 21:29:43 +000026 << "systems with Graphviz or gv!\n";
27#endif
28}
29
30namespace llvm {
31template<>
32struct DOTGraphTraits<const Stmt*> : public DefaultDOTGraphTraits {
33 static std::string getNodeLabel(const Stmt* Node, const Stmt* Graph) {
34
35#ifndef NDEBUG
36 std::ostringstream Out;
37
38 if (Node)
39 Out << Node->getStmtClassName();
40 else
41 Out << "<NULL>";
42
43 std::string OutStr = Out.str();
44 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
45
46 // Process string output to make it nicer...
47 for (unsigned i = 0; i != OutStr.length(); ++i)
48 if (OutStr[i] == '\n') { // Left justify
49 OutStr[i] = '\\';
50 OutStr.insert(OutStr.begin()+i+1, 'l');
51 }
52
53 return OutStr;
54#else
55 return "";
56#endif
57 }
58};
59} // end namespace llvm