Ignore:
Timestamp:
May 23, 2008, 12:12:31 PM (17 years ago)
Author:
[email protected]
Message:

2008-05-23 Geoffrey Garen <[email protected]>

Rolled out r34085 because it measured as a 7.6% performance regression.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/profiler/Profile.cpp

    r34085 r34086  
    5757{
    5858    ASSERT(m_currentNode);
     59
    5960    m_currentNode = m_currentNode->willExecute(callIdentifier);
    6061}
     
    6263void Profile::didExecute(const CallIdentifier& callIdentifier)
    6364{
    64     ASSERT(m_currentNode);
    65 
    66     // In case the profiler started recording calls in the middle of a stack frame,
    67     // when returning up the stack it needs to insert the calls it missed on the
    68     // way down.
    6965    if (m_currentNode == m_headNode) {
    7066        m_currentNode = ProfileNode::create(callIdentifier, m_headNode.get(), m_headNode.get());
Note: See TracChangeset for help on using the changeset viewer.