From 7087de27ea904b026ca86b5604e474b0e19a570a Mon Sep 17 00:00:00 2001 From: Jan de Mooij Date: Tue, 22 Sep 2020 18:27:14 +0000 Subject: [PATCH] Bug 1666417 part 3 - Enable Warp in the browser. r=iain Also bumps the threshold to 1500 to match DefaultJitOptions::setWarpEnabled. Changing the JS shell default is more tricky and will be done separately if this sticks. Depends on D90957 Differential Revision: https://phabricator.services.mozilla.com/D90958 --- modules/libpref/init/all.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 891f1be26b6a..db7521df0ffd 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -1077,9 +1077,9 @@ pref("javascript.options.baselinejit", true); // Duplicated in JitOptions - ensure both match. pref("javascript.options.baselinejit.threshold", 100); pref("javascript.options.ion", true); -pref("javascript.options.warp", false); +pref("javascript.options.warp", true); // Duplicated in JitOptions - ensure both match. -pref("javascript.options.ion.threshold", 1000); +pref("javascript.options.ion.threshold", 1500); pref("javascript.options.ion.full.threshold", 100000); // Duplicated in JitOptions - ensure both match. pref("javascript.options.ion.frequent_bailout_threshold", 10);