tor-browser

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

flush.js (762B)


      1 /* Handle flushing of scripted call ICs pointing to recompiled functions. */
      2 
      3 function add(x, y) {
      4  var z = x + y;
      5  return String(x + y);
      6 }
      7 
      8 function foo() {
      9  var x = 0x7ffffff0;
     10  var res = "";
     11  for (var i = 0; i < 20; i++) {
     12    res += add(x, i) + ",";
     13    res += add(x, i) + ",";
     14  }
     15  assertEq(res, "2147483632,2147483632,2147483633,2147483633,2147483634,2147483634,2147483635,2147483635,2147483636,2147483636,2147483637,2147483637,2147483638,2147483638,2147483639,2147483639,2147483640,2147483640,2147483641,2147483641,2147483642,2147483642,2147483643,2147483643,2147483644,2147483644,2147483645,2147483645,2147483646,2147483646,2147483647,2147483647,2147483648,2147483648,2147483649,2147483649,2147483650,2147483650,2147483651,2147483651,");
     16 }
     17 foo();