From 827dec28e4c0b1c4972f1419e0ac23e4dbd9d916 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 26 Jun 2024 21:51:15 +0300 Subject: enough functionality to implement posthaste --- include/ejit/ejit.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/ejit/ejit.h b/include/ejit/ejit.h index ee3f466..3063ceb 100644 --- a/include/ejit/ejit.h +++ b/include/ejit/ejit.h @@ -112,8 +112,6 @@ static inline struct ejit_arg ejit_build_arg_f(enum ejit_type type, double x) return a; } -#define EJIT_C(x) ((struct ejit_arg){.c = (int8_t)(x), .type = EJIT_INT8}) - /* register allocator could be just pushing everything above V0 or whatever onto * the stack, heh */ struct ejit_gpr { @@ -160,6 +158,8 @@ void ejit_destroy_func(struct ejit_func *s); #define EJIT_GPR(x) ((struct ejit_gpr){.r = (x)}) #define EJIT_FPR(x) ((struct ejit_fpr){.f = (x)}) +#define EJIT_ARG_POINTER(x) ((struct ejit_arg){.p = (x), .type = EJIT_POINTER}) + #define EJIT_OPERAND_GPR(x, t) ((struct ejit_operand){ .kind = EJIT_OPERAND_GPR, .r = (long)(x), .type = (t)}) #define EJIT_OPERAND_FPR(x, t) ((struct ejit_operand){ .kind = EJIT_OPERAND_FPR, .r = (long)(x) .type =(t)}) #define EJIT_OPERAND_IMM(x, t) ((struct ejit_operand){ .kind = EJIT_OPERAND_IMM, .r = (long)(x), .type = (t)}) @@ -259,6 +259,7 @@ void ejit_ltr(struct ejit_func *s, struct ejit_gpr r0, struct ejit_gpr r1, struc struct ejit_reloc ejit_bltr(struct ejit_func *s, struct ejit_gpr r0, struct ejit_gpr r1); struct ejit_reloc ejit_bnei(struct ejit_func *s, struct ejit_gpr r0, long o); +struct ejit_reloc ejit_beqi(struct ejit_func *s, struct ejit_gpr r0, long o); struct ejit_reloc ejit_jmp(struct ejit_func *s); void ejit_patch(struct ejit_func *s, struct ejit_reloc r, struct ejit_label l); -- cgit v1.2.3