This adds support for lowering sibling calls with outgoing arguments. e.g ``` define void @foo(i32 %a) ``` Support is ported from AArch64ISelLowering's `isEligibleForTailCallOptimization`. The only thing that is missing is a full port of `TargetLowering::parametersInCSRMatch`. So, if we're using swiftself, we'll never tail call. - Rename `analyzeCallResult` to `analyzeArgInfo`, since the function is now used for both outgoing and incoming arguments - Teach `OutgoingArgHandler` about tail calls. Tail calls use frame indices for stack arguments. - Teach `lowerFormalArguments` to set the bytes in the caller's stack argument area. This is used later to check if the tail call's parameters will fit on the caller's stack. - Add `areCalleeOutgoingArgsTailCallable` to perform the eligibility check on the callee's outgoing arguments. For testing: - Update call-translator-tail-call to verify that we can now tail call with outgoing arguments, use G_FRAME_INDEX for stack arguments, and respect the size of the caller's stack - Remove GISel-specific check lines from speculation-hardening.ll, since GISel now tail calls like the other selectors - Add a GISel test line to tailcall-string-rvo.ll since we can tail call in that test now - Add a GISel test line to tailcall_misched_graph.ll since we tail call there now. Add specific check lines for GISel, since the debug output from the machine-scheduler differs with GlobalISel. The dependency still holds, but the output comes out in a different order. Differential Revision: https://reviews.llvm.org/D67471 llvm-svn: 371780
55 lines
2.3 KiB
LLVM
55 lines
2.3 KiB
LLVM
; RUN: llc -mcpu=cyclone -debug-only=machine-scheduler < %s 2>&1 | FileCheck %s --check-prefixes=COMMON,SDAG
|
|
; RUN: llc -mcpu=cyclone -global-isel -debug-only=machine-scheduler < %s 2>&1 | FileCheck %s --check-prefixes=COMMON,GISEL
|
|
|
|
; REQUIRES: asserts
|
|
|
|
target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
|
|
target triple = "arm64-apple-ios7.0.0"
|
|
|
|
define void @caller2(i8* %a0, i8* %a1, i8* %a2, i8* %a3, i8* %a4, i8* %a5, i8* %a6, i8* %a7, i8* %a8, i8* %a9) {
|
|
entry:
|
|
tail call void @callee2(i8* %a1, i8* %a2, i8* %a3, i8* %a4, i8* %a5, i8* %a6, i8* %a7, i8* %a8, i8* %a9, i8* %a0)
|
|
ret void
|
|
}
|
|
|
|
declare void @callee2(i8*, i8*, i8*, i8*, i8*,
|
|
i8*, i8*, i8*, i8*, i8*)
|
|
|
|
; Make sure there is a dependence between the load and store to the same stack
|
|
; location during a tail call. Tail calls clobber the incoming argument area and
|
|
; therefore it is not safe to assume argument locations are invariant.
|
|
; PR23459 has a test case that we where miscompiling because of this at the
|
|
; time.
|
|
|
|
; COMMON: Frame Objects
|
|
; COMMON: fi#-4: {{.*}} fixed, at location [SP+8]
|
|
; COMMON: fi#-3: {{.*}} fixed, at location [SP]
|
|
; COMMON: fi#-2: {{.*}} fixed, at location [SP+8]
|
|
; COMMON: fi#-1: {{.*}} fixed, at location [SP]
|
|
|
|
; The order that these appear in differes in GISel than SDAG, but the
|
|
; dependency relationship still holds.
|
|
; COMMON: [[VRA:%.*]]:gpr64 = LDRXui %fixed-stack.3
|
|
; COMMON: [[VRB:%.*]]:gpr64 = LDRXui %fixed-stack.2
|
|
; SDAG: STRXui %{{.*}}, %fixed-stack.0
|
|
; SDAG: STRXui [[VRB]]{{[^,]*}}, %fixed-stack.1
|
|
; GISEL: STRXui [[VRB]]{{[^,]*}}, %fixed-stack.1
|
|
; GISEL: STRXui %{{.*}}, %fixed-stack.0
|
|
|
|
; Make sure that there is an dependence edge between fi#-2 and fi#-4.
|
|
; Without this edge the scheduler would be free to move the store accross the load.
|
|
|
|
; COMMON: SU({{.*}}): [[VRB]]:gpr64 = LDRXui %fixed-stack.2
|
|
; COMMON-NOT: SU
|
|
; COMMON: Successors:
|
|
; COMMON: SU([[DEPSTOREB:.*]]): Ord Latency=0
|
|
; COMMON: SU([[DEPSTOREA:.*]]): Ord Latency=0
|
|
|
|
; GlobalISel outputs DEPSTOREB before DEPSTOREA, but the dependency relationship
|
|
; still holds.
|
|
; SDAG: SU([[DEPSTOREA]]): STRXui %{{.*}}, %fixed-stack.0
|
|
; SDAG: SU([[DEPSTOREB]]): STRXui %{{.*}}, %fixed-stack.1
|
|
|
|
; GISEL: SU([[DEPSTOREB]]): STRXui %{{.*}}, %fixed-stack.0
|
|
; GISEL: SU([[DEPSTOREA]]): STRXui %{{.*}}, %fixed-stack.1
|