-
Notifications
You must be signed in to change notification settings - Fork 3
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
Remove precise box allocation #36
Conversation
) -> Result<NonNull<[u8]>, AllocError> { | ||
match layout.size() { | ||
0 => Ok(NonNull::slice_from_raw_parts(layout.dangling(), 0)), | ||
// SAFETY: `layout` is non-zero in size, |
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.
I'm not sure what this comment is supposed to be attached to (presumably the second clause?).
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.
rustc has a lint which won't allow an unsafe block without a comment explaining why the unsafe block is ok to use.
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.
Oh! Would it be clearer to write this as:
x => y {
// comment
unsafe { ... }
}
?
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.
I agree this is better and I went to change it, but then x.py fmt
reverted my changes. I think we should leave it because fighting with the formatter is just going to cause pain.
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.
If it reverts it, I don't think we have much choice :)
I'm not sure I understand the implications of this: as written it sounds like it might cause uncorrectness? I'm sure I'm wrong, but I'd appreciate a deeper explanation :) |
This will make use of the In yksom, this change alone leads to incorrectness because yksom sometimes treats |
OK, I'm with you. So, to be clear, the default is now " |
That's correct. However struct S {
inner: *mut u8
}
|
I agree that if a struct is declared I'm fine with the PR, modulo the comment about possibly sort-of reformatting the |
bors r+ |
Build failed: |
bors try |
tryBuild failed: |
bors try |
tryBuild failed: |
bors try |
tryBuild succeeded: |
This can be squashed now when you're ready. |
Please squash. |
There is currently no support for non-GC'd precise heap allocation in Boehm. Until support for this is added, it is not correct to allocate non-garbage-collectable memory this way.
This is a hot path for all of Rust's box allocation. For some reason, I implemented this with enum pattern matching, which caused unnecessary branching in such a performance critical part of the allocator.
004ef38
to
45f42b7
Compare
Squashed |
bors r+ |
Build succeeded: |
This removes precise
box
allocation as it can't currently be implemented correctly due to limitations with Boehm. However, rustgc will now default to trying to allocate things as untraceable to reduce mark-time wherever possible. In longer running benchmarks on yksom, this gives us some modest performance improvement:Unfortunately, yksom makes use of the
Gc::new_from_layout
pattern quite a bit, which currently still allocates everything conservatively. We might see even better results once that is also changed to use this approach.