| Summary: | Report crashed cell in jsCast in debug builds | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Yusuke Suzuki <ysuzuki> | ||||||||||
| Component: | New Bugs | Assignee: | Yusuke Suzuki <ysuzuki> | ||||||||||
| Status: | RESOLVED FIXED | ||||||||||||
| Severity: | Normal | CC: | ews-watchlist, keith_miller, mark.lam, msaboff, saam, tzagallo, webkit-bug-importer | ||||||||||
| Priority: | P2 | Keywords: | InRadar | ||||||||||
| Version: | WebKit Nightly Build | ||||||||||||
| Hardware: | Unspecified | ||||||||||||
| OS: | Unspecified | ||||||||||||
| Attachments: |
|
||||||||||||
|
Description
Yusuke Suzuki
2020-03-12 23:26:12 PDT
Created attachment 393460 [details]
Patch
Created attachment 393461 [details]
Patch
Created attachment 393462 [details]
Patch
Created attachment 393463 [details]
Patch
Comment on attachment 393463 [details]
Patch
r=me if EWS bots are happy.
Comment on attachment 393463 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=393463&action=review > Source/JavaScriptCore/runtime/JSCast.h:36 > +#if ASSERT_ENABLED && CPU(X86_64) I'll change this to `#if (ASSERT_ENABLED || ENABLE(SECURITY_ASSERTIONS)) && CPU(X86_64)` to get reports in ASan bots. Committed r258386: <https://trac.webkit.org/changeset/258386> Committed r258387: <https://trac.webkit.org/changeset/258387> Comment on attachment 393463 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=393463&action=review >> Source/JavaScriptCore/runtime/JSCast.h:36 >> +#if ASSERT_ENABLED && CPU(X86_64) > > I'll change this to `#if (ASSERT_ENABLED || ENABLE(SECURITY_ASSERTIONS)) && CPU(X86_64)` to get reports in ASan bots. why just x86? Comment on attachment 393463 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=393463&action=review >>> Source/JavaScriptCore/runtime/JSCast.h:36 >>> +#if ASSERT_ENABLED && CPU(X86_64) >> >> I'll change this to `#if (ASSERT_ENABLED || ENABLE(SECURITY_ASSERTIONS)) && CPU(X86_64)` to get reports in ASan bots. > > why just x86? Currently we are supporting reportZappedCellAndCrash only on X86_64. |