RESOLVED FIXED 203351
[JSC] Remove wasmAwareLexicalGlobalObject
https://bugs.webkit.org/show_bug.cgi?id=203351
Summary [JSC] Remove wasmAwareLexicalGlobalObject
Yusuke Suzuki
Reported 2019-10-23 18:49:28 PDT
[JSC] Remove wasmAwareLexicalGlobalObject
Attachments
Patch (25.88 KB, patch)
2019-10-23 18:50 PDT, Yusuke Suzuki
no flags
Patch (25.85 KB, patch)
2019-10-23 18:51 PDT, Yusuke Suzuki
no flags
Patch (25.86 KB, patch)
2019-10-23 19:09 PDT, Yusuke Suzuki
no flags
Patch (25.92 KB, patch)
2019-10-23 20:15 PDT, Yusuke Suzuki
no flags
Patch (25.95 KB, patch)
2019-10-23 20:25 PDT, Yusuke Suzuki
mark.lam: review+
Yusuke Suzuki
Comment 1 2019-10-23 18:50:11 PDT
Yusuke Suzuki
Comment 2 2019-10-23 18:51:06 PDT
Yusuke Suzuki
Comment 3 2019-10-23 19:09:49 PDT
Yusuke Suzuki
Comment 4 2019-10-23 20:15:11 PDT
Yusuke Suzuki
Comment 5 2019-10-23 20:25:14 PDT
Mark Lam
Comment 6 2019-10-23 21:56:05 PDT
Comment on attachment 381770 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=381770&action=review r=me with suggested improvement. > Source/JavaScriptCore/interpreter/CallFrame.cpp:356 > +JSGlobalObject* CallFrame::lexicalGlobalObjectFromWasmCallee(VM& vm) const > +{ > +#if ENABLE(WEBASSEMBLY) > + return vm.wasmContext.load()->owner<JSWebAssemblyInstance>()->globalObject(); > +#else > + UNUSED_PARAM(vm); > + return nullptr; > +#endif > +} Why not wrap the whole function in #if ENABLE(WEBASSEMBLY) and remove the #else case altogether? After all, this function can only be called if ENABLE(WEBASSEMBLY). > Source/JavaScriptCore/interpreter/CallFrame.h:170 > + JS_EXPORT_PRIVATE JSGlobalObject* lexicalGlobalObjectFromWasmCallee(VM&) const; Wrap in #if ENABLE(WEBASSEMBLY).
Yusuke Suzuki
Comment 7 2019-10-23 22:31:23 PDT
Comment on attachment 381770 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=381770&action=review Thanks >> Source/JavaScriptCore/interpreter/CallFrame.cpp:356 >> +} > > Why not wrap the whole function in #if ENABLE(WEBASSEMBLY) and remove the #else case altogether? After all, this function can only be called if ENABLE(WEBASSEMBLY). I don't have strong preference here. OK, I'll just wrap it.
Yusuke Suzuki
Comment 8 2019-10-23 22:34:27 PDT
Radar WebKit Bug Importer
Comment 9 2019-10-23 22:35:12 PDT
Note You need to log in before you can comment on or make changes to this bug.