Changeset 249706 in webkit for trunk/Source/JavaScriptCore/dfg/DFGJITFinalizer.cpp
- Timestamp:
- Sep 9, 2019, 10:03:13 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGJITFinalizer.cpp
r244764 r249706 83 83 { 84 84 // Some JIT finalizers may have added more constants. Shrink-to-fit those things now. 85 m_plan.codeBlock()->constants().shrinkToFit(); 86 m_plan.codeBlock()->constantsSourceCodeRepresentation().shrinkToFit(); 85 { 86 ConcurrentJSLocker locker(m_plan.codeBlock()->m_lock); 87 m_plan.codeBlock()->constants().shrinkToFit(); 88 m_plan.codeBlock()->constantsSourceCodeRepresentation().shrinkToFit(); 89 } 87 90 88 91 #if ENABLE(FTL_JIT)
Note:
See TracChangeset
for help on using the changeset viewer.