Lines Matching refs:GC
5 * GC
9 1. Allocations for the internal usage by Runtime(Allocations for compiler purposes, for GC internal…
12 Garbage collector(GC) automatically recycles memory that it can prove will never be used again.
13 GC used to recycle memory allocated as result of application work(objects, compiled code etc).
31 - Internal memory space for non-compiler part of runtime (including GC internals)
35 ## GC section in 2. OVERALL DESCRIPTION
37 - Concurrent generational GC (optional - we can disable generational mode)
38 - GC for classes (optional)
39 - GC for code cache(optional)
43 High level requirements for GC:
50 Configurable flexible setup "Set of allocators + GC"
51 …M configuration for application (for example: we can choose non-compacting GC with freelist alloca…
62 ## GC section in 4. INTERACTION WITH OTHER COMPONENTS