WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
78825
Web Inspector: use static counters for estimation of allocated Documents, Nodes and JS EventListeners
https://bugs.webkit.org/show_bug.cgi?id=78825
Summary
Web Inspector: use static counters for estimation of allocated Documents, Nod...
Yury Semikhatsky
Reported
2012-02-16 09:30:22 PST
This counters cost nothing but will be very useful in the Timeline panel. Values of the counters could be sent along with each timeline event unlike DOM counters collected by traversing DOM on each event since their calculation is quite expensive.
Attachments
Patch
(20.52 KB, patch)
2012-02-16 09:33 PST
,
Yury Semikhatsky
no flags
Details
Formatted Diff
Diff
Patch
(21.53 KB, patch)
2012-02-16 09:37 PST
,
Yury Semikhatsky
no flags
Details
Formatted Diff
Diff
Patch
(32.77 KB, patch)
2012-02-16 23:38 PST
,
Yury Semikhatsky
pfeldman
: review+
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Yury Semikhatsky
Comment 1
2012-02-16 09:33:01 PST
Created
attachment 127392
[details]
Patch
Yury Semikhatsky
Comment 2
2012-02-16 09:37:21 PST
Created
attachment 127394
[details]
Patch
Pavel Feldman
Comment 3
2012-02-16 10:23:11 PST
Comment on
attachment 127392
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=127392&action=review
> Source/WebCore/bindings/v8/V8AbstractEventListener.cpp:38 > +#include "InspectorInstrumentation.h"
I would introduce InspectorCounters class that would have all the counter fields and guarantee a no-op upon the instrumentation call. WebCore/dom would update its values directly with no need for s_* in Node.h.
> Source/WebCore/inspector/InspectorInstrumentation.cpp:334 > + ++InspectorMemoryAgent::counter(InspectorMemoryAgent::JSEventListenerCounter);
You could merge memory counters into the new InspectorCounter class.
Ilya Tikhonovsky
Comment 4
2012-02-16 10:27:29 PST
Comment on
attachment 127394
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=127394&action=review
> Source/WebCore/inspector/InspectorInstrumentation.cpp:334 > + ++InspectorMemoryAgent::counter(InspectorMemoryAgent::JSEventListenerCounter);
it looks strange. I'd prefer to implement the counter as a class with int& operator[](int index) { .... }
Yury Semikhatsky
Comment 5
2012-02-16 23:38:14 PST
Created
attachment 127532
[details]
Patch
Yury Semikhatsky
Comment 6
2012-02-16 23:41:22 PST
(In reply to
comment #3
)
> (From update of
attachment 127392
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=127392&action=review
> > > Source/WebCore/bindings/v8/V8AbstractEventListener.cpp:38 > > +#include "InspectorInstrumentation.h" > > I would introduce InspectorCounters class that would have all the counter fields and guarantee a no-op upon the instrumentation call. WebCore/dom would update its values directly with no need for s_* in Node.h. >
Done.
> > Source/WebCore/inspector/InspectorInstrumentation.cpp:334 > > + ++InspectorMemoryAgent::counter(InspectorMemoryAgent::JSEventListenerCounter); > > You could merge memory counters into the new InspectorCounter class.
Done. (In reply to
comment #4
)
> (From update of
attachment 127394
[details]
) > View in context:
https://bugs.webkit.org/attachment.cgi?id=127394&action=review
> > > Source/WebCore/inspector/InspectorInstrumentation.cpp:334 > > + ++InspectorMemoryAgent::counter(InspectorMemoryAgent::JSEventListenerCounter); > > it looks strange. I'd prefer to implement the counter as a class with int& operator[](int index) { .... }
There is no method which would return a reference to the counter anymore. Instead we have more restrictive inc/dec methods and value getter.
Yury Semikhatsky
Comment 7
2012-02-17 00:33:56 PST
Committed
r108047
: <
http://trac.webkit.org/changeset/108047
>
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