diff options
Diffstat (limited to 'test/CodeGen/X86/fast-isel-x86.ll')
-rw-r--r-- | test/CodeGen/X86/fast-isel-x86.ll | 35 |
1 files changed, 32 insertions, 3 deletions
diff --git a/test/CodeGen/X86/fast-isel-x86.ll b/test/CodeGen/X86/fast-isel-x86.ll index 8049c72ec018e..8cddee5a7cd01 100644 --- a/test/CodeGen/X86/fast-isel-x86.ll +++ b/test/CodeGen/X86/fast-isel-x86.ll @@ -1,4 +1,5 @@ ; RUN: llc -fast-isel -O0 -mcpu=generic -mtriple=i386-apple-darwin10 -relocation-model=pic < %s | FileCheck %s +; RUN: llc -fast-isel -O0 -mcpu=generic -mtriple=i386-apple-darwin10 -relocation-model=pic < %s -fast-isel-verbose 2>&1 >/dev/null | FileCheck -check-prefix=STDERR -allow-empty %s ; This should use flds to set the return value. ; CHECK-LABEL: test0: @@ -18,11 +19,38 @@ define void @test1({i32, i32, i32, i32}* sret %p) nounwind { ret void } +; This should pop 8 bytes on return. +; CHECK-LABEL: thiscallfun: +; CHECK: retl $8 +define x86_thiscallcc i32 @thiscallfun(i32* %this, i32 %a, i32 %b) nounwind { +; STDERR-NOT: FastISel missed terminator: ret i32 12345 + ret i32 12345 +} + +; Here, the callee pop doesn't fit the 16 bit immediate -- see x86-big-ret.ll +; This checks that -fast-isel doesn't miscompile this. +; CHECK-LABEL: thiscall_large: +; CHECK: popl %ecx +; CHECK-NEXT: addl $65536, %esp +; CHECK-NEXT: pushl %ecx +; CHECK-NEXT: retl +define x86_thiscallcc void @thiscall_large(i32* %this, [65533 x i8]* byval %b) nounwind { + ret void +} + +; This should pop 4 bytes on return. +; CHECK-LABEL: stdcallfun: +; CHECK: retl $4 +define x86_stdcallcc i32 @stdcallfun(i32 %a) nounwind { +; STDERR-NOT: FastISel missed terminator: ret i32 54321 + ret i32 54321 +} + ; Properly initialize the pic base. ; CHECK-LABEL: test2: ; CHECK-NOT: HHH -; CHECK: call{{.*}}L2$pb -; CHECK-NEXT: L2$pb: +; CHECK: call{{.*}}L5$pb +; CHECK-NEXT: L5$pb: ; CHECK-NEXT: pop ; CHECK: HHH ; CHECK: retl @@ -75,6 +103,7 @@ entry: ; SDag-ISel's arg push: ; CHECK: movl %esp, [[REGISTER:%[a-z]+]] ; CHECK: movl $42, ([[REGISTER]]) -; CHECK: movl __imp__test5dllimport +; CHECK: movl L_test5dllimport$non_lazy_ptr-L8$pb(%eax), %eax + } declare dllimport i32 @test5dllimport(i32) |