Changeset 101217 in webkit
- Timestamp:
- Nov 27, 2011, 6:11:58 PM (15 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
dfg/DFGByteCodeParser.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r101198 r101217 1 2011-11-27 Filip Pizlo <fpizlo@apple.com> 2 3 DFG should not emit GetMethod node 4 https://bugs.webkit.org/show_bug.cgi?id=73175 5 6 Reviewed by Gavin Barraclough. 7 8 Replaces all instances of the GetMethod node with GetById. This appears to 9 be a slight win on V8. This patch leaves GetMethod support in the code-base, 10 making this decision easy to reverse, for now. 11 12 * dfg/DFGByteCodeParser.cpp: 13 (JSC::DFG::ByteCodeParser::parseBlock): 14 1 15 2011-11-26 Hajime Morrita <morrita@chromium.org> 2 16 -
trunk/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp
r100975 r101217 1654 1654 1655 1655 set(getInstruction[1].u.operand, cellConstant(methodCall.cachedFunction.get())); 1656 } else { 1657 NodeIndex getMethod = addToGraph(GetMethod, OpInfo(identifier), OpInfo(prediction), base); 1658 set(getInstruction[1].u.operand, getMethod); 1659 } 1656 } else 1657 set(getInstruction[1].u.operand, addToGraph(GetById, OpInfo(identifier), OpInfo(prediction), base)); 1660 1658 1661 1659 m_currentIndex += OPCODE_LENGTH(op_method_check) + OPCODE_LENGTH(op_get_by_id);
Note:
See TracChangeset
for help on using the changeset viewer.