Ignore:
Timestamp:
Nov 3, 2016, 9:38:58 PM (9 years ago)
Author:
[email protected]
Message:

Unreviewed, rolling out r208364.
https://bugs.webkit.org/show_bug.cgi?id=164402

broke the build (Requested by smfr on #webkit).

Reverted changeset:

"DFG plays fast and loose with the shadow values of a Phi"
https://bugs.webkit.org/show_bug.cgi?id=164309
http://trac.webkit.org/changeset/208364

File:
1 edited

Legend:

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

    r208364 r208367  
    4848AtTailAbstractState::~AtTailAbstractState() { }
    4949
    50 void AtTailAbstractState::createValueForNode(NodeFlowProjection node)
     50void AtTailAbstractState::createValueForNode(Node* node)
    5151{
    5252    m_valuesAtTailMap.at(m_block).add(node, AbstractValue());
    5353}
    5454
    55 AbstractValue& AtTailAbstractState::forNode(NodeFlowProjection node)
     55AbstractValue& AtTailAbstractState::forNode(Node* node)
    5656{
    5757    auto& valuesAtTail = m_valuesAtTailMap.at(m_block);
    58     HashMap<NodeFlowProjection, AbstractValue>::iterator iter = valuesAtTail.find(node);
    59     DFG_ASSERT(m_graph, node.node(), iter != valuesAtTail.end());
     58    HashMap<Node*, AbstractValue>::iterator iter = valuesAtTail.find(node);
     59    DFG_ASSERT(m_graph, node, iter != valuesAtTail.end());
    6060    return iter->value;
    6161}
Note: See TracChangeset for help on using the changeset viewer.