Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / vararg-callee-cleanup.ll
blobdb450d1e34eed391d504607a2f7bb787a7006726
1 ; RUN: llc -mtriple=i686-pc-windows -no-x86-call-frame-opt < %s | FileCheck %s
3 target datalayout = "e-m:w-p:32:32-i64:64-f80:32-n8:16:32-S32"
5 declare x86_thiscallcc void @thiscall_thunk(ptr %this, ...)
6 define i32 @call_varargs_thiscall_thunk(ptr %a, i32 %b, i32 %c, i32 %d) {
7   call x86_thiscallcc void (ptr, ...) @thiscall_thunk(ptr %a, i32 1, i32 2)
8   call x86_thiscallcc void (ptr, ...) @thiscall_thunk(ptr %a, i32 1, i32 2)
9   %t1 = add i32 %b, %c
10   %r = add i32 %t1, %d
11   ret i32 %r
14 ; CHECK: _call_varargs_thiscall_thunk:
15 ; CHECK: calll _thiscall_thunk
16 ; CHECK-NEXT: subl $8, %esp
18 ; We don't mangle the argument size into variadic callee cleanup functions.
20 declare x86_stdcallcc void @stdcall_thunk(ptr %this, ...)
21 define i32 @call_varargs_stdcall_thunk(ptr %a, i32 %b, i32 %c, i32 %d) {
22   call x86_stdcallcc void (ptr, ...) @stdcall_thunk(ptr %a, i32 1, i32 2)
23   call x86_stdcallcc void (ptr, ...) @stdcall_thunk(ptr %a, i32 1, i32 2)
24   %t1 = add i32 %b, %c
25   %r = add i32 %t1, %d
26   ret i32 %r
29 ; CHECK: _call_varargs_stdcall_thunk:
30 ; CHECK: calll _stdcall_thunk{{$}}
31 ; CHECK-NEXT: subl $12, %esp
33 declare x86_fastcallcc void @fastcall_thunk(ptr %this, ...)
34 define i32 @call_varargs_fastcall_thunk(ptr %a, i32 %b, i32 %c, i32 %d) {
35   call x86_fastcallcc void (ptr, ...) @fastcall_thunk(ptr inreg %a, i32 inreg 1, i32 2)
36   call x86_fastcallcc void (ptr, ...) @fastcall_thunk(ptr inreg %a, i32 inreg 1, i32 2)
37   %t1 = add i32 %b, %c
38   %r = add i32 %t1, %d
39   ret i32 %r
42 ; CHECK: _call_varargs_fastcall_thunk:
43 ; CHECK: calll @fastcall_thunk{{$}}
44 ; CHECK-NEXT: subl $4, %esp
46 ; If you actually return from such a thunk, it will only pop the non-variadic
47 ; portion of the arguments, which is different from what the callee passes.
49 define x86_stdcallcc void @varargs_stdcall_return(i32, i32, ...) {
50   ret void
53 ; CHECK: _varargs_stdcall_return:
54 ; CHECK: retl $8