Changeset 259342 in webkit


Ignore:
Timestamp:
Apr 1, 2020 6:31:07 AM (4 years ago)
Author:
commit-queue@webkit.org
Message:

[JSC] Reenable non-cloop LLint, JIT and DFG on 32-bit platforms
https://bugs.webkit.org/show_bug.cgi?id=191163

Patch by Paulo Matos <Paulo Matos> on 2020-04-01
Reviewed by Adrian Perez de Castro.

Re-enable tests for 32bits.

  • stress/op_add.js:
  • stress/op_bitand.js:
  • stress/op_bitor.js:
  • stress/op_bitxor.js:
  • stress/op_lshift-ConstVar.js:
  • stress/op_lshift-VarConst.js:
  • stress/op_lshift-VarVar.js:
  • stress/op_mod-ConstVar.js:
  • stress/op_mod-VarConst.js:
  • stress/op_mod-VarVar.js:
  • stress/op_mul-ConstVar.js:
  • stress/op_mul-VarConst.js:
  • stress/op_mul-VarVar.js:
  • stress/op_rshift-ConstVar.js:
  • stress/op_rshift-VarConst.js:
  • stress/op_rshift-VarVar.js:
  • stress/op_sub-ConstVar.js:
  • stress/op_sub-VarConst.js:
  • stress/op_sub-VarVar.js:
  • stress/op_urshift-ConstVar.js:
  • stress/op_urshift-VarConst.js:
  • stress/op_urshift-VarVar.js:
  • stress/spread-forward-call-varargs-stack-overflow.js:
  • stress/value-to-boolean.js:
Location:
trunk/JSTests
Files:
25 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r259262 r259342  
     12020-04-01  Paulo Matos  <pmatos@igalia.com>
     2
     3        [JSC] Reenable non-cloop LLint, JIT and DFG on 32-bit platforms
     4        https://bugs.webkit.org/show_bug.cgi?id=191163
     5
     6        Reviewed by Adrian Perez de Castro.
     7
     8        Re-enable tests for 32bits.
     9
     10        * stress/op_add.js:
     11        * stress/op_bitand.js:
     12        * stress/op_bitor.js:
     13        * stress/op_bitxor.js:
     14        * stress/op_lshift-ConstVar.js:
     15        * stress/op_lshift-VarConst.js:
     16        * stress/op_lshift-VarVar.js:
     17        * stress/op_mod-ConstVar.js:
     18        * stress/op_mod-VarConst.js:
     19        * stress/op_mod-VarVar.js:
     20        * stress/op_mul-ConstVar.js:
     21        * stress/op_mul-VarConst.js:
     22        * stress/op_mul-VarVar.js:
     23        * stress/op_rshift-ConstVar.js:
     24        * stress/op_rshift-VarConst.js:
     25        * stress/op_rshift-VarVar.js:
     26        * stress/op_sub-ConstVar.js:
     27        * stress/op_sub-VarConst.js:
     28        * stress/op_sub-VarVar.js:
     29        * stress/op_urshift-ConstVar.js:
     30        * stress/op_urshift-VarConst.js:
     31        * stress/op_urshift-VarVar.js:
     32        * stress/spread-forward-call-varargs-stack-overflow.js:
     33        * stress/value-to-boolean.js:
     34
    1352020-03-30  Alexey Shvayka  <shvaikalesh@gmail.com>
    236
  • trunk/JSTests/stress/op_add.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_bitand.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_bitor.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_bitxor.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_lshift-ConstVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_lshift-VarConst.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_lshift-VarVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_mod-ConstVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT("--timeoutMultiplier=1.5")
    52
  • trunk/JSTests/stress/op_mod-VarConst.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT("--timeoutMultiplier=1.5")
    52
  • trunk/JSTests/stress/op_mod-VarVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT("--timeoutMultiplier=1.5")
    52
  • trunk/JSTests/stress/op_mul-ConstVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_mul-VarConst.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_mul-VarVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_rshift-ConstVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_rshift-VarConst.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_rshift-VarVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_sub-ConstVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_sub-VarConst.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_sub-VarVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_urshift-ConstVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_urshift-VarConst.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/op_urshift-VarVar.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41//@ runFTLNoCJIT
    52
  • trunk/JSTests/stress/spread-forward-call-varargs-stack-overflow.js

    r240432 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if ["arm", "mips", "x86"].include?($architecture)
    41function assert(b) {
    52    if (!b)
  • trunk/JSTests/stress/value-to-boolean.js

    r237696 r259342  
    1 // FIXME: unskip when this is solved
    2 // https://bugs.webkit.org/show_bug.cgi?id=191163
    3 //@ skip if $architecture == "mips" or $architecture == "arm"
    41//@ if $buildType == "release" then runDefault else skip end
    52
Note: See TracChangeset for help on using the changeset viewer.