summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-09-21 03:37:00 +0000
committerChris Lattner <sabre@nondot.org>2010-09-21 03:37:00 +0000
commit08bad54baf244ea0d0835b729db2b3754156683d (patch)
tree5ec3dedef62398b10c243bab99b1b3950f42c53a /test
parentaa359bddbfe498a3c7445bc2b8afa2bed61a131c (diff)
downloadllvm-08bad54baf244ea0d0835b729db2b3754156683d.tar.gz
llvm-08bad54baf244ea0d0835b729db2b3754156683d.tar.bz2
llvm-08bad54baf244ea0d0835b729db2b3754156683d.tar.xz
fix rdar://8453210, a crash handling a call through a GS relative load.
For now, just disable folding the load into the call. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114386 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/movgs.ll31
1 files changed, 29 insertions, 2 deletions
diff --git a/test/CodeGen/X86/movgs.ll b/test/CodeGen/X86/movgs.ll
index b04048b92c..ed201f36e9 100644
--- a/test/CodeGen/X86/movgs.ll
+++ b/test/CodeGen/X86/movgs.ll
@@ -1,8 +1,35 @@
-; RUN: llc < %s -march=x86 | grep gs
+; RUN: llc < %s -march=x86 | FileCheck %s --check-prefix=X32
+; RUN: llc < %s -march=x86-64 | FileCheck %s --check-prefix=X64
-define i32 @foo() nounwind readonly {
+define i32 @test1() nounwind readonly {
entry:
%tmp = load i32* addrspace(256)* getelementptr (i32* addrspace(256)* inttoptr (i32 72 to i32* addrspace(256)*), i32 31) ; <i32*> [#uses=1]
%tmp1 = load i32* %tmp ; <i32> [#uses=1]
ret i32 %tmp1
}
+; X32: test1:
+; X32: movl %gs:196, %eax
+; X32: movl (%eax), %eax
+; X32: ret
+
+; X64: test1:
+; X64: movq %gs:320, %rax
+; X64: movl (%rax), %eax
+; X64: ret
+
+define i64 @test2(void (i8*)* addrspace(256)* %tmp8) nounwind {
+entry:
+ %tmp9 = load void (i8*)* addrspace(256)* %tmp8, align 8
+ tail call void %tmp9(i8* undef) nounwind optsize
+ ret i64 0
+}
+
+; rdar://8453210
+; X32: test2:
+; X32: movl %gs:(%eax), %eax
+; X32: movl %eax, (%esp)
+; X32: call *%eax
+
+; X64: test2:
+; X64: movq %gs:(%rdi), %rax
+; X64: callq *%rax