2016-02-15 23:44:13 +00:00
|
|
|
; RUN: llc < %s -stack-symbol-ordering=0 -tailcallopt -code-model=medium -stack-alignment=8 -mtriple=x86_64-linux-gnu -mcpu=opteron | FileCheck %s
|
2012-11-16 12:36:39 +00:00
|
|
|
|
|
|
|
; Check the HiPE calling convention works (x86-64)
|
|
|
|
|
|
|
|
define void @zap(i64 %a, i64 %b) nounwind {
|
|
|
|
entry:
|
|
|
|
; CHECK: movq %rsi, %rax
|
2013-06-25 02:48:58 +00:00
|
|
|
; CHECK-NEXT: movl $8, %ecx
|
|
|
|
; CHECK-NEXT: movl $9, %r8d
|
2013-10-15 23:33:07 +00:00
|
|
|
; CHECK-NEXT: movq %rdi, %rsi
|
|
|
|
; CHECK-NEXT: movq %rax, %rdx
|
2012-11-16 12:36:39 +00:00
|
|
|
; CHECK-NEXT: callq addfour
|
|
|
|
%0 = call cc 11 {i64, i64, i64} @addfour(i64 undef, i64 undef, i64 %a, i64 %b, i64 8, i64 9)
|
|
|
|
%res = extractvalue {i64, i64, i64} %0, 2
|
|
|
|
|
|
|
|
; CHECK: movl $1, %edx
|
|
|
|
; CHECK-NEXT: movl $2, %ecx
|
|
|
|
; CHECK-NEXT: movl $3, %r8d
|
|
|
|
; CHECK-NEXT: movq %rax, %r9
|
|
|
|
; CHECK: callq foo
|
|
|
|
tail call void @foo(i64 undef, i64 undef, i64 1, i64 2, i64 3, i64 %res) nounwind
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define cc 11 {i64, i64, i64} @addfour(i64 %hp, i64 %p, i64 %x, i64 %y, i64 %z, i64 %w) nounwind {
|
|
|
|
entry:
|
|
|
|
; CHECK: leaq (%rsi,%rdx), %rax
|
|
|
|
; CHECK-NEXT: addq %rcx, %rax
|
|
|
|
; CHECK-NEXT: addq %r8, %rax
|
|
|
|
%0 = add i64 %x, %y
|
|
|
|
%1 = add i64 %0, %z
|
|
|
|
%2 = add i64 %1, %w
|
|
|
|
|
|
|
|
; CHECK: ret
|
|
|
|
%res = insertvalue {i64, i64, i64} undef, i64 %2, 2
|
|
|
|
ret {i64, i64, i64} %res
|
|
|
|
}
|
|
|
|
|
|
|
|
define cc 11 void @foo(i64 %hp, i64 %p, i64 %arg0, i64 %arg1, i64 %arg2, i64 %arg3) nounwind {
|
|
|
|
entry:
|
|
|
|
; CHECK: movq %r15, 40(%rsp)
|
|
|
|
; CHECK-NEXT: movq %rbp, 32(%rsp)
|
|
|
|
; CHECK-NEXT: movq %rsi, 24(%rsp)
|
|
|
|
; CHECK-NEXT: movq %rdx, 16(%rsp)
|
|
|
|
; CHECK-NEXT: movq %rcx, 8(%rsp)
|
|
|
|
; CHECK-NEXT: movq %r8, (%rsp)
|
|
|
|
%hp_var = alloca i64
|
|
|
|
%p_var = alloca i64
|
|
|
|
%arg0_var = alloca i64
|
|
|
|
%arg1_var = alloca i64
|
|
|
|
%arg2_var = alloca i64
|
|
|
|
%arg3_var = alloca i64
|
|
|
|
store i64 %hp, i64* %hp_var
|
|
|
|
store i64 %p, i64* %p_var
|
|
|
|
store i64 %arg0, i64* %arg0_var
|
|
|
|
store i64 %arg1, i64* %arg1_var
|
|
|
|
store i64 %arg2, i64* %arg2_var
|
|
|
|
store i64 %arg3, i64* %arg3_var
|
|
|
|
|
[DAG] Improve Aliasing of operations to static alloca
Re-recommiting after landing DAG extension-crash fix.
Recommiting after adding check to avoid miscomputing alias information
on addresses of the same base but different subindices.
Memory accesses offset from frame indices may alias, e.g., we
may merge write from function arguments passed on the stack when they
are contiguous. As a result, when checking aliasing, we consider the
underlying frame index's offset from the stack pointer.
Static allocs are realized as stack objects in SelectionDAG, but its
offset is not set until post-DAG causing DAGCombiner's alias check to
consider access to static allocas to frequently alias. Modify isAlias
to consider access between static allocas and access from other frame
objects to be considered aliasing.
Many test changes are included here. Most are fixes for tests which
indirectly relied on our aliasing ability and needed to be modified to
preserve their original intent.
The remaining tests have minor improvements due to relaxed
ordering. The exception is CodeGen/X86/2011-10-19-widen_vselect.ll
which has a minor degradation dispite though the pre-legalized DAG is
improved.
Reviewers: rnk, mkuper, jonpa, hfinkel, uweigand
Reviewed By: rnk
Subscribers: sdardis, nemanjai, javed.absar, llvm-commits
Differential Revision: https://reviews.llvm.org/D33345
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@308350 91177308-0d34-0410-b5e6-96231b3b80d8
2017-07-18 20:06:24 +00:00
|
|
|
; Loads are reading values just writen from corresponding register and are therefore noops.
|
2015-02-27 21:17:42 +00:00
|
|
|
%0 = load i64, i64* %hp_var
|
|
|
|
%1 = load i64, i64* %p_var
|
|
|
|
%2 = load i64, i64* %arg0_var
|
|
|
|
%3 = load i64, i64* %arg1_var
|
|
|
|
%4 = load i64, i64* %arg2_var
|
|
|
|
%5 = load i64, i64* %arg3_var
|
2012-11-16 12:36:39 +00:00
|
|
|
; CHECK: jmp bar
|
|
|
|
tail call cc 11 void @bar(i64 %0, i64 %1, i64 %2, i64 %3, i64 %4, i64 %5) nounwind
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
define cc 11 void @baz() nounwind {
|
2015-02-27 21:17:42 +00:00
|
|
|
%tmp_clos = load i64, i64* @clos
|
2012-11-16 12:36:39 +00:00
|
|
|
%tmp_clos2 = inttoptr i64 %tmp_clos to i64*
|
|
|
|
%indirect_call = bitcast i64* %tmp_clos2 to void (i64, i64, i64)*
|
|
|
|
; CHECK: movl $42, %esi
|
|
|
|
; CHECK-NEXT: jmpq *(%rax)
|
|
|
|
tail call cc 11 void %indirect_call(i64 undef, i64 undef, i64 42) nounwind
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2016-07-11 21:03:03 +00:00
|
|
|
; Sanity-check the tail call sequence. Number of arguments was chosen as to
|
|
|
|
; expose a bug where the tail call sequence clobbered the stack.
|
|
|
|
define cc 11 { i64, i64, i64 } @tailcaller(i64 %hp, i64 %p) #0 {
|
|
|
|
; CHECK: movl $15, %esi
|
|
|
|
; CHECK-NEXT: movl $31, %edx
|
|
|
|
; CHECK-NEXT: movl $47, %ecx
|
|
|
|
; CHECK-NEXT: movl $63, %r8d
|
|
|
|
; CHECK-NEXT: popq %rax
|
|
|
|
; CHECK-NEXT: jmp tailcallee
|
|
|
|
%ret = tail call cc11 { i64, i64, i64 } @tailcallee(i64 %hp, i64 %p, i64 15,
|
|
|
|
i64 31, i64 47, i64 63, i64 79) #1
|
|
|
|
ret { i64, i64, i64 } %ret
|
|
|
|
}
|
|
|
|
|
2016-06-23 18:17:25 +00:00
|
|
|
!hipe.literals = !{ !0, !1, !2 }
|
|
|
|
!0 = !{ !"P_NSP_LIMIT", i32 160 }
|
|
|
|
!1 = !{ !"X86_LEAF_WORDS", i32 24 }
|
|
|
|
!2 = !{ !"AMD64_LEAF_WORDS", i32 24 }
|
2012-11-16 12:36:39 +00:00
|
|
|
@clos = external constant i64
|
|
|
|
declare cc 11 void @bar(i64, i64, i64, i64, i64, i64)
|
2016-07-11 21:03:03 +00:00
|
|
|
declare cc 11 { i64, i64, i64 } @tailcallee(i64, i64, i64, i64, i64, i64, i64)
|