mirror of
https://github.com/openwrt/video.git
synced 2026-05-31 06:51:54 +08:00
df0b899123
Update WPEWebKit to the 2.52 stable major release branch. Includes a pending patchset to get WASM BBQJIT working on RISCV64, upstream PR https://github.com/WebKit/WebKit/pull/65621 Alltogether this brings acceptable performance (even with LLVMPipe Mesa software renderer) on RISCV64. Link: https://wpewebkit.org/release/wpewebkit-2.52.0.html Link: https://wpewebkit.org/release/wpewebkit-2.52.1.html Link: https://wpewebkit.org/release/wpewebkit-2.52.2.html Link: https://wpewebkit.org/release/wpewebkit-2.52.3.html Signed-off-by: Daniel Golle <daniel@makrotopia.org>
28 lines
1.1 KiB
Diff
28 lines
1.1 KiB
Diff
From: Daniel Golle <daniel@makrotopia.org>
|
|
Subject: [PATCH] JavaScriptCore: handle Carry in RISCV64 testFinalize switch
|
|
|
|
testFinalize() switches on ResultCondition but does not list the Carry
|
|
case, which makes every translation unit that includes
|
|
MacroAssemblerRISCV64.h emit:
|
|
|
|
warning: enumeration value 'Carry' not handled in switch [-Wswitch]
|
|
|
|
The Carry condition cannot be produced by RISC-V test operations (the
|
|
ResultCondition enum declaration already comments it "<- not
|
|
implemented"), and the sibling switch elsewhere in this file already
|
|
groups Carry with Overflow/Signed/PositiveOrZero under
|
|
RELEASE_ASSERT_NOT_REACHED(). Add the missing case so testFinalize
|
|
matches that convention and the warning disappears.
|
|
|
|
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
|
|
--- a/Source/JavaScriptCore/assembler/MacroAssemblerRISCV64.h
|
|
+++ b/Source/JavaScriptCore/assembler/MacroAssemblerRISCV64.h
|
|
@@ -4770,6 +4770,7 @@ private:
|
|
void testFinalize(ResultCondition cond, RegisterID src, RegisterID dest)
|
|
{
|
|
switch (cond) {
|
|
+ case Carry:
|
|
case Overflow:
|
|
case Signed:
|
|
case PositiveOrZero:
|