Diff for /gforth/wordinfo.fs between versions 1.8 and 1.16

version 1.8, 1995/11/07 18:07:05 version 1.16, 1998/05/15 21:24:39
Line 22 Line 22
 \ If you want check values then exclude comments,  \ If you want check values then exclude comments,
 \ but keep in mind that this can't be cross-compiled  \ but keep in mind that this can't be cross-compiled
   
 INCLUDE look.fs  \ INCLUDE look.fs
   
 \ Wordinfo is a tool that checks a nfa  \ Wordinfo is a tool that checks a nfa
 \ and finds out what wordtype we have  \ and finds out what wordtype we have
 \ it is used in SEE.FS  \ it is used in SEE.FS
   
 : alias? ( nfa -- flag )  \ the old alias? did not work and it is not used, so I changed
         dup name> look  \ it in many respects - anton
         0= ABORT" WINFO: CFA not found"  : alias? ( nfa1 -- nfa2|0 )
 \       cell+      \ if nfa1 is an alias, nfa2 is the name of the original word
         2dup <>      dup cell+ c@ alias-mask and 0=
         IF   nip dup 1 cells - here !      IF ( nfa1 )
              count $1f and here cell+ place true          ((name>)) @ >name ( use look instead? )
         ELSE 2drop false THEN ;      ELSE
           drop 0
       THEN ;
   
 : var?  ( nfa -- flag )  : var?  ( nfa -- flag )
     cell+ (name>) >code-address dovar: = ;      ((name>)) >code-address dovar: = ;
   
 : con?  ( nfa -- flag )  : con?  ( nfa -- flag )
     cell+ (name>) >code-address docon: = ;      ((name>)) >code-address docon: = ;
   
 : user?  ( nfa -- flag )  : user?  ( nfa -- flag )
     cell+ (name>) >code-address douser: = ;      ((name>)) >code-address douser: = ;
   
 : does? ( nfa -- flag )  : does? ( nfa -- flag )
     \ !! does not work on all installations      ((name>))
     cell+ (name>)      >does-code 0<> ;
     >code-address ['] bits >code-address = ;  
   
 : defered? ( nfa -- flag )  : defered? ( nfa -- flag )
     cell+ (name>) >code-address dodefer: = ;      ((name>)) >code-address dodefer: = ;
   
 : colon? ( nfa -- flag )  : colon? ( nfa -- flag )
     cell+ (name>) >code-address docol: = ;      ((name>)) >code-address docol: = ;
   
 \ the above words could be factored with create-does>, but this would  \ the above words could be factored with create-does>, but this would
 \ probably make this file incompatible with cross.  \ probably make this file incompatible with cross.
   
 \ VALUE VCheck  [IFDEF] forthstart
   : xtprim? ( xt -- flag )
 \ : value? ( nfa -- flag )      dictionary-end forthstart within ; \ !! does not work for CODE words
 \         dup does?  [ELSE]
 \         IF here @ ['] VCheck cell+ @ =  : xtprim? ( xt -- flag )
 \            dup IF swap (name>) >body @ here ! ELSE nip THEN      dup >body swap >code-address = ; \ !! works only for indirect threaded code
 \         ELSE drop false THEN ;                                       \ !! does not work for primitives
   [THEN]
 : prim? ( nfa -- flag )  : prim? ( nfa -- flag )
         name>          name>int xtprim? ;
         forthstart u< ;  
   
 \ None nestable IDs:  \ None nestable IDs:
   

Removed from v.1.8  
changed lines
  Added in v.1.16


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