Email or username:

Password:

Forgot your password?
Top-level
mcc

@pyro @brion I've implemented malloc! It wasn't really that interesting. I would be mildly annoyed if an API required me to do it again.

Now, implementing a linear allocator with compacting GC… THAT'S interesting. >_>

1 comment
pyro

@mcc I ended up writing my own reference counted allocator for a virtual machine project several years ago now, and it was fun to learn with but *awful* performance-wise (which is probably to be expected). still, if I were to work on a project that required GC again, that sounds like a fun rabbit hole to get sucked into!

Go Up