2008-08-12 03:41:18 -04:00
|
|
|
! Copyright (C) 2008 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
USING: kernel sequences accessors combinators math namespaces
|
2009-03-26 00:00:19 -04:00
|
|
|
init sets words alien.libraries
|
2008-08-12 03:41:18 -04:00
|
|
|
alien alien.c-types
|
|
|
|
stack-checker.backend stack-checker.errors stack-checker.visitor ;
|
|
|
|
IN: stack-checker.alien
|
|
|
|
|
|
|
|
TUPLE: alien-node-params return parameters abi in-d out-d ;
|
|
|
|
|
|
|
|
TUPLE: alien-invoke-params < alien-node-params library function ;
|
|
|
|
|
|
|
|
TUPLE: alien-indirect-params < alien-node-params ;
|
|
|
|
|
|
|
|
TUPLE: alien-callback-params < alien-node-params quot xt ;
|
|
|
|
|
|
|
|
: param-prep-quot ( node -- quot )
|
|
|
|
parameters>> [ c-type c-type-unboxer-quot ] map spread>quot ;
|
|
|
|
|
|
|
|
: alien-stack ( params extra -- )
|
|
|
|
over parameters>> length + consume-d >>in-d
|
|
|
|
dup return>> "void" = 0 1 ? produce-d >>out-d
|
|
|
|
drop ;
|
|
|
|
|
|
|
|
: return-prep-quot ( node -- quot )
|
|
|
|
return>> [ [ ] ] [ c-type c-type-boxer-quot ] if-void ;
|
|
|
|
|
|
|
|
: infer-alien-invoke ( -- )
|
|
|
|
alien-invoke-params new
|
|
|
|
! Compile-time parameters
|
2009-08-27 22:49:25 -04:00
|
|
|
pop-literal nip >>parameters
|
2008-08-12 03:41:18 -04:00
|
|
|
pop-literal nip >>function
|
|
|
|
pop-literal nip >>library
|
|
|
|
pop-literal nip >>return
|
|
|
|
! Quotation which coerces parameters to required types
|
2008-11-03 04:06:11 -05:00
|
|
|
dup param-prep-quot infer-quot-here
|
2008-08-12 03:41:18 -04:00
|
|
|
! Set ABI
|
|
|
|
dup library>> library [ abi>> ] [ "cdecl" ] if* >>abi
|
|
|
|
! Magic #: consume exactly the number of inputs
|
|
|
|
dup 0 alien-stack
|
|
|
|
! Add node to IR
|
|
|
|
dup #alien-invoke,
|
|
|
|
! Quotation which coerces return value to required type
|
2008-11-03 04:06:11 -05:00
|
|
|
return-prep-quot infer-quot-here ;
|
2008-08-12 03:41:18 -04:00
|
|
|
|
|
|
|
: infer-alien-indirect ( -- )
|
|
|
|
alien-indirect-params new
|
|
|
|
! Compile-time parameters
|
|
|
|
pop-literal nip >>abi
|
2009-08-27 22:49:25 -04:00
|
|
|
pop-literal nip >>parameters
|
2008-08-12 03:41:18 -04:00
|
|
|
pop-literal nip >>return
|
|
|
|
! Quotation which coerces parameters to required types
|
2008-11-03 04:06:11 -05:00
|
|
|
dup param-prep-quot [ dip ] curry infer-quot-here
|
2008-08-12 03:41:18 -04:00
|
|
|
! Magic #: consume the function pointer, too
|
|
|
|
dup 1 alien-stack
|
|
|
|
! Add node to IR
|
|
|
|
dup #alien-indirect,
|
|
|
|
! Quotation which coerces return value to required type
|
2008-11-03 04:06:11 -05:00
|
|
|
return-prep-quot infer-quot-here ;
|
2008-08-12 03:41:18 -04:00
|
|
|
|
|
|
|
: register-callback ( word -- ) callbacks get conjoin ;
|
|
|
|
|
|
|
|
: callback-bottom ( params -- )
|
|
|
|
xt>> [ [ register-callback ] [ word-xt drop <alien> ] bi ] curry
|
2008-11-03 04:06:11 -05:00
|
|
|
infer-quot-here ;
|
2008-08-12 03:41:18 -04:00
|
|
|
|
|
|
|
: infer-alien-callback ( -- )
|
|
|
|
alien-callback-params new
|
|
|
|
pop-literal nip >>quot
|
|
|
|
pop-literal nip >>abi
|
2009-08-27 22:49:25 -04:00
|
|
|
pop-literal nip >>parameters
|
2008-08-12 03:41:18 -04:00
|
|
|
pop-literal nip >>return
|
|
|
|
gensym >>xt
|
|
|
|
dup callback-bottom
|
|
|
|
#alien-callback, ;
|