aboutsummaryrefslogtreecommitdiff
path: root/src/ejit.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-14 22:33:57 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-14 23:17:04 +0200
commit2a2d096b61262c2059ea022379869b9c4a70eafa (patch)
tree42f0c6a53506f613f1441a9f206e756dbae3afa7 /src/ejit.c
parentf5c729ea59d227a507f83bd94d07f4366b46d72b (diff)
downloadejit-2a2d096b61262c2059ea022379869b9c4a70eafa.tar.gz
ejit-2a2d096b61262c2059ea022379869b9c4a70eafa.zip
protect jit pages
Diffstat (limited to 'src/ejit.c')
-rw-r--r--src/ejit.c16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/ejit.c b/src/ejit.c
index 660d476..265acea 100644
--- a/src/ejit.c
+++ b/src/ejit.c
@@ -363,17 +363,29 @@ struct ejit_func *ejit_create_func(enum ejit_type rtype, size_t argc,
return f;
}
+void ejit_compile_func_unsafe(struct ejit_func *f)
+{
+ ejit_select_compile_func(f,
+ gpr_stats_len(&f->gpr),
+ fpr_stats_len(&f->fpr),
+ f->use_64,
+ true,
+ false);
+}
+
void ejit_compile_func(struct ejit_func *f)
{
+ /* might make sense to use flags instead of bools... */
ejit_select_compile_func(f,
gpr_stats_len(&f->gpr),
fpr_stats_len(&f->fpr),
f->use_64,
+ true,
true);
}
void ejit_select_compile_func(struct ejit_func *f, size_t gpr, size_t fpr,
- bool use_64, bool try_jit)
+ bool use_64, bool try_jit, bool im_scawed)
{
/* emit a final end instruction in case user didn't do a return */
emit_insn_o(f, END);
@@ -384,7 +396,7 @@ void ejit_select_compile_func(struct ejit_func *f, size_t gpr, size_t fpr,
assert(!f->use_64 || (use_64 == f->use_64));
/* try to jit compile if possible */
- if (try_jit && ejit_compile(f, use_64))
+ if (try_jit && ejit_compile(f, use_64, im_scawed))
return;
/* otherwise, convert opcodes to address labels */