Diff for /gforth/wordinfo.fs between versions 1.11 and 1.17

version 1.11, 1996/05/13 16:37:03 version 1.17, 1998/12/08 22:02:53
Line 1 Line 1
 \ WORDINFO.FS  V1.0                                    17may93jaw  \ WORDINFO.FS  V1.0                                    17may93jaw
   
 \ Copyright (C) 1995 Free Software Foundation, Inc.  \ Copyright (C) 1995,1996,1998 Free Software Foundation, Inc.
   
 \ This file is part of Gforth.  \ This file is part of Gforth.
   
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
Line 32  INCLUDE look.fs Line 32  INCLUDE look.fs
 \ it in many respects - anton  \ it in many respects - anton
 : alias? ( nfa1 -- nfa2|0 )  : alias? ( nfa1 -- nfa2|0 )
     \ if nfa1 is an alias, nfa2 is the name of the original word      \ if nfa1 is an alias, nfa2 is the name of the original word
     cell+ dup c@ alias-mask and 0=      dup cell+ c@ alias-mask and 0=
     IF      IF ( nfa1 )
         (name>) @ >name ( use look instead? )          ((name>)) @ >name ( use look instead? )
     ELSE      ELSE
         drop 0          drop 0
     THEN ;      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 ['] spaces >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.11  
changed lines
  Added in v.1.17


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