mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-07 03:26:53 +00:00
14c4d9c7b3
Summary: Reserving registers x1-7 is used to support CONFIG_ARM64_LSE_ATOMICS in Linux kernel. This change adds support for reserving registers x1 through x7. Reviewers: javed.absar, phosek, srhines, nickdesaulniers, efriedma Reviewed By: nickdesaulniers, efriedma Subscribers: niravd, jfb, manojgupta, nickdesaulniers, jyknight, efriedma, kristof.beyls, llvm-commits Differential Revision: https://reviews.llvm.org/D48580 llvm-svn: 341706
20 lines
786 B
LLVM
20 lines
786 B
LLVM
; RUN: not llc < %s -mtriple=arm64-linux-gnu -mattr=+reserve-x1 2>&1 | FileCheck %s
|
|
; RUN: not llc < %s -mtriple=arm64-linux-gnu -mattr=+reserve-x1 -fast-isel 2>&1 | FileCheck %s
|
|
; RUN: not llc < %s -mtriple=arm64-linux-gnu -mattr=+reserve-x1 -global-isel 2>&1 | FileCheck %s
|
|
|
|
; CHECK: error:
|
|
; CHECK-SAME: AArch64 doesn't support function calls if any of the argument registers is reserved.
|
|
define void @call_function() {
|
|
call void @foo()
|
|
ret void
|
|
}
|
|
declare void @foo()
|
|
|
|
; CHECK: error:
|
|
; CHECK-SAME: AArch64 doesn't support function calls if any of the argument registers is reserved.
|
|
define void @call_memcpy(i8* %out, i8* %in) {
|
|
call void @llvm.memcpy.p0i8.p0i8.i64(i8* %out, i8* %in, i64 800, i1 false)
|
|
ret void
|
|
}
|
|
declare void @llvm.memcpy.p0i8.p0i8.i64(i8*, i8*, i64, i1)
|