WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
167431
jsc.cpp should have the $.agent stuff for testing SAB
https://bugs.webkit.org/show_bug.cgi?id=167431
Summary
jsc.cpp should have the $.agent stuff for testing SAB
Filip Pizlo
Reported
2017-01-25 13:54:01 PST
Patch forthcoming
Attachments
work in progress
(18.98 KB, patch)
2017-01-25 13:55 PST
,
Filip Pizlo
no flags
Details
Formatted Diff
Diff
the patch
(27.96 KB, patch)
2017-01-25 16:06 PST
,
Filip Pizlo
saam
: review+
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Filip Pizlo
Comment 1
2017-01-25 13:55:02 PST
Created
attachment 299737
[details]
work in progress
Filip Pizlo
Comment 2
2017-01-25 16:06:31 PST
Created
attachment 299758
[details]
the patch
WebKit Commit Bot
Comment 3
2017-01-25 16:08:00 PST
Attachment 299758
[details]
did not pass style-queue: ERROR: Source/JavaScriptCore/jsc.cpp:2488: This { should be at the end of the previous line [whitespace/braces] [4] Total errors found: 1 in 5 files If any of these errors are false positives, please file a bug against check-webkit-style.
Saam Barati
Comment 4
2017-01-25 16:50:23 PST
Comment on
attachment 299758
[details]
the patch View in context:
https://bugs.webkit.org/attachment.cgi?id=299758&action=review
r=me
> Source/JavaScriptCore/jsc.cpp:2348 > + if (isOnList())
Why would this not be true?
> Source/JavaScriptCore/jsc.cpp:2396 > + for (Worker* worker = m_workers.begin(); worker != m_workers.end(); worker = worker->next()) > + func(locker, *worker);
Should we ignore Worker::currentWorker()?
> Source/JavaScriptCore/jsc.cpp:2478 > + Lock didStartLock; > + Condition didStartCondition; > + bool didStart = false;
Nit: Why not just do this using a single lock that starts off locked and is unlocked once runJSC calls the lambda? Then the code below could just do: didStartLock.lock().
> Source/JavaScriptCore/jsc.cpp:2559 > + sleep(Seconds::fromMilliseconds(exec->argument(0).toNumber(exec)));
Might want to exception check toNumber?
> Source/JavaScriptCore/jsc.cpp:2579 > + nativeBuffer->transferTo(contents); // "transferTo" means "share" if the buffer is shared.
What if it's not a SAB? Will we just give our contents to the first worker on the list? What if it's ourself?
> Source/JavaScriptCore/jsc.cpp:2581 > + worker.send(locker, message);
the name of the send function kind of confuses me because I always read it as "the worker will send something to something else", but really, I think it should be read as, the currentWorker() is sending something to all the individual workers. Not sure I have better ideas for a name, but maybe you do? Maybe it's just me who reads it this way.
Filip Pizlo
Comment 5
2017-01-25 17:47:24 PST
(In reply to
comment #4
)
> Comment on
attachment 299758
[details]
> the patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=299758&action=review
> > r=me > > > Source/JavaScriptCore/jsc.cpp:2348 > > + if (isOnList()) > > Why would this not be true?
I changed it to assert that it's true.
> > > Source/JavaScriptCore/jsc.cpp:2396 > > + for (Worker* worker = m_workers.begin(); worker != m_workers.end(); worker = worker->next()) > > + func(locker, *worker); > > Should we ignore Worker::currentWorker()?
Makes sense. I made it ignore &Worker::current().
> > > Source/JavaScriptCore/jsc.cpp:2478 > > + Lock didStartLock; > > + Condition didStartCondition; > > + bool didStart = false; > > Nit: Why not just do this using a single lock that starts off locked and is > unlocked once runJSC calls the lambda? > Then the code below could just do: > didStartLock.lock().
Not sure what you're suggesting. Seems like you mean that we lock the lock before starting the thread and unlock the lock inside the thread. Note that in the literature, the "lock" and "mutex" ADTs are thought to have this rule: "unlock() must be called from the same thread that called lock()". If you want a thing that's like a lock but unlock() can be called from a different thread, then you want a "binary semaphore". I've also heard this called a latch, and Win32 calls it an auto-reset event. If you really want, I could use the BinarySemaphore class in WTF. I have a habit of just using Lock+Condition because I enjoy the uniformity of using it everywhere. It so happens that our lock implementation probably works when unlock() is called from a different thread than lock(), but this isn't something we should rely on, because: - Someone attempting alternate implementations of Lock could reasonably assume that unlock() is always called from the same thread as lock(). - Several lock implementations that I think we want to consider using in WebKit rely on the lock/unlock symmetry. Lock implementations that automatically provide deadlock diagnostics rely on this. Lock implementations that automatically resolve priority inversion rely on this.
> > > Source/JavaScriptCore/jsc.cpp:2559 > > + sleep(Seconds::fromMilliseconds(exec->argument(0).toNumber(exec))); > > Might want to exception check toNumber?
Oh, lol. Fixed.
> > > Source/JavaScriptCore/jsc.cpp:2579 > > + nativeBuffer->transferTo(contents); // "transferTo" means "share" if the buffer is shared. > > What if it's not a SAB? Will we just give our contents to the first worker > on the list? What if it's ourself?
This code is guarded by: if (!jsBuffer || !jsBuffer->isShared()) return JSValue::encode(throwException(exec, scope, createError(exec, ASCIILiteral("Expected SharedArrayBuffer"))));
> > > Source/JavaScriptCore/jsc.cpp:2581 > > + worker.send(locker, message); > > the name of the send function kind of confuses me because I always read it > as "the worker will send something to something else", but really, I think > it should be read as, the currentWorker() is sending something to all the > individual workers. Not sure I have better ideas for a name, but maybe you > do? Maybe it's just me who reads it this way.
I changed Worker::send() and Worker::receive() to Worker::enqueue() and Worker::dequeue().
Saam Barati
Comment 6
2017-01-25 18:04:52 PST
Comment on
attachment 299758
[details]
the patch View in context:
https://bugs.webkit.org/attachment.cgi?id=299758&action=review
>>> Source/JavaScriptCore/jsc.cpp:2478 >>> + bool didStart = false; >> >> Nit: Why not just do this using a single lock that starts off locked and is unlocked once runJSC calls the lambda? >> Then the code below could just do: >> didStartLock.lock(). > > Not sure what you're suggesting. Seems like you mean that we lock the lock before starting the thread and unlock the lock inside the thread. > > Note that in the literature, the "lock" and "mutex" ADTs are thought to have this rule: "unlock() must be called from the same thread that called lock()". If you want a thing that's like a lock but unlock() can be called from a different thread, then you want a "binary semaphore". I've also heard this called a latch, and Win32 calls it an auto-reset event. If you really want, I could use the BinarySemaphore class in WTF. I have a habit of just using Lock+Condition because I enjoy the uniformity of using it everywhere. > > It so happens that our lock implementation probably works when unlock() is called from a different thread than lock(), but this isn't something we should rely on, because: > > - Someone attempting alternate implementations of Lock could reasonably assume that unlock() is always called from the same thread as lock(). > > - Several lock implementations that I think we want to consider using in WebKit rely on the lock/unlock symmetry. Lock implementations that automatically provide deadlock diagnostics rely on this. Lock implementations that automatically resolve priority inversion rely on this.
Yeah I thought about this before posting my comment, but thought to post it anyways. I agree we should stick with the code you have now.
Filip Pizlo
Comment 7
2017-01-25 18:36:13 PST
Landed in
https://trac.webkit.org/changeset/211194
Radar WebKit Bug Importer
Comment 8
2017-01-25 18:36:42 PST
<
rdar://problem/30201008
>
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