2005-05-13 00:09:49 -04:00
|
|
|
! Copyright (C) 2005 Slava Pestov.
|
|
|
|
! See http://factor.sf.net/license.txt for BSD license.
|
|
|
|
IN: compiler-backend
|
|
|
|
USING: alien assembler compiler inference kernel
|
|
|
|
kernel-internals lists math memory namespaces sequences words ;
|
|
|
|
|
|
|
|
M: %slot generate-node ( vop -- )
|
|
|
|
#! the untagged object is in vop-dest, the tagged slot
|
|
|
|
#! number is in vop-source.
|
|
|
|
dest/src
|
|
|
|
! turn tagged fixnum slot # into an offset, multiple of 4
|
|
|
|
dup 1 SHR
|
|
|
|
! compute slot address in vop-dest
|
|
|
|
dupd ADD
|
|
|
|
! load slot value in vop-dest
|
|
|
|
dup unit MOV ;
|
|
|
|
|
|
|
|
M: %fast-slot generate-node ( vop -- )
|
|
|
|
#! the tagged object is in vop-dest, the pointer offset is
|
|
|
|
#! in vop-literal. the offset already takes the type tag
|
|
|
|
#! into account, so its just one instruction to load.
|
|
|
|
dup vop-literal swap vop-dest v>operand tuck >r 2list r>
|
|
|
|
swap MOV ;
|
|
|
|
|
2005-05-13 20:37:28 -04:00
|
|
|
: card-bits
|
|
|
|
#! must be the same as CARD_BITS in native/cards.h.
|
|
|
|
7 ;
|
|
|
|
|
|
|
|
: card-offset 1 getenv ;
|
|
|
|
: card-mark HEX: 80 ;
|
|
|
|
|
|
|
|
: write-barrier ( reg -- )
|
|
|
|
#! Mark the card pointed to by vreg.
|
|
|
|
dup card-bits SHR
|
|
|
|
card-offset 2list card-mark OR ;
|
2005-05-13 00:09:49 -04:00
|
|
|
|
|
|
|
M: %set-slot generate-node ( vop -- )
|
|
|
|
#! the untagged object is in vop-dest, the new value is in
|
|
|
|
#! vop-source, the tagged slot number is in vop-literal.
|
|
|
|
dup vop-literal v>operand over vop-dest v>operand
|
|
|
|
! turn tagged fixnum slot # into an offset, multiple of 4
|
|
|
|
over 1 SHR
|
2005-05-13 20:37:28 -04:00
|
|
|
! compute slot address in vop-literal
|
|
|
|
2dup ADD
|
2005-05-13 00:09:49 -04:00
|
|
|
! store new slot value
|
2005-05-13 20:37:28 -04:00
|
|
|
>r >r vop-source v>operand r> unit swap MOV r>
|
|
|
|
write-barrier ;
|
2005-05-13 00:09:49 -04:00
|
|
|
|
|
|
|
M: %fast-set-slot generate-node ( vop -- )
|
|
|
|
#! the tagged object is in vop-dest, the new value is in
|
|
|
|
#! vop-source, the pointer offset is in vop-literal. the
|
|
|
|
#! offset already takes the type tag into account, so its
|
|
|
|
#! just one instruction to load.
|
2005-05-13 20:37:28 -04:00
|
|
|
dup vop-literal over vop-dest v>operand
|
|
|
|
[ swap 2list swap vop-source v>operand MOV ] keep
|
|
|
|
write-barrier ;
|
|
|
|
|
|
|
|
: userenv@ ( n -- addr )
|
|
|
|
cell * "userenv" f dlsym + ;
|
|
|
|
|
|
|
|
M: %getenv generate-node ( vop -- )
|
|
|
|
dup vop-dest v>operand swap vop-literal userenv@ unit MOV ;
|
|
|
|
|
|
|
|
M: %setenv generate-node ( vop -- )
|
|
|
|
dup vop-literal userenv@ unit swap vop-source v>operand MOV ;
|