2008-12-06 10:16:29 -05:00
|
|
|
! Copyright (C) 2008 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: namespaces layouts sequences kernel
|
|
|
|
accessors compiler.tree.propagation.info
|
|
|
|
compiler.cfg.stacks compiler.cfg.hats
|
|
|
|
compiler.cfg.instructions compiler.cfg.utilities ;
|
|
|
|
IN: compiler.cfg.intrinsics.misc
|
|
|
|
|
|
|
|
: emit-tag ( -- )
|
|
|
|
ds-pop tag-mask get ^^and-imm ^^tag-fixnum ds-push ;
|
|
|
|
|
|
|
|
: emit-getenv ( node -- )
|
2009-08-21 15:13:49 -04:00
|
|
|
"userenv" ^^vm-field-ptr
|
2008-12-06 10:16:29 -05:00
|
|
|
swap node-input-infos first literal>>
|
2009-09-26 02:39:48 -04:00
|
|
|
[ ds-drop 0 ^^slot-imm ] [ ds-pop ^^offset>slot ^^slot ] if*
|
2008-12-06 10:16:29 -05:00
|
|
|
ds-push ;
|