2005-04-23 19:34:06 -04:00
|
|
|
! Copyright (C) 2005 Slava Pestov.
|
|
|
|
! See http://factor.sf.net/license.txt for BSD license.
|
2005-04-24 00:27:07 -04:00
|
|
|
IN: assembler
|
|
|
|
USING: alien compiler inference kernel kernel-internals lists
|
2005-04-23 19:34:06 -04:00
|
|
|
math memory namespaces words ;
|
|
|
|
|
|
|
|
\ alien-invoke [
|
2005-05-13 18:27:18 -04:00
|
|
|
uncons load-library 2dup 1 rel-dlsym dlsym compile-call-far
|
2005-04-23 19:34:06 -04:00
|
|
|
] "generator" set-word-prop
|
|
|
|
|
2005-04-30 00:43:39 -04:00
|
|
|
: stack-size 8 + 16 align ;
|
|
|
|
: stack@ 3 + cell * ;
|
|
|
|
|
2005-04-23 19:34:06 -04:00
|
|
|
#parameters [
|
2005-04-30 00:43:39 -04:00
|
|
|
dup 0 = [ drop ] [ stack-size 1 1 rot SUBI ] ifte
|
2005-04-23 19:34:06 -04:00
|
|
|
] "generator" set-word-prop
|
|
|
|
|
|
|
|
#unbox [
|
2005-05-13 18:27:18 -04:00
|
|
|
uncons f 2dup 1 rel-dlsym dlsym compile-call-far
|
2005-04-24 00:27:07 -04:00
|
|
|
3 1 rot stack@ STW
|
2005-04-23 19:34:06 -04:00
|
|
|
] "generator" set-word-prop
|
|
|
|
|
|
|
|
#parameter [
|
2005-04-24 00:27:07 -04:00
|
|
|
dup 3 + 1 rot stack@ LWZ
|
2005-04-23 19:34:06 -04:00
|
|
|
] "generator" set-word-prop
|
|
|
|
|
|
|
|
#box [
|
2005-05-13 18:27:18 -04:00
|
|
|
f 2dup 1 rel-dlsym dlsym compile-call-far
|
2005-04-23 19:34:06 -04:00
|
|
|
] "generator" set-word-prop
|
|
|
|
|
|
|
|
#cleanup [
|
2005-04-30 00:43:39 -04:00
|
|
|
dup 0 = [ drop ] [ stack-size 1 1 rot ADDI ] ifte
|
2005-04-23 19:34:06 -04:00
|
|
|
] "generator" set-word-prop
|