mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
Add Cortex-A53 and Cortex-A57 cores to the AArch64 backend
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201305 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
611c2c3804
commit
b8c81b50f7
@ -36,8 +36,19 @@ def FeatureCrypto : SubtargetFeature<"crypto", "HasCrypto", "true",
|
||||
|
||||
include "AArch64Schedule.td"
|
||||
|
||||
class ProcNoItin<string Name, list<SubtargetFeature> Features>
|
||||
: Processor<Name, NoItineraries, Features>;
|
||||
|
||||
def : Processor<"generic", GenericItineraries, [FeatureFPARMv8]>;
|
||||
|
||||
def : ProcNoItin<"cortex-a53", [FeatureFPARMv8,
|
||||
FeatureNEON,
|
||||
FeatureCrypto]>;
|
||||
|
||||
def : ProcNoItin<"cortex-a57", [FeatureFPARMv8,
|
||||
FeatureNEON,
|
||||
FeatureCrypto]>;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Register File Description
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
13
test/CodeGen/AArch64/cpus.ll
Normal file
13
test/CodeGen/AArch64/cpus.ll
Normal file
@ -0,0 +1,13 @@
|
||||
; This tests that llc accepts all valid AArch64 CPUs
|
||||
|
||||
; RUN: llc < %s -march=aarch64 -mcpu=generic 2>&1 | FileCheck %s
|
||||
; RUN: llc < %s -march=aarch64 -mcpu=cortex-a53 2>&1 | FileCheck %s
|
||||
; RUN: llc < %s -march=aarch64 -mcpu=cortex-a57 2>&1 | FileCheck %s
|
||||
; RUN: llc < %s -march=aarch64 -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
|
||||
|
||||
; CHECK-NOT: {{.*}} is not a recognized processor for this target
|
||||
; INVALID: {{.*}} is not a recognized processor for this target
|
||||
|
||||
define i32 @f(i64 %z) {
|
||||
ret i32 0
|
||||
}
|
Loading…
Reference in New Issue
Block a user