RESOLVED FIXED 196072
[JSC] Fix build after r243232 on unsupported 64bit architectures
https://bugs.webkit.org/show_bug.cgi?id=196072
Summary [JSC] Fix build after r243232 on unsupported 64bit architectures
Tomas Popela
Reported 2019-03-21 03:33:34 PDT
The build was broken due to: #if CPU(X86_64) && CPU(ADDRESS64) static constexpr unsigned s_freeBitsAtTop = 16; static constexpr uintptr_t s_maskCompositeValueForPointer = 0x0000fffffffffff8; #elif CPU(ARM64) && CPU(ADDRESS64) static constexpr unsigned s_freeBitsAtTop = 28; static constexpr uintptr_t s_maskCompositeValueForPointer = 0x0000000ffffffff8; #endif missing the values for other 64bit arches (such as ppc64, ppc64le, s390x). Mark suggested that we should put the code introduced in r243232 behing the USE() flag.
Attachments
Patch (7.93 KB, patch)
2019-03-21 03:37 PDT, Tomas Popela
no flags
Patch (1.87 KB, patch)
2019-03-21 12:45 PDT, Tomas Popela
no flags
Tomas Popela
Comment 1 2019-03-21 03:37:20 PDT
Saam Barati
Comment 2 2019-03-21 09:25:23 PDT
Comment on attachment 365529 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=365529&action=review Also please undef your define at the bottom of the header > Source/JavaScriptCore/bytecode/CodeOrigin.h:34 > +#define USE_COMPRESSED_CODE_ORIGIN CPU(ARM64) || CPU(X86_64) We can only opt in (ARM64 && ADDRESS64) We don’t want compression scheme for ARM64_32
Mark Lam
Comment 3 2019-03-21 09:30:16 PDT
Comment on attachment 365529 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=365529&action=review >> Source/JavaScriptCore/bytecode/CodeOrigin.h:34 >> +#define USE_COMPRESSED_CODE_ORIGIN CPU(ARM64) || CPU(X86_64) > > We can only opt in (ARM64 && ADDRESS64) > We don’t want compression scheme for ARM64_32 Hence, this line should say: #define USE_COMPRESSED_CODE_ORIGIN (CPU(ADDRESS64) && (CPU(ARM64) || CPU(X86_64))) That should exclude the CPU(ADDRESS64) architectures that cannot support this yet.
Keith Miller
Comment 4 2019-03-21 11:11:46 PDT
I think we already expect 16 free bits at the top of any pointer for JSValue. Thus, I think you could change the code to: #if CPU(ARM64) && CPU(ADDRESS64) static constexpr unsigned s_freeBitsAtTop = 28; static constexpr uintptr_t s_maskCompositeValueForPointer = 0x0000000ffffffff8; #elif CPU(ADDRESS64) static constexpr unsigned s_freeBitsAtTop = 16; static constexpr uintptr_t s_maskCompositeValueForPointer = 0x0000fffffffffff8; #endif
Tomas Popela
Comment 5 2019-03-21 12:06:40 PDT
Thank you Saam, Mark and Keith for the feedback! I will go with the Keith's suggestion (when the patch passes our CI).
Tomas Popela
Comment 6 2019-03-21 12:45:15 PDT
Keith Miller
Comment 7 2019-03-21 17:42:17 PDT
Comment on attachment 365594 [details] Patch r=me
Tomas Popela
Comment 8 2019-03-21 22:56:08 PDT
Comment on attachment 365594 [details] Patch Clearing flags on attachment: 365594 Committed r243363: <https://trac.webkit.org/changeset/243363>
Tomas Popela
Comment 9 2019-03-21 22:56:13 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 10 2019-03-21 22:58:50 PDT
Note You need to log in before you can comment on or make changes to this bug.