factor/basis/vm/vm.factor

24 lines
515 B
Factor
Raw Normal View History

! Copyright (C) 2009 Phil Dawes.
! See http://factorcode.org/license.txt for BSD license.
USING: alien.structs alien.syntax ;
IN: vm
2009-08-20 15:20:35 -04:00
TYPEDEF: void* cell
C-STRUCT: zone
{ "cell" "start" }
{ "cell" "here" }
{ "cell" "size" }
{ "cell" "end" }
;
C-STRUCT: vm
{ "context*" "stack_chain" }
{ "zone" "nursery" }
{ "cell" "cards_offset" }
{ "cell" "decks_offset" }
{ "cell" "__padding__" }
{ "cell[70]" "userenv" }
2009-08-20 15:20:35 -04:00
;
: vm-field-offset ( field -- offset ) "vm" offset-of ;