WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
69366
Web Inspector: CodeGenerator should not use pointers for out params of RefPtr type.
https://bugs.webkit.org/show_bug.cgi?id=69366
Summary
Web Inspector: CodeGenerator should not use pointers for out params of RefPtr...
Vsevolod Vlasov
Reported
2011-10-04 13:25:48 PDT
CodeGenerator should not use pointers for out params of RefPtr type.
Attachments
Patch
(63.68 KB, patch)
2011-12-19 14:15 PST
,
Peter Rybin
no flags
Details
Formatted Diff
Diff
Patch
(63.61 KB, patch)
2011-12-20 11:15 PST
,
Peter Rybin
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Eric Seidel (no email)
Comment 1
2011-10-04 13:52:59 PDT
It should return PassRefPtr's instead? PassRefPtr is strictly superior to RefPtr& when possible.
Ryosuke Niwa
Comment 2
2011-10-04 13:56:18 PDT
(In reply to
comment #1
)
> It should return PassRefPtr's instead? PassRefPtr is strictly superior to RefPtr& when possible.
This is only for *out* arguments, meaning that callees are supposed to override the values of those variables. We currently use RefPtr<..>* result :(
Ilya Tikhonovsky
Comment 3
2011-10-04 13:58:59 PDT
In some cases we have two or more out params. As example setBreakpointByUrl, setBreakpoint, setScriptSource etc. That is the reason do not pass these data via return statement.
Ryosuke Niwa
Comment 4
2011-10-04 14:02:19 PDT
(In reply to
comment #2
)
> (In reply to
comment #1
) > > It should return PassRefPtr's instead? PassRefPtr is strictly superior to RefPtr& when possible. > > This is only for *out* arguments, meaning that callees are supposed to override the values of those variables. We currently use RefPtr<..>* result :(
It's fine to use out arguments but it's NOT okay to use raw pointers for that. I'm actually surprised that there's no mentioning of this in WebKit's style guideline.
Pavel Feldman
Comment 5
2011-10-04 14:06:09 PDT
(In reply to
comment #1
)
> It should return PassRefPtr's instead? PassRefPtr is strictly superior to RefPtr& when possible.
I thought that RefPtr& was the preferred way in case of multiple out parameters. It was allowed in the style:
http://trac.webkit.org/changeset/94803
and supported my Darin and Maciej on a recent thread.
> It's fine to use out arguments but it's NOT okay to use raw pointers for that. I'm actually surprised that there's no mentioning of this in WebKit's style guideline.
Although not in the guidelines, references are typically expected to be used, so your original request makes perfect sense.
Peter Rybin
Comment 6
2011-12-19 14:15:59 PST
Created
attachment 119918
[details]
Patch
WebKit Review Bot
Comment 7
2011-12-19 14:18:22 PST
Attachment 119918
[details]
did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebCore/ChangeLog', u'Source/WebCor..." exit_code: 1 Source/WebCore/inspector/InspectorCSSAgent.cpp:596: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Source/WebCore/inspector/InspectorCSSAgent.h:94: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Source/WebCore/inspector/InspectorProfilerAgent.h:84: The parameter name "error" adds no information, so it should be removed. [readability/parameter_name] [5] Source/WebCore/inspector/InspectorProfilerAgent.h:85: The parameter name "error" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 4 in 22 files If any of these errors are false positives, please file a bug against check-webkit-style.
Ilya Tikhonovsky
Comment 8
2011-12-20 05:20:45 PST
Comment on
attachment 119918
[details]
Patch Clearing flags on attachment: 119918 Committed
r103322
: <
http://trac.webkit.org/changeset/103322
>
Ilya Tikhonovsky
Comment 9
2011-12-20 05:20:57 PST
All reviewed patches have been landed. Closing bug.
Csaba Osztrogonác
Comment 10
2011-12-20 05:52:31 PST
(In reply to
comment #8
)
> (From update of
attachment 119918
[details]
) > Clearing flags on attachment: 119918 > > Committed
r103322
: <
http://trac.webkit.org/changeset/103322
>
Reopen, because it made 7 inspector tests crash on the Qt bot:
http://build.webkit.org/results/Qt%20Linux%20Release/r103322%20(41262)/results.html
Could you check it, please?
Csaba Osztrogonác
Comment 11
2011-12-20 06:40:46 PST
Here is the problem from Qt debug bot: ASSERTION FAILED: value ../../../../Source/WebCore/inspector/InspectorValues.h(321) : void WebCore::InspectorArray::pushObject(WTF::PassRefPtr<WebCore::InspectorObject>)
Peter Rybin
Comment 12
2011-12-20 11:15:57 PST
Created
attachment 120048
[details]
Patch
WebKit Review Bot
Comment 13
2011-12-20 11:17:27 PST
Attachment 120048
[details]
did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebCore/ChangeLog', u'Source/WebCor..." exit_code: 1 Source/WebCore/inspector/InspectorCSSAgent.cpp:596: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Source/WebCore/inspector/InspectorCSSAgent.h:94: The parameter type should use PassRefPtr instead of RefPtr. [readability/pass_ptr] [5] Source/WebCore/inspector/InspectorProfilerAgent.h:84: The parameter name "error" adds no information, so it should be removed. [readability/parameter_name] [5] Source/WebCore/inspector/InspectorProfilerAgent.h:85: The parameter name "error" adds no information, so it should be removed. [readability/parameter_name] [5] Total errors found: 4 in 22 files If any of these errors are false positives, please file a bug against check-webkit-style.
Peter Rybin
Comment 14
2011-12-20 11:20:45 PST
(In reply to
comment #11
)
> Here is the problem from Qt debug bot: > > ASSERTION FAILED: value > ../../../../Source/WebCore/inspector/InspectorValues.h(321) : void WebCore::InspectorArray::pushObject(WTF::PassRefPtr<WebCore::InspectorObject>)
Csaba, thank you for investigating. A condition against NULL pointer was lost in the original patch. New patch should fix it.
Ilya Tikhonovsky
Comment 15
2011-12-20 21:51:58 PST
Committed
r103389
: <
http://trac.webkit.org/changeset/103389
>
Yury Semikhatsky
Comment 16
2011-12-21 00:56:58 PST
Comment on
attachment 120048
[details]
Patch Cleared r? from landed patch.
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