webkit2gtk: enable WPE renderer, use large thread stacks on musl

This commit is contained in:
q66 2021-04-21 00:26:30 +02:00
parent 9b29bd5522
commit 2e369c38c6
2 changed files with 59 additions and 59 deletions

View file

@ -1,11 +1,7 @@
Source: @q66, @pullmoll Source: https://github.com/WebKit/WebKit/commit/6884d13 (tweaked values)
Original upstream: Alpine Linux
Reason: fixing machine context access for musl libc; reduce stack/heap usage for jsc; fix some overly restrictive __GLIBC__ checks
Updated for latest webkit2gtk. diff --git Source/JavaScriptCore/runtime/MachineContext.h Source/JavaScriptCore/runtime/MachineContext.h
index ead9cdf..86b36ca 100644
-diff --git Source/JavaScriptCore/runtime/MachineContext.h Source/JavaScriptCore/runtime/MachineContext.h
index ead9cdf..09dc28a 100644
--- Source/JavaScriptCore/runtime/MachineContext.h --- Source/JavaScriptCore/runtime/MachineContext.h
+++ Source/JavaScriptCore/runtime/MachineContext.h +++ Source/JavaScriptCore/runtime/MachineContext.h
@@ -196,7 +196,7 @@ static inline void*& stackPointerImpl(mcontext_t& machineContext) @@ -196,7 +196,7 @@ static inline void*& stackPointerImpl(mcontext_t& machineContext)
@ -13,7 +9,7 @@ index ead9cdf..09dc28a 100644
#endif #endif
-#elif OS(FUCHSIA) || defined(__GLIBC__) || defined(__BIONIC__) -#elif OS(FUCHSIA) || defined(__GLIBC__) || defined(__BIONIC__)
+#elif OS(FUCHSIA) || defined(__linux__) +#elif OS(FUCHSIA) || OS(LINUX)
#if CPU(X86) #if CPU(X86)
return reinterpret_cast<void*&>((uintptr_t&) machineContext.gregs[REG_ESP]); return reinterpret_cast<void*&>((uintptr_t&) machineContext.gregs[REG_ESP]);
@ -22,7 +18,7 @@ index ead9cdf..09dc28a 100644
#endif #endif
-#elif OS(FUCHSIA) || defined(__GLIBC__) || defined(__BIONIC__) -#elif OS(FUCHSIA) || defined(__GLIBC__) || defined(__BIONIC__)
+#elif OS(FUCHSIA) || defined(__linux__) +#elif OS(FUCHSIA) || OS(LINUX)
// The following sequence depends on glibc's sys/ucontext.h. // The following sequence depends on glibc's sys/ucontext.h.
#if CPU(X86) #if CPU(X86)
@ -31,7 +27,7 @@ index ead9cdf..09dc28a 100644
#endif #endif
-#elif OS(FUCHSIA) || defined(__GLIBC__) || defined(__BIONIC__) -#elif OS(FUCHSIA) || defined(__GLIBC__) || defined(__BIONIC__)
+#elif OS(FUCHSIA) || defined(__linux__) +#elif OS(FUCHSIA) || OS(LINUX)
// The following sequence depends on glibc's sys/ucontext.h. // The following sequence depends on glibc's sys/ucontext.h.
#if CPU(X86) #if CPU(X86)
@ -40,7 +36,7 @@ index ead9cdf..09dc28a 100644
#endif #endif
-#elif OS(FUCHSIA) || defined(__GLIBC__) || defined(__BIONIC__) -#elif OS(FUCHSIA) || defined(__GLIBC__) || defined(__BIONIC__)
+#elif OS(FUCHSIA) || defined(__linux__) +#elif OS(FUCHSIA) || OS(LINUX)
// The following sequence depends on glibc's sys/ucontext.h. // The following sequence depends on glibc's sys/ucontext.h.
#if CPU(X86) #if CPU(X86)
@ -49,32 +45,34 @@ index ead9cdf..09dc28a 100644
#endif #endif
-#elif OS(FUCHSIA) || defined(__GLIBC__) || defined(__BIONIC__) -#elif OS(FUCHSIA) || defined(__GLIBC__) || defined(__BIONIC__)
+#elif OS(FUCHSIA) || defined(__linux__) +#elif OS(FUCHSIA) || OS(LINUX)
// The following sequence depends on glibc's sys/ucontext.h. // The following sequence depends on glibc's sys/ucontext.h.
#if CPU(X86) #if CPU(X86)
diff --git Source/JavaScriptCore/runtime/OptionsList.h Source/JavaScriptCore/runtime/OptionsList.h diff --git Source/JavaScriptCore/runtime/OptionsList.h Source/JavaScriptCore/runtime/OptionsList.h
index bc1cedb..f161f1c 100644 index bc1cedb..f4a86a5 100644
--- Source/JavaScriptCore/runtime/OptionsList.h --- Source/JavaScriptCore/runtime/OptionsList.h
+++ Source/JavaScriptCore/runtime/OptionsList.h +++ Source/JavaScriptCore/runtime/OptionsList.h
@@ -39,6 +39,16 @@ namespace JSC { @@ -71,6 +71,18 @@ JS_EXPORT_PRIVATE bool canUseJITCage();
// On instantiation of the first VM instance, the Options will be write protected
// and cannot be modified thereafter.
JS_EXPORT_PRIVATE bool canUseJITCage(); +#if OS(LINUX) && !defined(__BIONIC__) && !defined(__GLIBC__)
+// non-glibc/non-android options on linux ( musl )
+#if defined(__GLIBC__) +constexpr unsigned jscMaxPerThreadStack = 2 * MB;
+constexpr unsigned jscSoftReservedZoneSize = 64 * KB;
+constexpr unsigned jscReservedZoneSize = 32 * KB;
+#else
+// default
+constexpr unsigned jscMaxPerThreadStack = 5 * MB; +constexpr unsigned jscMaxPerThreadStack = 5 * MB;
+constexpr unsigned jscSoftReservedZoneSize = 128 * KB; +constexpr unsigned jscSoftReservedZoneSize = 128 * KB;
+constexpr unsigned jscReservedZoneSize = 64 * KB; +constexpr unsigned jscReservedZoneSize = 64 * KB;
+#else
+constexpr unsigned jscMaxPerThreadStack = 80 * KB;
+constexpr unsigned jscSoftReservedZoneSize = 32 * KB;
+constexpr unsigned jscReservedZoneSize = 16 * KB;
+#endif +#endif
+ +
// How do JSC VM options work? #define FOR_EACH_JSC_OPTION(v) \
// =========================== v(Bool, useKernTCSM, defaultTCSMValue(), Normal, "Note: this needs to go before other options since they depend on this value.") \
// The FOR_EACH_JSC_OPTION() macro below defines a list of all JSC options in use, v(Bool, validateOptions, false, Normal, "crashes if mis-typed JSC options were passed to the VM") \
@@ -86,9 +96,9 @@ JS_EXPORT_PRIVATE bool canUseJITCage(); @@ -86,9 +98,9 @@ JS_EXPORT_PRIVATE bool canUseJITCage();
\ \
v(Bool, reportMustSucceedExecutableAllocations, false, Normal, nullptr) \ v(Bool, reportMustSucceedExecutableAllocations, false, Normal, nullptr) \
\ \
@ -87,25 +85,29 @@ index bc1cedb..f161f1c 100644
\ \
v(Bool, crashOnDisallowedVMEntry, ASSERT_ENABLED, Normal, "Forces a crash if we attempt to enter the VM when disallowed") \ v(Bool, crashOnDisallowedVMEntry, ASSERT_ENABLED, Normal, "Forces a crash if we attempt to enter the VM when disallowed") \
v(Bool, crashIfCantAllocateJITMemory, false, Normal, nullptr) \ v(Bool, crashIfCantAllocateJITMemory, false, Normal, nullptr) \
diff --git Source/WebCore/xml/XPathGrammar.cpp Source/WebCore/xml/XPathGrammar.cpp diff --git Source/WTF/wtf/PlatformHave.h Source/WTF/wtf/PlatformHave.h
index 0875a5e..98d5153 100644 index 41afbb4..ab5263c 100644
--- Source/WebCore/xml/XPathGrammar.cpp --- Source/WTF/wtf/PlatformHave.h
+++ Source/WebCore/xml/XPathGrammar.cpp +++ Source/WTF/wtf/PlatformHave.h
@@ -966,7 +966,7 @@ int yydebug; @@ -206,7 +206,7 @@
#if YYERROR_VERBOSE #define HAVE_HOSTED_CORE_ANIMATION 1
#endif
# ifndef yystrlen -#if OS(DARWIN) || OS(FUCHSIA) || ((OS(FREEBSD) || defined(__GLIBC__) || defined(__BIONIC__)) && (CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(ARM64) || CPU(MIPS)))
-# if defined __GLIBC__ && defined _STRING_H +#if OS(DARWIN) || OS(FUCHSIA) || ((OS(FREEBSD) || OS(LINUX)) && (CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(ARM64) || CPU(MIPS)))
+# if defined __linux__ && defined _STRING_H #define HAVE_MACHINE_CONTEXT 1
# define yystrlen strlen #endif
# else
/* Return the length of YYSTR. */
@@ -989,7 +989,7 @@ yystrlen (yystr)
# endif
# ifndef yystpcpy diff --git Source/WTF/wtf/Threading.cpp Source/WTF/wtf/Threading.cpp
-# if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE index 99d09c0..723a8f4 100644
+# if defined __linux__ && defined _STRING_H && defined _GNU_SOURCE --- Source/WTF/wtf/Threading.cpp
# define yystpcpy stpcpy +++ Source/WTF/wtf/Threading.cpp
# else @@ -52,6 +52,8 @@ static Optional<size_t> stackSize(ThreadType threadType)
/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in #elif OS(DARWIN) && ASAN_ENABLED
if (threadType == ThreadType::Compiler)
return 1 * MB; // ASan needs more stack space (especially on Debug builds).
+#elif OS(LINUX) && !defined(__BIONIC__) && !defined(__GLIBC__) // MUSL default thread stack size.
+ return 2 * MB;
#else
UNUSED_PARAM(threadType);
#endif

View file

@ -2,23 +2,15 @@
# ping q66 before touching this # ping q66 before touching this
pkgname=webkit2gtk pkgname=webkit2gtk
version=2.32.0 version=2.32.0
revision=1 revision=2
wrksrc="webkitgtk-${version}" wrksrc="webkitgtk-${version}"
build_style=cmake build_style=cmake
build_helper="gir" build_helper="gir"
configure_args="-DPORT=GTK -DUSE_LD_GOLD=OFF configure_args="-DPORT=GTK -DUSE_LD_GOLD=OFF
-DCMAKE_CXX_FLAGS_RELEASE=-DNDEBUG
-DCMAKE_CXX_FLAGS_DEBUG=-DNDEBUG
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO=-DNDEBUG
-DCMAKE_CXX_FLAGS_NONE=-DNDEBUG
-DCMAKE_C_FLAGS_RELEASE=-DNDEBUG
-DCMAKE_C_FLAGS_DEBUG=-DNDEBUG
-DCMAKE_C_FLAGS_RELWITHDEBINFO=-DNDEBUG
-DCMAKE_C_FLAGS_NONE=-DNDEBUG
-DCMAKE_LINKER=${XBPS_CROSS_TRIPLET}-gcc -DCMAKE_LINKER=${XBPS_CROSS_TRIPLET}-gcc
-DRUBY_VERSION=2.7 -DRUBY_VERSION=2.7
-DUSE_SYSTEMD=OFF -DUSE_SYSTEMD=OFF -DUSE_WOFF2=ON
-DENABLE_GTKDOC=OFF -DUSE_GSTREAMER_GL=OFF -DUSE_WPE_RENDERER=OFF -DENABLE_GTKDOC=OFF -DUSE_GSTREAMER_GL=OFF -DUSE_WPE_RENDERER=ON
-DENABLE_MINIBROWSER=$(vopt_if minibrowser ON OFF) -DENABLE_MINIBROWSER=$(vopt_if minibrowser ON OFF)
-DENABLE_JIT=$(vopt_if jit ON OFF) -DENABLE_JIT=$(vopt_if jit ON OFF)
-DENABLE_C_LOOP=$(vopt_if jit OFF ON) -DENABLE_C_LOOP=$(vopt_if jit OFF ON)
@ -37,7 +29,8 @@ makedepends="at-spi2-core-devel libjpeg-turbo-devel libpng-devel
dbus-glib-devel libwebp-devel gtk+-devel gtk+3-devel libgudev-devel dbus-glib-devel libwebp-devel gtk+-devel gtk+3-devel libgudev-devel
libsecret-devel ruby-devel geoclue2-devel libnotify-devel hyphen-devel libsecret-devel ruby-devel geoclue2-devel libnotify-devel hyphen-devel
woff2-devel freetype-devel libopenjpeg2-devel libatomic-devel woff2-devel freetype-devel libopenjpeg2-devel libatomic-devel
qt5-devel libmanette-devel $(vopt_if x11 libXt-devel) qt5-devel libmanette-devel libwpe-devel wpebackend-fdo-devel
$(vopt_if x11 libXt-devel)
$(vopt_if wayland 'MesaLib-devel libxkbcommon-devel wayland-devel wayland-protocols')" $(vopt_if wayland 'MesaLib-devel libxkbcommon-devel wayland-devel wayland-protocols')"
short_desc="GTK+3 port of the WebKit2 browser engine" short_desc="GTK+3 port of the WebKit2 browser engine"
maintainer="q66 <daniel@octaforge.org>" maintainer="q66 <daniel@octaforge.org>"
@ -54,8 +47,13 @@ desc_option_jit="JavaScript JIT (Only some architectures)"
desc_option_sampling_profiler="Sampling profiler support (JIT + glibc only)" desc_option_sampling_profiler="Sampling profiler support (JIT + glibc only)"
desc_option_minibrowser="Build the minibrowser" desc_option_minibrowser="Build the minibrowser"
# on musl this is not defined and webkit uses it, so define it export CFLAGS="-DNDEBUG"
export CFLAGS="-D__WORDSIZE=${XBPS_TARGET_WORDSIZE}"
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
# this is not defined on musl and is occasionally used
export CFLAGS+=" -D__WORDSIZE=${XBPS_TARGET_WORDSIZE}"
fi
export CXXFLAGS="$CFLAGS" export CXXFLAGS="$CFLAGS"
# WebKitCCache.cmake set this variable # WebKitCCache.cmake set this variable