aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/CFGPrinter.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-06-27 16:49:46 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-06-27 16:49:46 +0000
commit9d5b532de9bdca37810a59a93a69128441b02c55 (patch)
treea0590d47c0cbd3a7898f63ccf0ab7ce44c8f801f /lib/Analysis/CFGPrinter.cpp
parentf9b238e93de0137510d4369015801e372ab0f879 (diff)
downloadexternal_llvm-9d5b532de9bdca37810a59a93a69128441b02c55.zip
external_llvm-9d5b532de9bdca37810a59a93a69128441b02c55.tar.gz
external_llvm-9d5b532de9bdca37810a59a93a69128441b02c55.tar.bz2
For PR801:
Refactor the Graph writing code to use a common implementation which is now in lib/Support/GraphWriter.cpp. This completes the PR. Patch by Anton Korobeynikov. Thanks, Anton! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28925 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/CFGPrinter.cpp')
-rw-r--r--lib/Analysis/CFGPrinter.cpp96
1 files changed, 1 insertions, 95 deletions
diff --git a/lib/Analysis/CFGPrinter.cpp b/lib/Analysis/CFGPrinter.cpp
index 578889b..693c1f6 100644
--- a/lib/Analysis/CFGPrinter.cpp
+++ b/lib/Analysis/CFGPrinter.cpp
@@ -24,8 +24,6 @@
#include "llvm/Assembly/Writer.h"
#include "llvm/Support/CFG.h"
#include "llvm/Support/GraphWriter.h"
-#include "llvm/System/Path.h"
-#include "llvm/System/Program.h"
#include "llvm/Config/config.h"
#include <sstream>
#include <fstream>
@@ -140,99 +138,7 @@ namespace {
/// being a 'dot' and 'gv' program in your path.
///
void Function::viewCFG() const {
-#ifndef NDEBUG
- char pathsuff[9];
-
- sprintf(pathsuff, "%06u", unsigned(rand()));
-
- sys::Path TempDir = sys::Path::GetTemporaryDirectory();
- sys::Path Filename = TempDir;
-
- Filename.appendComponent("cfg" + getName() + "." + pathsuff + ".dot");
- std::cerr << "Writing '" << Filename << "'... ";
- std::ofstream F(Filename.c_str());
-
- if (!F.good()) {
- std::cerr << " error opening file for writing!\n";
- return;
- }
-
- WriteGraph(F, this);
- F.close();
- std::cerr << "\n";
-
-#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);
-
- std::cerr << "Running 'Graphviz' program... " << std::flush;
- if (sys::Program::ExecuteAndWait(Graphviz, &args[0])) {
- std::cerr << "Error viewing graph: 'Graphviz' not in path?\n";
- } else {
- Filename.eraseFromDisk();
- return;
- }
-#elif (HAVE_GV && HAVE_DOT)
- sys::Path PSFilename = TempDir;
- PSFilename.appendComponent(std::string("cfg.tempgraph") + "." + pathsuff + ".ps");
-
- sys::Path dot(LLVM_PATH_DOT);
- std::vector<const char*> args;
- args.push_back(dot.c_str());
- 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);
-
- std::cerr << "Running 'dot' program... " << std::flush;
- if (sys::Program::ExecuteAndWait(dot, &args[0])) {
- std::cerr << "Error viewing graph: 'dot' not in path?\n";
- } else {
- std::cerr << "\n";
-
- sys::Path gv(LLVM_PATH_GV);
- args.clear();
- args.push_back(gv.c_str());
- args.push_back(PSFilename.c_str());
- args.push_back(0);
-
- sys::Program::ExecuteAndWait(gv, &args[0]);
- }
- Filename.eraseFromDisk();
- PSFilename.eraseFromDisk();
- return;
-#elif HAVE_DOTTY
- sys::Path dotty(LLVM_PATH_DOTTY);
- std::vector<const char*> args;
- args.push_back(dotty.c_str());
- args.push_back(Filename.c_str());
- args.push_back(0);
-
- std::cerr << "Running 'dotty' program... " << std::flush;
- if (sys::Program::ExecuteAndWait(dotty, &args[0])) {
- std::cerr << "Error viewing graph: 'dotty' not in path?\n";
- } else {
-#ifndef __MINGW32__ // Dotty spawns another app and doesn't wait until it returns
- Filename.eraseFromDisk();
-#endif
- return;
- }
-#endif
-
-#endif // NDEBUG
- std::cerr << "Function::viewCFG is only available in debug builds on "
- << "systems with Graphviz or gv or dotty!\n";
-
-#ifndef NDEBUG
- Filename.eraseFromDisk();
- TempDir.eraseFromDisk(true);
-#endif
+ ViewGraph(this, "cfg" + getName());
}
/// viewCFGOnly - This function is meant for use from the debugger. It works