VLIW specific scheduler framework that utilizes deterministic finite automaton (DFA).
authorAndrew Trick <atrick@apple.com>
Wed, 1 Feb 2012 22:13:57 +0000 (22:13 +0000)
committerAndrew Trick <atrick@apple.com>
Wed, 1 Feb 2012 22:13:57 +0000 (22:13 +0000)
commitee498d3254b86bceb4f441741e9f442990647ce6
treef2319c428f9e572162a0ca172a573da5ea39bcdf
parentf18a9a2314542ad3b7a601b86969073519e19b0d
VLIW specific scheduler framework that utilizes deterministic finite automaton (DFA).

This new scheduler plugs into the existing selection DAG scheduling framework. It is a top-down critical path scheduler that tracks register pressure and uses a DFA for pipeline modeling.

Patch by Sergei Larin!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149547 91177308-0d34-0410-b5e6-96231b3b80d8
16 files changed:
include/llvm/CodeGen/LinkAllCodegenComponents.h
include/llvm/CodeGen/ResourcePriorityQueue.h [new file with mode: 0644]
include/llvm/CodeGen/SchedulerRegistry.h
include/llvm/Target/TargetInstrInfo.h
include/llvm/Target/TargetLowering.h
lib/CodeGen/SelectionDAG/CMakeLists.txt
lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp [new file with mode: 0644]
lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp [new file with mode: 0644]
lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
lib/Target/Hexagon/HexagonISelLowering.cpp
lib/Target/Hexagon/HexagonInstrInfo.cpp
lib/Target/Hexagon/HexagonInstrInfo.h
lib/Target/Hexagon/HexagonSubtarget.cpp
lib/Target/Hexagon/Makefile
test/CodeGen/Hexagon/args.ll
test/CodeGen/Hexagon/static.ll