aboutsummaryrefslogtreecommitdiff
path: root/src/ejit.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-26 13:17:58 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-26 13:17:58 +0200
commit67a13eb82534996fbd6ba2fc0c36d3e1284bcd8e (patch)
tree21561c3209cc77c79d32284541c01ab60fec7791 /src/ejit.c
parent912c07167705613c6db70e542723c7ec2c06c7ea (diff)
downloadejit-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/ejit.c')
-rw-r--r--src/ejit.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ejit.c b/src/ejit.c
index 0a0e7a1..94c69e6 100644
--- a/src/ejit.c
+++ b/src/ejit.c
@@ -1,4 +1,5 @@
#include <assert.h>
+#include <stdio.h>
#include <sys/mman.h>
#include <ejit/ejit.h>
@@ -161,6 +162,8 @@ static void emit_insn_af(struct ejit_func *f, enum ejit_opcode op, size_t idx, e
static void emit_insn_ad(struct ejit_func *f, enum ejit_opcode op, size_t idx, enum ejit_type type, double d)
{
+ fprintf(stderr, "warning: immediate floats are currently not supported.\n"
+ "Consider moving values into FPRs.\n");
struct ejit_insn i = {.op = op, .r0 = idx, .r1 = type, .d = d};
insns_append(&f->insns, i);
}