2016-04-14 05:43:25 +08:00
|
|
|
; 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
|
2016-03-30 01:37:21 +08:00
|
|
|
|
2016-04-14 05:43:25 +08:00
|
|
|
; 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
|
2016-03-30 01:37:21 +08:00
|
|
|
|
2016-04-14 05:43:25 +08:00
|
|
|
; Parameter with swiftself should be allocated to r10.
|
|
|
|
; CHECK-LABEL: swiftself_param:
|
|
|
|
; CHECK: mov r0, r10
|
[ARM] Generate consistent frame records for Thumb2
There is not an official documented ABI for frame pointers in Thumb2,
but we should try to emit something which is useful.
We use r7 as the frame pointer for Thumb code, which currently means
that if a function needs to save a high register (r8-r11), it will get
pushed to the stack between the frame pointer (r7) and link register
(r14). This means that while a stack unwinder can follow the chain of
frame pointers up the stack, it cannot know the offset to lr, so does
not know which functions correspond to the stack frames.
To fix this, we need to push the callee-saved registers in two batches,
with the first push saving the low registers, fp and lr, and the second
push saving the high registers. This is already implemented, but
previously only used for iOS. This patch turns it on for all Thumb2
targets when frame pointers are required by the ABI, and the frame
pointer is r7 (Windows uses r11, so this isn't a problem there). If
frame pointer elimination is enabled we still emit a single push/pop
even if we need a frame pointer for other reasons, to avoid increasing
code size.
We must also ensure that lr is pushed to the stack when using a frame
pointer, so that we end up with a complete frame record. Situations that
could cause this were rare, because we already push lr in most
situations so that we can return using the pop instruction.
Differential Revision: https://reviews.llvm.org/D23516
llvm-svn: 279506
2016-08-23 17:19:22 +08:00
|
|
|
define i8 *@swiftself_param(i8* swiftself %addr0) "no-frame-pointer-elim"="true" {
|
2016-04-14 05:43:25 +08:00
|
|
|
ret i8 *%addr0
|
|
|
|
}
|
2016-03-30 01:37:21 +08:00
|
|
|
|
2016-04-14 05:43:25 +08:00
|
|
|
; Check that r10 is used to pass a swiftself argument.
|
|
|
|
; CHECK-LABEL: call_swiftself:
|
|
|
|
; CHECK: mov r10, r0
|
|
|
|
; CHECK: bl {{_?}}swiftself_param
|
[ARM] Generate consistent frame records for Thumb2
There is not an official documented ABI for frame pointers in Thumb2,
but we should try to emit something which is useful.
We use r7 as the frame pointer for Thumb code, which currently means
that if a function needs to save a high register (r8-r11), it will get
pushed to the stack between the frame pointer (r7) and link register
(r14). This means that while a stack unwinder can follow the chain of
frame pointers up the stack, it cannot know the offset to lr, so does
not know which functions correspond to the stack frames.
To fix this, we need to push the callee-saved registers in two batches,
with the first push saving the low registers, fp and lr, and the second
push saving the high registers. This is already implemented, but
previously only used for iOS. This patch turns it on for all Thumb2
targets when frame pointers are required by the ABI, and the frame
pointer is r7 (Windows uses r11, so this isn't a problem there). If
frame pointer elimination is enabled we still emit a single push/pop
even if we need a frame pointer for other reasons, to avoid increasing
code size.
We must also ensure that lr is pushed to the stack when using a frame
pointer, so that we end up with a complete frame record. Situations that
could cause this were rare, because we already push lr in most
situations so that we can return using the pop instruction.
Differential Revision: https://reviews.llvm.org/D23516
llvm-svn: 279506
2016-08-23 17:19:22 +08:00
|
|
|
define i8 *@call_swiftself(i8* %arg) "no-frame-pointer-elim"="true" {
|
2016-04-14 05:43:25 +08:00
|
|
|
%res = call i8 *@swiftself_param(i8* swiftself %arg)
|
|
|
|
ret i8 *%res
|
2016-03-30 01:37:21 +08:00
|
|
|
}
|
|
|
|
|
2016-04-14 05:43:25 +08:00
|
|
|
; r10 should be saved by the callee even if used for swiftself
|
|
|
|
; CHECK-LABEL: swiftself_clobber:
|
|
|
|
; CHECK: push {r10}
|
|
|
|
; ...
|
|
|
|
; CHECK: pop {r10}
|
[ARM] Generate consistent frame records for Thumb2
There is not an official documented ABI for frame pointers in Thumb2,
but we should try to emit something which is useful.
We use r7 as the frame pointer for Thumb code, which currently means
that if a function needs to save a high register (r8-r11), it will get
pushed to the stack between the frame pointer (r7) and link register
(r14). This means that while a stack unwinder can follow the chain of
frame pointers up the stack, it cannot know the offset to lr, so does
not know which functions correspond to the stack frames.
To fix this, we need to push the callee-saved registers in two batches,
with the first push saving the low registers, fp and lr, and the second
push saving the high registers. This is already implemented, but
previously only used for iOS. This patch turns it on for all Thumb2
targets when frame pointers are required by the ABI, and the frame
pointer is r7 (Windows uses r11, so this isn't a problem there). If
frame pointer elimination is enabled we still emit a single push/pop
even if we need a frame pointer for other reasons, to avoid increasing
code size.
We must also ensure that lr is pushed to the stack when using a frame
pointer, so that we end up with a complete frame record. Situations that
could cause this were rare, because we already push lr in most
situations so that we can return using the pop instruction.
Differential Revision: https://reviews.llvm.org/D23516
llvm-svn: 279506
2016-08-23 17:19:22 +08:00
|
|
|
define i8 *@swiftself_clobber(i8* swiftself %addr0) "no-frame-pointer-elim"="true" {
|
2016-04-14 05:43:25 +08:00
|
|
|
call void asm sideeffect "", "~{r10}"()
|
|
|
|
ret i8 *%addr0
|
|
|
|
}
|
2016-03-30 01:37:21 +08:00
|
|
|
|
2016-04-14 05:43:25 +08:00
|
|
|
; 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
|
[ARM] Generate consistent frame records for Thumb2
There is not an official documented ABI for frame pointers in Thumb2,
but we should try to emit something which is useful.
We use r7 as the frame pointer for Thumb code, which currently means
that if a function needs to save a high register (r8-r11), it will get
pushed to the stack between the frame pointer (r7) and link register
(r14). This means that while a stack unwinder can follow the chain of
frame pointers up the stack, it cannot know the offset to lr, so does
not know which functions correspond to the stack frames.
To fix this, we need to push the callee-saved registers in two batches,
with the first push saving the low registers, fp and lr, and the second
push saving the high registers. This is already implemented, but
previously only used for iOS. This patch turns it on for all Thumb2
targets when frame pointers are required by the ABI, and the frame
pointer is r7 (Windows uses r11, so this isn't a problem there). If
frame pointer elimination is enabled we still emit a single push/pop
even if we need a frame pointer for other reasons, to avoid increasing
code size.
We must also ensure that lr is pushed to the stack when using a frame
pointer, so that we end up with a complete frame record. Situations that
could cause this were rare, because we already push lr in most
situations so that we can return using the pop instruction.
Differential Revision: https://reviews.llvm.org/D23516
llvm-svn: 279506
2016-08-23 17:19:22 +08:00
|
|
|
define void @swiftself_passthrough(i8* swiftself %addr0) "no-frame-pointer-elim"="true" {
|
2016-04-14 05:43:25 +08:00
|
|
|
call i8 *@swiftself_param(i8* swiftself %addr0)
|
|
|
|
call i8 *@swiftself_param(i8* swiftself %addr0)
|
|
|
|
ret void
|
|
|
|
}
|
2016-03-30 01:37:21 +08:00
|
|
|
|
2016-04-14 05:43:25 +08:00
|
|
|
; 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
|
[ARM] Generate consistent frame records for Thumb2
There is not an official documented ABI for frame pointers in Thumb2,
but we should try to emit something which is useful.
We use r7 as the frame pointer for Thumb code, which currently means
that if a function needs to save a high register (r8-r11), it will get
pushed to the stack between the frame pointer (r7) and link register
(r14). This means that while a stack unwinder can follow the chain of
frame pointers up the stack, it cannot know the offset to lr, so does
not know which functions correspond to the stack frames.
To fix this, we need to push the callee-saved registers in two batches,
with the first push saving the low registers, fp and lr, and the second
push saving the high registers. This is already implemented, but
previously only used for iOS. This patch turns it on for all Thumb2
targets when frame pointers are required by the ABI, and the frame
pointer is r7 (Windows uses r11, so this isn't a problem there). If
frame pointer elimination is enabled we still emit a single push/pop
even if we need a frame pointer for other reasons, to avoid increasing
code size.
We must also ensure that lr is pushed to the stack when using a frame
pointer, so that we end up with a complete frame record. Situations that
could cause this were rare, because we already push lr in most
situations so that we can return using the pop instruction.
Differential Revision: https://reviews.llvm.org/D23516
llvm-svn: 279506
2016-08-23 17:19:22 +08:00
|
|
|
define i8* @swiftself_tail(i8* swiftself %addr0) "no-frame-pointer-elim"="true" {
|
2016-04-14 05:43:25 +08:00
|
|
|
call void asm sideeffect "", "~{r10}"()
|
|
|
|
%res = tail call i8* @swiftself_param(i8* swiftself %addr0)
|
|
|
|
ret i8* %res
|
|
|
|
}
|
2016-03-30 01:37:21 +08:00
|
|
|
|
2016-04-14 05:43:25 +08:00
|
|
|
; 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
|
[ARM] Generate consistent frame records for Thumb2
There is not an official documented ABI for frame pointers in Thumb2,
but we should try to emit something which is useful.
We use r7 as the frame pointer for Thumb code, which currently means
that if a function needs to save a high register (r8-r11), it will get
pushed to the stack between the frame pointer (r7) and link register
(r14). This means that while a stack unwinder can follow the chain of
frame pointers up the stack, it cannot know the offset to lr, so does
not know which functions correspond to the stack frames.
To fix this, we need to push the callee-saved registers in two batches,
with the first push saving the low registers, fp and lr, and the second
push saving the high registers. This is already implemented, but
previously only used for iOS. This patch turns it on for all Thumb2
targets when frame pointers are required by the ABI, and the frame
pointer is r7 (Windows uses r11, so this isn't a problem there). If
frame pointer elimination is enabled we still emit a single push/pop
even if we need a frame pointer for other reasons, to avoid increasing
code size.
We must also ensure that lr is pushed to the stack when using a frame
pointer, so that we end up with a complete frame record. Situations that
could cause this were rare, because we already push lr in most
situations so that we can return using the pop instruction.
Differential Revision: https://reviews.llvm.org/D23516
llvm-svn: 279506
2016-08-23 17:19:22 +08:00
|
|
|
define i8* @swiftself_notail(i8* swiftself %addr0, i8* %addr1) nounwind "no-frame-pointer-elim"="true" {
|
2016-04-14 05:43:25 +08:00
|
|
|
%res = tail call i8* @swiftself_param(i8* swiftself %addr1)
|
|
|
|
ret i8* %res
|
2016-03-30 01:37:21 +08:00
|
|
|
}
|