Create a new InstrEmitter class for translating SelectionDAG nodes
authorDan Gohman <gohman@apple.com>
Sat, 10 Oct 2009 01:32:21 +0000 (01:32 +0000)
committerDan Gohman <gohman@apple.com>
Sat, 10 Oct 2009 01:32:21 +0000 (01:32 +0000)
commitbcea859fc1dd1af9ac66ec93ea04ce9a19c8451c
treef0b4e9e09dcfebfee159dc383da6ce2426b0c335
parentc81b783e2777b70f4533a4750489d058b6b74ad9
Create a new InstrEmitter class for translating SelectionDAG nodes
into MachineInstrs. This is mostly just moving the code from
ScheduleDAGSDNodesEmit.cpp into a new class. This decouples MachineInstr
emitting from scheduling.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83699 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/SelectionDAG/CMakeLists.txt
lib/CodeGen/SelectionDAG/InstrEmitter.cpp [new file with mode: 0644]
lib/CodeGen/SelectionDAG/InstrEmitter.h [new file with mode: 0644]
lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
lib/CodeGen/SelectionDAG/ScheduleDAGSDNodesEmit.cpp [deleted file]