| Summary: | REGRESSION: RELEASE_ASSERT in CodeBlock::baselineVersion @ cnn.com | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Michael Saboff <msaboff> | ||||
| Component: | JavaScriptCore | Assignee: | Michael Saboff <msaboff> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | ggaren | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | All | ||||||
| OS: | All | ||||||
| Attachments: |
|
||||||
|
Description
Michael Saboff
2014-05-05 14:37:53 PDT
Created attachment 230856 [details]
Patch
Committed r168319: <http://trac.webkit.org/changeset/168319> Comment on attachment 230856 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=230856&action=review > Source/JavaScriptCore/ChangeLog:11 > + (JSC::DFG::Plan::isStillValid): Check that the alternative codeBlock we > + started compiling for is still the same at the end of compilation. > + Also did some minor restructuring. Why might they be different? Please explain. Please add a regression test. (In reply to comment #3) > (From update of attachment 230856 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=230856&action=review > > > Source/JavaScriptCore/ChangeLog:11 > > + (JSC::DFG::Plan::isStillValid): Check that the alternative codeBlock we > > + started compiling for is still the same at the end of compilation. > > + Also did some minor restructuring. > > Why might they be different? Please explain. Because we cleared the code blocks of the executable during GC. > Please add a regression test. Given that the issue is the result of a GC while we have compilation(s) queued up or needing finalization, I think it would difficult to write a deterministic test. (In reply to comment #3) > (From update of attachment 230856 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=230856&action=review > > > Source/JavaScriptCore/ChangeLog:11 > > + (JSC::DFG::Plan::isStillValid): Check that the alternative codeBlock we > > + started compiling for is still the same at the end of compilation. > > + Also did some minor restructuring. > > Why might they be different? Please explain. > > Please add a regression test. New test tracked in https://bugs.webkit.org/show_bug.cgi?id=132632 and landed in change set r168396: <http://trac.webkit.org/changeset/168396>. |