Changeset 216459 in webkit


Ignore:
Timestamp:
May 8, 2017, 3:24:29 PM (8 years ago)
Author:
mark.lam@apple.com
Message:

op_throw_static_error's use of its first operand should be reflected in DFG BytecodeUseDef as well.
https://bugs.webkit.org/show_bug.cgi?id=171786
<rdar://problem/32051023>

Reviewed by Saam Barati.

JSTests:

  • stress/bug-171786.js: Added.

Source/JavaScriptCore:

  • bytecode/BytecodeDumper.cpp:

(JSC::BytecodeDumper<Block>::dumpBytecode):

  • Fix BytecodeDumper to dump op_throw_static_error correctly. Previously, it was expecting op1 to always be a constant. r206870 changed it to take a variable string as well.
  • bytecode/BytecodeUseDef.h:

(JSC::computeUsesForBytecodeOffset):

  • Fix the bug.
  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::parseBlock):

  • Move the Phantom of op1 after the ThrowStaticError node, because technically, the ThrowStaticError represents op_throw_static_error, and op_throw_static_error uses op1. In practice, this probably doesn't matter, but let's have the code accurately communicate the behavior we're expecting.
Location:
trunk
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r216329 r216459  
     12017-05-08  Mark Lam  <mark.lam@apple.com>
     2
     3        op_throw_static_error's use of its first operand should be reflected in DFG BytecodeUseDef as well.
     4        https://bugs.webkit.org/show_bug.cgi?id=171786
     5        <rdar://problem/32051023>
     6
     7        Reviewed by Saam Barati.
     8
     9        * stress/bug-171786.js: Added.
     10
    1112017-05-06  Oleksandr Skachkov  <gskachkov@gmail.com>
    212
  • trunk/Source/JavaScriptCore/ChangeLog

    r216430 r216459  
     12017-05-08  Mark Lam  <mark.lam@apple.com>
     2
     3        op_throw_static_error's use of its first operand should be reflected in DFG BytecodeUseDef as well.
     4        https://bugs.webkit.org/show_bug.cgi?id=171786
     5        <rdar://problem/32051023>
     6
     7        Reviewed by Saam Barati.
     8
     9        * bytecode/BytecodeDumper.cpp:
     10        (JSC::BytecodeDumper<Block>::dumpBytecode):
     11        - Fix BytecodeDumper to dump op_throw_static_error correctly.  Previously,
     12          it was expecting op1 to always be a constant.  r206870 changed it to take a
     13          variable string as well.
     14
     15        * bytecode/BytecodeUseDef.h:
     16        (JSC::computeUsesForBytecodeOffset):
     17        - Fix the bug.
     18
     19        * dfg/DFGByteCodeParser.cpp:
     20        (JSC::DFG::ByteCodeParser::parseBlock):
     21        - Move the Phantom of op1 after the ThrowStaticError node, because technically,
     22          the ThrowStaticError represents op_throw_static_error, and op_throw_static_error
     23          uses op1.  In practice, this probably doesn't matter, but let's have the code
     24          accurately communicate the behavior we're expecting.
     25
    1262017-05-08  JF Bastien  <jfbastien@apple.com>
    227
  • trunk/Source/JavaScriptCore/bytecode/BytecodeDumper.cpp

    r215984 r216459  
    15441544    }
    15451545    case op_throw_static_error: {
    1546         int k0 = (++it)->u.operand;
     1546        int r0 = (++it)->u.operand;
    15471547        ErrorType k1 = static_cast<ErrorType>((++it)->u.unsignedValue);
    15481548        printLocationAndOp(out, location, it, "throw_static_error");
    1549         out.printf("%s, ", constantName(k0).data());
     1549        out.printf("%s, ", registerName(r0).data());
    15501550        out.print(k1);
    15511551        break;
  • trunk/Source/JavaScriptCore/bytecode/BytecodeUseDef.h

    r215984 r216459  
    4141    case op_new_regexp:
    4242    case op_new_array_buffer:
    43     case op_throw_static_error:
    4443    case op_debug:
    4544    case op_jneq_ptr:
     
    7170    case op_dec:
    7271    case op_inc:
    73     case op_log_shadow_chicken_prologue: {
     72    case op_log_shadow_chicken_prologue:
     73    case op_throw_static_error: {
    7474        ASSERT(opcodeLengths[opcodeID] > 1);
    7575        functor(codeBlock, instruction, opcodeID, instruction[1].u.operand);
  • trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp

    r216178 r216459  
    50385038           
    50395039        case op_throw_static_error:
     5040            addToGraph(ThrowStaticError);
    50405041            addToGraph(Phantom, get(VirtualRegister(currentInstruction[1].u.operand))); // Keep argument live.
    5041             addToGraph(ThrowStaticError);
    50425042            flushForTerminal();
    50435043            addToGraph(Unreachable);
Note: See TracChangeset for help on using the changeset viewer.