Bug 14977 - Hixie's DOM Core performance test shows insert >10x slower than append
Summary: Hixie's DOM Core performance test shows insert >10x slower than append
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: DOM (show other bugs)
Version: 523.x (Safari 3)
Hardware: Mac OS X 10.4
: P3 Normal
Assignee: Alexey Proskuryakov
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-08-15 13:38 PDT by Darin Adler
Modified: 2007-11-22 22:44 PST (History)
2 users (show)

See Also:


Attachments
first cut at a fix (7.35 KB, patch)
2007-08-15 13:44 PDT, Darin Adler
no flags Details | Formatted Diff | Diff
first cut at a fix (uploaded wrong the first time) (11.23 KB, patch)
2007-08-15 13:46 PDT, Darin Adler
oliver: review-
Details | Formatted Diff | Diff
proposed fix (3.81 KB, patch)
2007-11-22 10:16 PST, Alexey Proskuryakov
mjs: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Darin Adler 2007-08-15 13:38:10 PDT
I noticed that the performance test indicated that insert was 10x slower than append.

Then I figured out why. Unnecessary churn in the NodeList code. I have a patch that fixes it, but it could possibly slow down other things so it's not quite ready for review.

I didn't make a regression test yet.
Comment 1 Darin Adler 2007-08-15 13:44:27 PDT
Created attachment 15985 [details]
first cut at a fix
Comment 2 Darin Adler 2007-08-15 13:46:27 PDT
Created attachment 15986 [details]
first cut at a fix (uploaded wrong the first time)
Comment 3 Oliver Hunt 2007-09-05 22:06:32 PDT
Comment on attachment 15986 [details]
first cut at a fix (uploaded wrong the first time)

+private:
+    virtual bool nodeMatches(Node*) const;

private virtual?

Nothing else leaps out at me as being odd, but i don't feel qualified to comment on risk or correctness :(

My ad hoc benchmarking of this show Insertion time (from hixies DOM Core test) go from ~1100ms (avg. of 3 runs) to ~110ms (3 runs)
Comment 4 Oliver Hunt 2007-09-05 23:57:04 PDT
Comment on attachment 15986 [details]
first cut at a fix (uploaded wrong the first time)

Okay, after repeated runs (mostly cleaning my tree) i don't think this is safe, it's a huge regression for the Indexd portion of Hixies DOM Core tests
Comment 5 Oliver Hunt 2007-09-05 23:58:52 PDT
http://nontroppo.org/timer/Hixie_DOM.html

The index test goes from 26ms to >1000ms
Comment 6 Alexey Proskuryakov 2007-11-22 10:16:28 PST
Created attachment 17443 [details]
proposed fix

This doesn't cause regressions in other tests.

I couldn't fully understand the original patch, so I started from scratch. It's possible that I missed some additional optimization opportunities that were present there.
Comment 7 Alexey Proskuryakov 2007-11-22 10:19:08 PST
> Unnecessary churn in the NodeList code.

In other words, the problem had nothing to do with insertion performance - it's the previous test (index) that was making us register too many NodeLists, and thus slowed down subsequent DOM mutations.
Comment 8 Maciej Stachowiak 2007-11-22 19:33:44 PST
Comment on attachment 17443 [details]
proposed fix

r=me
Comment 9 Alexey Proskuryakov 2007-11-22 22:44:20 PST
Committed revision 27983.