[gforth] / gforth / libcc.fs  

gforth: gforth/libcc.fs

Diff for /gforth/libcc.fs between version 1.2 and 1.3

version 1.2, Tue Dec 26 19:10:54 2006 UTC version 1.3, Wed Dec 27 13:01:20 2006 UTC
Line 61 
Line 61 
 \  char*n parameters (type indices)  \  char*n parameters (type indices)
 \  counted string: c-name  \  counted string: c-name
   
 : .n ( n -- )  : .nb ( n -- )
     0 .r ;      0 .r ;
   
 : const+ ( n1 "name" -- n2 )  : const+ ( n1 "name" -- n2 )
Line 92 
Line 92 
         parse-libcc-type dup 0>= while          parse-libcc-type dup 0>= while
             c,              c,
     repeat      repeat
     drop swap - over char+ c!      drop here swap - over char+ c!
     parse-libcc-type 0< -32 and throw swap c! ;      parse-libcc-type dup 0< -32 and throw swap c! ;
   
 : type-letter ( n -- c )  : type-letter ( n -- c )
     chars s" npdrfv" drop + c@ ;      chars s" npdrfv" drop + c@ ;
Line 129 
Line 129 
 : count-stacks ( pars -- fp-change sp-change )  : count-stacks ( pars -- fp-change sp-change )
     \ pars is an addr u pair      \ pars is an addr u pair
     0 0 2swap over + swap u+do      0 0 2swap over + swap u+do
         i c@ cells count-stacks-type + @ execute          i c@ cells count-stacks-types + @ execute
     loop ;      loop ;
   
 \ gen-pars  \ gen-pars
   
 : gen-par-n ( fp-depth1 sp-depth1 -- fp-depth2 sp-depth2 )  : gen-par-n ( fp-depth1 sp-depth1 -- fp-depth2 sp-depth2 )
     1- dup ." sp[" .n ." ]" ;      1- dup ." sp[" .nb ." ]" ;
   
 : gen-par-p ( fp-depth1 sp-depth1 -- fp-depth2 sp-depth2 )  : gen-par-p ( fp-depth1 sp-depth1 -- fp-depth2 sp-depth2 )
     ." (void *)(" gen-par-n ." )" ;      ." (void *)(" gen-par-n ." )" ;
Line 144 
Line 144 
     ." gforthd2ll(" gen-par-n ." ," gen-par-n ." )" ;      ." gforthd2ll(" gen-par-n ." ," gen-par-n ." )" ;
   
 : gen-par-r ( fp-depth1 sp-depth1 -- fp-depth2 sp-depth2 )  : gen-par-r ( fp-depth1 sp-depth1 -- fp-depth2 sp-depth2 )
     swap 1- tuck ." fp[" .n ." ]" ;      swap 1- tuck ." fp[" .nb ." ]" ;
   
 : gen-par-func ( fp-depth1 sp-depth1 -- fp-depth2 sp-depth2 )  : gen-par-func ( fp-depth1 sp-depth1 -- fp-depth2 sp-depth2 )
     gen-par-p ;      gen-par-p ;
Line 161 
Line 161 
 ' gen-par-void ,  ' gen-par-void ,
   
 : gen-par ( fp-depth1 sp-depth1 partype -- fp-depth2 sp-depth2 )  : gen-par ( fp-depth1 sp-depth1 partype -- fp-depth2 sp-depth2 )
     cells gen-par-types @ execute ;      cells gen-par-types + @ execute ;
   
 \ the call itself  \ the call itself
   
