blob: 1316d3551d91aa45e30a8e7aaf2977e2b2d7f5d5 [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"
Ted Kremenek8ffb1592008-10-07 23:09:49 +000016#include "clang/AST/Decl.h"
Ted Kremenek80de08f2007-09-19 21:29:43 +000017#include "llvm/Support/GraphWriter.h"
Ted Kremenek80de08f2007-09-19 21:29:43 +000018#include <sstream>
19
20using namespace clang;
21
22void Stmt::viewAST() const {
23#ifndef NDEBUG
24 llvm::ViewGraph(this,"AST");
25#else
Ted Kremenekbdd30c22008-01-14 16:44:48 +000026 llvm::cerr << "Stmt::viewAST is only available in debug builds on "
Ted Kremenek80de08f2007-09-19 21:29:43 +000027 << "systems with Graphviz or gv!\n";
28#endif
29}
30
31namespace llvm {
32template<>
33struct DOTGraphTraits<const Stmt*> : public DefaultDOTGraphTraits {
34 static std::string getNodeLabel(const Stmt* Node, const Stmt* Graph) {
35
36#ifndef NDEBUG
Ted Kremeneka95d3752008-09-13 05:16:45 +000037 std::string OutSStr;
38 llvm::raw_string_ostream Out(OutSStr);
Ted Kremenek80de08f2007-09-19 21:29:43 +000039
40 if (Node)
41 Out << Node->getStmtClassName();
42 else
43 Out << "<NULL>";
44
45 std::string OutStr = Out.str();
46 if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
47
48 // Process string output to make it nicer...
49 for (unsigned i = 0; i != OutStr.length(); ++i)
50 if (OutStr[i] == '\n') { // Left justify
51 OutStr[i] = '\\';
52 OutStr.insert(OutStr.begin()+i+1, 'l');
53 }
54
55 return OutStr;
56#else
57 return "";
58#endif
59 }
60};
61} // end namespace llvm