ir/tests/debug/args_002.irt
2022-05-17 22:37:13 +03:00

46 lines
920 B
Plaintext

--TEST--
002: Argument Passing
--ARGS--
-S --run
--CODE--
{
double c_1 = 0.1;
double c_2 = 0.2;
double c_3 = 0.3;
double c_4 = 0.4;
double c_5 = 0.5;
double c_6 = 0.6;
double c_7 = 0.7;
double c_8 = 0.8;
double c_9 = 0.9;
double c_10 = 0.0;
uintptr_t f = func(printf);
uintptr_t fmt = "%g %g %g %g %g %g %g %g %g %g\n";
l_1 = START(l_3);
int32_t d_2, l_2 = CALL/11(l_1, f, fmt, c_1, c_2, c_3, c_4, c_5, c_6, c_7, c_8, c_9, c_10);
l_3 = RETURN(l_2, d_2);
}
--EXPECT--
test:
subq $0x18, %rsp
movabsq $0x3feccccccccccccd, %rax
movq %rax, (%rsp)
movq $0, 8(%rsp)
leaq 0x96(%rip), %rdi
movsd 0x4e(%rip), %xmm0
movsd 0x4e(%rip), %xmm1
movsd 0x4e(%rip), %xmm2
movsd 0x4e(%rip), %xmm3
movsd 0x4e(%rip), %xmm4
movsd 0x4e(%rip), %xmm5
movsd 0x4e(%rip), %xmm6
movsd 0x4e(%rip), %xmm7
movabsq $_IO_printf, %rax
callq *%rax
addq $0x18, %rsp
retq
0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 0
exit code = 38