WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
145709
Subclasses of JSNonFinalObject with gc'able children need to implement visitChildren()
https://bugs.webkit.org/show_bug.cgi?id=145709
Summary
Subclasses of JSNonFinalObject with gc'able children need to implement visitC...
Mark Lam
Reported
2015-06-05 12:51:55 PDT
The ClonedArguments class is missing a visitChildren. Ditto for the Element class in jsc.cpp.
Attachments
the patch.
(4.57 KB, patch)
2015-06-05 12:59 PDT
,
Mark Lam
ggaren
: review+
ggaren
: commit-queue-
Details
Formatted Diff
Diff
patch for landing with test added
(6.05 KB, patch)
2015-06-05 17:25 PDT
,
Mark Lam
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Mark Lam
Comment 1
2015-06-05 12:59:41 PDT
Created
attachment 254374
[details]
the patch.
Geoffrey Garen
Comment 2
2015-06-05 14:28:02 PDT
Comment on
attachment 254374
[details]
the patch. r=me ClonedArguments should be testable. Just allocate a lot of function.arguments for transient function objects, then force gc, and then access .callee on each one. You'll crash pretty quickly.
Mark Lam
Comment 3
2015-06-05 14:29:32 PDT
(In reply to
comment #2
)
> ClonedArguments should be testable. Just allocate a lot of > function.arguments for transient function objects, then force gc, and then > access .callee on each one. You'll crash pretty quickly.
k, I’ll work on a test.
Mark Lam
Comment 4
2015-06-05 16:02:48 PDT
(In reply to
comment #2
)
> ClonedArguments should be testable. Just allocate a lot of > function.arguments for transient function objects, then force gc, and then > access .callee on each one. You'll crash pretty quickly.
Actually, this turned out to be harder than we thought. Here's why: 1. With one exception (the StackVisitor), ClonedArguments are only created by op_create_out_of_band_arguments. 2. The BytecodeGenerator will only emit an op_create_out_of_band_arguments if the function is in strict mode. 3. Since ES5, access to arguments.callee is forbidden for a strict mode function. See
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/arguments/callee
). Hence, I can't get a scenario in JS code where I can naturally see this issue manifest. I mentioned that there was an exception i.e. the StackVisitor, which returns a ClonedArguments object when StackVisitor::arguments() is called. The remaining question is whether we can build a case around the use of StackVisitor::arguments().
Mark Lam
Comment 5
2015-06-05 16:55:38 PDT
I've found a way to reproduce this now. The StackVisitor:;Frame::createArguments() (not StackVisitor::arguments()) lead takes me to Function.arguments which does reproduce the issue without strict mode.
Mark Lam
Comment 6
2015-06-05 17:25:17 PDT
Created
attachment 254399
[details]
patch for landing with test added
Mark Lam
Comment 7
2015-06-05 17:34:52 PDT
Thanks for the review. Landed in
r185277
: <
http://trac.webkit.org/r185277
>.
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