|
|
|
|
|
by hootbootscoot
1748 days ago
|
|
that will need to bootstrap first, and you won't be able to use such GC code in the initialization code for the OS. GC code using Boehm would not be suitable for device drivers nor realtime code. I can understand where making it available for higher level systems is desirable. I could envision the kinds of alternative GC systems that could be inbuilt given the knowledge an OS may have about a process or a sub-system etc.
Alternatively, Objective C settled upon reference counting (ARC) and this is superior to GC where it counts. Where do you envision the GC bootstrapping and how do you see it interacting with virtual memory and your malloc implementation? |
|
It's all highly dependent on the interface between the language and its runtime. Hypothetically, your C# runtime (and by runtime, I'm using it in the same sense that Rust or C++ would use it; I'm not referring to a VM) could provide a function that allocates memory (C#-esque pseudocode):
Until the GC is boostrapped, all allocations are made on a heap, and either manually freed or kept around until the GC takes over deallocation.> GC code using Boehm would not be suitable for device drivers nor realtime code.
I completely agree, I just provided it as an example of a GC implemented in the same language.
> Where do you envision the GC bootstrapping and how do you see it interacting with virtual memory and your malloc implementation?
I don't see the GC interacting with userland in this case, and instead would only be used for kernel data structures. I don't really think it's a good idea to have GC in a kernel, I only wanted to point out that low-level code and garbage collection are not mutually exclusive.