Changeset 216459 in webkit
- Timestamp:
- May 8, 2017, 3:24:29 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JSTests/ChangeLog
r216329 r216459 1 2017-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 1 11 2017-05-06 Oleksandr Skachkov <gskachkov@gmail.com> 2 12 -
trunk/Source/JavaScriptCore/ChangeLog
r216430 r216459 1 2017-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 1 26 2017-05-08 JF Bastien <jfbastien@apple.com> 2 27 -
trunk/Source/JavaScriptCore/bytecode/BytecodeDumper.cpp
r215984 r216459 1544 1544 } 1545 1545 case op_throw_static_error: { 1546 int k0 = (++it)->u.operand;1546 int r0 = (++it)->u.operand; 1547 1547 ErrorType k1 = static_cast<ErrorType>((++it)->u.unsignedValue); 1548 1548 printLocationAndOp(out, location, it, "throw_static_error"); 1549 out.printf("%s, ", constantName(k0).data());1549 out.printf("%s, ", registerName(r0).data()); 1550 1550 out.print(k1); 1551 1551 break; -
trunk/Source/JavaScriptCore/bytecode/BytecodeUseDef.h
r215984 r216459 41 41 case op_new_regexp: 42 42 case op_new_array_buffer: 43 case op_throw_static_error:44 43 case op_debug: 45 44 case op_jneq_ptr: … … 71 70 case op_dec: 72 71 case op_inc: 73 case op_log_shadow_chicken_prologue: { 72 case op_log_shadow_chicken_prologue: 73 case op_throw_static_error: { 74 74 ASSERT(opcodeLengths[opcodeID] > 1); 75 75 functor(codeBlock, instruction, opcodeID, instruction[1].u.operand); -
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r216178 r216459 5038 5038 5039 5039 case op_throw_static_error: 5040 addToGraph(ThrowStaticError); 5040 5041 addToGraph(Phantom, get(VirtualRegister(currentInstruction[1].u.operand))); // Keep argument live. 5041 addToGraph(ThrowStaticError);5042 5042 flushForTerminal(); 5043 5043 addToGraph(Unreachable);
Note:
See TracChangeset
for help on using the changeset viewer.