ir/tests/debug.aarch64/call2.irt

43 lines
831 B
Plaintext
Raw Permalink Normal View History

--TEST--
CALL with parallel argument passing
--TARGET--
aarch64
--ARGS--
-S
--CODE--
{
uintptr_t c_1 = 0;
bool c_2 = 0;
bool c_3 = 1;
int32_t c_4 = 42;
uintptr_t c_5 = func(printf);
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", 1);
int32_t p_3 = PARAM(l_1, "p3", 1);
int32_t p_4 = PARAM(l_1, "p4", 1);
int32_t d_2, l_2 = CALL/4(l_1, c_5, 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:
stp x29, x30, [sp, #-0x20]!
mov x29, sp
str x19, [x29, #0x18]
mov w19, w0
mov w16, w1
mov w1, w2
mov w2, w3
mov w3, w16
adr x0, .L1
bl _IO_printf
add w0, w0, w19
ldr x19, [x29, #0x18]
ldp x29, x30, [sp], #0x20
ret
.rodata
.L1:
.db 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x20, 0x25, 0x64, 0x21, 0x0a, 0x00, 0x00