-
Notifications
You must be signed in to change notification settings - Fork 35
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
fix invalid address handling definition to cover all bytes in the range #327
fix invalid address handling definition to cover all bytes in the range #327
Conversation
One slightly awkward thing is that you now have to check for invalid addresses of the whole range before alignment checks, because of the priorities: And for something like I dunno if that makes much difference (I guess one extra add?). Just thought I'd point it out... |
In all cases a core which supports misaligned load/store must detect whether an access crosses the edge of the valid region. The real point here is for all of the CHERI checks to come first, before the RISC-V checks are done. |
Right but for accesses that must be aligned you can skip that check. I guess it doesn't make much difference for us since it's only AMOs so we need the hardware in place anyway. But doesn't this mean that cores that don't support unaligned access in general will now have to always check that the range crosses the edge of the valid region? I mean instead of doing this:
they could do this, eliminating some hardware:
Ah I didn't know that was a requirement - why does it matter? |
CHERI is a checking layer above normal RISC-V, pass the CHERI checks and then it's a normal RISC-V core underneath. It's all designed this way. |
For a more concrete justification in this specific instance, it’s so that your unaligned access handler doesn’t have to perfectly replicate all the same checks in software, which is messy and error-prone |
Ah that makes sense, thanks! |
fixes #326