Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(682)

Issue 1549143002: Add thread affinity and ASSERT() for same-thread restriction to WTF::Function (Closed)

Created:
4 years, 12 months ago by hiroshige
Modified:
4 years, 9 months ago
CC:
ajuma+watch-canvas_chromium.org, blink-reviews, blink-reviews-api_chromium.org, blink-reviews-bindings_chromium.org, blink-reviews-dom_chromium.org, blink-reviews-html_chromium.org, blink-reviews-wtf_chromium.org, blink-worker-reviews_chromium.org, Rik, chromium-reviews, dglazkov+blink, dshwang, eae+blinkwatch, falken, gavinp+loader_chromium.org, horo+watch_chromium.org, Nate Chapin, Justin Novosad, kinuko+watch, kinuko+worker_chromium.org, loading-reviews_chromium.org, Mikhail, rwlbuis, Raymond Toy, sof, tyoshino+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@TRV_ThreadSafeBindByVariadicTemplate
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add thread affinity and ASSERT() for same-thread restriction to WTF::Function This CL introduces ThreadAffinity (SameThreadAffinity or CrossThreadAffinity) at type level to: - WTF::Function, - WTF::PartBoundFunctionImpl, - blink::internal::CallClosureTaskBase, - blink::internal::CallClosureTask, and - blink::internal::CallClosureWithExecutionContextTask, to detect misuse of thread affinity at compile time and to prepare for merging with base::Bind() in the course of tzik@'s refactoring. This CL also adds ASSERT()s for all same-thread WTF::Function, i.e. ASSERT() that WTF::Function is created, executed and destructed on the same thread if it has SameThreadAffinity. This makes WTF::bind() to fail at runtime if used cross-thread. This CL replaces WTF::Closure with: - WTF::SameThreadClosure for same-thread closures and - WTF::CrossThreadClosure for cross-thread closures, blink::Task is also replaced with blink::SameThreadTask and blink::CrossThreadTask, but WTF::SameThreadClosure/CrossThreadClosure should be used instead where possible. BUG=588224 Committed: https://crrev.com/960a5f598dfc112718a58b2c4b29248ef2fa5dca Cr-Commit-Position: refs/heads/master@{#379614}

Patch Set 1 #

Patch Set 2 : Rebase #

Patch Set 3 : Rebase. #

Patch Set 4 : #

Patch Set 5 : #

Patch Set 6 : #

Patch Set 7 : Renaming back to postTask(). #

Patch Set 8 : #

Patch Set 9 : #

Patch Set 10 : #

Patch Set 11 : Rebase. #

Patch Set 12 : temp #

Patch Set 13 : #

Patch Set 14 : #

Total comments: 9

Patch Set 15 : Rebase. #

Patch Set 16 : Remove std::move() for |location| #

Patch Set 17 : Rename WTF::Closure to WTF::SameThreadClosure #

Patch Set 18 : Update/add comments. #

Patch Set 19 : Rebase. #

