diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-26 13:17:58 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-26 13:17:58 +0200 |
commit | 67a13eb82534996fbd6ba2fc0c36d3e1284bcd8e (patch) | |
tree | 21561c3209cc77c79d32284541c01ab60fec7791 /src/compile/compile.c | |
parent | 912c07167705613c6db70e542723c7ec2c06c7ea (diff) | |
download | ejit-67a13eb82534996fbd6ba2fc0c36d3e1284bcd8e.tar.gz ejit-67a13eb82534996fbd6ba2fc0c36d3e1284bcd8e.zip |
handle immediates a bit better
+ Passing floats as immediate values is not supported in lightening, but
I might have a go at adding it since it seems like a useful feature at
some point
Diffstat (limited to 'src/compile/compile.c')
-rw-r--r-- | src/compile/compile.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/compile/compile.c b/src/compile/compile.c index c979305..50f12dc 100644 --- a/src/compile/compile.c +++ b/src/compile/compile.c @@ -2140,6 +2140,31 @@ static size_t compile_fn_body(struct ejit_func *f, jit_state_t *j, void *arena, case JMP: compile_jmp(f, j, i, &relocs); break; + case ARG_I: { + jit_operand_t type = jit_operand_imm(JIT_OPERAND_ABI_WORD, i.r1); + jit_operand_t arg = jit_operand_imm(jit_abi_from(i.r1), i.o); + operands_append(&src, type); + operands_append(&src, arg); + operands_append(&direct, arg); + + jit_operand_t to[2] = { + jit_operand_mem(JIT_OPERAND_ABI_WORD, JIT_SP, + type_offset(i)), + jit_operand_mem(jit_abi_from(i.r1), JIT_SP, + arg_offset(i)) + }; + + operands_append(&dst, to[0]); + operands_append(&dst, to[1]); + break; + } + + case ARG_FI: { + assert(false && "immediate floats (currently?) not supported"); + abort(); + break; + } + case ARG: { size_t r2 = gpr_stats_at(&f->gpr, i.r2)->rno; jit_operand_t type = jit_operand_imm(JIT_OPERAND_ABI_WORD, i.r1); |