From f761e9ee641cb4bf9250fa97d119a444d239e7b7 Mon Sep 17 00:00:00 2001 From: Maxime Chevalier-Boisvert Date: Tue, 8 Dec 2020 17:19:28 -0500 Subject: Move code into ujit_iface.c --- ujit_codegen.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'ujit_codegen.c') diff --git a/ujit_codegen.c b/ujit_codegen.c index 09a0acd76d..03b72ec2c3 100644 --- a/ujit_codegen.c +++ b/ujit_codegen.c @@ -14,7 +14,6 @@ #include "ujit_codegen.h" #include "ujit_asm.h" #include "ujit_utils.h" -#include "ujit_hooks.inc" // Code generation function signature typedef bool (*codegen_fn)(codeblock_t* cb, codeblock_t* ocb, ctx_t* ctx); @@ -34,8 +33,7 @@ static codeblock_t* ocb = NULL; static void ujit_gen_entry(codeblock_t* cb) { - for (size_t i = 0; i < sizeof(ujit_with_ec_pre_call_bytes); ++i) - cb_write_byte(cb, ujit_with_ec_pre_call_bytes[i]); + cb_write_pre_call_bytes(cb); } /** @@ -57,8 +55,7 @@ ujit_gen_exit(codeblock_t* cb, ctx_t* ctx, VALUE* exit_pc) mov(cb, member_opnd(REG_CFP, rb_control_frame_t, pc), RAX); // Write the post call bytes - for (size_t i = 0; i < sizeof(ujit_with_ec_post_call_bytes); ++i) - cb_write_byte(cb, ujit_with_ec_post_call_bytes[i]); + cb_write_post_call_bytes(cb); } /** -- cgit v1.2.3