Log jsCast crash data to collect information
Created attachment 393460 [details] Patch
<rdar://problem/59705631>
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.