Ignore:
Timestamp:
Nov 26, 2017, 5:15:04 PM (8 years ago)
Author:
Yusuke Suzuki
Message:

[DFG] Remove GetLocalUnlinked
https://bugs.webkit.org/show_bug.cgi?id=180017

Reviewed by Saam Barati.

Since DFGArgumentsSimplificationPhase is removed 2 years ago, GetLocalUnlinked is no longer used in DFG.
This patch just removes it.

  • dfg/DFGAbstractInterpreterInlines.h:

(JSC::DFG::AbstractInterpreter<AbstractStateType>::executeEffects):

  • dfg/DFGClobberize.h:

(JSC::DFG::clobberize):

  • dfg/DFGCommon.h:
  • dfg/DFGDoesGC.cpp:

(JSC::DFG::doesGC):

  • dfg/DFGFixupPhase.cpp:

(JSC::DFG::FixupPhase::fixupNode):

  • dfg/DFGGraph.cpp:

(JSC::DFG::Graph::dump):

  • dfg/DFGNode.h:

(JSC::DFG::Node::hasUnlinkedLocal):
(JSC::DFG::Node::convertToGetLocalUnlinked): Deleted.
(JSC::DFG::Node::convertToGetLocal): Deleted.
(JSC::DFG::Node::hasUnlinkedMachineLocal): Deleted.
(JSC::DFG::Node::setUnlinkedMachineLocal): Deleted.
(JSC::DFG::Node::unlinkedMachineLocal): Deleted.

  • dfg/DFGNodeType.h:
  • dfg/DFGPredictionPropagationPhase.cpp:
  • dfg/DFGSafeToExecute.h:

(JSC::DFG::safeToExecute):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGStackLayoutPhase.cpp:

(JSC::DFG::StackLayoutPhase::run):

  • dfg/DFGValidate.cpp:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/dfg/DFGCommon.h

    r218794 r225149  
    157157enum GraphForm {
    158158    // LoadStore form means that basic blocks may freely use GetLocal, SetLocal,
    159     // GetLocalUnlinked, and Flush for accessing local variables and indicating
    160     // where their live ranges ought to be. Data flow between local accesses is
    161     // implicit. Liveness is only explicit at block heads (variablesAtHead).
    162     // This is only used by the DFG simplifier and is only preserved by same.
     159    // and Flush for accessing local variables and indicating where their live
     160    // ranges ought to be. Data flow between local accesses is implicit. Liveness
     161    // is only explicit at block heads (variablesAtHead). This is only used by
     162    // the DFG simplifier and is only preserved by same.
    163163    //
    164164    // For example, LoadStore form gives no easy way to determine which SetLocal's
Note: See TracChangeset for help on using the changeset viewer.