8000 [RV64_DYNAREC] Fixed a regression in #2187 by ksco · Pull Request #2203 · ptitSeb/box64 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[RV64_DYNAREC] Fixed a regression in #2187 #2203

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/dynarec/rv64/dynarec_rv64_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -1888,7 +1888,10 @@ uintptr_t dynarec64_AVX_F3_0F(dynarec_rv64_t* dyn, uintptr_t addr, uintptr_t ip,
} else { \
TH_SRRI(dst, dst, 64 - 8 - dst##2); \
} \
if (dyn->insts[ninst].nat_flags_fusion) NAT_FLAGS_OPS(dst, xZR); \
if (dyn->insts[ninst].nat_flags_fusion) { \
ANDI(s1, dst, 0xff); \
NAT_FLAGS_OPS(s1, xZR); \
} \
break; \
}

Expand All @@ -1908,7 +1911,10 @@ uintptr_t dynarec64_AVX_F3_0F(dynarec_rv64_t* dyn, uintptr_t addr, uintptr_t ip,
} else { \
TH_SRRI(dst, dst, 64 - 16); \
} \
if (dyn->insts[ninst].nat_flags_fusion) NAT_FLAGS_OPS(s1, xZR); \
if (dyn->insts[ninst].nat_flags_fusion) { \
ZEXTH(s1, dst); \
NAT_FLAGS_OPS(s1, xZR); \
} \
break; \
}

Expand Down
Loading
0