Skip to content
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

Convert memory_region/boxed_region to Rust #8704

Closed
brson opened this issue Aug 23, 2013 · 2 comments · Fixed by #10094
Closed

Convert memory_region/boxed_region to Rust #8704

brson opened this issue Aug 23, 2013 · 2 comments · Fixed by #10094
Labels
A-runtime Area: std's runtime and "pre-main" init for handling backtraces, unwinds, stack overflows E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.

Comments

@brson
Copy link
Contributor

brson commented Aug 23, 2013

These implement the local heap allocator. Can probably all live in std::rt::local_heap.

@eamartin
Copy link
Contributor

I've spent a little while looking at the code for this and am hoping to tackle this issue over the weekend.

I have one question so far about the code.

The Rust code (in std::rt:local_heap) contains:

struct Env { priv opaque: () }

struct BoxedRegion {
    env: *Env,
    backing_region: *MemoryRegion,
    live_allocs: *raw::Box<()>,
}

while the C++ boxed_region struct looks like

class boxed_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?

@brson
Copy link
Contributor Author

brson commented Sep 5, 2013

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.

bors added a commit that referenced this issue Oct 28, 2013
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-runtime Area: std's runtime and "pre-main" init for handling backtraces, unwinds, stack overflows E-easy Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants