llvm-6502/test/CodeGen/X86/tlv-2.ll
Evan Cheng 7158e08b8e Use pushq / popq instead of subq $8, %rsp / addq $8, %rsp to adjust stack in
prologue and epilogue if the adjustment is 8. Similarly, use pushl / popl if
the adjustment is 4 in 32-bit mode.

In the epilogue, takes care to pop to a caller-saved register that's not live
at the exit (either return or tailcall instruction).
rdar://8771137


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122783 91177308-0d34-0410-b5e6-96231b3b80d8
2011-01-03 22:53:22 +00:00

33 lines
836 B
LLVM

; RUN: llc < %s -mtriple x86_64-apple-darwin -O0 | FileCheck %s
@b = thread_local global i32 5, align 4
@a = thread_local global i32 0, align 4
@c = internal thread_local global i32 0, align 4
@d = internal thread_local global i32 5, align 4
define void @foo() nounwind ssp {
entry:
store i32 1, i32* @a, align 4
; CHECK: movq _a@TLVP(%rip), %rdi
; CHECK: callq *(%rdi)
; CHECK: movl $1, (%rax)
store i32 2, i32* @b, align 4
; CHECK: movq _b@TLVP(%rip), %rdi
; CHECK: callq *(%rdi)
; CHECK: movl $2, (%rax)
store i32 3, i32* @c, align 4
; CHECK: movq _c@TLVP(%rip), %rdi
; CHECK: callq *(%rdi)
; CHECK: movl $3, (%rax)
store i32 4, i32* @d, align 4
; CHECK: movq _d@TLVP(%rip), %rdi
; CHECK: callq *(%rdi)
; CHECK: movl $4, (%rax)
; CHECK: popq
ret void
}