tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

enterjit-osr-disabling-earlyret.js (309B)


      1 setJitCompilerOption("baseline.warmup.trigger", 10);
      2 setJitCompilerOption("ion.warmup.trigger", 20);
      3 
      4 enableGeckoProfilingWithSlowAssertions();
      5 (function() {
      6   var n = 50;
      7   while (n--) {
      8       disableGeckoProfiling();
      9       if (!n)
     10    return;
     11       enableGeckoProfilingWithSlowAssertions();
     12   }
     13 })();