Closed
Bug 1282944
Opened 8 years ago
Closed 8 years ago
Ion lazy linking algorithm pathologically degenerates on overload.
Categories
(Core :: JavaScript Engine: JIT, defect)
Core
JavaScript Engine: JIT
Tracking
()
RESOLVED
FIXED
mozilla50
People
(Reporter: efaust, Assigned: mismith)
References
(Blocks 1 open bug)
Details
(Whiteboard: [platform-rel-Facebook][platform-rel-ReactJS])
Attachments
(2 files, 5 obsolete files)
5.51 KB,
patch
|
h4writer
:
review+
|
Details | Diff | Splinter Review |
1020 bytes,
patch
|
efaust
:
review+
|
Details | Diff | Splinter Review |
When we have too many functions compiled off thread at once, we throw out the oldest compilation before linking. If there are a bunch of functions that want to be compiled all at once, and this ring of functions is repeatedly called, we thrash in a circle, wasting huge quantities of time.
Reporter | ||
Comment 1•8 years ago
|
||
Michael, we should get the work you've already done reviewed and landed. Can you post the patch you have, and request review?
Flags: needinfo?(mismith)
Assignee | ||
Comment 2•8 years ago
|
||
My current patch is just to comment out the while loop introduced in bug 1270108. Should I upload it now, or should we talk to Hannes first about how to properly fix the issue?
Flags: needinfo?(mismith) → needinfo?(hv1989)
Comment 3•8 years ago
|
||
(In reply to Michael Smith [:mismith] from comment #2)
> My current patch is just to comment out the while loop introduced in bug
> 1270108. Should I upload it now, or should we talk to Hannes first about how
> to properly fix the issue?
Good find!
Since IonBuilders take a lot of space, I wouldn't recommend to remove the cap altogether.
1) We could increase the cap limit. What would work here? I took 100, since we only hit ~10 in our benchmarks and I assumed that we would never hit 100. Now I suspect we don't want to increase it too much.
2) Instead of throwing away the IonBuilders, we could also link all the IonBuilders if we hit the cap. That way we have LazyLinking in normal scenarios and in extreme cases we fall back to normal linking?
Flags: needinfo?(hv1989)
Assignee | ||
Comment 4•8 years ago
|
||
I think #2 is definitely worth trying, as just raising the cap doesn't seem very future-proof.
Should I self-assign this bug?
Flags: needinfo?(efaustbmo)
Reporter | ||
Comment 5•8 years ago
|
||
Yeah, I think that makes sense. It's your by rights, having found the issue ;)
Flags: needinfo?(efaustbmo)
Assignee | ||
Updated•8 years ago
|
Assignee: nobody → mismith
Assignee | ||
Comment 6•8 years ago
|
||
This works well for the React benchmark, having the same performance boost (for me) as commenting out the while loop entirely. Any way to test this on a broader set of benchmarks?
Also, I'm unsure whether to make AttachFinishedCompilations fallible if one of the lazy links fails (as I've done in the patch) or to ignore OOMs as in jit::LazyLink.
Attachment #8767289 -
Flags: review?(hv1989)
Comment 7•8 years ago
|
||
Comment on attachment 8767289 [details] [diff] [review]
Bug 1282944: Link excess lazy builders immediately instead of throwing them away
Review of attachment 8767289 [details] [diff] [review]:
-----------------------------------------------------------------
Like mentioned below I think we can just call LazyLink instead.
Can you upload an updated patch using that?
::: js/src/jit/Ion.cpp
@@ +2043,4 @@
> while (cx->runtime()->ionLazyLinkListSize() > 100) {
> jit::IonBuilder* builder = cx->runtime()->ionLazyLinkList().getLast();
> + if (!LinkBackgroundCodeGen(cx, builder))
> + return false;
Before calling this function some things need to happen. Which happen in LazyLink but are not here. I think it would be better to just call "LazyLink" instead.
Feel free to rename it to "Link" or "LinkIonScript" to make that function have a more general name again.
Also the LazyLink function "cannot fail" as a result we don't need to propagate this state either.
Attachment #8767289 -
Flags: review?(hv1989)
Assignee | ||
Comment 8•8 years ago
|
||
> Before calling this function some things need to happen. Which happen in LazyLink but are not here. I think it would be better to just call "LazyLink" instead.
Which things need to happen?
- We don't need to extract the builder from the script, because we already have the builder to start with.
- FinishOffThreadBuilder already removes the pending builder from the script and the ionLazyLinkList. And AttachFinishedCompilations has its own AutoLockHelperThreadState and AutoEnterAnalysis.
- Calling LazyLink from AttachFinishedCompilations actually deadlocks because of this, and (AFAIK) would require factoring the locks out of LazyLink.
> Also the LazyLink function "cannot fail" as a result we don't need to propagate this state either.
Perhaps it would be better to factor https://dxr.mozilla.org/mozilla-central/source/js/src/jit/Ion.cpp?q=LazyLink&redirect_type=direct#557-565 out into a LinkIonScript function, called from both LazyLink and AttachFinishedCompilations.
Flags: needinfo?(hv1989)
Assignee | ||
Comment 9•8 years ago
|
||
I've attached an updated patch to illustrate my suggestion.
Attachment #8767289 -
Attachment is obsolete: true
Comment 10•8 years ago
|
||
Comment on attachment 8768261 [details] [diff] [review]
bug-1282944.patch
Review of attachment 8768261 [details] [diff] [review]:
-----------------------------------------------------------------
(In reply to Michael Smith [:mismith] from comment #8)
> > Before calling this function some things need to happen. Which happen in LazyLink but are not here. I think it would be better to just call "LazyLink" instead.
> Which things need to happen?
> - We don't need to extract the builder from the script, because we already
> have the builder to start with.
> - FinishOffThreadBuilder already removes the pending builder from the script
> and the ionLazyLinkList. And AttachFinishedCompilations has its own
> AutoLockHelperThreadState and AutoEnterAnalysis.
I was actually thinking about AutoEnterAnalysis. Which isn't needed in "AttachFinishedCompilations", but I forgot to remove.
And I overlooked when writing the previous comment. I stand corrected here.
Like said the AutoEnterAnalysis is actually obsolete. While you are here, can you remove the AutoEnterAnalysis out of AttachFinishedCompilations?
Another issue is that the IonBuilder cannot be present in the ionLazyLink list during linking. That will give problems.
LazyLink already handles this and removes it.
> - Calling LazyLink from AttachFinishedCompilations actually deadlocks
> because of this, and (AFAIK) would require factoring the locks out of
> LazyLink.
We shouldn't keep the lock during the full linking. This blocks all other threads (any kind) from reading the global state. You can add "AutoUnlockHelperThreadState" in the while loop to fix that.
> > Also the LazyLink function "cannot fail" as a result we don't need to propagate this state either.
>
> Perhaps it would be better to factor
> https://dxr.mozilla.org/mozilla-central/source/js/src/jit/Ion.
> cpp?q=LazyLink&redirect_type=direct#557-565 out into a LinkIonScript
> function, called from both LazyLink and AttachFinishedCompilations.
I think that addresses all issues you found with using LazyLink, right?
Updated•8 years ago
|
Flags: needinfo?(hv1989)
Assignee | ||
Comment 11•8 years ago
|
||
> I think that addresses all issues you found with using LazyLink, right?
Yep - thanks! I've revised the patch accordingly.
Attachment #8768261 -
Attachment is obsolete: true
Attachment #8768545 -
Flags: review?(hv1989)
Comment 12•8 years ago
|
||
Comment on attachment 8768545 [details] [diff] [review]
Bug 1282944: Link excess lazy builders immediately instead of throwing them away
Review of attachment 8768545 [details] [diff] [review]:
-----------------------------------------------------------------
Thanks, good work!
Attachment #8768545 -
Flags: review?(hv1989) → review+
Comment 13•8 years ago
|
||
Comment on attachment 8768545 [details] [diff] [review]
Bug 1282944: Link excess lazy builders immediately instead of throwing them away
Review of attachment 8768545 [details] [diff] [review]:
-----------------------------------------------------------------
::: js/src/jit/Ion.cpp
@@ +2042,5 @@
> while (cx->runtime()->ionLazyLinkListSize() > 100) {
> jit::IonBuilder* builder = cx->runtime()->ionLazyLinkList().getLast();
> + RootedScript script(cx, builder->script());
> +
> + AutoUnlockHelperThreadState unlock(lock);
This doesn't take an argument.
Assignee | ||
Comment 14•8 years ago
|
||
Which version of the code are you applying this patch to? Both mozilla-central and mozilla-inbound show it taking an argument, as of https://hg.mozilla.org/integration/mozilla-inbound/rev/e5ad05d9cad4#l5.71
Flags: needinfo?(hv1989)
Assignee | ||
Updated•8 years ago
|
Status: NEW → ASSIGNED
Comment 15•8 years ago
|
||
(In reply to Michael Smith [:mismith] from comment #14)
> Which version of the code are you applying this patch to? Both
> mozilla-central and mozilla-inbound show it taking an argument, as of
> https://hg.mozilla.org/integration/mozilla-inbound/rev/e5ad05d9cad4#l5.71
Like already mentioned on irc I was on an old branch.
Flags: needinfo?(hv1989)
Comment 16•8 years ago
|
||
Pushed by efaustbmo@gmail.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/27054f5883df
Link excess lazy builders immediately, instead of throwing them away. (r=h4writer)
I had to back this out for jsreftest failures: https://treeherder.mozilla.org/logviewer.html#?job_id=31603133&repo=mozilla-inbound
https://hg.mozilla.org/integration/mozilla-inbound/rev/5ff20b7b7651
Flags: needinfo?(mismith)
Flags: needinfo?(efaustbmo)
Assignee | ||
Comment 18•8 years ago
|
||
Ugh, since the ionLazyLinkList contains builders with scripts in multiple compartments, we end up trying to link a script in a different compartment from the current one in our JSContext. https://dxr.mozilla.org/mozilla-central/source/js/src/jsobjinlines.h#138 doesn't like that.
Assignee | ||
Comment 19•8 years ago
|
||
I've updated the patch. It now passes the browser jsreftest suite on my machine (unfortunately the problem was missed by the js-shell tests).
Flags: needinfo?(mismith)
Attachment #8769983 -
Flags: review?(hv1989)
Assignee | ||
Updated•8 years ago
|
Attachment #8768545 -
Attachment is obsolete: true
Comment 20•8 years ago
|
||
(In reply to Michael Smith [:mismith] from comment #19)
> Created attachment 8769983 [details] [diff] [review]
> Bug 1282944: Link excess lazy builders immediately instead of throwing them
> away
>
> I've updated the patch. It now passes the browser jsreftest suite on my
> machine (unfortunately the problem was missed by the js-shell tests).
Any chance you can make a minimal test case (using the shell only JS function newGlobal() maybe) that reproduces the issue in the shell?
Updated•8 years ago
|
Attachment #8769983 -
Flags: review?(hv1989) → review+
Assignee | ||
Comment 21•8 years ago
|
||
> Any chance you can make a minimal test case (using the shell only JS function newGlobal() maybe) that reproduces the issue in the shell?
I've added one to the jit-tests.
Attachment #8770266 -
Flags: review?(bbouvier)
Comment 22•8 years ago
|
||
Comment on attachment 8770266 [details] [diff] [review]
Bug 1282944: Add jit-test for cross-compartment IonBuilder linking
Review of attachment 8770266 [details] [diff] [review]:
-----------------------------------------------------------------
Thanks for adding a test case! I am actually not such a good reviewer for this, redirecting to Hannes.
Attachment #8770266 -
Flags: review?(bbouvier) → review?(hv1989)
Comment 23•8 years ago
|
||
Comment on attachment 8770266 [details] [diff] [review]
Bug 1282944: Add jit-test for cross-compartment IonBuilder linking
Review of attachment 8770266 [details] [diff] [review]:
-----------------------------------------------------------------
Wow nice!
Attachment #8770266 -
Flags: review?(hv1989) → review+
Assignee | ||
Comment 24•8 years ago
|
||
Assignee | ||
Comment 25•8 years ago
|
||
Turns out arm runs with --no-threads, which breaks the test case as it disables offThreadCompileScript. I've added a check for this to the test case and will retry.
Attachment #8770266 -
Attachment is obsolete: true
Assignee | ||
Comment 26•8 years ago
|
||
Assignee | ||
Comment 27•8 years ago
|
||
Assignee | ||
Comment 28•8 years ago
|
||
Attempt #2 to skip the test when running with --no-threads.
Attachment #8770789 -
Attachment is obsolete: true
Comment 29•8 years ago
|
||
Pushed by efaustbmo@gmail.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/815c7d8dfebe
Link excess lazy builders immediately, instead of throwing them away. (r=h4writer,efaust)
Reporter | ||
Updated•8 years ago
|
Flags: needinfo?(efaustbmo)
Attachment #8771030 -
Flags: review+
Updated•8 years ago
|
Whiteboard: [platform-rel-Fac]
Updated•8 years ago
|
platform-rel: --- → ?
Whiteboard: [platform-rel-Fac] → [platform-rel-Facebook][platform-rel-ReactJS]
Comment 30•8 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 8 years ago
status-firefox50:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla50
You need to log in
before you can comment on or make changes to this bug.
Description
•