-
Notifications
You must be signed in to change notification settings - Fork 9
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
CRRLUP or CSetBoundsRoundUp #72
Comments
Some additional information: Zcheripurecap does not offer
Purely bike-shedding, I think I would prefer the mnemonic Footnotes
|
I think this is the right choice. We originally had only the inexact version, but I found that we were very often adding a branch afterwards to check, so added the exact one. In hindsight, it should have been the default. We made the same choice in the C++ wrappers. |
FIXES #72 Co-authored-by: Robert Norton <robert.norton@microsoft.com>
FIXES #72 Co-authored-by: Robert Norton <robert.norton@microsoft.com>
The CRRL instruction is intended for allocators. It finds the smallest allocation size that can be accurately bounded to give at least the requested length.
There is an analogous opposite requirement that has shown up in a few places: provide the largest bound that can be expressed up to a limit. This is used, for example, in the TLS stack. The use case is that the caller has a ring buffer and wants to pass a view of a region of it to the callee. This must be a precisely bounded region to avoid leaking data / data corruption (depending on whether it's a read or write call). The caller wants to minimise the number of calls, but can split the ring buffer into arbitrary chunks.
A CRRLUP instruction would need to take two source operands, one for the base address and one for the length, and give the smallest length that can correctly bound the capability.
The CRRLUP instruction could possibly use a cat emoji as its mnemonic.
Alternatively, a CSetBoundsRoundUp, which always sets the base to the current address and the length to the longest value that is possible to precisely bound up to the requested length, would work.
The text was updated successfully, but these errors were encountered: