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

Issue 152883002: (Concept patch) Simplify WTF::HashTable::add() return value for size and performance (Closed)

Created:
6 years, 10 months ago by Daniel Bratell
Modified:
6 years, 10 months ago
CC:
blink-reviews, shans, eae+blinkwatch, yurys+blink_chromium.org, apavlov+blink_chromium.org, adamk+blink_chromium.org, loislo+blink_chromium.org, Steve Block, dino_apple.com, Nils Barth (inactive), blink-layers+watch_chromium.org, caseq+blink_chromium.org, Nate Chapin, arv+blink, alancutter (OOO until 2018), marja+watch_chromium.org, dsinclair, dglazkov+blink, abarth-chromium, aandrey+blink_chromium.org, dstockwell, Timothy Loh, jchaffraix+rendering, devtools-reviews_chromium.org, bemjb+rendering_chromium.org, Eric Willigers, kenneth.christiansen, rjwright, zoltan1, sof, lushnikov+blink_chromium.org, pfeldman+blink_chromium.org, eustas+blink_chromium.org, paulirish+reviews_chromium.org, darktears, haraken, kojih, jsbell+bindings_chromium.org, alph+blink_chromium.org, leviw+renderwatch, vsevik+blink_chromium.org, Mike Lawther (Google), ed+blinkwatch_opera.com, Inactive, Jens Widell, fs
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Visibility:
Public.

Description

(Concept patch) WTF::HashTable::add() returns a full-blown iterator object that is never used as an iterator which makes it a bit wasteful both in clock cycles and in code size. This patch changes the iterator object to a clean ValueType pointer. That change shaves ~95 KB off the x64 content_shell binary. The shaving is half that callers of add() and set() becomes smaller (example: eventNameForAttributeName shrinks from 8.5 KB to 7 KB) and half that the add() method instantiations shrink by 50-150 bytes each (and there are about 500 different add() methods)

Patch Set 1 #

Total comments: 11
Unified diffs Side-by-side diffs Delta from patch set Stats (+97 lines, -67 lines) Patch
M Source/bindings/v8/NPV8Object.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/animation/KeyframeEffectModel.cpp View 1 chunk +4 lines, -2 lines 2 comments Download
M Source/core/css/CSSSegmentedFontFace.cpp View 1 chunk +2 lines, -2 lines 2 comments Download
M Source/core/css/RuleSet.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/DocumentSharedObjectPool.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/dom/PresentationAttributeStyle.cpp View 1 chunk +2 lines, -2 lines 1 comment Download
M Source/core/dom/custom/CustomElementScheduler.cpp View 1 chunk +1 line, -1 line 1 comment Download
M Source/core/dom/custom/CustomElementUpgradeCandidateMap.cpp View 1 chunk +3 lines, -2 lines 1 comment Download
M Source/core/html/PublicURLManager.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/core/inspector/AsyncCallStackTracker.cpp View 1 chunk +8 lines, -4 lines 0 comments Download
M Source/core/inspector/DOMPatchSupport.cpp View 1 chunk +2 lines, -4 lines 0 comments Download
M Source/core/inspector/InspectorDOMAgent.cpp View 1 chunk +3 lines, -3 lines 0 comments Download
M Source/core/inspector/InspectorDebuggerAgent.cpp View 1 chunk +3 lines, -2 lines 0 comments Download
M Source/core/inspector/TraceEventDispatcher.cpp View 1 chunk +3 lines, -2 lines 0 comments Download
M Source/core/page/EventHandler.cpp View 1 chunk +4 lines, -2 lines 0 comments Download
M Source/core/page/scrolling/ScrollingCoordinator.cpp View 3 chunks +8 lines, -4 lines 0 comments Download
M Source/core/rendering/RenderBlockLineLayout.cpp View 1 chunk +2 lines, -2 lines 0 comments Download
M Source/core/rendering/RenderLayer.cpp View 1 chunk +5 lines, -3 lines 0 comments Download
M Source/core/rendering/RenderObject.cpp View 1 chunk +6 lines, -3 lines 0 comments Download
M Source/modules/webdatabase/QuotaTracker.cpp View 1 chunk +1 line, -1 line 0 comments Download
M Source/modules/webdatabase/SQLTransactionCoordinator.cpp View 1 chunk +7 lines, -4 lines 0 comments Download
M Source/wtf/HashTable.h View 7 chunks +17 lines, -13 lines 2 comments Download
M Source/wtf/ListHashSet.h View 5 chunks +11 lines, -6 lines 2 comments Download

