From 5e6633fcf988e5874d0a9929bdf2cd496289e75d Mon Sep 17 00:00:00 2001 From: Maxime Chevalier-Boisvert Date: Mon, 31 Oct 2022 14:29:11 -0400 Subject: [PATCH] YJIT: reduce default `--yjit-exec-mem-size` to 128MiB instead of 256 (#6649) Reduce default --yjit-exec-mem-size to 128MiB instead of 256 --- yjit/src/options.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yjit/src/options.rs b/yjit/src/options.rs index a0cdbbc566..645af0faac 100644 --- a/yjit/src/options.rs +++ b/yjit/src/options.rs @@ -53,7 +53,7 @@ pub struct Options { // Initialize the options to default values pub static mut OPTIONS: Options = Options { - exec_mem_size: 256 * 1024 * 1024, + exec_mem_size: 128 * 1024 * 1024, code_page_size: 16 * 1024, call_threshold: 10, greedy_versioning: false,