diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-02-04 11:34:29 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-02-04 11:34:29 +0100 |
| commit | 0c41d9810fcc4f67902988b9f7d0a15d83d6568a (patch) | |
| tree | a2273828df0c76ab55115d5cef51080dd6433031 /src/dynarec/dynarec_native_pass.c | |
| parent | 165961f27e264164dd62eea0164d16d9d436a8a5 (diff) | |
| download | box64-0c41d9810fcc4f67902988b9f7d0a15d83d6568a.tar.gz box64-0c41d9810fcc4f67902988b9f7d0a15d83d6568a.zip | |
[ARM64_DYNAREC][32BITS] Small optim on jump table for 32bits access (1 less read, or 2 in SAVE_MEM configuration)
Diffstat (limited to 'src/dynarec/dynarec_native_pass.c')
| -rw-r--r-- | src/dynarec/dynarec_native_pass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynarec/dynarec_native_pass.c b/src/dynarec/dynarec_native_pass.c index c03b3155..acea77e0 100644 --- a/src/dynarec/dynarec_native_pass.c +++ b/src/dynarec/dynarec_native_pass.c @@ -315,7 +315,7 @@ uintptr_t native_pass(dynarec_native_t* dyn, uintptr_t addr, int alternate, int ++ninst; NOTEST(x3); fpu_purgecache(dyn, ninst, 0, x1, x2, x3); - jump_to_next(dyn, addr, 0, ninst); + jump_to_next(dyn, addr, 0, ninst, rex.is32bits); ok=0; need_epilog=0; } } |