mirror of
https://github.com/danog/ir.git
synced 2024-11-27 04:45:38 +01:00
45 lines
933 B
Plaintext
45 lines
933 B
Plaintext
--TEST--
|
|
CALL with parallel argument passing
|
|
--TARGET--
|
|
x86
|
|
--ARGS--
|
|
-S
|
|
--CODE--
|
|
{
|
|
uintptr_t c_6 = "hello %d!\n";
|
|
l_1 = START(l_4);
|
|
int32_t p_1 = PARAM(l_1, "p1", 1);
|
|
int32_t p_2 = PARAM(l_1, "p2", 2);
|
|
int32_t p_3 = PARAM(l_1, "p3", 3);
|
|
int32_t p_4 = PARAM(l_1, "p4", 4);
|
|
uintptr_t fp = PARAM(l_1, "fp", 5);
|
|
uintptr_t f, l_11 = LOAD(l_1, fp);
|
|
int32_t d_2, l_2 = CALL/4(l_11, f, c_6, p_3, p_4, p_2);
|
|
int32_t d_3 = ADD(d_2, p_1);
|
|
l_4 = RETURN(l_2, d_3);
|
|
}
|
|
--EXPECT--
|
|
test:
|
|
subl $0x1c, %esp
|
|
movl %ebx, 0x18(%esp)
|
|
movl 0x20(%esp), %ebx
|
|
movl 0x30(%esp), %eax
|
|
movl (%eax), %eax
|
|
leal .L1, %ecx
|
|
movl %ecx, (%esp)
|
|
movl 0x28(%esp), %ecx
|
|
movl %ecx, 4(%esp)
|
|
movl 0x2c(%esp), %ecx
|
|
movl %ecx, 8(%esp)
|
|
movl 0x24(%esp), %ecx
|
|
movl %ecx, 0xc(%esp)
|
|
calll *%eax
|
|
leal (%eax, %ebx), %eax
|
|
movl 0x18(%esp), %ebx
|
|
addl $0x1c, %esp
|
|
retl
|
|
.rodata
|
|
.db 0x90
|
|
.L1:
|
|
.db 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x20, 0x25, 0x64, 0x21, 0x0a, 0x00
|