Bug 71034

Summary: Remove need for virtual JSObject::unwrappedObject
Product: WebKit Reporter: Sam Weinig <sam>
Component: New BugsAssignee: Sam Weinig <sam>
Status: RESOLVED FIXED    
Severity: Normal CC: mhahnenberg
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Bug Depends on:    
Bug Blocks: 70960    
Attachments:
Description Flags
Patch
none
Patch
none
Patch ggaren: review+

Description Sam Weinig 2011-10-27 10:48:57 PDT
Remove need for virtual JSObject::unwrappedObject
Comment 1 Sam Weinig 2011-10-27 13:09:37 PDT
Created attachment 112738 [details]
Patch
Comment 2 Sam Weinig 2011-10-30 12:12:03 PDT
Created attachment 112996 [details]
Patch
Comment 3 Sam Weinig 2011-10-30 13:17:20 PDT
Created attachment 113000 [details]
Patch
Comment 4 Filip Pizlo 2011-10-30 16:35:14 PDT
Comment on attachment 113000 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=113000&action=review

> Source/JavaScriptCore/runtime/JSGlobalThis.cpp:33
> +ASSERT_CLASS_FITS_IN_CELL(JSGlobalThis);

Is this needed, now that the GC can allocate things of any size?
Comment 5 Sam Weinig 2011-10-30 18:13:55 PDT
(In reply to comment #4)
> (From update of attachment 113000 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=113000&action=review
> 
> > Source/JavaScriptCore/runtime/JSGlobalThis.cpp:33
> > +ASSERT_CLASS_FITS_IN_CELL(JSGlobalThis);
> 
> Is this needed, now that the GC can allocate things of any size?

I don't know, I moved it from JSDOMWindowShell. If it isn't, should we remove all of them?
Comment 6 Geoffrey Garen 2011-10-30 18:25:37 PDT
Comment on attachment 113000 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=113000&action=review

r=me

> Source/JavaScriptCore/runtime/JSGlobalThis.h:51
> +    JSObject* unwrappedObject();

Please make this return JSGlobalObject*, since it's not the case that we're capable of wrapping any kind of JSObject.

> Source/JavaScriptCore/runtime/JSGlobalThis.h:68
> +    WriteBarrier<JSGlobalObject> m_globalVariables;

Please change this name to match its accessor ("unwrappedObject()").
Comment 7 Sam Weinig 2011-10-31 16:44:03 PDT
Committed r98909: <http://trac.webkit.org/changeset/98909>