Summary: | Disable Yarr JIT for ARMv7k | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Michael Saboff <msaboff> | ||||
Component: | JavaScriptCore | Assignee: | Michael Saboff <msaboff> | ||||
Status: | RESOLVED FIXED | ||||||
Severity: | Normal | CC: | benjamin, cmarcelo, commit-queue | ||||
Priority: | P2 | ||||||
Version: | 528+ (Nightly build) | ||||||
Hardware: | Unspecified | ||||||
OS: | Unspecified | ||||||
Attachments: |
|
Description
Michael Saboff
2015-03-12 15:19:57 PDT
Created attachment 248553 [details]
Patch
Comment on attachment 248553 [details] Patch Clearing flags on attachment: 248553 Committed r181462: <http://trac.webkit.org/changeset/181462> All reviewed patches have been landed. Closing bug. Comment on attachment 248553 [details]
Patch
We believe that ARMv7k is not significantly different from ARMv7. What difference accounts for the YARR JIT being broken?
Comment on attachment 248553 [details]
Patch
Or, if the goal is just to match the ENABLE_JIT flag, I'd suggest doing that explicitly:
#if !defined(ENABLE_YARR_JIT) && ENABLE(JIT)
#define ENABLE_YARR_JIT 1
#endif
(In reply to comment #5) > Comment on attachment 248553 [details] > Patch > > Or, if the goal is just to match the ENABLE_JIT flag, I'd suggest doing that > explicitly: > > #if !defined(ENABLE_YARR_JIT) && ENABLE(JIT) > #define ENABLE_YARR_JIT 1 > #endif I'll make this change. Update committed r181501: <http://trac.webkit.org/changeset/181501> |