Annotation of gforth/intcomp.fs, revision 1.11

1.1       anton       1: \ defining words for words with non-default and non-immediate compilation semantics
                      2: 
1.10      anton       3: \ Copyright (C) 1996,1997,2000,2003 Free Software Foundation, Inc.
1.1       anton       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
1.7       anton      19: \ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
1.1       anton      20: 
                     21: \ used like
                     22: \ : <name> create-interpret/compile ...
                     23: \     interpretation> ... <interpretation
                     24: \     compilation> ... <compilation ;
                     25: 
                     26: 
                     27: noname create
                     28: does> abort" interpreting word without interpretation semantics" ;
1.9       anton      29: latestxt >does-code
1.1       anton      30: does> abort" compiling word without compilation semantics" ;
1.9       anton      31: latestxt >does-code
1.1       anton      32: constant no-compilation-does-code
                     33: constant no-interpretation-does-code
                     34: 
1.3       anton      35: : create-interpret/compile ( "name" -- ) \ gforth
1.1       anton      36:     0 0 interpret/compile:
1.9       anton      37:     here latestxt interpret/compile-comp !
1.2       anton      38:     no-compilation-does-code here does-code!
                     39:     [ 0 >body ] literal allot
1.9       anton      40:     here latestxt interpret/compile-int !
1.1       anton      41:     no-interpretation-does-code here does-code!
1.2       anton      42:     [ 0 >body ] literal allot ; \ restrict?
1.1       anton      43: 
                     44: : fix-does-code ( addr ret-addr -- )
1.9       anton      45:     latestxt [ interpret/compile-struct %size ] literal + >r
                     46:     latestxt interpret/compile?
                     47:     latestxt interpret/compile-int @ r@ >body = and
                     48:     latestxt interpret/compile-comp @ r> = and
1.1       anton      49:     0= abort" not created with create-interpret/compile"
1.5       anton      50:     cell+ cell+ maxaligned /does-handler + \ to does-code
1.1       anton      51:     swap @ does-code! ;
                     52: 
1.11    ! anton      53: : (interpretation>1) ( addr R:retaddr -- )
        !            54:     latestxt interpret/compile-int swap fix-does-code ;
1.1       anton      55: 
1.3       anton      56: : interpretation> ( compilation. -- orig colon-sys ) \ gforth
1.11    ! anton      57:     here 4 cells +  POSTPONE literal POSTPONE (interpretation>1) POSTPONE ahead
1.2       anton      58:     dodoes, defstart dead-code off 0 set-locals-size-list ; immediate restrict
1.1       anton      59: 
1.3       anton      60: : <interpretation ( compilation. orig colon-sys -- ) \ gforth
1.1       anton      61:     ?struc POSTPONE exit
                     62:     POSTPONE then ; immediate restrict
                     63: 
1.11    ! anton      64: : (compilation>1) ( addr R:retaddr -- )
        !            65:     latestxt interpret/compile-comp swap fix-does-code ;
1.1       anton      66: 
1.3       anton      67: : compilation> ( compilation. -- orig colon-sys ) \ gforth
1.11    ! anton      68:     here 4 cells + POSTPONE literal POSTPONE (compilation>1) POSTPONE ahead
1.2       anton      69:     dodoes, defstart dead-code off 0 set-locals-size-list POSTPONE >body ; immediate restrict
1.1       anton      70: 
1.3       anton      71: comp' <interpretation drop
                     72: Alias <compilation ( compilation. orig colon-sys -- ) \ gforth
                     73: immediate restrict
1.1       anton      74: 
                     75: \ example
                     76: \ : constant ( n "name" -- )
                     77: \     create-interpret/compile
                     78: \     ,
                     79: \ interpretation>
                     80: \     @
                     81: \ <interpretation
                     82: \ compilation>
                     83: \     @ postpone literal
                     84: \ <compilation ;
                     85: 
                     86: \ 5 constant five
                     87: 
                     88: \ cr
                     89: \ five . cr
                     90: \ : fuenf five ;
                     91: \ see fuenf cr

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