2006-06-27 16:49:46 +00:00
|
|
|
//===-- GraphWriter.cpp - Implements GraphWriter support routines ---------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2006-06-27 16:49:46 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements misc. GraphWriter support routines.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-07-28 22:21:01 +00:00
|
|
|
#include "llvm/Support/GraphWriter.h"
|
2006-11-26 10:52:51 +00:00
|
|
|
#include "llvm/Support/Streams.h"
|
2006-06-27 16:49:46 +00:00
|
|
|
#include "llvm/System/Path.h"
|
|
|
|
#include "llvm/System/Program.h"
|
|
|
|
#include "llvm/Config/config.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2009-07-09 17:06:18 +00:00
|
|
|
void llvm::DisplayGraph(const sys::Path &Filename, bool wait,
|
|
|
|
GraphProgram::Name program) {
|
2006-08-21 06:04:45 +00:00
|
|
|
std::string ErrMsg;
|
2006-06-27 16:49:46 +00:00
|
|
|
#if HAVE_GRAPHVIZ
|
|
|
|
sys::Path Graphviz(LLVM_PATH_GRAPHVIZ);
|
|
|
|
|
|
|
|
std::vector<const char*> args;
|
|
|
|
args.push_back(Graphviz.c_str());
|
|
|
|
args.push_back(Filename.c_str());
|
|
|
|
args.push_back(0);
|
|
|
|
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << "Running 'Graphviz' program... " << std::flush;
|
2007-02-16 19:11:07 +00:00
|
|
|
if (sys::Program::ExecuteAndWait(Graphviz, &args[0],0,0,0,0,&ErrMsg)) {
|
2009-07-08 21:53:41 +00:00
|
|
|
cerr << "Error viewing graph " << Filename << ": " << ErrMsg << "\n";
|
2006-06-27 16:49:46 +00:00
|
|
|
}
|
2009-07-08 21:53:41 +00:00
|
|
|
else {
|
|
|
|
Filename.eraseFromDisk();
|
|
|
|
}
|
2009-07-09 17:06:18 +00:00
|
|
|
|
|
|
|
#elif (HAVE_GV && (HAVE_DOT || HAVE_FDP || HAVE_NEATO || \
|
|
|
|
HAVE_TWOPI || HAVE_CIRCO))
|
2006-06-27 16:49:46 +00:00
|
|
|
sys::Path PSFilename = Filename;
|
|
|
|
PSFilename.appendSuffix("ps");
|
2009-07-08 21:53:41 +00:00
|
|
|
|
2009-07-09 17:06:18 +00:00
|
|
|
sys::Path prog;
|
|
|
|
|
|
|
|
// Set default grapher
|
|
|
|
#if HAVE_CIRCO
|
|
|
|
prog = sys::Path(LLVM_PATH_CIRCO);
|
|
|
|
#endif
|
|
|
|
#if HAVE_TWOPI
|
|
|
|
prog = sys::Path(LLVM_PATH_TWOPI);
|
|
|
|
#endif
|
|
|
|
#if HAVE_NEATO
|
|
|
|
prog = sys::Path(LLVM_PATH_NEATO);
|
|
|
|
#endif
|
2009-07-08 21:53:41 +00:00
|
|
|
#if HAVE_FDP
|
2009-07-09 17:06:18 +00:00
|
|
|
prog = sys::Path(LLVM_PATH_FDP);
|
|
|
|
#endif
|
|
|
|
#if HAVE_DOT
|
|
|
|
prog = sys::Path(LLVM_PATH_DOT);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Find which program the user wants
|
|
|
|
#if HAVE_DOT
|
|
|
|
if (program == GraphProgram::DOT) {
|
|
|
|
prog = sys::Path(LLVM_PATH_DOT);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if (HAVE_FDP)
|
|
|
|
if (program == GraphProgram::FDP) {
|
|
|
|
prog = sys::Path(LLVM_PATH_FDP);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if (HAVE_NEATO)
|
|
|
|
if (program == GraphProgram::NEATO) {
|
|
|
|
prog = sys::Path(LLVM_PATH_NEATO);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if (HAVE_TWOPI)
|
|
|
|
if (program == GraphProgram::TWOPI) {
|
|
|
|
prog = sys::Path(LLVM_PATH_TWOPI);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if (HAVE_CIRCO)
|
|
|
|
if (program == GraphProgram::CIRCO) {
|
|
|
|
prog = sys::Path(LLVM_PATH_CIRCO);
|
|
|
|
}
|
2009-07-08 21:53:41 +00:00
|
|
|
#endif
|
2006-06-27 16:49:46 +00:00
|
|
|
|
|
|
|
std::vector<const char*> args;
|
2009-07-08 21:53:41 +00:00
|
|
|
args.push_back(prog.c_str());
|
2006-06-27 16:49:46 +00:00
|
|
|
args.push_back("-Tps");
|
|
|
|
args.push_back("-Nfontname=Courier");
|
|
|
|
args.push_back("-Gsize=7.5,10");
|
|
|
|
args.push_back(Filename.c_str());
|
|
|
|
args.push_back("-o");
|
|
|
|
args.push_back(PSFilename.c_str());
|
|
|
|
args.push_back(0);
|
|
|
|
|
2009-07-08 21:53:41 +00:00
|
|
|
cerr << "Running '" << prog << "' program... " << std::flush;
|
|
|
|
|
|
|
|
if (sys::Program::ExecuteAndWait(prog, &args[0],0,0,0,0,&ErrMsg)) {
|
|
|
|
cerr << "Error viewing graph " << Filename << ": '" << ErrMsg << "\n";
|
2006-06-27 16:49:46 +00:00
|
|
|
} else {
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << " done. \n";
|
2006-06-27 16:49:46 +00:00
|
|
|
|
|
|
|
sys::Path gv(LLVM_PATH_GV);
|
|
|
|
args.clear();
|
|
|
|
args.push_back(gv.c_str());
|
|
|
|
args.push_back(PSFilename.c_str());
|
2009-01-20 18:25:03 +00:00
|
|
|
args.push_back("-spartan");
|
2006-06-27 16:49:46 +00:00
|
|
|
args.push_back(0);
|
|
|
|
|
2006-08-21 06:04:45 +00:00
|
|
|
ErrMsg.clear();
|
2009-07-08 21:53:41 +00:00
|
|
|
if (wait) {
|
|
|
|
if (sys::Program::ExecuteAndWait(gv, &args[0],0,0,0,0,&ErrMsg)) {
|
|
|
|
cerr << "Error viewing graph: " << ErrMsg << "\n";
|
|
|
|
}
|
|
|
|
Filename.eraseFromDisk();
|
|
|
|
PSFilename.eraseFromDisk();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
sys::Program::ExecuteNoWait(gv, &args[0],0,0,0,&ErrMsg);
|
|
|
|
cerr << "Remember to erase graph files: " << Filename << " " << PSFilename << "\n";
|
2006-08-21 02:04:43 +00:00
|
|
|
}
|
2006-06-27 16:49:46 +00:00
|
|
|
}
|
|
|
|
#elif HAVE_DOTTY
|
|
|
|
sys::Path dotty(LLVM_PATH_DOTTY);
|
|
|
|
|
|
|
|
std::vector<const char*> args;
|
2007-05-03 18:32:10 +00:00
|
|
|
args.push_back(dotty.c_str());
|
2006-06-27 16:49:46 +00:00
|
|
|
args.push_back(Filename.c_str());
|
|
|
|
args.push_back(0);
|
|
|
|
|
2006-12-07 01:30:32 +00:00
|
|
|
cerr << "Running 'dotty' program... " << std::flush;
|
2007-02-16 19:11:07 +00:00
|
|
|
if (sys::Program::ExecuteAndWait(dotty, &args[0],0,0,0,0,&ErrMsg)) {
|
2009-07-08 21:53:41 +00:00
|
|
|
cerr << "Error viewing graph " << Filename << ": " << ErrMsg << "\n";
|
2006-06-27 16:49:46 +00:00
|
|
|
} else {
|
2006-08-24 22:39:25 +00:00
|
|
|
#ifdef __MINGW32__ // Dotty spawns another app and doesn't wait until it returns
|
2006-06-27 16:49:46 +00:00
|
|
|
return;
|
|
|
|
#endif
|
2009-07-08 21:53:41 +00:00
|
|
|
Filename.eraseFromDisk();
|
2006-06-27 16:49:46 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|