WebKit Bugzilla
Attachment 339802 Details for
Bug 185415
: [JSCONLY] Enable ARMv7 DFG
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-185415-20180508145835.patch (text/plain), 1.42 KB, created by
Yusuke Suzuki
on 2018-05-07 22:58:36 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Yusuke Suzuki
Created:
2018-05-07 22:58:36 PDT
Size:
1.42 KB
patch
obsolete
>Subversion Revision: 231480 >diff --git a/Source/WTF/ChangeLog b/Source/WTF/ChangeLog >index d398896ecc2d69354d890477d08e7d3f96c0c94e..dc9cbc52b1f5313dee3519be80a33c10e134e35e 100644 >--- a/Source/WTF/ChangeLog >+++ b/Source/WTF/ChangeLog >@@ -1,3 +1,14 @@ >+2018-05-07 Yusuke Suzuki <utatane.tea@gmail.com> >+ >+ [JSCONLY] Enable ARMv7 DFG >+ https://bugs.webkit.org/show_bug.cgi?id=185415 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Enable ARMv7 DFG JIT by default on Linux and FreeBSD. >+ >+ * wtf/Platform.h: >+ > 2018-05-06 Filip Pizlo <fpizlo@apple.com> > > InPlaceAbstractState::beginBasicBlock shouldn't have to clear any abstract values >diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h >index 52279ffda39563981c3f3167ee2b0c18a0989bfb..da8444f5d565e15ae5064f7bafcd655655c9c127 100644 >--- a/Source/WTF/wtf/Platform.h >+++ b/Source/WTF/wtf/Platform.h >@@ -777,8 +777,8 @@ > #if (CPU(X86) || CPU(X86_64)) && (OS(DARWIN) || OS(LINUX) || OS(FREEBSD) || OS(HURD) || OS(WINDOWS)) > #define ENABLE_DFG_JIT 1 > #endif >-/* Enable the DFG JIT on ARMv7. Only tested on iOS and GTK+/WPE Linux. */ >-#if (CPU(ARM_THUMB2) || CPU(ARM64)) && (PLATFORM(IOS) || PLATFORM(GTK) || PLATFORM(WPE)) >+/* Enable the DFG JIT on ARMv7. Only tested on iOS, Linux, and FreeBSD. */ >+#if (CPU(ARM_THUMB2) || CPU(ARM64)) && (PLATFORM(IOS) || OS(LINUX) || OS(FREEBSD)) > #define ENABLE_DFG_JIT 1 > #endif > /* Enable the DFG JIT on ARM. */
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
Flags:
mark.lam
:
review+
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 185415
: 339802