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

Issue 403333002: [oilpan]: Remove support for tracing off-heap hashmaps. (Closed)

Created:
6 years, 5 months ago by wibling-chromium
Modified:
6 years, 5 months ago
CC:
blink-reviews, shans, webcomponents-bugzilla_chromium.org, eae+blinkwatch, fs, apavlov+blink_chromium.org, kinuko+worker_chromium.org, Steve Block, rune+blink, krit, Mads Ager (chromium), blink-reviews-dom_chromium.org, blink-reviews-css, blink-reviews-html_chromium.org, alecflett, Timothy Loh, dstockwell, dglazkov+blink, blink-reviews-events_chromium.org, pdr., rwlbuis, Eric Willigers, rjwright, dgrogan, sof, gyuyoung.kim_webkit.org, darktears, haraken, jsbell+idb_chromium.org, blink-reviews-animation_chromium.org, kouhei+svg_chromium.org, falken, Mike Lawther (Google), ed+blinkwatch_opera.com, f(malita), cmumford, horo+watch_chromium.org, Stephen Chennney, kouhei+heap_chromium.org
Project:
blink
Visibility:
Public.

Description

[oilpan]: Remove support for tracing off-heap hashmaps. With this change we can no longer trace off-heap hashmaps. To make this work I changed the ExecutionContext to be WillBeHeapSupplementable and moved the IDBPendingTransactionMonitor to the heap. Finally I changed the way we trace through supplementables. Specifically we only trace our supplements for HeapSupplementable and PersistentHeapSupplementable. R=ager@chromium.org, erik.corry@gmail.com, haraken@chromium.org, oilpan-reviews@chromium.org, tkent@chromium.org, vegorov@chromium.org, zerny@chromium.org, sigbjornf@opera.com BUG= Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=178648

Patch Set 1 #

Patch Set 2 : fix heaptests #

Total comments: 4

Patch Set 3 : review feedback #

Total comments: 4

Patch Set 4 : review feedback #

Total comments: 4

Patch Set 5 : review feedback #

Patch Set 6 : add GC_PLUGIN_IGNORE #

