Changeset 218312 in webkit


Ignore:
Timestamp:
Jun 14, 2017 8:31:35 PM (7 years ago)
Author:
Yusuke Suzuki
Message:

Unreviewed, suppress invalid register alloation validation assertion in 32 bit part 2
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

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

    r218137 r218312  
    75597559        FPRReg tempFPR = tempDouble.fpr();
    75607560
     7561#if ENABLE(DFG_REGISTER_ALLOCATION_VALIDATION)
     7562        m_jit.clearRegisterAllocationOffsets();
     7563#endif
     7564
    75617565        m_jit.zeroExtend32ToPtr(lengthGPR, lengthGPR);
    75627566        m_jit.zeroExtend32ToPtr(indexGPR, indexGPR);
Note: See TracChangeset for help on using the changeset viewer.