aboutsummaryrefslogtreecommitdiff
path: root/src/compile/compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/compile/compile.c')
-rw-r--r--src/compile/compile.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/compile/compile.c b/src/compile/compile.c
index 804a29f..2d1ec5f 100644
--- a/src/compile/compile.c
+++ b/src/compile/compile.c
@@ -2064,6 +2064,10 @@ bool ejit_compile(struct ejit_func *f, bool use_64)
if (!init_jit())
return false;
+ /* the main overhead of compilation seems to be the syscall to mmap a
+ * new arena, I might look into allocating a big buffer at once and
+ * caching it to be reused later, might allow us to compile many small
+ * functions faster */
jit_state_t *j = jit_new_state(NULL, NULL);
assert(j);