WebKit Bugzilla
Attachment 369200 Details for
Bug 197633
: [JSC] Respect already defined USE_LLINT_EMBEDDED_OPCODE_ID compiler variable.
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
PATCH
197633.diff (text/plain), 1.33 KB, created by
Basuke Suzuki
on 2019-05-06 16:40:03 PDT
(
hide
)
Description:
PATCH
Filename:
MIME Type:
Creator:
Basuke Suzuki
Created:
2019-05-06 16:40:03 PDT
Size:
1.33 KB
patch
obsolete
>diff --git a/Source/WTF/ChangeLog b/Source/WTF/ChangeLog >index 8da671ede38..c6d49c940bb 100644 >--- a/Source/WTF/ChangeLog >+++ b/Source/WTF/ChangeLog >@@ -1,3 +1,15 @@ >+2019-05-06 Christopher Reid <chris.reid@sony.com> >+ >+ [JSC] Respect already defined USE_LLINT_EMBEDDED_OPCODE_ID compiler variable. >+ https://bugs.webkit.org/show_bug.cgi?id=197633 >+ >+ Reviewed by Don Olmstead. >+ >+ When the variable `USE_LLINT_EMBEDDED_OPCODE_ID` is defined, stop defining >+ its value with platform default one. >+ >+ * wtf/Platform.h: >+ > 2019-05-03 Sihui Liu <sihui_liu@apple.com> > > Add assertion to check whether shm files have maximum FileProtection of CompleteUnlessOpen >diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h >index 13faf616970..34559fa37a7 100644 >--- a/Source/WTF/wtf/Platform.h >+++ b/Source/WTF/wtf/Platform.h >@@ -982,7 +982,7 @@ > #define ENABLE_COMPUTED_GOTO_OPCODES 1 > #endif > >-#if !ENABLE(C_LOOP) && !COMPILER(MSVC) && \ >+#if !defined(USE_LLINT_EMBEDDED_OPCODE_ID) && !ENABLE(C_LOOP) && !COMPILER(MSVC) && \ > (CPU(X86) || CPU(X86_64) || CPU(ARM64) || (CPU(ARM_THUMB2) && OS(DARWIN))) > /* This feature works by embedding the OpcodeID in the 32 bit just before the generated LLint code > that executes each opcode. It cannot be supported by the CLoop since there's no way to embed the
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 197633
:
369196
|
369197
| 369200