Line 180 
Line 180 
 : gen-wrapped-void ( pars c-name fp-change1 sp-change1 -- fp-change sp-change )  : gen-wrapped-void ( pars c-name fp-change1 sp-change1 -- fp-change sp-change )
     2dup 2>r gen-wrapped-call 2r> ;      2dup 2>r gen-wrapped-call 2r> ;
   
   : gen-wrapped-n ( pars c-name fp-change1 sp-change1 -- fp-change sp-change )
       1- dup ." sp[" .nb ." ]=" gen-wrapped-void ;
   
   : gen-wrapped-p ( pars c-name fp-change1 sp-change1 -- fp-change sp-change )
       1- dup ." sp[" .nb ." ]=(Cell)" gen-wrapped-void ;
   
   : gen-wrapped-d ( pars c-name fp-change1 sp-change1 -- fp-change sp-change )
       ." gforth_ll2d(" gen-wrapped-void
       ." ,sp[" 1- dup .nb ." ],sp[" 1- dup .nb ." ])" ;
   
   : gen-wrapped-r ( pars c-name fp-change1 sp-change1 -- fp-change sp-change )
       swap 1- tuck ." fp[" .nb ." ]=" gen-wrapped-void ;
   
   : gen-wrapped-func ( pars c-name fp-change1 sp-change1 -- fp-change sp-change )
       gen-wrapped-p ;
   
 create gen-wrapped-types  create gen-wrapped-types
 ' gen-wrapped-n ,  ' gen-wrapped-n ,
 ' gen-wrapped-p ,  ' gen-wrapped-p ,
Line 189 
Line 205 
 ' gen-wrapped-void ,  ' gen-wrapped-void ,
   
 : gen-wrapped-stmt ( pars c-name fp-change1 sp-change1 ret -- fp-change sp-change )  : gen-wrapped-stmt ( pars c-name fp-change1 sp-change1 ret -- fp-change sp-change )
     cells gen-wrapped-types @ execute ;      cells gen-wrapped-types + @ execute ;
   
 : gen-wrapper-function ( addr -- )  : gen-wrapper-function ( addr -- )
     \ addr points to the return type index of a c-function descriptor      \ addr points to the return type index of a c-function descriptor
Line 199 
Line 215 
         i chars over + c@ type-letter emit          i chars over + c@ type-letter emit
     loop      loop
     ." _" ret type-letter emit .\" (void)\n"      ." _" ret type-letter emit .\" (void)\n"
     .\" {\n  Cell *sp = gforth_SP;\n  Float *fp = gforth_FP;"      .\" {\n  Cell *sp = gforth_SP;\n  Float *fp = gforth_FP;\n  "
     pars c-name 2over count-stacks ret gen-wrapped-stmt .\" ;\n"      pars c-name 2over count-stacks ret gen-wrapped-stmt .\" ;\n"
     ?dup-if      ?dup-if
         ."   gforth_SP = sp+" .n .\" ;\n"          ."   gforth_SP = sp+" .nb .\" ;\n"
     endif      endif
     ?dup-if      ?dup-if
         ."   gforth_FP = fp+" .n .\" ;\n"          ."   gforth_FP = fp+" .nb .\" ;\n"
     endif      endif
     ." }\n" ;      .\" }\n" ;
   
 : c-function ( "forth-name" "c-name" "{libcc-type}" "--" "libcc-type" -- )  : c-function ( "forth-name" "c-name" "{libcc-type}" "--" "libcc-type" -- )
     create here >r 0 , \ place for the wrapper function pointer      create here >r 0 , \ place for the wrapper function pointer
     parse-name { d: c-name }      parse-name { d: c-name }
     parse-function-types c-name string,      parse-function-types c-name string,
     r> cell+ gen-wrapper-function      r> cell+ gen-wrapper-function
     compile-wrapper-function  \    compile-wrapper-function
     link-wrapper-function  \    link-wrapper-function
     r> !  \    r> !
   does> ( ... -- ... )    does> ( ... -- ... )
     @ call-c ;      @ call-c ;
   
Line 234 
Line 250 
   does> ( -- lib )    does> ( -- lib )
     @ ;      @ ;
   
   \ test
   
   cr .( #include "engine/forth.h")
   cr .( #include <unistd.h>)
   cr ." typedef void (* func)(int);
   cr ." int test1(int,char*,long,double,void (*)(int));"
   cr ." Cell *test2(void);"
   cr ." int test3(void);"
   cr ." float test4(void);"
   cr ." func test5(void);"
   cr ." void test6(void);"
   cr
   
   c-function dlseek lseek n d n -- d
   c-function n test1 n p d r func -- n
   c-function p test2 -- p
   c-function d test3 -- d
   c-function r test4 -- r
   c-function func test5 -- func
   c-function void test6 -- void


Generate output suitable for use with a patch program
Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

CVS Admin

Powered by ViewCVS 1.0-dev
(Powered by ViewCVS)

ViewCVS and CVS Help