Changeset 126081 in webkit


Ignore:
Timestamp:
Aug 20, 2012 3:32:18 PM (12 years ago)
Author:
fpizlo@apple.com
Message:

fast/js/dfg-compare-final-object-to-final-object-or-other-when-both-proven-final-object.html crashes on 32-bit
https://bugs.webkit.org/show_bug.cgi?id=94026

Reviewed by Mark Hahnenberg.

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compileObjectToObjectOrOtherEquality):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r125999 r126081  
     12012-08-20  Filip Pizlo  <fpizlo@apple.com>
     2
     3        fast/js/dfg-compare-final-object-to-final-object-or-other-when-both-proven-final-object.html crashes on 32-bit
     4        https://bugs.webkit.org/show_bug.cgi?id=94026
     5
     6        Reviewed by Mark Hahnenberg.
     7
     8        * dfg/DFGSpeculativeJIT32_64.cpp:
     9        (JSC::DFG::SpeculativeJIT::compileObjectToObjectOrOtherEquality):
     10
    1112012-08-19  Filip Pizlo  <fpizlo@apple.com>
    212
  • trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT32_64.cpp

    r125999 r126081  
    15311531    // We know that within this branch, rightChild must not be a cell. Check if that is enough to
    15321532    // prove that it is either null or undefined.
    1533     if (!isOtherSpeculation(m_state.forNode(rightChild).m_type & ~SpecCell)) {
     1533    if (!isOtherOrEmptySpeculation(m_state.forNode(rightChild).m_type & ~SpecCell)) {
    15341534        m_jit.move(op2TagGPR, resultGPR);
    15351535        m_jit.or32(TrustedImm32(1), resultGPR);
Note: See TracChangeset for help on using the changeset viewer.