You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
brson opened this issue
Aug 23, 2013
· 2 comments
· Fixed by #10094
Labels
A-runtimeArea: std's runtime and "pre-main" init for handling backtraces, unwinds, stack overflowsE-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
classboxed_region {
private:bool poison_on_free;
memory_region *backing_region;
rust_opaque_box *live_allocs;
// some code here ommitted
}
Does the the pointer to the Env struct in BoxedRegion exist just for alignment purposes? It seems a bit odd to use an unsafe pointer to align with a bool (why not just use a Rust bool). Since I'm porting this to Rust, can I just get rid of the Env struct and replace the pointer to env with a poison_on_free field?
edit: Just noticed the rust_env empty struct in both memory_region.h and boxed_region.h but the type is never used. Now I'm a bit more confused. Is there just a remnant from some previous refactoring?
rust_env is a declaration left over from previous refactoring, yes. It no longer exists. I can't explain the Env type in the BoxedRegion struct - it looks completely bogus to me and should mirror the C++ decl.
This drops more of the old C++ runtime to rather be written in rust. A few
features were lost along the way, but hopefully not too many. The main loss is
that there are no longer backtraces associated with allocations (rust doesn't
have a way of acquiring those just yet). Other than that though, I believe that
the rest of the debugging utilities made their way over into rust.
Closes#8704
A-runtimeArea: std's runtime and "pre-main" init for handling backtraces, unwinds, stack overflowsE-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
These implement the local heap allocator. Can probably all live in std::rt::local_heap.
The text was updated successfully, but these errors were encountered: