Changeset 228366 in webkit for trunk/Source/JavaScriptCore/runtime/VM.cpp
- Timestamp:
- Feb 10, 2018, 3:49:54 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/VM.cpp
r228260 r228366 252 252 #endif 253 253 , directEvalExecutableSpace ISO_SUBSPACE_INIT(heap, destructibleCellHeapCellType.get(), DirectEvalExecutable) 254 , errorInstanceSpace ISO_SUBSPACE_INIT(heap, destructibleObjectHeapCellType.get(), ErrorInstance) 255 , exceptionSpace ISO_SUBSPACE_INIT(heap, destructibleObjectHeapCellType.get(), Exception) 254 256 , executableToCodeBlockEdgeSpace ISO_SUBSPACE_INIT(heap, cellHeapCellType.get(), ExecutableToCodeBlockEdge) 255 257 , functionExecutableSpace ISO_SUBSPACE_INIT(heap, destructibleCellHeapCellType.get(), FunctionExecutable) … … 265 267 , weakSetSpace ISO_SUBSPACE_INIT(heap, destructibleObjectHeapCellType.get(), JSWeakSet) 266 268 , weakMapSpace ISO_SUBSPACE_INIT(heap, destructibleObjectHeapCellType.get(), JSWeakMap) 269 , errorInstancesWithFinalizers(errorInstanceSpace) 270 , exceptionsWithFinalizers(exceptionSpace) 267 271 , executableToCodeBlockEdgesWithConstraints(executableToCodeBlockEdgeSpace) 268 272 , executableToCodeBlockEdgesWithFinalizers(executableToCodeBlockEdgeSpace)
Note:
See TracChangeset
for help on using the changeset viewer.