Make this use the new autoconf support for finding the executables for

gv and Graphviz.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22434 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2005-07-14 05:33:13 +00:00
parent be13028264
commit c5f44add43

View File

@@ -103,9 +103,7 @@ std::string DOTGraphTraits<SelectionDAG*>::getNodeLabel(const SDNode *Node,
/// ///
void SelectionDAG::viewGraph() { void SelectionDAG::viewGraph() {
// This code is only for debugging! // This code is only for debugging!
#ifdef NDEBUG #ifndef NDEBUG
std::cerr << "SelectionDAG::viewGraph is only available in debug builds!\n";
#else
std::string Filename = "/tmp/dag." + std::string Filename = "/tmp/dag." +
getMachineFunction().getFunction()->getName() + ".dot"; getMachineFunction().getFunction()->getName() + ".dot";
std::cerr << "Writing '" << Filename << "'... "; std::cerr << "Writing '" << Filename << "'... ";
@@ -122,21 +120,26 @@ void SelectionDAG::viewGraph() {
#ifdef HAVE_GRAPHVIZ #ifdef HAVE_GRAPHVIZ
std::cerr << "Running 'Graphviz' program... " << std::flush; std::cerr << "Running 'Graphviz' program... " << std::flush;
if (system(("Graphviz " + Filename).c_str())) { if (system((LLVM_PATH_GRAPHVIZ " " + Filename).c_str())) {
std::cerr << "Error viewing graph: 'Graphviz' not in path?\n"; std::cerr << "Error viewing graph: 'Graphviz' not in path?\n";
} else { } else {
return; return;
} }
#endif #endif
#ifdef HAVE_GV
std::cerr << "Running 'dot' program... " << std::flush; std::cerr << "Running 'dot' program... " << std::flush;
if (system(("dot -Tps -Nfontname=Courier -Gsize=7.5,10 " + Filename if (system(("dot -Tps -Nfontname=Courier -Gsize=7.5,10 " + Filename
+ " > /tmp/dag.tempgraph.ps").c_str())) { + " > /tmp/dag.tempgraph.ps").c_str())) {
std::cerr << "Error viewing graph: 'dot' not in path?\n"; std::cerr << "Error viewing graph: 'dot' not in path?\n";
} else { } else {
std::cerr << "\n"; std::cerr << "\n";
system("gv /tmp/dag.tempgraph.ps"); system(LLVM_PATH_GV " /tmp/dag.tempgraph.ps");
} }
system(("rm " + Filename + " /tmp/dag.tempgraph.ps").c_str()); system(("rm " + Filename + " /tmp/dag.tempgraph.ps").c_str());
return;
#endif #endif
#endif
std::cerr << "SelectionDAG::viewGraph is only available in debug builds on "
<< "systems with Graphviz or gv!\n";
} }