mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 15:27:32 +09:00
Update JIT options and thresholds for improved performance
This commit is contained in:
parent
9c1cdcf541
commit
6b25e2373b
4 changed files with 13 additions and 4 deletions
|
|
@ -446,6 +446,15 @@ pref("browser.ghostbuster.enabled", true);
|
|||
// misbehave. Should also avoid spurious GCs during ghostbusting.
|
||||
pref("javascript.options.gc_on_memory_pressure", false);
|
||||
|
||||
pref("javascript.options.baselinejit.unsafe_eager_compilation", false);
|
||||
pref("javascript.options.ion.unsafe_eager_compilation", false);
|
||||
pref("javascript.options.baselinejit.threshold", 4);
|
||||
pref("javascript.options.ion.threshold", 25);
|
||||
pref("javascript.options.mem.high_water_mark", 256);
|
||||
pref("javascript.options.mem.gc_incremental", false);
|
||||
pref("javascript.options.mem.gc_compacting", false);
|
||||
pref("javascript.options.mem.gc_incremental_slice_ms", 40);
|
||||
|
||||
// This is the pref to control the location bar, change this to true to
|
||||
// force this - this makes the origin of popup windows more obvious to avoid
|
||||
// spoofing. We would rather not do it by default because it affects UE for web
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue