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

Issue 2304023003: StackFrameDepth should be managed per ThreadHeap (Closed)

Created:
4 years, 3 months ago by keishi
Modified:
4 years, 3 months ago
Reviewers:
haraken, oilpan-reviews
CC:
chromium-reviews, blink-reviews, kouhei+heap_chromium.org, oilpan-reviews, Mads Ager (chromium)
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

StackFrameDepth should be managed per ThreadHeap StackFrameDepth should be managed per ThreadHeap so we won't have issues when we run multiple GCs simultaniously. BUG= Committed: https://crrev.com/098b330a204a365b70d381ca9b3e51a9ca7efc29 Cr-Commit-Position: refs/heads/master@{#416908}

Patch Set 1 #

Total comments: 6

Patch Set 2 : fix #

Patch Set 3 : CL for src perf tryjob to run sunspider benchmark on all platform(s) #

Patch Set 4 : CL for src perf tryjob to run oilpan_gc_times.blink_perf_stress benchmark on all platform(s) #

Patch Set 5 : fix #

Patch Set 6 : fix #

Total comments: 5

Patch Set 7 : revert to PS1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+26 lines, -22 lines) Patch
M third_party/WebKit/Source/platform/heap/Heap.h View 2 3 4 5 6 3 chunks +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/Heap.cpp View 2 3 4 5 6 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/platform/heap/HeapTest.cpp View 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/StackFrameDepth.h View 1 2 3 4 5 6 3 chunks +16 lines, -15 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/StackFrameDepth.cpp View 2 3 4 5 6 3 chunks +2 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/platform/heap/TraceTraits.h View 2 3 4 5 6 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 22 (7 generated)
keishi
PTAL
4 years, 3 months ago (2016-09-02 06:42:31 UTC) #4
haraken
https://codereview.chromium.org/2304023003/diff/1/third_party/WebKit/Source/platform/heap/StackFrameDepth.h File third_party/WebKit/Source/platform/heap/StackFrameDepth.h (right): https://codereview.chromium.org/2304023003/diff/1/third_party/WebKit/Source/platform/heap/StackFrameDepth.h#newcode22 third_party/WebKit/Source/platform/heap/StackFrameDepth.h:22: class PLATFORM_EXPORT StackFrameDepth final { Add DISALLOW_NEW(). https://codereview.chromium.org/2304023003/diff/1/third_party/WebKit/Source/platform/heap/StackFrameDepth.h#newcode94 third_party/WebKit/Source/platform/heap/StackFrameDepth.h:94: ...
4 years, 3 months ago (2016-09-02 09:07:58 UTC) #7
haraken
On 2016/09/02 09:07:58, haraken wrote: > https://codereview.chromium.org/2304023003/diff/1/third_party/WebKit/Source/platform/heap/StackFrameDepth.h > File third_party/WebKit/Source/platform/heap/StackFrameDepth.h (right): > > https://codereview.chromium.org/2304023003/diff/1/third_party/WebKit/Source/platform/heap/StackFrameDepth.h#newcode22 > ...
4 years, 3 months ago (2016-09-02 09:08:49 UTC) #8
keishi
I kept hitting the ASSERT in StackFrameDepth::isSafeToRecurse() sporadically when I triggered GC on multiple threads ...
4 years, 3 months ago (2016-09-02 09:32:02 UTC) #9
keishi
CL for src perf tryjob to run sunspider benchmark on all platform(s)
4 years, 3 months ago (2016-09-05 14:00:30 UTC) #10
keishi
CL for src perf tryjob to run oilpan_gc_times.blink_perf_stress benchmark on all platform(s)
4 years, 3 months ago (2016-09-05 14:02:00 UTC) #11
keishi
https://codereview.chromium.org/2304023003/diff/1/third_party/WebKit/Source/platform/heap/StackFrameDepth.h File third_party/WebKit/Source/platform/heap/StackFrameDepth.h (right): https://codereview.chromium.org/2304023003/diff/1/third_party/WebKit/Source/platform/heap/StackFrameDepth.h#newcode94 third_party/WebKit/Source/platform/heap/StackFrameDepth.h:94: class StackFrameDepthScope { On 2016/09/02 09:07:57, haraken wrote: > ...
4 years, 3 months ago (2016-09-06 12:54:22 UTC) #12
haraken
https://codereview.chromium.org/2304023003/diff/100001/third_party/WebKit/Source/platform/heap/TraceTraits.h File third_party/WebKit/Source/platform/heap/TraceTraits.h (right): https://codereview.chromium.org/2304023003/diff/100001/third_party/WebKit/Source/platform/heap/TraceTraits.h#newcode74 third_party/WebKit/Source/platform/heap/TraceTraits.h:74: if (LIKELY(visitor->isAcceptableStackUse())) { On 2016/09/06 12:54:22, keishi wrote: > ...
4 years, 3 months ago (2016-09-06 13:03:11 UTC) #13
keishi
https://codereview.chromium.org/2304023003/diff/100001/third_party/WebKit/Source/platform/heap/TraceTraits.h File third_party/WebKit/Source/platform/heap/TraceTraits.h (right): https://codereview.chromium.org/2304023003/diff/100001/third_party/WebKit/Source/platform/heap/TraceTraits.h#newcode74 third_party/WebKit/Source/platform/heap/TraceTraits.h:74: if (LIKELY(visitor->isAcceptableStackUse())) { On 2016/09/06 13:03:11, haraken wrote: > ...
4 years, 3 months ago (2016-09-07 05:38:21 UTC) #14
keishi
https://codereview.chromium.org/2304023003/diff/100001/third_party/WebKit/Source/platform/heap/TraceTraits.h File third_party/WebKit/Source/platform/heap/TraceTraits.h (right): https://codereview.chromium.org/2304023003/diff/100001/third_party/WebKit/Source/platform/heap/TraceTraits.h#newcode74 third_party/WebKit/Source/platform/heap/TraceTraits.h:74: if (LIKELY(visitor->isAcceptableStackUse())) { On 2016/09/06 13:03:11, haraken wrote: > ...
4 years, 3 months ago (2016-09-07 05:39:26 UTC) #15
haraken
On 2016/09/07 05:39:26, keishi wrote: > https://codereview.chromium.org/2304023003/diff/100001/third_party/WebKit/Source/platform/heap/TraceTraits.h > File third_party/WebKit/Source/platform/heap/TraceTraits.h (right): > > https://codereview.chromium.org/2304023003/diff/100001/third_party/WebKit/Source/platform/heap/TraceTraits.h#newcode74 > ...
4 years, 3 months ago (2016-09-07 06:31:50 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2304023003/120001
4 years, 3 months ago (2016-09-07 06:54:20 UTC) #18
commit-bot: I haz the power
Committed patchset #7 (id:120001)
4 years, 3 months ago (2016-09-07 11:15:56 UTC) #19
commit-bot: I haz the power
Patchset 7 (id:??) landed as https://crrev.com/098b330a204a365b70d381ca9b3e51a9ca7efc29 Cr-Commit-Position: refs/heads/master@{#416908}
4 years, 3 months ago (2016-09-07 11:17:07 UTC) #21
keishi
4 years, 3 months ago (2016-09-09 05:02:08 UTC) #22
Message was sent while issue was closed.
A revert of this CL (patchset #7 id:120001) has been created in
https://codereview.chromium.org/2326523004/ by keishi@chromium.org.

The reason for reverting is: Caused
FetchDataConsumerTeeTest.CreateFromBlobWithInvalidSize and
FetchDataConsumerTeeTest.Create to fail
https://bugs.chromium.org/p/chromium/issues/detail?id=645253.

Powered by Google App Engine
This is Rietveld 408576698