8000 [RV64_DYNAREC] Cleanup for removed rv64_lock_cas_dq by iv-m · Pull Request #1670 · ptitSeb/box64 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[RV64_DYNAREC] Cleanup for removed rv64_lock_cas_dq #1670

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
Jul 11, 2024
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion src/dynarec/rv64/rv64_lock.S
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
.global rv64_lock_store_dd
.global rv64_lock_cas_d
.global rv64_lock_cas_dd
.global rv64_lock_cas_dq
.global rv64_lock_get_b
.global rv64_lock_get_d
.global rv64_lock_get_dd
Expand Down
3 changes: 0 additions & 3 deletions src/dynarec/rv64/rv64_lock.h
Original file line number Diff line number Diff line change
5ADC Expand Up @@ -47,9 +47,6 @@ extern void rv64_lock_store(void*p, uint32_t v);
// atomic store (with memory barrier)
extern void rv64_lock_store_dd(void*p, uint64_t v);

// (mostly) Atomically store val1 and val2 at [p] if old [p] is ref. Return 0 if OK, 1 is not. p needs to be aligned
extern int rv64_lock_cas_dq(void* p, uint64_t ref, uint64_t val1, uint64_t val2);

// atomic get (with memory barrier)
extern uint32_t rv64_lock_get_b(void* p);

Expand Down
0