Ignore:
Timestamp:
Apr 19, 2022, 10:19:43 AM (3 years ago)
Author:
[email protected]
Message:

Unreviewed, disable UnlinkedDFG code in x64
https://bugs.webkit.org/show_bug.cgi?id=237863

  • dfg/DFGPlan.cpp:

(JSC::DFG::Plan::compileInThreadImpl):

  • jit/GPRInfo.h:

(JSC::GPRInfo::toRegister):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGPlan.cpp

    r293009 r293020  
    317317    }
    318318
     319    // Currently, due to GPRInfo::numberOfRegisters issue, we cannot enable it on x64.
     320    if (isX86_64())
     321        RELEASE_ASSERT(m_mode != JITCompilationMode::UnlinkedDFG);
     322
    319323    switch (m_mode) {
    320324    case JITCompilationMode::DFG:
Note: See TracChangeset for help on using the changeset viewer.