Ignore:
Timestamp:
Jul 25, 2014, 3:57:34 PM (11 years ago)
Author:
[email protected]
Message:

Add an option to disable native call inlining. Disable it for now to see how it
affects the bots.

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::handleCall):

  • runtime/Options.h:
File:
1 edited

Legend:

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

    r171613 r171627  
    10451045            m_graph.compilation()->noticeInlinedCall();
    10461046        return;
    1047     } else if (isFTL(m_graph.m_plan.mode)) {
     1047    } else if (isFTL(m_graph.m_plan.mode) && Options::optimizeNativeCalls()) {
    10481048        JSFunction* function = callLinkStatus.function();
    10491049        if (function && function->isHostFunction()) {
Note: See TracChangeset for help on using the changeset viewer.