Ignore:
Timestamp:
Dec 1, 2015, 5:37:19 PM (10 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r192914.
https://bugs.webkit.org/show_bug.cgi?id=151734

JSC tests for this change are failing on 32 and 64-bit bots
(Requested by ryanhaddad on #webkit).

Reverted changeset:

"[ES6] Implement LLInt/Baseline Support for ES6 Generators and
enable this feature"
https://bugs.webkit.org/show_bug.cgi?id=150792
http://trac.webkit.org/changeset/192914

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jit/JIT.cpp

    r192914 r192935  
    216216        DEFINE_OP(op_check_tdz)
    217217        DEFINE_OP(op_assert)
    218         DEFINE_OP(op_save)
    219         DEFINE_OP(op_resume)
    220218        DEFINE_OP(op_debug)
    221219        DEFINE_OP(op_del_by_id)
     
    264262        DEFINE_OP(op_new_func)
    265263        DEFINE_OP(op_new_func_exp)
    266         DEFINE_OP(op_new_generator_func)
    267         DEFINE_OP(op_new_generator_func_exp)
    268264        DEFINE_OP(op_new_arrow_func_exp)
    269265        DEFINE_OP(op_new_object)
     
    769765unsigned JIT::frameRegisterCountFor(CodeBlock* codeBlock)
    770766{
    771     ASSERT(static_cast<unsigned>(codeBlock->m_numCalleeLocals) == WTF::roundUpToMultipleOf(stackAlignmentRegisters(), static_cast<unsigned>(codeBlock->m_numCalleeLocals)));
    772 
    773     return roundLocalRegisterCountForFramePointerOffset(codeBlock->m_numCalleeLocals + maxFrameExtentForSlowPathCallInRegisters);
     767    ASSERT(static_cast<unsigned>(codeBlock->m_numCalleeRegisters) == WTF::roundUpToMultipleOf(stackAlignmentRegisters(), static_cast<unsigned>(codeBlock->m_numCalleeRegisters)));
     768
     769    return roundLocalRegisterCountForFramePointerOffset(codeBlock->m_numCalleeRegisters + maxFrameExtentForSlowPathCallInRegisters);
    774770}
    775771
Note: See TracChangeset for help on using the changeset viewer.