Changeset 142481 in webkit


Ignore:
Timestamp:
Feb 11, 2013 9:01:06 AM (11 years ago)
Author:
rgabor@webkit.org
Message:

JSC build failing with verbose debug mode
https://bugs.webkit.org/show_bug.cgi?id=109441

Reviewed by Darin Adler.

Fixing some verbose messages which caused build errors.

  • dfg/DFGAbstractState.cpp:

(JSC::DFG::AbstractState::mergeToSuccessors):

  • dfg/DFGCFAPhase.cpp:

(JSC::DFG::CFAPhase::performBlockCFA):

  • dfg/DFGCSEPhase.cpp:

(JSC::DFG::CSEPhase::setReplacement):
(JSC::DFG::CSEPhase::eliminate):

  • dfg/DFGPredictionInjectionPhase.cpp:

(JSC::DFG::PredictionInjectionPhase::run):

Location:
trunk/Source/JavaScriptCore
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r142411 r142481  
     12013-02-11  Gabor Rapcsanyi  <rgabor@webkit.org>
     2
     3        JSC build failing with verbose debug mode
     4        https://bugs.webkit.org/show_bug.cgi?id=109441
     5
     6        Reviewed by Darin Adler.
     7
     8        Fixing some verbose messages which caused build errors.
     9
     10        * dfg/DFGAbstractState.cpp:
     11        (JSC::DFG::AbstractState::mergeToSuccessors):
     12        * dfg/DFGCFAPhase.cpp:
     13        (JSC::DFG::CFAPhase::performBlockCFA):
     14        * dfg/DFGCSEPhase.cpp:
     15        (JSC::DFG::CSEPhase::setReplacement):
     16        (JSC::DFG::CSEPhase::eliminate):
     17        * dfg/DFGPredictionInjectionPhase.cpp:
     18        (JSC::DFG::PredictionInjectionPhase::run):
     19
    1202013-02-10  Martin Robinson  <mrobinson@igalia.com>
    221
  • trunk/Source/JavaScriptCore/dfg/DFGAbstractState.cpp

    r142377 r142481  
    20112011        ASSERT(basicBlock->cfaBranchDirection == InvalidBranchDirection);
    20122012#if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
    2013         dataLogF("        Merging to block #%u.\n", terminal.takenBlockIndex());
     2013        dataLogF("        Merging to block #%u.\n", terminal->takenBlockIndex());
    20142014#endif
    20152015        return merge(basicBlock, graph.m_blocks[terminal->takenBlockIndex()].get());
     
    20252025            changed |= merge(basicBlock, graph.m_blocks[terminal->takenBlockIndex()].get());
    20262026#if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
    2027         dataLogF("        Merging to block #%u.\n", terminal.notTakenBlockIndex());
     2027        dataLogF("        Merging to block #%u.\n", terminal->notTakenBlockIndex());
    20282028#endif
    20292029        if (basicBlock->cfaBranchDirection != TakeTrue)
  • trunk/Source/JavaScriptCore/dfg/DFGCFAPhase.cpp

    r141069 r142481  
    9393                continue;
    9494#if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
    95             dataLogF("      %s @%u: ", Graph::opName(m_graph[nodeIndex].op()), node->index());
     95            dataLogF("      %s @%u: ", Graph::opName(node->op()), node->index());
    9696            m_state.dump(WTF::dataFile());
    9797            dataLogF("\n");
  • trunk/Source/JavaScriptCore/dfg/DFGCSEPhase.cpp

    r142377 r142481  
    10071007       
    10081008#if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
    1009         dataLogF("   Replacing @%u -> @%u", m_compileNode->index(), replacement->index());
     1009        dataLogF("   Replacing @%u -> @%u", m_currentNode->index(), replacement->index());
    10101010#endif
    10111011       
     
    10251025    {
    10261026#if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
    1027         dataLogF("   Eliminating @%u", m_compileIndex);
     1027        dataLogF("   Eliminating @%u", m_currentNode->index());
    10281028#endif
    10291029       
  • trunk/Source/JavaScriptCore/dfg/DFGPredictionInjectionPhase.cpp

    r142377 r142481  
    5959            dataLog(
    6060                "Argument [", arg, "] prediction: ",
    61                 SpeculationDump(m_arguments[arg]->variableAccessData()->prediction()), "\n");
     61                SpeculationDump(m_graph.m_arguments[arg]->variableAccessData()->prediction()), "\n");
    6262#endif
    6363        }
Note: See TracChangeset for help on using the changeset viewer.