From: Chris Lattner Date: Thu, 18 Aug 2005 20:11:49 +0000 (+0000) Subject: add a new -view-sched-dags option to view dags as they are sent to the scheduler. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=068ca15d5e1c55af57e2b0898c1ea6a5aee836c0;p=oota-llvm.git add a new -view-sched-dags option to view dags as they are sent to the scheduler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22878 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp index c4dba414416..bf77d4c7f73 100644 --- a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp +++ b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp @@ -17,8 +17,17 @@ #include "llvm/CodeGen/SelectionDAG.h" #include "llvm/Target/TargetMachine.h" #include "llvm/Target/TargetInstrInfo.h" +#include "llvm/Support/CommandLine.h" using namespace llvm; +#ifndef _NDEBUG +static cl::opt +ViewDAGs("view-sched-dags", cl::Hidden, + cl::desc("Pop up a window to show sched dags as they are processed")); +#else +static const bool ViewDAGS = 0; +#endif + namespace { class SimpleSched { SelectionDAG &DAG; @@ -112,5 +121,6 @@ unsigned SimpleSched::Emit(SDOperand Op) { /// Pick a safe ordering and emit instructions for each target node in the /// graph. void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &SD) { + if (ViewDAGs) SD.viewGraph(); SimpleSched(SD, BB).Run(); }