zone


Vocabulary
vm

Class description
A struct that defines the memory layout for an allocation zone in the virtual machine. Factor code cannot directly access allocation zones, but the struct is used by the compiler to calculate memory addresses. Its slots are:
hereMemory address to the last allocated byte in the zone. Initially, this slot is equal to start but each allocation in the zone will increment this pointer.
startMemory address to the start of the zone.
endMemory address to the end of the zone.


Definition


Methods