WebKit Bugzilla
Attachment 341312 Details for
Bug 185989
: JavaScriptCore: Disable 32-bit JIT on Windows
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
185989.patch (text/plain), 1.09 KB, created by
Michael Saboff
on 2018-05-25 13:03:45 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Michael Saboff
Created:
2018-05-25 13:03:45 PDT
Size:
1.09 KB
patch
obsolete
>Index: Source/WTF/ChangeLog >=================================================================== >--- Source/WTF/ChangeLog (revision 232197) >+++ Source/WTF/ChangeLog (working copy) >@@ -1,3 +1,12 @@ >+2018-05-25 Michael Saboff <msaboff@apple.com> >+ >+ JavaScriptCore: Disable 32-bit JIT on Windows >+ https://bugs.webkit.org/show_bug.cgi?id=185989 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * wtf/Platform.h: >+ > 2018-05-24 Carlos Alberto Lopez Perez <clopez@igalia.com> > > [GTK][WPE] Memory pressure monitor doesn't reliable notify all the subprocesses >Index: Source/WTF/wtf/Platform.h >=================================================================== >--- Source/WTF/wtf/Platform.h (revision 232197) >+++ Source/WTF/wtf/Platform.h (working copy) >@@ -731,6 +731,12 @@ > #define ENABLE_JIT 0 > #endif > >+/* Disable the JIT for 32-bit Windows builds. */ >+#if USE(JSVALUE32_64) && OS(WINDOWS) >+#undef ENABLE_JIT >+#define ENABLE_JIT 0 >+#endif >+ > /* The FTL *does not* work on 32-bit platforms. Disable it even if someone asked us to enable it. */ > #if USE(JSVALUE32_64) > #undef ENABLE_FTL_JIT
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 185989
:
341312
|
341801
|
341802
|
341822