Changeset 247913 in webkit


Ignore:
Timestamp:
Jul 29, 2019 11:54:46 AM (5 years ago)
Author:
Justin Michaud
Message:

[X86] Emit BT instruction for shift + mask in B3
https://bugs.webkit.org/show_bug.cgi?id=199891

Reviewed by Robin Morisset.

Lower the number of iterations to fix debug timeouts.

  • microbenchmarks/bit-test-load.js:

(i):

Location:
trunk/JSTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r247889 r247913  
     12019-07-29  Justin Michaud  <justin_michaud@apple.com>
     2
     3        [X86] Emit BT instruction for shift + mask in B3
     4        https://bugs.webkit.org/show_bug.cgi?id=199891
     5
     6        Reviewed by Robin Morisset.
     7
     8        Lower the number of iterations to fix debug timeouts.
     9
     10        * microbenchmarks/bit-test-load.js:
     11        (i):
     12
    1132019-07-27  Justin Michaud  <justin_michaud@apple.com>
    214
  • trunk/JSTests/microbenchmarks/bit-test-load.js

    r247889 r247913  
    1414noInline(doTest);
    1515
    16 for (let i=0; i<(1<<30); ++i) {
     16for (let i=0; i<(1<<25); ++i) {
    1717    arr[0] = arr[1] = arr[2] = arr[3] = i
    1818    doTest()
    1919}
    2020
    21 if (glob != 1073741824)
     21if (glob != 33554432)
    2222    throw "Error: bad result: " + glob;
Note: See TracChangeset for help on using the changeset viewer.