forked from OSchip/llvm-project
[ARM] Enable misched for R52.
Back when the R52 schedule was added in rL286949, there was no way to enable machine schedules in ARM for specific cores. Since then a target feature has been added. This enables the feature for R52, removing the need to manually specify compiler flags. llvm-svn: 331027
This commit is contained in:
parent
4700faa28e
commit
c4cccea4c9
|
@ -999,6 +999,7 @@ def : ProcNoItin<"kryo", [ARMv8a, ProcKryo,
|
|||
FeatureCRC]>;
|
||||
|
||||
def : ProcessorModel<"cortex-r52", CortexR52Model, [ARMv8r, ProcR52,
|
||||
FeatureUseMISched,
|
||||
FeatureFPAO]>;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
; REQUIRES: asserts
|
||||
; RUN: llc < %s -mtriple=armv8r-eabi -mcpu=cortex-r52 -enable-misched -verify-misched -debug-only=machine-scheduler -o - 2>&1 > /dev/null | FileCheck %s --check-prefix=CHECK --check-prefix=R52_SCHED
|
||||
; RUN: llc < %s -mtriple=armv8r-eabi -mcpu=cortex-r52 -verify-misched -debug-only=machine-scheduler -o - 2>&1 > /dev/null | FileCheck %s --check-prefix=CHECK --check-prefix=R52_SCHED
|
||||
; RUN: llc < %s -mtriple=armv8r-eabi -mcpu=generic -enable-misched -verify-misched -debug-only=machine-scheduler -o - 2>&1 > /dev/null | FileCheck %s --check-prefix=CHECK --check-prefix=GENERIC
|
||||
;
|
||||
; Check the latency for instructions for both generic and cortex-r52.
|
||||
|
|
Loading…
Reference in New Issue