-
Notifications
You must be signed in to change notification settings - Fork 197
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
Extend access type to cache accesses #792
base: master
Are you sure you want to change the base?
Conversation
enum CacheAccessType = { | ||
CleanFlush, | ||
Inval, | ||
Zero, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't zeroing just a write?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It behaves slightly differently because the address of a CBO zero is aligned to the cache block size.
I'm getting pretty close to pushing our latest code (just trying to get it to build) so give me a couple of days and then I can point you at it. |
Here's how we are doing it for CBOs: Basically you just have to make sure to pass in the correct access type, and for cbom it is based on the original access type rather than the modified one. @tomaird that bit isn't super clear in the CHERI spec. Do you know where it came from? |
Not sure I understand which bit isn't clear so I'll just explain the full rationale behind all this code... The CHERI spec describes the following checks for the CBO instructions (amongst others):
So for the bounds check, But for the permissions checks it's a bit different, with The RISC-V spec describes that Does that answer your question? |
Yeah I think my question is do you definitely still need ASR permission if INVAL executes as FLUSH. My understanding was that INVAL needs the extra permission because it's "unsafe" - you can resurrect capabilities that should have died. But if it's actually doing a FLUSH then it's safe. Although now that I check the spec again it does actually explicitly mention this:
|
Added an implementation for #787, but I was wondering how to implement this TODO in the comment