|
(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)
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
|
Total messages: 17 (0 generated)
|