Changeset 252124 in webkit
- Timestamp:
- Nov 5, 2019, 10:36:28 PM (5 years ago)
- Location:
- trunk/Source
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r252115 r252124 1 2019-11-05 Mark Lam <mark.lam@apple.com> 2 3 WTF::RunLoop should not depend on isMainThread() idiom. 4 https://bugs.webkit.org/show_bug.cgi?id=203873 5 <rdar://problem/56524251> 6 7 Reviewed by Saam Barati, Ryosuke Niwa, and Devin Rousso. 8 9 * inspector/JSGlobalObjectScriptDebugServer.cpp: 10 (Inspector::JSGlobalObjectScriptDebugServer::runLoopMode): 11 * inspector/JSGlobalObjectScriptDebugServer.h: 12 * inspector/remote/cocoa/RemoteConnectionToTargetCocoa.mm: 13 (Inspector::RemoteTargetInitializeGlobalQueue): 14 (Inspector::RemoteConnectionToTarget::setupRunLoop): 15 (Inspector::RemoteConnectionToTarget::teardownRunLoop): 16 1 17 2019-11-05 Tadeu Zagallo <tzagallo@apple.com> 2 18 -
trunk/Source/JavaScriptCore/inspector/JSGlobalObjectScriptDebugServer.cpp
r251036 r252124 1 1 /* 2 * Copyright (C) 2014 Apple Inc. All rights reserved.2 * Copyright (C) 2014-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 65 65 } 66 66 67 StringJSGlobalObjectScriptDebugServer::runLoopMode()67 RunLoopMode JSGlobalObjectScriptDebugServer::runLoopMode() 68 68 { 69 69 #if USE(CF) && !PLATFORM(WATCHOS) … … 77 77 // we need to run in the default run loop mode otherwise we do not receive the XPC messages 78 78 // necessary to setup the relay connection and negotiate an auto-attach debugger. 79 return "com.apple.JavaScriptCore.remote-inspector-runloop-mode"_s;79 return CFSTR("com.apple.JavaScriptCore.remote-inspector-runloop-mode"); 80 80 #else 81 return { };81 return DefaultRunLoopMode; 82 82 #endif 83 83 } -
trunk/Source/JavaScriptCore/inspector/JSGlobalObjectScriptDebugServer.h
r251425 r252124 1 1 /* 2 * Copyright (C) 2014 Apple Inc. All rights reserved.2 * Copyright (C) 2014-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 27 27 28 28 #include "ScriptDebugServer.h" 29 #include <wtf/RunLoop.h> 29 30 30 31 namespace Inspector { … … 39 40 JSC::JSGlobalObject& globalObject() const { return m_globalObject; } 40 41 41 static StringrunLoopMode();42 static RunLoopMode runLoopMode(); 42 43 43 44 private: -
trunk/Source/JavaScriptCore/inspector/remote/cocoa/RemoteConnectionToTargetCocoa.mm
r251036 r252124 1 1 /* 2 * Copyright (C) 2013 , 2015Apple Inc. All Rights Reserved.2 * Copyright (C) 2013-2019 Apple Inc. All Rights Reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 90 90 CFRunLoopAddSource(CFRunLoopGetMain(), rwiRunLoopSource, kCFRunLoopDefaultMode); 91 91 auto mode = JSGlobalObjectScriptDebugServer::runLoopMode(); 92 if ( !mode.isNull())93 CFRunLoopAddSource(CFRunLoopGetMain(), rwiRunLoopSource, mode .createCFString().get());92 if (mode != DefaultRunLoopMode) 93 CFRunLoopAddSource(CFRunLoopGetMain(), rwiRunLoopSource, mode); 94 94 }); 95 95 } … … 263 263 CFRunLoopAddSource(m_runLoop.get(), m_runLoopSource.get(), kCFRunLoopDefaultMode); 264 264 auto mode = JSGlobalObjectScriptDebugServer::runLoopMode(); 265 if ( !mode.isNull())266 CFRunLoopAddSource(m_runLoop.get(), m_runLoopSource.get(), mode .createCFString().get());265 if (mode != DefaultRunLoopMode) 266 CFRunLoopAddSource(m_runLoop.get(), m_runLoopSource.get(), mode); 267 267 } 268 268 … … 274 274 CFRunLoopRemoveSource(m_runLoop.get(), m_runLoopSource.get(), kCFRunLoopDefaultMode); 275 275 auto mode = JSGlobalObjectScriptDebugServer::runLoopMode(); 276 if ( !mode.isNull())277 CFRunLoopRemoveSource(m_runLoop.get(), m_runLoopSource.get(), mode .createCFString().get());276 if (mode != DefaultRunLoopMode) 277 CFRunLoopRemoveSource(m_runLoop.get(), m_runLoopSource.get(), mode); 278 278 279 279 m_runLoop = nullptr; -
trunk/Source/WTF/ChangeLog
r252068 r252124 1 2019-11-05 Mark Lam <mark.lam@apple.com> 2 3 WTF::RunLoop should not depend on isMainThread() idiom. 4 https://bugs.webkit.org/show_bug.cgi?id=203873 5 <rdar://problem/56524251> 6 7 Reviewed by Saam Barati, Ryosuke Niwa, and Devin Rousso. 8 9 The isMainThread() idiom is only meaningful for WebCore. It is less meaningful 10 for JSC since a VM instance can be entered from multiple threads, as long as only 11 one thread enters it at any time. Hence, the concept of a main thread doesn't 12 make sense at the JSC level. 13 14 Since r251036, we started using a WTF::String to represent the RunLoop mode. 15 This caused problems for JSC clients when USE(CF) since it necessitated the use of 16 StringWrapperCFAllocator to track the life cycle of the CFStringRef generated from 17 the WTF::String. 18 19 To fix this problem, we should restore the original behavior of using CFStringRefs 20 as the RunLoop mode token. 21 22 * wtf/RunLoop.h: 23 (WTF::RunLoop::cycle): Deleted. 24 * wtf/cf/RunLoopCF.cpp: 25 (WTF::RunLoop::cycle): 26 * wtf/generic/RunLoopGeneric.cpp: 27 (WTF::RunLoop::cycle): 28 * wtf/glib/RunLoopGLib.cpp: 29 (WTF::RunLoop::cycle): 30 * wtf/win/RunLoopWin.cpp: 31 (WTF::RunLoop::cycle): 32 1 33 2019-11-05 Tuomas Karkkainen <tuomas.webkit@apple.com> 2 34 -
trunk/Source/WTF/wtf/RunLoop.h
r251514 r252124 1 1 /* 2 * Copyright (C) 2010 Apple Inc. All rights reserved.2 * Copyright (C) 2010-2019 Apple Inc. All rights reserved. 3 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 4 4 * Portions Copyright (c) 2010 Motorola Mobility, Inc. All rights reserved. … … 38 38 #include <wtf/text/WTFString.h> 39 39 40 #if USE(CF) 41 #include <CoreFoundation/CFRunLoop.h> 42 #endif 43 40 44 #if USE(GLIB_EVENT_LOOP) 41 45 #include <wtf/glib/GRefPtr.h> … … 43 47 44 48 namespace WTF { 49 50 #if USE(CF) 51 using RunLoopMode = CFStringRef; 52 #define DefaultRunLoopMode kCFRunLoopDefaultMode 53 #else 54 using RunLoopMode = unsigned; 55 #define DefaultRunLoopMode 0 56 #endif 45 57 46 58 class RunLoop : public FunctionDispatcher { … … 63 75 64 76 enum class CycleResult { Continue, Stop }; 65 WTF_EXPORT_PRIVATE CycleResult static cycle( const String& = { });77 WTF_EXPORT_PRIVATE CycleResult static cycle(RunLoopMode = DefaultRunLoopMode); 66 78 67 79 #if USE(COCOA_EVENT_LOOP) … … 219 231 220 232 using WTF::RunLoop; 233 using WTF::RunLoopMode; -
trunk/Source/WTF/wtf/cf/RunLoopCF.cpp
r251514 r252124 1 1 /* 2 * Copyright (C) 2010 , 2012Apple Inc. All rights reserved.2 * Copyright (C) 2010-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 63 63 } 64 64 65 RunLoop::CycleResult RunLoop::cycle( const String&mode)65 RunLoop::CycleResult RunLoop::cycle(RunLoopMode mode) 66 66 { 67 67 CFTimeInterval timeInterval = 0.05; 68 CFRunLoopRunInMode(mode .isNull() ? kCFRunLoopDefaultMode : mode.createCFString().get(), timeInterval, true);68 CFRunLoopRunInMode(mode, timeInterval, true); 69 69 return CycleResult::Continue; 70 70 } -
trunk/Source/WTF/wtf/generic/RunLoopGeneric.cpp
r251036 r252124 219 219 } 220 220 221 RunLoop::CycleResult RunLoop::cycle( const String&)221 RunLoop::CycleResult RunLoop::cycle(RunLoopMode) 222 222 { 223 223 iterate(); -
trunk/Source/WTF/wtf/glib/RunLoopGLib.cpp
r251036 r252124 124 124 } 125 125 126 RunLoop::CycleResult RunLoop::cycle( const String&)126 RunLoop::CycleResult RunLoop::cycle(RunLoopMode) 127 127 { 128 128 g_main_context_iteration(NULL, FALSE); -
trunk/Source/WTF/wtf/win/RunLoopWin.cpp
r251036 r252124 1 1 /* 2 * Copyright (C) 2010 Apple Inc. All rights reserved.2 * Copyright (C) 2010-2019 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 121 121 } 122 122 123 RunLoop::CycleResult RunLoop::cycle( const String&)123 RunLoop::CycleResult RunLoop::cycle(RunLoopMode) 124 124 { 125 125 MSG message;
Note:
See TracChangeset
for help on using the changeset viewer.