Messages

Total messages: 17 (0 generated)
Daniel Bratell
Adam, Eric, this i fallout patch from me looking into inlines and collection templates. HashTable::add's ...
6 years, 10 months ago (2014-02-04 09:35:41 UTC) #1
pfeldman
Adam, Eric, it is your call. 100 KB is a lot, but I don't like ...
6 years, 10 months ago (2014-02-04 09:48:34 UTC) #2
Mikhail
https://codereview.chromium.org/152883002/diff/1/Source/wtf/ListHashSet.h File Source/wtf/ListHashSet.h (right): https://codereview.chromium.org/152883002/diff/1/Source/wtf/ListHashSet.h#newcode764 Source/wtf/ListHashSet.h:764: Node* node = result.iterator; IMO the semantic is incorrect: ...
6 years, 10 months ago (2014-02-04 09:57:40 UTC) #3
Daniel Bratell
On 2014/02/04 09:57:40, mikhail.pozdnyakov wrote: > https://codereview.chromium.org/152883002/diff/1/Source/wtf/ListHashSet.h > File Source/wtf/ListHashSet.h (right): > > https://codereview.chromium.org/152883002/diff/1/Source/wtf/ListHashSet.h#newcode764 > ...
6 years, 10 months ago (2014-02-04 10:05:04 UTC) #4
Daniel Bratell
On 2014/02/04 09:48:34, pfeldman wrote: > Adam, Eric, it is your call. 100 KB is ...
6 years, 10 months ago (2014-02-04 10:06:32 UTC) #5
Inactive
I am not a wtf/ OWNER but as a wtf user, I am not a ...
6 years, 10 months ago (2014-02-04 14:21:33 UTC) #6
Erik Corry
I like this change. An iterator has always seemed like a heavy thing to return ...
6 years, 10 months ago (2014-02-04 14:27:14 UTC) #7
adamk
Like Chris, I'm not a WTF reviewer, but I don't much like this change (see ...
6 years, 10 months ago (2014-02-04 16:29:32 UTC) #8
Daniel Bratell
On 2014/02/04 16:29:32, adamk wrote: > Like Chris, I'm not a WTF reviewer, but I ...
6 years, 10 months ago (2014-02-04 17:07:54 UTC) #9
adamk
On 2014/02/04 17:07:54, Daniel Bratell wrote: > On 2014/02/04 16:29:32, adamk wrote: > > Like ...
6 years, 10 months ago (2014-02-04 17:25:49 UTC) #10
Daniel Bratell
On 2014/02/04 17:25:49, adamk wrote: > Ah, sorry, I hadn't had my coffee yet and ...
6 years, 10 months ago (2014-02-04 19:17:37 UTC) #11
eseidel
lgtm We can always add it back. I strongly support more people taking interest in ...
6 years, 10 months ago (2014-02-05 21:59:30 UTC) #12
eseidel
The CQ bit was unchecked by eseidel@chromium.org
6 years, 10 months ago (2014-02-05 21:59:38 UTC) #13
eseidel
Actually, looking through the change again I'm less sure. I have to head to the ...
6 years, 10 months ago (2014-02-05 22:04:08 UTC) #14
eseidel
OK, I've read it again more carefully. The idea still seems fine. The iterator/value naming ...
6 years, 10 months ago (2014-02-05 22:17:19 UTC) #15
Mikhail
On 2014/02/05 22:17:19, eseidel wrote: > OK, I've read it again more carefully. The idea ...
6 years, 10 months ago (2014-02-07 14:22:03 UTC) #16
Daniel Bratell
6 years, 10 months ago (2014-02-10 11:05:59 UTC) #17
I am closing this concept patch. The new fresh patch with the conclusions
reached here can be found in https://codereview.chromium.org/138643003/

Thanks everyone for your feedback. See you in the other issue!

Powered by Google App Engine
This is Rietveld 408576698