File:  [gforth] / gforth / wordinfo.fs
Revision 1.13: download - view: text, annotated - select for diffs
Mon Aug 26 10:07:22 1996 UTC (27 years, 7 months ago) by anton
Branches: MAIN
CVS tags: v0-3-0, v0-2-1, v0-2-0, HEAD
' and ['] now deliver an error for compile-only words.
renamed special- words into interpret/compile- words.
refactored some of the recent changes.
adapted see to the changes
added way to make a word that defines words with differring
 interpretation and compilation code.

    1: \ WORDINFO.FS  V1.0                                    17may93jaw
    2: 
    3: \ Copyright (C) 1995 Free Software Foundation, Inc.
    4: 
    5: \ This file is part of Gforth.
    6: 
    7: \ Gforth is free software; you can redistribute it and/or
    8: \ modify it under the terms of the GNU General Public License
    9: \ as published by the Free Software Foundation; either version 2
   10: \ of the License, or (at your option) any later version.
   11: 
   12: \ This program is distributed in the hope that it will be useful,
   13: \ but WITHOUT ANY WARRANTY; without even the implied warranty of
   14: \ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   15: \ GNU General Public License for more details.
   16: 
   17: \ You should have received a copy of the GNU General Public License
   18: \ along with this program; if not, write to the Free Software
   19: \ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   20: 
   21: \ May be cross-compiled
   22: \ If you want check values then exclude comments,
   23: \ but keep in mind that this can't be cross-compiled
   24: 
   25: INCLUDE look.fs
   26: 
   27: \ Wordinfo is a tool that checks a nfa
   28: \ and finds out what wordtype we have
   29: \ it is used in SEE.FS
   30: 
   31: \ the old alias? did not work and it is not used, so I changed
   32: \ it in many respects - anton
   33: : alias? ( nfa1 -- nfa2|0 )
   34:     \ if nfa1 is an alias, nfa2 is the name of the original word
   35:     dup cell+ c@ alias-mask and 0=
   36:     IF ( nfa1 )
   37: 	((name>)) @ >name ( use look instead? )
   38:     ELSE
   39: 	drop 0
   40:     THEN ;
   41: 
   42: : var?  ( nfa -- flag )
   43:     ((name>)) >code-address dovar: = ;
   44: 
   45: : con?  ( nfa -- flag )
   46:     ((name>)) >code-address docon: = ;
   47: 
   48: : user?  ( nfa -- flag )
   49:     ((name>)) >code-address douser: = ;
   50: 
   51: : does? ( nfa -- flag )
   52:     ((name>))
   53:     >does-code 0<> ;
   54: 
   55: : defered? ( nfa -- flag )
   56:     ((name>)) >code-address dodefer: = ;
   57: 
   58: : colon? ( nfa -- flag )
   59:     ((name>)) >code-address docol: = ;
   60: 
   61: \ the above words could be factored with create-does>, but this would
   62: \ probably make this file incompatible with cross.
   63: 
   64: : prim? ( nfa -- flag )
   65:         name>int
   66:         forthstart u< ;
   67: 
   68: \ None nestable IDs:
   69: 
   70: 1 CONSTANT Pri#         \ Primitives
   71: 2 CONSTANT Con#         \ Constants
   72: 3 CONSTANT Var#         \ Variables
   73: 4 CONSTANT Val#         \ Values
   74: 
   75: \ Nestabe IDs:
   76: 
   77: 5 CONSTANT Doe#         \ Does part
   78: 6 CONSTANT Def#         \ Defer
   79: 7 CONSTANT Col#         \ Colon def
   80: 8 CONSTANT Use#         \ User variable
   81: 
   82: \ Nobody knows:
   83: 
   84: 9 CONSTANT Ali#         \ Alias
   85: 
   86: 10 CONSTANT Str#         \ Structure words
   87: 
   88: 11 CONSTANT Com#        \ Compiler directives : ; POSTPONE
   89: 
   90: CREATE InfoTable
   91:         ' Prim?    A, Pri# ,
   92:         ' Alias?   A, Ali# ,
   93:         ' Con?     A, Con# ,
   94:         ' Var?     A, Var# ,
   95: \        ' Value?  A, Val# ,
   96:         ' Defered? A, Def# ,
   97:         ' Does?    A, Doe# ,
   98:         ' Colon?   A, Col# ,
   99: 	' User?    A, Use# ,
  100:         0 ,
  101: 
  102: : WordInfo ( nfa --- code )
  103:         InfoTable
  104:         BEGIN  dup @ dup
  105:         WHILE  swap 2 cells + swap
  106:                2 pick swap execute
  107:         UNTIL
  108:         1 cells - @ nip
  109:         ELSE
  110:         2drop drop 0
  111:         THEN ;
  112: 

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