WebKit Bugzilla
Attachment 346968 Details for
Bug 188476
: Disable JIT on IA-32 without SSE2
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-188476-20180811221430.patch (text/plain), 1.34 KB, created by
karogyoker2+webkit
on 2018-08-11 13:14:23 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
karogyoker2+webkit
Created:
2018-08-11 13:14:23 PDT
Size:
1.34 KB
patch
obsolete
>Index: Source/JavaScriptCore/ChangeLog >=================================================================== >--- Source/JavaScriptCore/ChangeLog (revision 234783) >+++ Source/JavaScriptCore/ChangeLog (working copy) >@@ -1,3 +1,16 @@ >+2018-08-11 Karo Gyoker <karogyoker2+webkit@gmail.com> >+ >+ Disable JIT on IA-32 without SSE2 >+ https://bugs.webkit.org/show_bug.cgi?id=188476 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ On IA-32 CPUs without SSE2 most of the webpages cannot load >+ if the JIT is turned on. >+ >+ * runtime/Options.cpp: >+ (JSC::recomputeDependentOptions): >+ > 2018-08-10 Joseph Pecoraro <pecoraro@apple.com> > > Web Inspector: console.log fires getters for deep properties >Index: Source/JavaScriptCore/runtime/Options.cpp >=================================================================== >--- Source/JavaScriptCore/runtime/Options.cpp (revision 234702) >+++ Source/JavaScriptCore/runtime/Options.cpp (working copy) >@@ -397,8 +397,8 @@ static void recomputeDependentOptions() > Options::useConcurrentGC() = false; > #endif > >-#if OS(WINDOWS) && ENABLE(JIT) && CPU(X86) >- // Disable JIT on Windows if SSE2 is not present >+#if ENABLE(JIT) && CPU(X86) >+ // Disable JIT on IA-32 if SSE2 is not present > if (!MacroAssemblerX86::supportsFloatingPoint()) > Options::useJIT() = false; > #endif
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 188476
:
346916
|
346962
|
346968
|
346984