RESOLVED FIXED 115581
Remove CSS selector profiler branches from ElementRuleCollector loop.
https://bugs.webkit.org/show_bug.cgi?id=115581
Summary Remove CSS selector profiler branches from ElementRuleCollector loop.
Andreas Kling
Reported 2013-05-03 20:45:54 PDT
Remove CSS selector profiler branches from ElementRuleCollector loop.
Attachments
Patch (5.11 KB, patch)
2013-05-03 20:46 PDT, Andreas Kling
koivisto: review+
Andreas Kling
Comment 1 2013-05-03 20:46:26 PDT
Antti Koivisto
Comment 2 2013-05-03 20:53:54 PDT
Comment on attachment 200514 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=200514&action=review > Source/WebCore/css/ElementRuleCollector.cpp:409 > + if (InspectorInstrumentation::hasFrontends()) > + doCollectMatchingRulesForList<true>(rules, matchRequest, ruleRange); > + else > + doCollectMatchingRulesForList<false>(rules, matchRequest, ruleRange); Please use early return for the exceptional path. UNLIKELY might be good too.
Andreas Kling
Comment 3 2013-05-04 08:02:39 PDT
Note You need to log in before you can comment on or make changes to this bug.