82 lines
3.1 KiB
LLVM
82 lines
3.1 KiB
LLVM
; RUN: llc -verify-machineinstrs -mtriple=armv7k-apple-ios8.0 -mcpu=cortex-a7 -o - %s | FileCheck --check-prefix=CHECK --check-prefix=OPT --check-prefix=TAILCALL %s
|
|
; RUN: llc -O0 -verify-machineinstrs -mtriple=armv7k-apple-ios8.0 -mcpu=cortex-a7 -o - %s | FileCheck %s
|
|
|
|
; RUN: llc -verify-machineinstrs -mtriple=armv7-apple-ios -o - %s | FileCheck --check-prefix=CHECK --check-prefix=OPT %s
|
|
; RUN: llc -O0 -verify-machineinstrs -mtriple=armv7-apple-ios -o - %s | FileCheck %s
|
|
|
|
; Parameter with swiftself should be allocated to r10.
|
|
; CHECK-LABEL: swiftself_param:
|
|
; CHECK: mov r0, r10
|
|
define ptr @swiftself_param(ptr swiftself %addr0) "frame-pointer"="all" {
|
|
ret ptr %addr0
|
|
}
|
|
|
|
; Check that r10 is used to pass a swiftself argument.
|
|
; CHECK-LABEL: call_swiftself:
|
|
; CHECK: mov r10, r0
|
|
; CHECK: bl {{_?}}swiftself_param
|
|
define ptr @call_swiftself(ptr %arg) "frame-pointer"="all" {
|
|
%res = call ptr @swiftself_param(ptr swiftself %arg)
|
|
ret ptr %res
|
|
}
|
|
|
|
; r10 should be saved by the callee even if used for swiftself
|
|
; CHECK-LABEL: swiftself_clobber:
|
|
; CHECK: push {r10}
|
|
; ...
|
|
; CHECK: pop {r10}
|
|
define ptr @swiftself_clobber(ptr swiftself %addr0) "frame-pointer"="all" {
|
|
call void asm sideeffect "", "~{r10}"()
|
|
ret ptr %addr0
|
|
}
|
|
|
|
; Demonstrate that we do not need any movs when calling multiple functions
|
|
; with swiftself argument.
|
|
; CHECK-LABEL: swiftself_passthrough:
|
|
; OPT-NOT: mov{{.*}}r10
|
|
; OPT: bl {{_?}}swiftself_param
|
|
; OPT-NOT: mov{{.*}}r10
|
|
; OPT-NEXT: bl {{_?}}swiftself_param
|
|
define void @swiftself_passthrough(ptr swiftself %addr0) "frame-pointer"="all" {
|
|
call ptr @swiftself_param(ptr swiftself %addr0)
|
|
call ptr @swiftself_param(ptr swiftself %addr0)
|
|
ret void
|
|
}
|
|
|
|
; We can use a tail call if the callee swiftself is the same as the caller one.
|
|
; CHECK-LABEL: swiftself_tail:
|
|
; TAILCALL: b {{_?}}swiftself_param
|
|
; TAILCALL-NOT: pop
|
|
define ptr @swiftself_tail(ptr swiftself %addr0) "frame-pointer"="all" {
|
|
call void asm sideeffect "", "~{r10}"()
|
|
%res = tail call ptr @swiftself_param(ptr swiftself %addr0)
|
|
ret ptr %res
|
|
}
|
|
|
|
; We can not use a tail call if the callee swiftself is not the same as the
|
|
; caller one.
|
|
; CHECK-LABEL: swiftself_notail:
|
|
; CHECK: mov r10, r0
|
|
; CHECK: bl {{_?}}swiftself_param
|
|
; CHECK: pop
|
|
define ptr @swiftself_notail(ptr swiftself %addr0, ptr %addr1) nounwind "frame-pointer"="all" {
|
|
%res = tail call ptr @swiftself_param(ptr swiftself %addr1)
|
|
ret ptr %res
|
|
}
|
|
|
|
; We cannot pretend that 'r0' is alive across the thisreturn_attribute call as
|
|
; we normally would. We marked the first parameter with swiftself which means it
|
|
; will no longer be passed in r0.
|
|
declare swiftcc ptr @thisreturn_attribute(ptr returned swiftself)
|
|
; OPT-LABEL: swiftself_nothisreturn:
|
|
; OPT-DAG: mov [[CSREG:r[1-9].*]], r0
|
|
; OPT-DAG: ldr r10, [r10]
|
|
; OPT: bl {{_?}}thisreturn_attribute
|
|
; OPT: str r0, [[[CSREG]]
|
|
define hidden swiftcc void @swiftself_nothisreturn(ptr noalias nocapture sret(ptr), ptr noalias nocapture readonly swiftself) {
|
|
entry:
|
|
%2 = load ptr, ptr %1, align 8
|
|
%3 = tail call swiftcc ptr @thisreturn_attribute(ptr swiftself %2)
|
|
store ptr %3, ptr %0, align 8
|
|
ret void
|
|
}
|