⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 278613 in webkit


Ignore:
Timestamp:
Jun 8, 2021, 9:51:42 AM (5 years ago)
Author:
Russell Epstein
Message:

Apply patch. rdar://problem/78628017

Location:
branches/safari-607-branch/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/safari-607-branch/Source/JavaScriptCore/ChangeLog

    r276601 r278613  
     12021-06-08  Russell Epstein  <repstein@apple.com>
     2
     3        Apply patch. rdar://problem/78628017
     4
     5    2021-05-28  Filip Pizlo  <fpizlo@apple.com>
     6
     7            rdar://78628017 (Disable cross-global-object inlining)
     8
     9            * dfg/DFGByteCodeParser.cpp:
     10            (JSC::DFG::ByteCodeParser::inliningCost):
     11
    1122021-04-26  Russell Epstein  <repstein@apple.com>
    213
  • branches/safari-607-branch/Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp

    r241458 r278613  
    14871487    if (!codeBlock) {
    14881488        VERBOSE_LOG("    Failing because no code block available.\n");
     1489        return UINT_MAX;
     1490    }
     1491
     1492    if (codeBlock->globalObject() != m_codeBlock->globalObject()) {
     1493        VERBOSE_LOG("    Failing because global object does not match.\n");
    14891494        return UINT_MAX;
    14901495    }
Note: See TracChangeset for help on using the changeset viewer.