Diff for /gforth/libffi.fs between versions 1.11 and 1.12

version 1.11, 2006/02/25 18:28:11 version 1.12, 2006/05/25 22:10:16
Line 107  Create argptr maxargs 0 [DO]  argbuf [I] Line 107  Create argptr maxargs 0 [DO]  argbuf [I]
 : >i+  ( n buf -- buf' )     tuck   l!    cell+ cell+ ;  : >i+  ( n buf -- buf' )     tuck   l!    cell+ cell+ ;
 : >p+  ( addr buf -- buf' )  tuck    !    cell+ cell+ ;  : >p+  ( addr buf -- buf' )  tuck    !    cell+ cell+ ;
 : >d+  ( d buf -- buf' )     dup >r ffi-2! r> cell+ cell+ ;  : >d+  ( d buf -- buf' )     dup >r ffi-2! r> cell+ cell+ ;
   : >dl+ ( d buf -- buf' )     nip dup >r  ! r> cell+ cell+ ;
 : >sf+ ( r buf -- buf' )     dup   sf!    cell+ cell+ ;  : >sf+ ( r buf -- buf' )     dup   sf!    cell+ cell+ ;
 : >df+ ( r buf -- buf' )     dup   df!    cell+ cell+ ;  : >df+ ( r buf -- buf' )     dup   df!    cell+ cell+ ;
   
Line 115  Create argptr maxargs 0 [DO]  argbuf [I] Line 116  Create argptr maxargs 0 [DO]  argbuf [I]
 : >i-  ( n buf -- buf' )     2 cells - tuck   l! ;  : >i-  ( n buf -- buf' )     2 cells - tuck   l! ;
 : >p-  ( addr buf -- buf' )  2 cells - tuck    ! ;  : >p-  ( addr buf -- buf' )  2 cells - tuck    ! ;
 : >d-  ( d buf -- buf' )     2 cells - dup >r ffi-2! r> ;  : >d-  ( d buf -- buf' )     2 cells - dup >r ffi-2! r> ;
   : >dl- ( d buf -- buf' )     2 cells - nip dup >r ! r> ;
 : >sf- ( r buf -- buf' )     2 cells - dup   sf! ;  : >sf- ( r buf -- buf' )     2 cells - dup   sf! ;
 : >df- ( r buf -- buf' )     2 cells - dup   df! ;  : >df- ( r buf -- buf' )     2 cells - dup   df! ;
   
Line 123  Create argptr maxargs 0 [DO]  argbuf [I] Line 125  Create argptr maxargs 0 [DO]  argbuf [I]
 : i>x   ( -- n )  retbuf l@ ;  : i>x   ( -- n )  retbuf l@ ;
 : is>x   ( -- n )  retbuf sl@ ;  : is>x   ( -- n )  retbuf sl@ ;
 : p>x   ( -- addr ) retbuf @ ;  : p>x   ( -- addr ) retbuf @ ;
   : dl>x   ( -- d ) retbuf @ s>d ;
 : d>x   ( -- d )  retbuf ffi-2@ ;  : d>x   ( -- d )  retbuf ffi-2@ ;
 : sf>x  ( -- r )  retbuf sf@ ;  : sf>x  ( -- r )  retbuf sf@ ;
 : df>x  ( -- r )  retbuf df@ ;  : df>x  ( -- r )  retbuf df@ ;
Line 194  Variable ind-call  ind-call off Line 197  Variable ind-call  ind-call off
   DOES>  2@ args @ decl, ind-call @ 0= IF  symbol,  THEN    DOES>  2@ args @ decl, ind-call @ 0= IF  symbol,  THEN
     previous revarg off args off ind-call off ;      previous revarg off args off ind-call off ;
   
   6 1 cells 4 > 2* - Constant _long
   
 also c-decl definitions  also c-decl definitions
   
 : <rev>  revarg on ;  : <rev>  revarg on ;
   
 ' >i+  ' >i-    6 argtype int  ' >i+  ' >i-    6 argtype int
   ' >p+  ' >p-    _long argtype long
 ' >p+  ' >p-  &12 argtype ptr  ' >p+  ' >p-  &12 argtype ptr
 ' >d+  ' >d-    8 argtype llong  ' >d+  ' >d-    8 argtype llong
   ' >dl+ ' >dl-   6 argtype dlong
 ' >sf+ ' >sf-   9 argtype sf  ' >sf+ ' >sf-   9 argtype sf
 ' >df+ ' >df- &10 argtype df  ' >df+ ' >df- &10 argtype df
   
 ' noop   0 rettype (void)  ' noop   0 rettype (void)
 ' is>x   6 rettype (int)  ' is>x   6 rettype (int)
 ' i>x    5 rettype (uint)  ' i>x    5 rettype (uint)
   ' p>x    _long rettype (long)
 ' p>x  &12 rettype (ptr)  ' p>x  &12 rettype (ptr)
 ' d>x    8 rettype (llong)  ' d>x    8 rettype (llong)
   ' dl>x   6 rettype (dlong)
 ' sf>x   9 rettype (sf)  ' sf>x   9 rettype (sf)
 ' df>x &10 rettype (fp)  ' df>x &10 rettype (fp)
   
Line 281  also cb-decl definitions Line 290  also cb-decl definitions
 ' ffi-arg-int        6 argtype' int  ' ffi-arg-int        6 argtype' int
 ' ffi-arg-float      9 argtype' sf  ' ffi-arg-float      9 argtype' sf
 ' ffi-arg-double   &10 argtype' df  ' ffi-arg-double   &10 argtype' df
   ' ffi-arg-long       _long argtype' long
 ' ffi-arg-longlong   8 argtype' llong  ' ffi-arg-longlong   8 argtype' llong
   ' ffi-arg-dlong      6 argtype' dlong
 ' ffi-arg-ptr      &12 argtype' ptr  ' ffi-arg-ptr      &12 argtype' ptr
   
 ' ffi-ret-void       0 rettype' (void)  ' ffi-ret-void       0 rettype' (void)
Line 289  also cb-decl definitions Line 300  also cb-decl definitions
 ' ffi-ret-float      9 rettype' (sf)  ' ffi-ret-float      9 rettype' (sf)
 ' ffi-ret-double   &10 rettype' (fp)  ' ffi-ret-double   &10 rettype' (fp)
 ' ffi-ret-longlong   8 rettype' (llong)  ' ffi-ret-longlong   8 rettype' (llong)
   ' ffi-ret-long       _long rettype' (long)
   ' ffi-ret-dlong      _long rettype' (dlong)
 ' ffi-ret-ptr      &12 rettype' (ptr)  ' ffi-ret-ptr      &12 rettype' (ptr)
   
 previous definitions  previous definitions

Removed from v.1.11  
changed lines
  Added in v.1.12


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>