jorendorff / cell-gc

A very small GC in Rust, with a safe API
MIT License
61 stars 4 forks source link

Consider using bitmaps to represent words which are GC pointers #11

Closed fitzgen closed 7 years ago

fitzgen commented 7 years ago

This would be a nice way to make most type's tracing functions the same.

However, we can't only do this, because something like a Vec has its GC pointers off in some other heap allocation, not inline.

Worth thinking about.

fitzgen commented 7 years ago

Nope.