Changeset 266032 in webkit for trunk/Source/JavaScriptCore/runtime/VM.cpp
- Timestamp:
- Aug 22, 2020, 12:22:24 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/VM.cpp
r265297 r266032 73 73 #include "IntlPluralRules.h" 74 74 #include "IntlRelativeTimeFormat.h" 75 #include "IntlSegmentIterator.h" 76 #include "IntlSegmenter.h" 77 #include "IntlSegments.h" 75 78 #include "IsoHeapCellType.h" 76 79 #include "IsoInlinedHeapCellType.h" … … 315 318 , intlPluralRulesHeapCellType(IsoHeapCellType::create<IntlPluralRules>()) 316 319 , intlRelativeTimeFormatHeapCellType(IsoHeapCellType::create<IntlRelativeTimeFormat>()) 320 , intlSegmentIteratorHeapCellType(IsoHeapCellType::create<IntlSegmentIterator>()) 321 , intlSegmenterHeapCellType(IsoHeapCellType::create<IntlSegmenter>()) 322 , intlSegmentsHeapCellType(IsoHeapCellType::create<IntlSegments>()) 317 323 #if ENABLE(WEBASSEMBLY) 318 324 , webAssemblyCodeBlockHeapCellType(IsoHeapCellType::create<JSWebAssemblyCodeBlock>()) … … 1544 1550 DYNAMIC_ISO_SUBSPACE_DEFINE_MEMBER_SLOW(intlPluralRulesSpace, intlPluralRulesHeapCellType.get(), IntlPluralRules) 1545 1551 DYNAMIC_ISO_SUBSPACE_DEFINE_MEMBER_SLOW(intlRelativeTimeFormatSpace, intlRelativeTimeFormatHeapCellType.get(), IntlRelativeTimeFormat) 1552 DYNAMIC_ISO_SUBSPACE_DEFINE_MEMBER_SLOW(intlSegmentIteratorSpace, intlSegmentIteratorHeapCellType.get(), IntlSegmentIterator) 1553 DYNAMIC_ISO_SUBSPACE_DEFINE_MEMBER_SLOW(intlSegmenterSpace, intlSegmenterHeapCellType.get(), IntlSegmenter) 1554 DYNAMIC_ISO_SUBSPACE_DEFINE_MEMBER_SLOW(intlSegmentsSpace, intlSegmentsHeapCellType.get(), IntlSegments) 1546 1555 #if ENABLE(WEBASSEMBLY) 1547 1556 DYNAMIC_ISO_SUBSPACE_DEFINE_MEMBER_SLOW(jsToWasmICCalleeSpace, cellHeapCellType.get(), JSToWasmICCallee)
Note:
See TracChangeset
for help on using the changeset viewer.