-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Replace last usize
-> ptr
transmute in alloc
with strict provenance API
#138951
base: master
Are you sure you want to change the base?
Conversation
r? @Noratrieb rustbot has assigned @Noratrieb. Use |
This comment has been minimized.
This comment has been minimized.
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.
Transmuting between usize
and pointers is completely fine and is (under the current semantics) equivalent to using the strict-provenance APIs. That's why e.g. addr
is actually implemented via a transmute
. Regardless, I still think the changes suggested here are worthwhile – it's always a good idea to make internal API safer to use.
RawVec
is extremely hot code, so its performance is very sensitive to even small changes. Therefore we run a few tests to check that the code emitted for Vec
is optimised enough. Your changes are currently breaking those tests because the helper methods you use insert additional debug assertions that can still inhibit some optimisations even in release builds. Those debug assertions are probably the reason why transmute
was used here to begin with, as it doesn't emit those assertions. I do however think there is a way around that, I'll explain in the comments.
c231e8a
to
6b5302e
Compare
Encodes the safety constraint that `Unique`'s pointer must be non-zero into the API.
Removes some unsafety and reduces the number of `usize` -> `ptr` transmutes which might be helpful for CHERI-like targets in the future.
6b5302e
to
aadfd81
Compare
pub const fn alignment(&self) -> Alignment { | ||
self.align | ||
} |
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.
Cool; I've been tempted to add this for a while, so happy to see it.
I'm hopeful this is fine -- after all, GVN will collapse transmute chains now -- but because it touched @bors try @rust-timer queue |
This comment has been minimized.
This comment has been minimized.
…try> Replace last `usize` -> `ptr` transmute in `alloc` with strict provenance API This conversion doesn't trip `fuzzy_provenance_casts` because it's a `transmute`, but it still causes CHERI targets to fail compiling because of the size difference. While I was here I changed the `align` arg in the (internal) `RawVecInner::new_in` function to an `Alignment` type to encode the non-zero constraint of `Unique`. I recognise that bit is slightly messy, especially now that there's an `Alignment -> usize -> Alignment -> usize` chain from `Layout::align` + `Alignment::new_unchecked` + `Alignment::usize`. Happy to drop that commit if it's not helpful.
☀️ Try build successful - checks-actions |
This comment has been minimized.
This comment has been minimized.
Finished benchmarking commit (3230851): comparison URL. Overall result: ❌ regressions - no action neededBenchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf. @bors rollup=never Instruction countThis is the most reliable metric that we have; it was used to determine the overall result at the top of this comment. However, even this metric can sometimes exhibit noise.
Max RSS (memory usage)Results (primary 3.9%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
CyclesResults (primary 1.4%, secondary -1.6%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Binary sizeResults (primary 0.1%, secondary 0.1%)This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.
Bootstrap: 778.47s -> 777.282s (-0.15%) |
This conversion doesn't trip
fuzzy_provenance_casts
because it's atransmute
, but it still causes CHERI targets to fail compiling because of the size difference.While I was here I changed the
align
arg in the (internal)RawVecInner::new_in
function to anAlignment
type to encode the non-zero constraint ofUnique
.I recognise that bit is slightly messy, especially now that there's an
Alignment -> usize -> Alignment -> usize
chain fromLayout::align
+Alignment::new_unchecked
+Alignment::usize
. Happy to drop that commit if it's not helpful.