summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxime Chevalier-Boisvert <maxime.chevalierboisvert@shopify.com>2022-07-22 12:18:21 -0400
committerTakashi Kokubun <takashikkbn@gmail.com>2022-08-29 08:47:03 -0700
commit7e22ec7439211d43aea850a4e849f37e631ed131 (patch)
treea0b32fe5a425db3a86631dfd89b4652e4c53b0fe
parentb1ed4d9b947e650dda7bfb9578652d4edb2608b4 (diff)
Clear the icache on arm
-rw-r--r--yjit.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/yjit.c b/yjit.c
index 0dddcfdc5a..a0c5c09091 100644
--- a/yjit.c
+++ b/yjit.c
@@ -78,6 +78,10 @@ rb_yjit_mark_executable(void *mem_block, uint32_t mem_size)
rb_bug("Couldn't make JIT page (%p, %lu bytes) executable, errno: %s\n",
mem_block, (unsigned long)mem_size, strerror(errno));
}
+
+ // Clear/invalidate the instruction cache. Compiles to nothing on x86_64
+ // but required on ARM. On Darwin it's the same as calling sys_icache_invalidate().
+ __builtin___clear_cache(mem_block, (char *)mem_block + mem_size);
}
# define PTR2NUM(x) (rb_int2inum((intptr_t)(void *)(x)))