Changeset 218113 in webkit


Ignore:
Timestamp:
Jun 12, 2017 11:42:47 AM (7 years ago)
Author:
Yusuke Suzuki
Message:

Unreviewed, suppress invalid register alloation validation assertion in 32 bit
https://bugs.webkit.org/show_bug.cgi?id=172421

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileArrayIndexOf):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r218111 r218113  
     12017-06-12  Yusuke Suzuki  <utatane.tea@gmail.com>
     2
     3        Unreviewed, suppress invalid register alloation validation assertion in 32 bit
     4        https://bugs.webkit.org/show_bug.cgi?id=172421
     5
     6        * dfg/DFGSpeculativeJIT.cpp:
     7        (JSC::DFG::SpeculativeJIT::compileArrayIndexOf):
     8
    192017-06-12  Oleksandr Skachkov  <gskachkov@gmail.com>
    210
  • trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp

    r218094 r218113  
    74817481    case ObjectUse: {
    74827482        auto emitLoop = [&] (auto emitCompare) {
     7483#if ENABLE(DFG_REGISTER_ALLOCATION_VALIDATION)
     7484            m_jit.clearRegisterAllocationOffsets();
     7485#endif
     7486
    74837487            m_jit.zeroExtend32ToPtr(lengthGPR, lengthGPR);
    74847488            m_jit.zeroExtend32ToPtr(indexGPR, indexGPR);
Note: See TracChangeset for help on using the changeset viewer.