WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
76337
Cache CSSStyleSelector::Features in RuleSets
https://bugs.webkit.org/show_bug.cgi?id=76337
Summary
Cache CSSStyleSelector::Features in RuleSets
Antti Koivisto
Reported
2012-01-14 11:20:55 PST
Currently whenever the style selector is updated we go through all the applicable rules and collect the used features again. We should keep the features around as part of the RuleSets and update them incrementally. Collecting the features will then be just a matter of taking the union of all features used by the RuleSets.
Attachments
patch
(21.06 KB, patch)
2012-01-14 12:03 PST
,
Antti Koivisto
no flags
Details
Formatted Diff
Diff
updated to tot
(21.15 KB, patch)
2012-01-16 13:56 PST
,
Antti Koivisto
kling
: review+
webkit-ews
: commit-queue-
Details
Formatted Diff
Diff
build fix for bots
(21.19 KB, patch)
2012-01-16 14:29 PST
,
Antti Koivisto
no flags
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Antti Koivisto
Comment 1
2012-01-14 12:03:06 PST
Created
attachment 122554
[details]
patch
Andreas Kling
Comment 2
2012-01-14 12:26:28 PST
Comment on
attachment 122554
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=122554&action=review
Dumping superficial comments since you have to reup anyway.
> Source/WebCore/ChangeLog:13 > + This is 1-2% CPU time reduction (engadged, nytimes) due less time spent in feature collection.
Typo, engadget.
> Source/WebCore/ChangeLog:25 > + Add a field far caching the features.
Typo, for.
> Source/WebCore/css/CSSStyleSelector.cpp:225 > + void addRule(CSSStyleRule* , CSSSelector*);
Extra space after CSSStyleRule*.
> Source/WebCore/css/CSSStyleSelector.cpp:230 > +
Extra whitespace.
> Source/WebCore/css/CSSStyleSelector.cpp:1950 > + if (selector->m_match == CSSSelector::Id && !selector->value().isEmpty())
I suspect selector->value() can't be empty if selector->m_match == CSSSelector::Id. No need to change that in this patch as you're just moving the code though.
> Source/WebCore/css/CSSStyleSelector.cpp:1980 > + if (selector->isSiblingSelector()) > + foundSiblingSelector = true;
You could change this to: if (!foundSiblingSelector && selector->isSiblingSelector()) To avoid wasting cycles after a first sibling selector is found.
> Source/WebCore/css/CSSStyleSelector.h:225 > + struct RuleSelectorPair { > + RuleSelectorPair(CSSStyleRule* rule, CSSSelector* selector) : rule(rule), selector(selector) { }
Seems like we should either hide RuleSelectorPair() or make it initialize rule and selector as null pointers.
Antti Koivisto
Comment 3
2012-01-16 06:07:04 PST
(In reply to
comment #2
)
> > Source/WebCore/css/CSSStyleSelector.h:225 > > + struct RuleSelectorPair { > > + RuleSelectorPair(CSSStyleRule* rule, CSSSelector* selector) : rule(rule), selector(selector) { } > > Seems like we should either hide RuleSelectorPair() or make it initialize rule and selector as null pointers.
I think it is better to keep simple structs simple. The constructor is there for convenience only.
Antti Koivisto
Comment 4
2012-01-16 13:56:10 PST
Created
attachment 122681
[details]
updated to tot
Andreas Kling
Comment 5
2012-01-16 14:09:28 PST
Comment on
attachment 122681
[details]
updated to tot r=muppet
Early Warning System Bot
Comment 6
2012-01-16 14:13:15 PST
Comment on
attachment 122681
[details]
updated to tot
Attachment 122681
[details]
did not pass qt-ews (qt): Output:
http://queues.webkit.org/results/11254319
Antti Koivisto
Comment 7
2012-01-16 14:29:44 PST
Created
attachment 122685
[details]
build fix for bots
Antti Koivisto
Comment 8
2012-01-16 14:46:21 PST
http://trac.webkit.org/changeset/105093
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug