new file, obviously just a stub
authorChris Lattner <sabre@nondot.org>
Thu, 18 Aug 2005 18:45:24 +0000 (18:45 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 18 Aug 2005 18:45:24 +0000 (18:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22868 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/ScheduleDAG.cpp [new file with mode: 0644]

diff --git a/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp b/lib/CodeGen/SelectionDAG/ScheduleDAG.cpp
new file mode 100644 (file)
index 0000000..28edbe3
--- /dev/null
@@ -0,0 +1,23 @@
+//===-- ScheduleDAG.cpp - Implement a trivial DAG scheduler ---------------===//
+//
+//                     The LLVM Compiler Infrastructure
+//
+// This file was developed by Chris Lattner and is distributed under the
+// University of Illinois Open Source License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This implements a simple code linearizer for DAGs.  This is not a very good
+// way to emit code, but gets working code quickly.
+//
+//===----------------------------------------------------------------------===//
+
+#define DEBUG_TYPE "sched"
+#include "llvm/CodeGen/SelectionDAGISel.h"
+using namespace llvm;
+
+/// Pick a safe ordering and emit instructions for each target node in the
+/// graph.
+void SelectionDAGISel::ScheduleAndEmitDAG(SelectionDAG &SD) {
+  
+}