RESOLVED FIXED 258409
Skip JIT memory allocation in ExecutableAllocator::disableJIT() when running on an open source XNU.
https://bugs.webkit.org/show_bug.cgi?id=258409
Summary Skip JIT memory allocation in ExecutableAllocator::disableJIT() when running ...
Mark Lam
Reported 2023-06-22 11:09:31 PDT
The open source XNU does not support special handling of JIT memory. However, macOS Safari and WebKit binaries still need to be able to run on the open source XNU, albeit without JIT. However, ExecutableAllocator::disableJIT() is still trying to allocated JIT memory if the JIT entitlement is present (which is defined by the WebKit binary, not the kernel), and currently, will assert that the allocation succeeds. We need to skip this allocation and assertion when running on open source XNU because the allocation is not necessary, and the assertion is invalid for the open source kernel and will fail every time.
Attachments
Mark Lam
Comment 1 2023-06-22 11:09:42 PDT
Mark Lam
Comment 2 2023-06-22 11:29:48 PDT
EWS
Comment 3 2023-06-22 17:49:28 PDT
Committed 265435@main (6063bc484b4f): <https://commits.webkit.org/265435@main> Reviewed commits have been landed. Closing PR #15204 and removing active labels.
WebKit Commit Bot
Comment 4 2023-06-22 21:21:08 PDT
Re-opened since this is blocked by bug 258435
Mark Lam
Comment 5 2023-06-22 21:52:30 PDT
EWS
Comment 6 2023-06-22 21:58:46 PDT
Committed 265446@main (ee19c59a58e7): <https://commits.webkit.org/265446@main> Reviewed commits have been landed. Closing PR #15226 and removing active labels.
Note You need to log in before you can comment on or make changes to this bug.