Changeset 265297 in webkit for trunk/Source/JavaScriptCore/runtime/VM.cpp
- Timestamp:
- Aug 5, 2020, 12:12:00 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/VM.cpp
r265272 r265297 1095 1095 #endif 1096 1096 m_checkpointSideState.append(WTFMove(payload)); 1097 1098 #if ASSERT_ENABLED 1099 auto bounds = StackBounds::currentThreadStackBounds(); 1100 void* previousCallFrame = bounds.end(); 1101 for (size_t i = m_checkpointSideState.size(); i--;) { 1102 auto* callFrame = m_checkpointSideState[i]->associatedCallFrame; 1103 if (!bounds.contains(callFrame)) 1104 break; 1105 ASSERT(previousCallFrame < callFrame); 1106 previousCallFrame = callFrame; 1107 } 1108 #endif 1097 1109 } 1098 1110
Note:
See TracChangeset
for help on using the changeset viewer.