Changeset 213657 in webkit
- Timestamp:
- Mar 9, 2017, 1:05:41 PM (8 years ago)
- Location:
- trunk/Source
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r213653 r213657 1 2017-03-09 Mark Lam <mark.lam@apple.com> 2 3 Use const AbstractLocker& (instead of const LockHolder&) in more places. 4 https://bugs.webkit.org/show_bug.cgi?id=169424 5 6 Reviewed by Filip Pizlo. 7 8 * heap/CodeBlockSet.cpp: 9 (JSC::CodeBlockSet::promoteYoungCodeBlocks): 10 * heap/CodeBlockSet.h: 11 * heap/CodeBlockSetInlines.h: 12 (JSC::CodeBlockSet::mark): 13 * heap/ConservativeRoots.cpp: 14 (JSC::CompositeMarkHook::CompositeMarkHook): 15 * heap/MachineStackMarker.cpp: 16 (JSC::MachineThreads::tryCopyOtherThreadStacks): 17 * heap/MachineStackMarker.h: 18 * profiler/ProfilerDatabase.cpp: 19 (JSC::Profiler::Database::ensureBytecodesFor): 20 * profiler/ProfilerDatabase.h: 21 * runtime/SamplingProfiler.cpp: 22 (JSC::FrameWalker::FrameWalker): 23 (JSC::CFrameWalker::CFrameWalker): 24 (JSC::SamplingProfiler::createThreadIfNecessary): 25 (JSC::SamplingProfiler::takeSample): 26 (JSC::SamplingProfiler::start): 27 (JSC::SamplingProfiler::pause): 28 (JSC::SamplingProfiler::noticeCurrentThreadAsJSCExecutionThread): 29 (JSC::SamplingProfiler::clearData): 30 (JSC::SamplingProfiler::releaseStackTraces): 31 * runtime/SamplingProfiler.h: 32 (JSC::SamplingProfiler::setStopWatch): 33 * wasm/WasmMemory.cpp: 34 (JSC::Wasm::availableFastMemories): 35 (JSC::Wasm::activeFastMemories): 36 (JSC::Wasm::viewActiveFastMemories): 37 * wasm/WasmMemory.h: 38 1 39 2017-03-09 Saam Barati <sbarati@apple.com> 2 40 -
trunk/Source/JavaScriptCore/heap/CodeBlockSet.cpp
r213652 r213657 48 48 } 49 49 50 void CodeBlockSet::promoteYoungCodeBlocks(const LockHolder&)50 void CodeBlockSet::promoteYoungCodeBlocks(const AbstractLocker&) 51 51 { 52 52 ASSERT(m_lock.isLocked()); -
trunk/Source/JavaScriptCore/heap/CodeBlockSet.h
r213652 r213657 63 63 // blocks. This is defined in CodeBlock.h. 64 64 private: 65 void mark(const LockHolder&, CodeBlock* candidateCodeBlock);65 void mark(const AbstractLocker&, CodeBlock* candidateCodeBlock); 66 66 public: 67 void mark(const LockHolder&, void* candidateCodeBlock);67 void mark(const AbstractLocker&, void* candidateCodeBlock); 68 68 69 69 // Delete all code blocks that are only referenced by this set (i.e. owned … … 87 87 88 88 private: 89 void promoteYoungCodeBlocks(const LockHolder&);89 void promoteYoungCodeBlocks(const AbstractLocker&); 90 90 91 91 HashSet<CodeBlock*> m_oldCodeBlocks; -
trunk/Source/JavaScriptCore/heap/CodeBlockSetInlines.h
r213652 r213657 34 34 namespace JSC { 35 35 36 inline void CodeBlockSet::mark(const LockHolder& locker, void* candidateCodeBlock)36 inline void CodeBlockSet::mark(const AbstractLocker& locker, void* candidateCodeBlock) 37 37 { 38 38 ASSERT(m_lock.isLocked()); … … 53 53 } 54 54 55 inline void CodeBlockSet::mark(const LockHolder&, CodeBlock* codeBlock)55 inline void CodeBlockSet::mark(const AbstractLocker&, CodeBlock* codeBlock) 56 56 { 57 57 if (!codeBlock) -
trunk/Source/JavaScriptCore/heap/ConservativeRoots.cpp
r207179 r213657 118 118 class CompositeMarkHook { 119 119 public: 120 CompositeMarkHook(JITStubRoutineSet& stubRoutines, CodeBlockSet& codeBlocks, const LockHolder& locker)120 CompositeMarkHook(JITStubRoutineSet& stubRoutines, CodeBlockSet& codeBlocks, const AbstractLocker& locker) 121 121 : m_stubRoutines(stubRoutines) 122 122 , m_codeBlocks(codeBlocks) … … 134 134 JITStubRoutineSet& m_stubRoutines; 135 135 CodeBlockSet& m_codeBlocks; 136 const LockHolder& m_codeBlocksLocker;136 const AbstractLocker& m_codeBlocksLocker; 137 137 }; 138 138 -
trunk/Source/JavaScriptCore/heap/MachineStackMarker.cpp
r213238 r213657 929 929 } 930 930 931 bool MachineThreads::tryCopyOtherThreadStacks( LockHolder&, void* buffer, size_t capacity, size_t* size)931 bool MachineThreads::tryCopyOtherThreadStacks(const AbstractLocker&, void* buffer, size_t capacity, size_t* size) 932 932 { 933 933 // Prevent two VMs from suspending each other's threads at the same time, -
trunk/Source/JavaScriptCore/heap/MachineStackMarker.h
r213652 r213657 143 143 144 144 void tryCopyOtherThreadStack(Thread*, void*, size_t capacity, size_t*); 145 bool tryCopyOtherThreadStacks( LockHolder&, void*, size_t capacity, size_t*);145 bool tryCopyOtherThreadStacks(const AbstractLocker&, void*, size_t capacity, size_t*); 146 146 147 147 static void THREAD_SPECIFIC_CALL removeThread(void*); -
trunk/Source/JavaScriptCore/profiler/ProfilerDatabase.cpp
r212365 r213657 63 63 } 64 64 65 Bytecodes* Database::ensureBytecodesFor(const LockHolder&, CodeBlock* codeBlock)65 Bytecodes* Database::ensureBytecodesFor(const AbstractLocker&, CodeBlock* codeBlock) 66 66 { 67 67 codeBlock = codeBlock->baselineAlternative(); -
trunk/Source/JavaScriptCore/profiler/ProfilerDatabase.h
r212365 r213657 73 73 74 74 private: 75 Bytecodes* ensureBytecodesFor(const LockHolder&, CodeBlock*);75 Bytecodes* ensureBytecodesFor(const AbstractLocker&, CodeBlock*); 76 76 77 77 void addDatabaseToAtExit(); -
trunk/Source/JavaScriptCore/runtime/SamplingProfiler.cpp
r211546 r213657 82 82 class FrameWalker { 83 83 public: 84 FrameWalker(VM& vm, ExecState* callFrame, const LockHolder& codeBlockSetLocker, const LockHolder& machineThreadsLocker)84 FrameWalker(VM& vm, ExecState* callFrame, const AbstractLocker& codeBlockSetLocker, const AbstractLocker& machineThreadsLocker) 85 85 : m_vm(vm) 86 86 , m_callFrame(callFrame) … … 191 191 ExecState* m_callFrame; 192 192 VMEntryFrame* m_vmEntryFrame; 193 const LockHolder& m_codeBlockSetLocker;194 const LockHolder& m_machineThreadsLocker;193 const AbstractLocker& m_codeBlockSetLocker; 194 const AbstractLocker& m_machineThreadsLocker; 195 195 bool m_bailingOut { false }; 196 196 size_t m_depth { 0 }; … … 201 201 typedef FrameWalker Base; 202 202 203 CFrameWalker(VM& vm, void* machineFrame, ExecState* callFrame, const LockHolder& codeBlockSetLocker, const LockHolder& machineThreadsLocker)203 CFrameWalker(VM& vm, void* machineFrame, ExecState* callFrame, const AbstractLocker& codeBlockSetLocker, const AbstractLocker& machineThreadsLocker) 204 204 : Base(vm, callFrame, codeBlockSetLocker, machineThreadsLocker) 205 205 , m_machineFrame(machineFrame) … … 297 297 } 298 298 299 void SamplingProfiler::createThreadIfNecessary(const LockHolder&)299 void SamplingProfiler::createThreadIfNecessary(const AbstractLocker&) 300 300 { 301 301 ASSERT(m_lock.isLocked()); … … 335 335 } 336 336 337 void SamplingProfiler::takeSample(const LockHolder&, std::chrono::microseconds& stackTraceProcessingTime)337 void SamplingProfiler::takeSample(const AbstractLocker&, std::chrono::microseconds& stackTraceProcessingTime) 338 338 { 339 339 ASSERT(m_lock.isLocked()); … … 660 660 } 661 661 662 void SamplingProfiler::start(const LockHolder& locker)662 void SamplingProfiler::start(const AbstractLocker& locker) 663 663 { 664 664 ASSERT(m_lock.isLocked()); … … 667 667 } 668 668 669 void SamplingProfiler::pause(const LockHolder&)669 void SamplingProfiler::pause(const AbstractLocker&) 670 670 { 671 671 ASSERT(m_lock.isLocked()); … … 674 674 } 675 675 676 void SamplingProfiler::noticeCurrentThreadAsJSCExecutionThread(const LockHolder&)676 void SamplingProfiler::noticeCurrentThreadAsJSCExecutionThread(const AbstractLocker&) 677 677 { 678 678 ASSERT(m_lock.isLocked()); … … 701 701 } 702 702 703 void SamplingProfiler::clearData(const LockHolder&)703 void SamplingProfiler::clearData(const AbstractLocker&) 704 704 { 705 705 ASSERT(m_lock.isLocked()); … … 859 859 } 860 860 861 Vector<SamplingProfiler::StackTrace> SamplingProfiler::releaseStackTraces(const LockHolder& locker)861 Vector<SamplingProfiler::StackTrace> SamplingProfiler::releaseStackTraces(const AbstractLocker& locker) 862 862 { 863 863 ASSERT(m_lock.isLocked()); -
trunk/Source/JavaScriptCore/runtime/SamplingProfiler.h
r211542 r213657 167 167 void setTimingInterval(std::chrono::microseconds interval) { m_timingInterval = interval; } 168 168 JS_EXPORT_PRIVATE void start(); 169 void start(const LockHolder&);170 Vector<StackTrace> releaseStackTraces(const LockHolder&);169 void start(const AbstractLocker&); 170 Vector<StackTrace> releaseStackTraces(const AbstractLocker&); 171 171 JS_EXPORT_PRIVATE String stackTracesAsJSON(); 172 172 JS_EXPORT_PRIVATE void noticeCurrentThreadAsJSCExecutionThread(); 173 void noticeCurrentThreadAsJSCExecutionThread(const LockHolder&);173 void noticeCurrentThreadAsJSCExecutionThread(const AbstractLocker&); 174 174 void processUnverifiedStackTraces(); // You should call this only after acquiring the lock. 175 void setStopWatch(const LockHolder&, Ref<Stopwatch>&& stopwatch) { m_stopwatch = WTFMove(stopwatch); }176 void pause(const LockHolder&);177 void clearData(const LockHolder&);175 void setStopWatch(const AbstractLocker&, Ref<Stopwatch>&& stopwatch) { m_stopwatch = WTFMove(stopwatch); } 176 void pause(const AbstractLocker&); 177 void clearData(const AbstractLocker&); 178 178 179 179 // Used for debugging in the JSC shell/DRT. … … 186 186 187 187 private: 188 void createThreadIfNecessary(const LockHolder&);188 void createThreadIfNecessary(const AbstractLocker&); 189 189 void timerLoop(); 190 void takeSample(const LockHolder&, std::chrono::microseconds& stackTraceProcessingTime);190 void takeSample(const AbstractLocker&, std::chrono::microseconds& stackTraceProcessingTime); 191 191 192 192 VM& m_vm; -
trunk/Source/JavaScriptCore/wasm/WasmMemory.cpp
r213599 r213657 69 69 static unsigned allocatedFastMemories { 0 }; 70 70 StaticLock memoryLock; 71 inline Deque<void*, maxFastMemories>& availableFastMemories(const LockHolder&)71 inline Deque<void*, maxFastMemories>& availableFastMemories(const AbstractLocker&) 72 72 { 73 73 static NeverDestroyed<Deque<void*, maxFastMemories>> availableFastMemories; … … 75 75 } 76 76 77 inline HashSet<void*>& activeFastMemories(const LockHolder&)77 inline HashSet<void*>& activeFastMemories(const AbstractLocker&) 78 78 { 79 79 static NeverDestroyed<HashSet<void*>> activeFastMemories; … … 81 81 } 82 82 83 const HashSet<void*>& viewActiveFastMemories(const LockHolder& locker)83 const HashSet<void*>& viewActiveFastMemories(const AbstractLocker& locker) 84 84 { 85 85 return activeFastMemories(locker); -
trunk/Source/JavaScriptCore/wasm/WasmMemory.h
r213599 r213657 99 99 const size_t fastMemoryMappedBytes = (static_cast<size_t>(std::numeric_limits<uint32_t>::max()) + 1) * 2; // pointer max + offset max. This is all we need since a load straddling readable memory will trap. 100 100 extern StaticLock memoryLock; 101 const HashSet<void*>& viewActiveFastMemories(const LockHolder&);101 const HashSet<void*>& viewActiveFastMemories(const AbstractLocker&); 102 102 103 103 } } // namespace JSC::Wasm -
trunk/Source/WTF/ChangeLog
r213652 r213657 1 2017-03-09 Mark Lam <mark.lam@apple.com> 2 3 Use const AbstractLocker& (instead of const LockHolder&) in more places. 4 https://bugs.webkit.org/show_bug.cgi?id=169424 5 6 Reviewed by Filip Pizlo. 7 8 * wtf/RunLoop.h: 9 * wtf/generic/RunLoopGeneric.cpp: 10 (WTF::RunLoop::wakeUp): 11 (WTF::RunLoop::schedule): 12 1 13 2017-03-09 Mark Lam <mark.lam@apple.com> 2 14 -
trunk/Source/WTF/wtf/RunLoop.h
r212461 r213657 168 168 #elif USE(GENERIC_EVENT_LOOP) 169 169 void schedule(RefPtr<TimerBase::ScheduledTask>&&); 170 void schedule(const LockHolder&, RefPtr<TimerBase::ScheduledTask>&&);171 void wakeUp(const LockHolder&);170 void schedule(const AbstractLocker&, RefPtr<TimerBase::ScheduledTask>&&); 171 void wakeUp(const AbstractLocker&); 172 172 void scheduleAndWakeUp(RefPtr<TimerBase::ScheduledTask>); 173 173 -
trunk/Source/WTF/wtf/generic/RunLoopGeneric.cpp
r208417 r213657 207 207 } 208 208 209 void RunLoop::wakeUp(const LockHolder&)209 void RunLoop::wakeUp(const AbstractLocker&) 210 210 { 211 211 m_pendingTasks = true; … … 219 219 } 220 220 221 void RunLoop::schedule(const LockHolder&, RefPtr<TimerBase::ScheduledTask>&& task)221 void RunLoop::schedule(const AbstractLocker&, RefPtr<TimerBase::ScheduledTask>&& task) 222 222 { 223 223 m_schedules.append(WTFMove(task));
Note:
See TracChangeset
for help on using the changeset viewer.