diff options
author | Andrew Trick <atrick@apple.com> | 2012-02-01 22:13:57 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-02-01 22:13:57 +0000 |
commit | d06df96a7cdf71446f6de2eac5b1b0bf5a6eeb91 (patch) | |
tree | 7e5ea703303e232ff8140d8f779b1a1f54ded0f2 /llvm/test/CodeGen/Hexagon/static.ll | |
parent | 855662ad9a1f8f1641d9650a45c6075011877223 (diff) | |
download | bcm5719-llvm-d06df96a7cdf71446f6de2eac5b1b0bf5a6eeb91.tar.gz bcm5719-llvm-d06df96a7cdf71446f6de2eac5b1b0bf5a6eeb91.zip |
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!
llvm-svn: 149547
Diffstat (limited to 'llvm/test/CodeGen/Hexagon/static.ll')
-rw-r--r-- | llvm/test/CodeGen/Hexagon/static.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Hexagon/static.ll b/llvm/test/CodeGen/Hexagon/static.ll index 843b7cbb7a0..1105096dc35 100644 --- a/llvm/test/CodeGen/Hexagon/static.ll +++ b/llvm/test/CodeGen/Hexagon/static.ll @@ -1,12 +1,12 @@ -; RUN: llc -march=hexagon -mcpu=hexagonv4 < %s | FileCheck %s +; RUN: llc -march=hexagon -mcpu=hexagonv4 -disable-dfa-sched < %s | FileCheck %s @num = external global i32 @acc = external global i32 @val = external global i32 +; CHECK: CONST32(#num) ; CHECK: CONST32(#acc) ; CHECK: CONST32(#val) -; CHECK: CONST32(#num) define void @foo() nounwind { entry: |