Changeset 34086 in webkit for trunk/JavaScriptCore/profiler/Profile.cpp
- Timestamp:
- May 23, 2008, 12:12:31 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/profiler/Profile.cpp
r34085 r34086 57 57 { 58 58 ASSERT(m_currentNode); 59 59 60 m_currentNode = m_currentNode->willExecute(callIdentifier); 60 61 } … … 62 63 void Profile::didExecute(const CallIdentifier& callIdentifier) 63 64 { 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 the68 // way down.69 65 if (m_currentNode == m_headNode) { 70 66 m_currentNode = ProfileNode::create(callIdentifier, m_headNode.get(), m_headNode.get());
Note:
See TracChangeset
for help on using the changeset viewer.