WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
67690
Remove virtual functions from JSCell
https://bugs.webkit.org/show_bug.cgi?id=67690
Summary
Remove virtual functions from JSCell
Mark Hahnenberg
Reported
2011-09-06 18:28:20 PDT
In order to maintain more control over exactly how JS objects are laid out, we need to remove the C++ virtual functions from JS object implementations due to the freedom that C++ compilers are given with how they lay out objects with vtable pointers. We can also save a little bit of memory due to the lack of vtable pointer in each object. The methods in JSCell that either need to be made non-virtual or removed are the following: isGetterSetter isAPIValueWrapper isPropertyNameIterator getCallData getConstructData getUInt32 toPrimitive getPrimitive toBoolean toNumber toString toObject visitChildren put(ExecState*, const Identifier&, JSValue, PutPropertySlot&) put(ExecState*, unsigned, JSValue) deleteProperty(ExecState*, const Identifier&) deleteProperty(ExecState*, unsigned) toThisObject getJSNumber getOwnPropertySlot(ExecState*, const Identifier&, PropertySlot&) getOwnPropertySlot(ExecState*, unsigned, PropertySlot&) Destructors will be taken care of by Oliver :-) There will be a patch for each function, roughly. This will serve as the tracking bug for this task.
Attachments
Add attachment
proposed patch, testcase, etc.
Mark Hahnenberg
Comment 1
2011-09-14 17:15:53 PDT
Sam helped me out a little bit and de-virtualized isGetterSetter, isAPIValueWrapper, and killed isPropertyNameIterator :-)
Mark Hahnenberg
Comment 2
2011-10-27 10:17:37 PDT
Except the virtual destructor, which will remain for a while longer until we get around to replacing virtual destructors with finalizers, there are no longer any virtual functions in JSCell. Closing this bug.
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