mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-05 10:17:36 +00:00
[AArch64] Add 'apple-latest' CPU alias
The 'apple-latest' alias is supposed to provide a CPU that contains the latest Apple processor model supported by LLVM. This is supposed to be used by tools like lldb to provide a target that supports most of the CPU features. For now, this is mapped to Cyclone. Differential Revision: https://reviews.llvm.org/D56384 llvm-svn: 352412
This commit is contained in:
parent
95c6b00ba6
commit
2379ffe16f
@ -715,6 +715,9 @@ def : ProcessorModel<"thunderx2t99", ThunderX2T99Model, [ProcThunderX2T99]>;
|
||||
// FIXME: HiSilicon TSV110 is currently modeled as a Cortex-A57.
|
||||
def : ProcessorModel<"tsv110", CortexA57Model, [ProcTSV110]>;
|
||||
|
||||
// Alias for the latest Apple processor model supported by LLVM.
|
||||
def : ProcessorModel<"apple-latest", CycloneModel, [ProcCyclone]>;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Assembly parser
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
7
test/CodeGen/AArch64/apple-latest-cpu.ll
Normal file
7
test/CodeGen/AArch64/apple-latest-cpu.ll
Normal file
@ -0,0 +1,7 @@
|
||||
; RUN: llc -mtriple=arm64-apple-ios -mcpu=apple-latest -stop-before=expand-isel-pseudos -o - 2>&1 < %s | FileCheck %s
|
||||
|
||||
; CHECK-LABEL: @dummy
|
||||
; CHECK: "target-cpu"="apple-latest"
|
||||
define void @dummy() {
|
||||
ret void
|
||||
}
|
@ -18,6 +18,7 @@
|
||||
; RUN: llc < %s -mtriple=arm64-unknown-unknown -mcpu=kryo 2>&1 | FileCheck %s
|
||||
; RUN: llc < %s -mtriple=arm64-unknown-unknown -mcpu=thunderx2t99 2>&1 | FileCheck %s
|
||||
; RUN: llc < %s -mtriple=arm64-unknown-unknown -mcpu=tsv110 2>&1 | FileCheck %s
|
||||
; RUN: llc < %s -mtriple=arm64-unknown-unknown -mcpu=apple-latest 2>&1 | FileCheck %s
|
||||
; RUN: llc < %s -mtriple=arm64-unknown-unknown -mcpu=invalidcpu 2>&1 | FileCheck %s --check-prefix=INVALID
|
||||
|
||||
; CHECK-NOT: {{.*}} is not a recognized processor for this target
|
||||
|
Loading…
Reference in New Issue
Block a user