Changeset 37664 in webkit for trunk/JavaScriptCore
- Timestamp:
- Oct 17, 2008, 3:26:44 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r37660 r37664 1 2008-10-17 Maciej Stachowiak <[email protected]> 2 3 Reviewed by Cameron Zwarich 4 5 - don't bother to do arguments tearoff when it will have no effect 6 7 ~1% on v8 raytrace 8 9 * VM/CodeGenerator.cpp: 10 (JSC::CodeGenerator::emitReturn): 11 1 12 2008-10-17 Marco Barisione <[email protected]> 2 13 -
trunk/JavaScriptCore/VM/CodeGenerator.cpp
r37433 r37664 1169 1169 emitOpcode(op_tear_off_activation); 1170 1170 instructions().append(m_activationRegisterIndex); 1171 } else if (m_codeBlock->usesArguments )1171 } else if (m_codeBlock->usesArguments && m_codeBlock->numParameters > 1) 1172 1172 emitOpcode(op_tear_off_arguments); 1173 1173
Note:
See TracChangeset
for help on using the changeset viewer.