mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
ca0f4dc4f0
This commit starts with a "git mv ARM64 AArch64" and continues out from there, renaming the C++ classes, intrinsics, and other target-local objects for consistency. "ARM64" test directories are also moved, and tests that began their life in ARM64 use an arm64 triple, those from AArch64 use an aarch64 triple. Both should be equivalent though. This finishes the AArch64 merge, and everyone should feel free to continue committing as normal now. llvm-svn: 209577
25 lines
627 B
LLVM
25 lines
627 B
LLVM
; RUN: llc < %s -mtriple=arm64-linux-gnu | FileCheck %s
|
|
|
|
define i64 @get_stack() nounwind {
|
|
entry:
|
|
; CHECK-LABEL: get_stack:
|
|
; CHECK: mov x0, sp
|
|
%sp = call i64 @llvm.read_register.i64(metadata !0)
|
|
ret i64 %sp
|
|
}
|
|
|
|
define void @set_stack(i64 %val) nounwind {
|
|
entry:
|
|
; CHECK-LABEL: set_stack:
|
|
; CHECK: mov sp, x0
|
|
call void @llvm.write_register.i64(metadata !0, i64 %val)
|
|
ret void
|
|
}
|
|
|
|
declare i64 @llvm.read_register.i64(metadata) nounwind
|
|
declare void @llvm.write_register.i64(metadata, i64) nounwind
|
|
|
|
; register unsigned long current_stack_pointer asm("sp");
|
|
; CHECK-NOT: .asciz "sp"
|
|
!0 = metadata !{metadata !"sp\00"}
|