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