diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2023-05-24 23:47:49 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-24 17:47:49 +0200 |
| commit | 52d1a09b8a1516fac33bd55732d38fb181fef29a (patch) | |
| tree | 23954cc0e6ee6c7f61e0eae19b06e213203e419d | |
| parent | 1d98aa54d5e462e2d13a2bd6795d587e4c523caf (diff) | |
| download | box64-52d1a09b8a1516fac33bd55732d38fb181fef29a.tar.gz box64-52d1a09b8a1516fac33bd55732d38fb181fef29a.zip | |
[RV64_DYNAREC] Fixed 66 0F 38 2B PACKUSDW opcode (#802)
* [RV64_DYNAREC] Fixed 66 0F 38 2B PACKUSDW opcode * [RCFILE] Remove invalid options
| -rw-r--r-- | src/dynarec/rv64/dynarec_rv64_660f.c | 8 | ||||
| -rw-r--r-- | system/box64.box64rc | 10 |
2 files changed, 4 insertions, 14 deletions
diff --git a/src/dynarec/rv64/dynarec_rv64_660f.c b/src/dynarec/rv64/dynarec_rv64_660f.c index ee84bd68..d1f343b1 100644 --- a/src/dynarec/rv64/dynarec_rv64_660f.c +++ b/src/dynarec/rv64/dynarec_rv64_660f.c @@ -463,9 +463,9 @@ uintptr_t dynarec64_660F(dynarec_rv64_t* dyn, uintptr_t addr, uintptr_t ip, int MIN(x3, x3, x5); MAX(x3, x3, xZR); } else { - BLT(x3, xZR, 4+4); + BGE(x3, xZR, 4+4); MV(x3, xZR); - BGE(x3, x5, 4+4); + BLT(x3, x5, 4+4); MV(x3, x5); } SH(x3, gback, i*2); @@ -479,9 +479,9 @@ uintptr_t dynarec64_660F(dynarec_rv64_t* dyn, uintptr_t addr, uintptr_t ip, int MIN(x3, x3, x5); MAX(x3, x3, xZR); } else { - BLT(x3, xZR, 4+4); + BGE(x3, xZR, 4+4); MV(x3, xZR); - BGE(x3, x5, 4+4); + BLT(x3, x5, 4+4); MV(x3, x5); } SH(x3, gback, 8+i*2); diff --git a/system/box64.box64rc b/system/box64.box64rc index 7bfcf4fc..648d9eb0 100644 --- a/system/box64.box64rc +++ b/system/box64.box64rc @@ -7,7 +7,6 @@ # [3dSen.x86_64] BOX64_DYNAREC_BLEEDING_EDGE=0 # avoid the use of STRONGMEM for much better performances -BOX64_DYNAREC_HOTPAGE=0 # disabling hotpage seems to give better performances here [7z] # Those are safe to use on 7z and give a bit of a boost @@ -26,12 +25,6 @@ BOX64_DYNAREC_CALLRET=1 [chrome] BOX64_MALLOC_HACK=2 -[dav1d] -# Speed hacks (those 3 gives ~10% speedup) -BOX64_DYNAREC_SAFEFLAGS=0 -BOX64_DYNAREC_BIGBLOCK=2 -BOX64_DYNAREC_CALLRET=1 - [deadcells] BOX64_PREFER_EMULATED=1 @@ -97,9 +90,6 @@ BOX64_DYNAREC_BIGBLOCK=0 # if steamwebhelper takes too much memory, enable next line to disable it #BOX64_EXIT=1 -[Stardew Valley] -BOX64_DYNAREC_HOTPAGE=0 - [steam-runtime-check-requirements] BOX64_EXIT=1 |