Patch Set 20 : Rebase. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+219 lines, -151 lines) Patch
M third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.h View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/bindings/core/v8/ScriptStreamerThread.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/CrossThreadTask.h View 1 2 6 chunks +6 lines, -33 lines 0 comments Download
M third_party/WebKit/Source/core/dom/ExecutionContextTask.h View 1 2 2 chunks +30 lines, -26 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Microtask.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/dom/Microtask.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/html/parser/HTMLParserThread.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/html/parser/HTMLParserThread.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorTaskRunner.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/page/NetworkStateNotifierTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/workers/WorkerScriptLoader.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/workers/WorkerScriptLoader.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/workers/WorkerThread.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/core/workers/WorkerThread.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 4 chunks +5 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/modules/fetch/CrossThreadHolder.h View 1 2 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/fetch/DataConsumerHandleTestUtil.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 2 chunks +6 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/modules/filesystem/LocalFileSystem.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/modules/filesystem/LocalFileSystem.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/ContentSettingCallbacks.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/ContentSettingCallbacks.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/Task.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +28 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/platform/ThreadSafeFunctional.h View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +3 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/WebTaskRunner.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +11 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/platform/WebThreadSupportingGC.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 1 chunk +12 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/graphics/gpu/DrawingBuffer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +4 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/CancellableTaskFactory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/scheduler/CancellableTaskFactory.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/scheduler/CancellableTaskFactoryTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/threading/BackgroundTaskRunner.h View 1 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/threading/BackgroundTaskRunner.cpp View 1 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/wtf/Forward.h View 1 2 chunks +0 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/wtf/Functional.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 5 chunks +65 lines, -13 lines 0 comments Download
M third_party/WebKit/public/platform/WebTaskRunner.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +7 lines, -5 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 78 (41 generated)
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/1
4 years, 12 months ago (2015-12-25 08:45:29 UTC) #2
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_gn_rel/builds/46901)
4 years, 12 months ago (2015-12-25 09:20:40 UTC) #4
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/20001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/20001
4 years, 11 months ago (2016-01-27 12:35:23 UTC) #6
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_gn_rel/builds/58044)
4 years, 11 months ago (2016-01-27 12:55:19 UTC) #8
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/40001
4 years, 10 months ago (2016-02-18 22:28:56 UTC) #10
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_compile_dbg_ng on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_compile_dbg_ng/builds/161317) mac_chromium_rel_ng on ...
4 years, 10 months ago (2016-02-18 23:10:46 UTC) #13
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/100001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/100001
4 years, 10 months ago (2016-02-19 23:05:31 UTC) #15
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/180001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/180001
4 years, 10 months ago (2016-02-20 00:52:20 UTC) #19
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 10 months ago (2016-02-20 02:11:23 UTC) #21
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/240001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/240001
4 years, 9 months ago (2016-02-29 21:23:54 UTC) #26
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/260001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/260001
4 years, 9 months ago (2016-03-01 01:47:05 UTC) #28
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_gn_chromeos_rel on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_gn_chromeos_rel/builds/150775)
4 years, 9 months ago (2016-03-01 02:14:49 UTC) #30
hiroshige
PTAL.
4 years, 9 months ago (2016-03-02 02:28:02 UTC) #34
kinuko
lgtm https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/wtf/Functional.h File third_party/WebKit/Source/wtf/Functional.h (right): https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/wtf/Functional.h#newcode216 third_party/WebKit/Source/wtf/Functional.h:216: void NEVER_INLINE checkThread() sorry, why we need this ...
4 years, 9 months ago (2016-03-02 07:30:56 UTC) #35
haraken
LGTM https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/Task.h File third_party/WebKit/Source/platform/Task.h (right): https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/Task.h#newcode43 third_party/WebKit/Source/platform/Task.h:43: // Please use WTF::Closure and WTF::CrossThreadClosure directly, instead ...
4 years, 9 months ago (2016-03-02 09:27:35 UTC) #36
tzik
lgtm https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/WebTaskRunner.cpp File third_party/WebKit/Source/platform/WebTaskRunner.cpp (right): https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/WebTaskRunner.cpp#newcode18 third_party/WebKit/Source/platform/WebTaskRunner.cpp:18: postDelayedTask(std::move(location), new CrossThreadTask(std::move(task)), delayMs); std::move(location) takes no effect. ...
4 years, 9 months ago (2016-03-02 11:54:29 UTC) #37
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/300001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/300001
4 years, 9 months ago (2016-03-03 02:08:00 UTC) #40
hiroshige
+skyostil@ alexclarke@ in case you have concerns/conflicts with this. https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/Task.h File third_party/WebKit/Source/platform/Task.h (right): https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/Task.h#newcode43 third_party/WebKit/Source/platform/Task.h:43: ...
4 years, 9 months ago (2016-03-03 02:21:07 UTC) #42
haraken
https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/Task.h File third_party/WebKit/Source/platform/Task.h (right): https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/Task.h#newcode43 third_party/WebKit/Source/platform/Task.h:43: // Please use WTF::Closure and WTF::CrossThreadClosure directly, instead of ...
4 years, 9 months ago (2016-03-03 02:38:06 UTC) #43
tzik
https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/Task.h File third_party/WebKit/Source/platform/Task.h (right): https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/Task.h#newcode43 third_party/WebKit/Source/platform/Task.h:43: // Please use WTF::Closure and WTF::CrossThreadClosure directly, instead of ...
4 years, 9 months ago (2016-03-03 04:49:30 UTC) #44
alex clarke (OOO till 29th)
LGTM
4 years, 9 months ago (2016-03-03 10:20:17 UTC) #45
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/340001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/340001
4 years, 9 months ago (2016-03-03 21:39:54 UTC) #47
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: chromeos_amd64-generic_chromium_compile_only_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromeos_amd64-generic_chromium_compile_only_ng/builds/102378) chromeos_x86-generic_chromium_compile_only_ng on ...
4 years, 9 months ago (2016-03-03 21:53:47 UTC) #51
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/380001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/380001
4 years, 9 months ago (2016-03-03 22:21:24 UTC) #53
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/176206)
4 years, 9 months ago (2016-03-03 23:02:12 UTC) #55
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/380001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/380001
4 years, 9 months ago (2016-03-03 23:58:14 UTC) #57
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-04 00:39:57 UTC) #59
hiroshige
https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/Task.h File third_party/WebKit/Source/platform/Task.h (right): https://codereview.chromium.org/1549143002/diff/260001/third_party/WebKit/Source/platform/Task.h#newcode43 third_party/WebKit/Source/platform/Task.h:43: // Please use WTF::Closure and WTF::CrossThreadClosure directly, instead of ...
4 years, 9 months ago (2016-03-04 02:02:47 UTC) #60
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/400001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/400001
4 years, 9 months ago (2016-03-05 02:09:44 UTC) #62
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-05 04:38:40 UTC) #64
hiroshige
+jochen, could you take a look?
4 years, 9 months ago (2016-03-07 04:21:40 UTC) #66
jochen (gone - plz use gerrit)
rubberstamp lgtm
4 years, 9 months ago (2016-03-07 12:03:15 UTC) #67
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/400001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/400001
4 years, 9 months ago (2016-03-07 17:15:59 UTC) #69
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 9 months ago (2016-03-07 18:38:37 UTC) #71
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1549143002/400001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1549143002/400001
4 years, 9 months ago (2016-03-07 19:36:41 UTC) #74
commit-bot: I haz the power
Committed patchset #20 (id:400001)
4 years, 9 months ago (2016-03-07 19:46:45 UTC) #76
commit-bot: I haz the power
4 years, 9 months ago (2016-03-07 19:47:50 UTC) #78
Message was sent while issue was closed.
Patchset 20 (id:??) landed as
https://crrev.com/960a5f598dfc112718a58b2c4b29248ef2fa5dca
Cr-Commit-Position: refs/heads/master@{#379614}

Powered by Google App Engine
This is Rietveld 408576698