Unified diffs Side-by-side diffs Delta from patch set Stats (+129 lines, -62 lines) Patch
M Source/core/animation/ActiveAnimations.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/animation/animatable/AnimatableValueKeyframe.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/animation/css/CSSAnimations.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/css/CSSValuePool.cpp View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/core/css/RuleFeature.cpp View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/core/css/RuleSet.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/css/TreeBoundaryCrossingRules.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/css/invalidation/StyleInvalidator.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/css/resolver/MatchedPropertiesCache.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/DocumentMarkerController.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/DocumentOrderedMap.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/ElementDataCache.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/ExecutionContext.h View 1 chunk +3 lines, -4 lines 0 comments Download
M Source/core/dom/ExecutionContext.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/IdTargetObserverRegistry.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/MutationObserverInterestGroup.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/NodeListsNodeData.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/ScriptRunner.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/StyleEngine.cpp View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/core/dom/UserActionElementSet.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/custom/CustomElementScheduler.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/custom/CustomElementUpgradeCandidateMap.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/shadow/ContentDistribution.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/html/HTMLCollection.h View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/html/forms/FormController.cpp View 1 chunk +6 lines, -1 line 0 comments Download
M Source/core/page/EventHandler.cpp View 2 chunks +2 lines, -0 lines 0 comments Download
M Source/core/page/PrintContext.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/svg/animation/SMILTimeContainer.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/timing/PerformanceUserTiming.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/workers/WorkerEventQueue.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/modules/indexeddb/IDBPendingTransactionMonitor.h View 1 2 3 2 chunks +6 lines, -8 lines 0 comments Download
M Source/modules/indexeddb/IDBPendingTransactionMonitor.cpp View 1 2 3 3 chunks +14 lines, -8 lines 0 comments Download
M Source/modules/webdatabase/SQLTransactionCoordinator.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
M Source/platform/Supplementable.h View 1 2 3 4 5 6 chunks +38 lines, -4 lines 0 comments Download
M Source/platform/heap/Handle.h View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M Source/platform/heap/HeapTest.cpp View 1 6 chunks +1 line, -10 lines 0 comments Download
M Source/platform/heap/Visitor.h View 2 chunks +0 lines, -26 lines 0 comments Download
M Source/platform/mhtml/ArchiveResourceCollection.cpp View 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 19 (0 generated)
wibling-chromium
6 years, 5 months ago (2014-07-21 08:41:36 UTC) #1
sof
lgtm. Would be good to get a 2nd pair of Oilpan-trained eyes to look it ...
6 years, 5 months ago (2014-07-21 13:43:16 UTC) #2
wibling-chromium
Thanks for the review! I have updated the diff. https://codereview.chromium.org/403333002/diff/20001/Source/modules/indexeddb/IDBPendingTransactionMonitor.h File Source/modules/indexeddb/IDBPendingTransactionMonitor.h (right): https://codereview.chromium.org/403333002/diff/20001/Source/modules/indexeddb/IDBPendingTransactionMonitor.h#newcode60 Source/modules/indexeddb/IDBPendingTransactionMonitor.h:60: ...
6 years, 5 months ago (2014-07-21 14:37:43 UTC) #3
haraken
LGTM https://codereview.chromium.org/403333002/diff/40001/Source/modules/indexeddb/IDBPendingTransactionMonitor.cpp File Source/modules/indexeddb/IDBPendingTransactionMonitor.cpp (right): https://codereview.chromium.org/403333002/diff/40001/Source/modules/indexeddb/IDBPendingTransactionMonitor.cpp#newcode73 Source/modules/indexeddb/IDBPendingTransactionMonitor.cpp:73: WillBeHeapSupplement<ExecutionContext>::trace(visitor); } '}' should be written in the ...
6 years, 5 months ago (2014-07-21 14:47:05 UTC) #4
tkent
platform/ lgtm.
6 years, 5 months ago (2014-07-22 03:25:14 UTC) #5
wibling-chromium
Thanks for the reviews! I have updated the diffs. https://codereview.chromium.org/403333002/diff/40001/Source/modules/indexeddb/IDBPendingTransactionMonitor.cpp File Source/modules/indexeddb/IDBPendingTransactionMonitor.cpp (right): https://codereview.chromium.org/403333002/diff/40001/Source/modules/indexeddb/IDBPendingTransactionMonitor.cpp#newcode73 Source/modules/indexeddb/IDBPendingTransactionMonitor.cpp:73: ...
6 years, 5 months ago (2014-07-22 08:24:34 UTC) #6
wibling-chromium
The CQ bit was checked by wibling@chromium.org
6 years, 5 months ago (2014-07-22 08:24:41 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wibling@chromium.org/403333002/60001
6 years, 5 months ago (2014-07-22 08:24:56 UTC) #8
wibling-chromium
The CQ bit was unchecked by wibling@chromium.org
6 years, 5 months ago (2014-07-22 09:26:59 UTC) #9
Erik Corry
lgtm https://codereview.chromium.org/403333002/diff/60001/Source/platform/Supplementable.h File Source/platform/Supplementable.h (right): https://codereview.chromium.org/403333002/diff/60001/Source/platform/Supplementable.h#newcode161 Source/platform/Supplementable.h:161: Could we add a comment here a la: ...
6 years, 5 months ago (2014-07-22 09:37:51 UTC) #10
wibling-chromium
Thanks for the review. I have updated the diff. https://codereview.chromium.org/403333002/diff/60001/Source/platform/Supplementable.h File Source/platform/Supplementable.h (right): https://codereview.chromium.org/403333002/diff/60001/Source/platform/Supplementable.h#newcode161 Source/platform/Supplementable.h:161: ...
6 years, 5 months ago (2014-07-22 11:03:42 UTC) #11
wibling-chromium
The CQ bit was checked by wibling@chromium.org
6 years, 5 months ago (2014-07-22 11:04:43 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wibling@chromium.org/403333002/80001
6 years, 5 months ago (2014-07-22 11:05:48 UTC) #13
wibling-chromium
The CQ bit was unchecked by wibling@chromium.org
6 years, 5 months ago (2014-07-22 11:26:15 UTC) #14
wibling-chromium
The CQ bit was checked by wibling@chromium.org
6 years, 5 months ago (2014-07-22 11:42:33 UTC) #15
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/wibling@chromium.org/403333002/100001
6 years, 5 months ago (2014-07-22 11:43:46 UTC) #16
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_blink_rel on tryserver.blink ...
6 years, 5 months ago (2014-07-22 12:52:00 UTC) #17
commit-bot: I haz the power
Change committed as 178648
6 years, 5 months ago (2014-07-22 13:18:55 UTC) #18
johnme
6 years, 5 months ago (2014-07-22 14:19:35 UTC) #19
Message was sent while issue was closed.
A revert of this CL has been created in
https://codereview.chromium.org/409113003/ by johnme@chromium.org.

The reason for reverting is: Seems to have broken compile across the tree..

Powered by Google App Engine
This is Rietveld 408576698