RESOLVED FIXED 109899
[V8] MAYBE_MISSING_PARAMETER() macro is overkilling
https://bugs.webkit.org/show_bug.cgi?id=109899
Summary [V8] MAYBE_MISSING_PARAMETER() macro is overkilling
Kentaro Hara
Reported 2013-02-14 23:24:28 PST
Currently: - MAYBE_MISSING_PARAMETER(args, index, DefaultIsUndefined) returns args[index]. - MAYBE_MISSING_PARAMETER(args, index, DefaultIsNullString) returns Local<Value>() if args[index] is missing (i.e. the length of |args| is less than |index|). It returns args[index] otherwise. No one other than CodeGeneratorV8.pm uses MAYBE_MISSING_PARAMETER(args, index, DefaultIsUndefined). Instead, we simply use args[index]. We should remove the redundant usage in CodeGeneratorV8.pm too. The long-name macro has been making generated code less readable. In addition, we can rename MAYBE_MISSING_PARAMETER() to MissingIsNullString().
Attachments
Patch (55.57 KB, patch)
2013-02-14 23:26 PST, Kentaro Hara
no flags
patch for landing (56.26 KB, patch)
2013-02-18 23:38 PST, Kentaro Hara
no flags
Kentaro Hara
Comment 1 2013-02-14 23:26:26 PST
Adam Barth
Comment 2 2013-02-15 09:09:40 PST
Comment on attachment 188488 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=188488&action=review > Source/WebCore/bindings/v8/V8BindingMacros.h:55 > +#define MissingIsNullString(args, index) \ Can we make this an inline function instead of a pre-processor macro? (If not, we should keep the ALL_CAPS name to let callers know that it's a macro.)
Kentaro Hara
Comment 3 2013-02-18 23:38:49 PST
Created attachment 189004 [details] patch for landing
Kentaro Hara
Comment 4 2013-02-18 23:39:30 PST
(In reply to comment #2) > Can we make this an inline function instead of a pre-processor macro? (If not, we should keep the ALL_CAPS name to let callers know that it's a macro.) Changed it to an inline function and renamed it to argumentOrNull(). Thanks.
WebKit Review Bot
Comment 5 2013-02-19 00:23:40 PST
Comment on attachment 189004 [details] patch for landing Clearing flags on attachment: 189004 Committed r143305: <http://trac.webkit.org/changeset/143305>
WebKit Review Bot
Comment 6 2013-02-19 00:23:43 PST
All reviewed patches have been landed. Closing bug.
Yury Semikhatsky
Comment 7 2013-02-19 00:51:42 PST
(In reply to comment #5) > (From update of attachment 189004 [details]) > Clearing flags on attachment: 189004 > > Committed r143305: <http://trac.webkit.org/changeset/143305> This changed causes lots of warnings in the console during code generation from IDLs: ... Use of uninitialized value $optional in string eq at ../bindings/scripts/CodeGeneratorV8.pm line 1815. Use of uninitialized value $optional in string eq at ../bindings/scripts/CodeGeneratorV8.pm line 1832. Use of uninitialized value $optional in string eq at ../bindings/scripts/CodeGeneratorV8.pm line 1832. Use of uninitialized value $optional in string eq at ../bindings/scripts/CodeGeneratorV8.pm line 1832. Use of uninitialized value $optional in string eq at ../bindings/scripts/CodeGeneratorV8.pm line 1832. Use of uninitialized value $optional in string eq at ../bindings/scripts/CodeGeneratorV8.pm line 1832. Use of uninitialized value $optional in string eq at ../bindings/scripts/CodeGeneratorV8.pm line 1832. ...
Kentaro Hara
Comment 8 2013-02-19 00:59:54 PST
(In reply to comment #7) > (In reply to comment #5) > > (From update of attachment 189004 [details] [details]) > > Clearing flags on attachment: 189004 > > > > Committed r143305: <http://trac.webkit.org/changeset/143305> > > This changed causes lots of warnings in the console during code generation from IDLs: Let me fix it in minutes.
Kentaro Hara
Comment 9 2013-02-19 01:02:40 PST
Fixed in r143308. Sorry for the trouble!
Simon Fraser (smfr)
Comment 10 2013-02-19 12:44:48 PST
Kentaro Hara
Comment 11 2013-02-19 12:45:17 PST
Sorry, one sec.
Kentaro Hara
Comment 12 2013-02-19 12:49:47 PST
Fixed in r143374. Sorry for the late fix!
Note You need to log in before you can comment on or make changes to this bug.