Changeset 227609 in webkit for trunk/Source/JavaScriptCore/runtime/VM.cpp
- Timestamp:
- Jan 25, 2018, 9:21:09 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/VM.cpp
r227592 r227609 1 1 /* 2 * Copyright (C) 2008-201 8Apple Inc. All rights reserved.2 * Copyright (C) 2008-2017 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 122 122 #include "StructureInlines.h" 123 123 #include "TestRunnerUtils.h" 124 #include "ThreadLocalCacheInlines.h"125 124 #include "ThunkGenerators.h" 126 125 #include "TypeProfiler.h" … … 308 307 setLastStackTop(stack.origin()); 309 308 310 defaultThreadLocalCache = ThreadLocalCache::create(heap);311 defaultThreadLocalCache->install(*this);312 313 309 // Need to be careful to keep everything consistent here 314 310 JSLockHolder lock(this); … … 499 495 m_apiLock->willDestroyVM(this); 500 496 heap.lastChanceToFinalize(); 501 502 #if !ENABLE(FAST_TLS_JIT)503 ThreadLocalCache::destructor(threadLocalCacheData);504 #endif505 497 506 498 delete interpreter;
Note:
See TracChangeset
for help on using the changeset viewer.