#include #include #include "do_jit.h" struct args { int8_t a; int16_t b; int32_t c; long d; uint16_t e; float f; double g; float h; }; int main(int argc, char *argv[]) { (void)argv; bool do_jit = argc > 1; struct ejit_operand operands[9] = { EJIT_OPERAND_GPR(0, EJIT_POINTER), EJIT_OPERAND_GPR(1, EJIT_INT8), EJIT_OPERAND_GPR(2, EJIT_INT16), EJIT_OPERAND_GPR(3, EJIT_INT32), EJIT_OPERAND_GPR(4, EJIT_TYPE(long)), EJIT_OPERAND_GPR(5, EJIT_UINT16), EJIT_OPERAND_FPR(0, EJIT_FLOAT), EJIT_OPERAND_FPR(1, EJIT_DOUBLE), EJIT_OPERAND_FPR(2, EJIT_FLOAT) }; struct ejit_func *f = ejit_create_func(EJIT_POINTER, 9, operands); EJIT_STXI(f, int8_t, EJIT_GPR(1), EJIT_GPR(0), offsetof(struct args, a)); // a EJIT_STXI(f, int16_t, EJIT_GPR(2), EJIT_GPR(0), offsetof(struct args, b)); // b EJIT_STXI(f, int32_t, EJIT_GPR(3), EJIT_GPR(0), offsetof(struct args, c)); // c EJIT_STXI(f, long, EJIT_GPR(4), EJIT_GPR(0), offsetof(struct args, d)); // d EJIT_STXI(f, uint16_t, EJIT_GPR(5), EJIT_GPR(0), offsetof(struct args, e)); // e EJIT_STXI(f, float, EJIT_FPR(0), EJIT_GPR(0), offsetof(struct args, f)); // f EJIT_STXI(f, double, EJIT_FPR(1), EJIT_GPR(0), offsetof(struct args, g)); // g EJIT_STXI(f, float, EJIT_FPR(2), EJIT_GPR(0), offsetof(struct args, h)); // h ejit_retr(f, EJIT_GPR(0)); ejit_select_compile_func(f, 6, 3, EJIT_USE64(long), do_jit); struct args in = { 0, 1, 2, 3, 4, 5, 6, 7 }; struct args out; struct ejit_arg args[9] = { EJIT_ARG(&out, void *), EJIT_ARG(in.a, int8_t), EJIT_ARG(in.b, int16_t), EJIT_ARG(in.c, int32_t), EJIT_ARG(in.d, long), EJIT_ARG(in.e, uint16_t), EJIT_ARG(in.f, float), EJIT_ARG(in.g, double), EJIT_ARG(in.h, float) }; assert((void *)ejit_run_func_i(f, 9, args) == &out); assert(in.a == out.a); assert(in.b == out.b); assert(in.c == out.c); assert(in.d == out.d); assert(in.e == out.e); assert(in.f == out.f); assert(in.g == out.g); assert(in.h == out.h); ejit_destroy_func(f); }