cvs
Slava Pestov 2006-01-21 02:37:38 +00:00
parent c3ef16c2af
commit f9db19f917
6 changed files with 51 additions and 9 deletions

View File

@ -50,7 +50,8 @@ OBJS = $(PLAF_OBJS) native/array.o native/bignum.o \
native/hashtable.o \
native/icache.o \
native/io.o \
native/wrapper.o
native/wrapper.o \
native/ffi_test.o
default:
@echo "Run 'make' with one of the following parameters:"

View File

@ -1,15 +1,31 @@
! Copyright (C) 2005 Slava Pestov.
! See http://factor.sf.net/license.txt for BSD license.
IN: compiler-backend
USING: alien assembler kernel math ;
USING: alien assembler kernel math sequences ;
GENERIC: store-insn ( offset reg-class -- )
GENERIC: load-insn ( elt parameter reg-class -- )
M: int-regs store-insn drop >r 3 1 r> stack@ STW ;
M: int-regs load-insn drop 3 + 1 rot stack@ LWZ ;
M: %unbox generate-node ( vop -- )
drop ;
drop
! Call the unboxer
1 input f compile-c-call
! Store the return value on the C stack
0 input 2 input store-insn ;
M: %parameter generate-node ( vop -- )
! Move a value from the C stack into the fastcall register
drop ;
drop 0 input 1 input 2 input load-insn ;
M: %box generate-node ( vop -- ) drop ;
M: %box generate-node ( vop -- )
drop
! Move return value of C function into input register
param-regs first RAX MOV
0 input f compile-c-call ;
M: %cleanup generate-node ( vop -- ) drop ;

View File

@ -17,8 +17,6 @@ kernel-internals math sequences ;
: vregs { RAX RCX RDX RSI RDI R8 R9 R10 R11 } ; inline
: alien-regs { RDI RSI RDX RCX R8 R9 } ; inline
: param-regs { RDI RSI RDX RCX R8 R9 } ; inline
: compile-c-call ( symbol dll -- )
@ -29,7 +27,7 @@ kernel-internals math sequences ;
param-regs swap [ MOV ] 2each compile-c-call ;
M: int-regs return-reg drop RAX ;
M: int-regs fastcall-regs drop alien-regs length ;
M: int-regs fastcall-regs drop param-regs length ;
M: float-regs fastcall-regs drop 0 ;

View File

@ -3,7 +3,7 @@
IN: compiler-backend
USING: alien assembler kernel math ;
GENERIC: store-insn ( to offset reg-class -- )
GENERIC: store-insn ( offset reg-class -- )
GENERIC: load-insn ( elt parameter reg-class -- )

View File

@ -0,0 +1,8 @@
USING: compiler test ;
FUNCTION: void ffi_test_0 ; compiled
[ ] [ ffi_test_0 ] unit-test
FUNCTION: int ffi_test_1 ; compiled
[ 3 ] [ ffi_test_1 ] unit-test

19
native/ffi_test.c Normal file
View File

@ -0,0 +1,19 @@
/* This file is linked into the runtime for the sole purpose
* of testing FFI code. */
void ffi_test_0(void)
{
printf("ffi_test_0()\n");
}
int ffi_test_1(void)
{
printf("ffi_test_1()\n");
return 3;
}
int ffi_test_2(int x, int y)
{
printf("ffi_test_2(%d,%d)\n",x,y);
return x + y;
}