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

Issue 878383004: Subzero: Fix timers for multithreaded translation. (Closed)

Created:
5 years, 10 months ago by Jim Stichnoth
Modified:
5 years, 10 months ago
CC:
native-client-reviews_googlegroups.com
Base URL:
https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Subzero: Fix timers for multithreaded translation. Now that multithreaded parsing and translation is in place, timer operations have to be made thread-local. After the non-main threads end, their thread-local timer data needs to be merged into the global timer data, which resides in the GlobalContext object. The merge is a bit tricky because the internal timer stack structure is built up dynamically as items are pushed and popped. Two threads may have radically different timing data: 1. The parser thread profile is completely different from a translator thread. 2. For -timing-funcs, two translator threads hold data for entirely different sets of functions. A bit more tweaking will need to be done to make the timing output fully usable in a multithreaded run. Because of multiple threads, times may add up to >100%. Also, time spent blocked is being "unfairly" attributed to the caller of the blocking operation - we should either count the user time instead of wall-clock time, or add a special timer marker for blocking locking operations. BUG= none R=jvoung@chromium.org Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=380d7b96c63acc79b84a08bb24ae1ffcd132a0be

Patch Set 1 #

Patch Set 2 : Cleanup #

Total comments: 9

Patch Set 3 : Code review changes #

Total comments: 2

Patch Set 4 : Rebase. Add missing 'break'. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+221 lines, -56 lines) Patch
M src/IceCfg.cpp View 1 chunk +10 lines, -2 lines 0 comments Download
M src/IceGlobalContext.h View 1 2 8 chunks +68 lines, -19 lines 0 comments Download
M src/IceGlobalContext.cpp View 1 2 3 4 chunks +28 lines, -19 lines 0 comments Download
M src/IceTimerTree.h View 3 chunks +15 lines, -1 line 0 comments Download
M src/IceTimerTree.cpp View 1 2 2 chunks +93 lines, -12 lines 0 comments Download
M src/IceTimerTree.def View 2 chunks +1 line, -1 line 0 comments Download
M src/PNaClTranslator.cpp View 3 chunks +6 lines, -2 lines 0 comments Download

Messages

Total messages: 7 (1 generated)
Jim Stichnoth
5 years, 10 months ago (2015-01-30 05:56:25 UTC) #2
jvoung (off chromium)
https://codereview.chromium.org/878383004/diff/20001/src/IceGlobalContext.cpp File src/IceGlobalContext.cpp (right): https://codereview.chromium.org/878383004/diff/20001/src/IceGlobalContext.cpp#newcode564 src/IceGlobalContext.cpp:564: Ctx->pushTimer(ID); Should this pushTimer be given the StackID too? ...
5 years, 10 months ago (2015-01-30 18:42:56 UTC) #3
Jim Stichnoth
Thanks! https://codereview.chromium.org/878383004/diff/20001/src/IceGlobalContext.cpp File src/IceGlobalContext.cpp (right): https://codereview.chromium.org/878383004/diff/20001/src/IceGlobalContext.cpp#newcode564 src/IceGlobalContext.cpp:564: Ctx->pushTimer(ID); On 2015/01/30 18:42:56, jvoung wrote: > Should ...
5 years, 10 months ago (2015-01-30 20:22:25 UTC) #4
jvoung (off chromium)
lgtm https://codereview.chromium.org/878383004/diff/20001/src/IceGlobalContext.h File src/IceGlobalContext.h (right): https://codereview.chromium.org/878383004/diff/20001/src/IceGlobalContext.h#newcode404 src/IceGlobalContext.h:404: : ID(ID), Ctx(Ctx), StackID(StackID), Active(false) { On 2015/01/30 ...
5 years, 10 months ago (2015-01-30 21:04:44 UTC) #5
Jim Stichnoth
https://codereview.chromium.org/878383004/diff/40001/src/IceGlobalContext.cpp File src/IceGlobalContext.cpp (right): https://codereview.chromium.org/878383004/diff/40001/src/IceGlobalContext.cpp#newcode565 src/IceGlobalContext.cpp:565: Active = Ctx->getFlags().TimeEachFunction; On 2015/01/30 21:04:44, jvoung wrote: > ...
5 years, 10 months ago (2015-01-30 21:10:06 UTC) #6
Jim Stichnoth
5 years, 10 months ago (2015-01-30 21:10:43 UTC) #7
Message was sent while issue was closed.
Committed patchset #4 (id:60001) manually as
380d7b96c63acc79b84a08bb24ae1ffcd132a0be (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698