-
Notifications
You must be signed in to change notification settings - Fork 21
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
SB+poscscs.litmus had unrecognized opcode #1
Comments
I removed the test. |
On Fri, 4 Jan 2019 at 09:05, Shaked Flur ***@***.***> wrote:
I removed the test.
Thank you for reporting this.
(to amplify: this was a test for something supported by the RISC-V
concurrency model but that isn't currently encodable)
… —
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AErM5q3dDY_Ky507jD7H73-xw85sKseCks5u_xlWgaJpZM4Znhtx>
.
|
Hi @PeterSewell |
Hi @deepsrc, |
Hi @fshaked My question was specific to lw.aq (without release semantics) and sw.rl (without acquire). Is lw followed by fence r,rw (i.e. lw->fence r,rw) an accurate replacement for lw.aq? Also curious what it means to use acquire semantic with a store or a release semantic with a load? Is sw.aq.rl functionally same as fence rw,rw->sw->fence rw,rw? |
I think it gets a bit murky because RISC-V doesn't actually have the instructions lw.aq, sw.rl, lw.aq.rl, or sw.aq.rl.
Those are defined by rules 5 and 6 of preserved program order: (I'm rephrasing) a memory access (load or store) with acquire annotation can't be executed OoO with any succeeding (in program order) memory access; and a memory access with release annotation can't be executed OoO with any preceding memory access. |
Hi maintainer,
When I tried to build the test, I meet the following error
According to RISCV ISA, sw/lw.aq.rl seems not a legal instruction.
The toolchain version I used listed below
The text was updated successfully, but these errors were encountered: