Annotation of gforth/kernel/comp.fs, revision 1.43

1.1       pazsan      1: \ compiler definitions                                         14sep97jaw
                      2: 
1.28      anton       3: \ Copyright (C) 1995,1996,1997,1998,2000 Free Software Foundation, Inc.
1.6       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.29      anton      19: \ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
1.6       anton      20: 
1.1       pazsan     21: \ \ Revisions-Log
                     22: 
                     23: \      put in seperate file                            14sep97jaw      
                     24: 
                     25: \ \ here allot , c, A,                                         17dec92py
                     26: 
1.14      jwilke     27: [IFUNDEF] allot
                     28: [IFUNDEF] forthstart
                     29: : allot ( n -- ) \ core
                     30:     dup unused u> -8 and throw
                     31:     dp +! ;
                     32: [THEN]
                     33: [THEN]
                     34: 
                     35: \ we default to this version if we have nothing else 05May99jaw
                     36: [IFUNDEF] allot
1.1       pazsan     37: : allot ( n -- ) \ core
1.23      anton      38:     \G Reserve @i{n} address units of data space without
                     39:     \G initialization. @i{n} is a signed number, passing a negative
                     40:     \G @i{n} releases memory.  In ANS Forth you can only deallocate
                     41:     \G memory from the current contiguous region in this way.  In
                     42:     \G Gforth you can deallocate anything in this way but named words.
                     43:     \G The system does not check this restriction.
1.12      anton      44:     here +
                     45:     dup 1- usable-dictionary-end forthstart within -8 and throw
                     46:     dp ! ;
1.14      jwilke     47: [THEN]
1.1       pazsan     48: 
1.22      crook      49: : c,    ( c -- ) \ core c-comma
1.15      crook      50:     \G Reserve data space for one char and store @i{c} in the space.
1.1       pazsan     51:     here 1 chars allot c! ;
                     52: 
1.22      crook      53: : ,     ( w -- ) \ core comma
1.15      crook      54:     \G Reserve data space for one cell and store @i{w} in the space.
1.1       pazsan     55:     here cell allot  ! ;
                     56: 
                     57: : 2,   ( w1 w2 -- ) \ gforth
1.15      crook      58:     \G Reserve data space for two cells and store the double @i{w1
1.24      anton      59:     \G w2} there, @i{w2} first (lower address).
1.1       pazsan     60:     here 2 cells allot 2! ;
                     61: 
                     62: \ : aligned ( addr -- addr' ) \ core
                     63: \     [ cell 1- ] Literal + [ -1 cells ] Literal and ;
                     64: 
                     65: : align ( -- ) \ core
1.15      crook      66:     \G If the data-space pointer is not aligned, reserve enough space to align it.
1.1       pazsan     67:     here dup aligned swap ?DO  bl c,  LOOP ;
                     68: 
1.22      crook      69: \ : faligned ( addr -- f-addr ) \ float f-aligned
1.1       pazsan     70: \     [ 1 floats 1- ] Literal + [ -1 floats ] Literal and ; 
                     71: 
1.22      crook      72: : falign ( -- ) \ float f-align
1.15      crook      73:     \G If the data-space pointer is not float-aligned, reserve
                     74:     \G enough space to align it.
1.1       pazsan     75:     here dup faligned swap
                     76:     ?DO
                     77:        bl c,
                     78:     LOOP ;
                     79: 
1.9       anton      80: : maxalign ( -- ) \ gforth
1.23      anton      81:     \G Align data-space pointer for all alignment requirements.
1.1       pazsan     82:     here dup maxaligned swap
                     83:     ?DO
                     84:        bl c,
                     85:     LOOP ;
                     86: 
                     87: \ the code field is aligned if its body is maxaligned
                     88: ' maxalign Alias cfalign ( -- ) \ gforth
1.24      anton      89: \G Align data-space pointer for code field requirements (i.e., such
                     90: \G that the corresponding body is maxaligned).
1.1       pazsan     91: 
                     92: ' , alias A, ( addr -- ) \ gforth
                     93: 
                     94: ' NOOP ALIAS const
                     95: 
                     96: \ \ Header                                                     23feb93py
                     97: 
                     98: \ input-stream, nextname and noname are quite ugly (passing
                     99: \ information through global variables), but they are useful for dealing
                    100: \ with existing/independent defining words
                    101: 
                    102: defer (header)
                    103: defer header ( -- ) \ gforth
                    104: ' (header) IS header
                    105: 
                    106: : string, ( c-addr u -- ) \ gforth
                    107:     \G puts down string as cstring
                    108:     dup c, here swap chars dup allot move ;
                    109: 
1.30      anton     110: : longstring, ( c-addr u -- ) \ gforth
                    111:     \G puts down string as cstring
                    112:     dup , here swap chars dup allot move ;
                    113: 
1.1       pazsan    114: : header, ( c-addr u -- ) \ gforth
                    115:     name-too-long?
                    116:     align here last !
                    117:     current @ 1 or A,  \ link field; before revealing, it contains the
                    118:                        \ tagged reveal-into wordlist
1.30      anton     119:     longstring, cfalign
1.1       pazsan    120:     alias-mask lastflags cset ;
                    121: 
                    122: : input-stream-header ( "name" -- )
                    123:     name name-too-short? header, ;
                    124: 
                    125: : input-stream ( -- )  \ general
                    126:     \G switches back to getting the name from the input stream ;
                    127:     ['] input-stream-header IS (header) ;
                    128: 
                    129: ' input-stream-header IS (header)
                    130: 
1.32      anton     131: 2variable nextname-string
1.1       pazsan    132: 
1.33      pazsan    133: has? OS [IF]
1.1       pazsan    134: : nextname-header ( -- )
1.32      anton     135:     nextname-string 2@ header,
                    136:     nextname-string free-mem-var
1.1       pazsan    137:     input-stream ;
1.33      pazsan    138: [THEN]
1.1       pazsan    139: 
                    140: \ the next name is given in the string
                    141: 
1.33      pazsan    142: has? OS [IF]
1.1       pazsan    143: : nextname ( c-addr u -- ) \ gforth
1.19      anton     144:     \g The next defined word will have the name @var{c-addr u}; the
                    145:     \g defining word will leave the input stream alone.
1.1       pazsan    146:     name-too-long?
1.32      anton     147:     nextname-string free-mem-var
                    148:     save-mem nextname-string 2!
1.1       pazsan    149:     ['] nextname-header IS (header) ;
1.33      pazsan    150: [THEN]
1.1       pazsan    151: 
                    152: : noname-header ( -- )
                    153:     0 last ! cfalign
                    154:     input-stream ;
                    155: 
                    156: : noname ( -- ) \ gforth
1.19      anton     157:     \g The next defined word will be anonymous. The defining word will
                    158:     \g leave the input stream alone. The xt of the defined word will
                    159:     \g be given by @code{lastxt}.
1.1       pazsan    160:     ['] noname-header IS (header) ;
                    161: 
                    162: : lastxt ( -- xt ) \ gforth
1.15      crook     163:     \G @i{xt} is the execution token of the last word defined.
1.13      crook     164:     \ The main purpose of this word is to get the xt of words defined using noname
1.1       pazsan    165:     lastcfa @ ;
                    166: 
                    167: \ \ literals                                                   17dec92py
                    168: 
                    169: : Literal  ( compilation n -- ; run-time -- n ) \ core
1.27      anton     170:     \G Compilation semantics: compile the run-time semantics.@*
                    171:     \G Run-time Semantics: push @i{n}.@*
                    172:     \G Interpretation semantics: undefined.
1.14      jwilke    173: [ [IFDEF] lit, ]
                    174:     lit,
                    175: [ [ELSE] ]
1.27      anton     176:     postpone lit ,
1.14      jwilke    177: [ [THEN] ] ; immediate restrict
1.1       pazsan    178: 
                    179: : ALiteral ( compilation addr -- ; run-time -- addr ) \ gforth
1.14      jwilke    180: [ [IFDEF] alit, ]
                    181:     alit,
                    182: [ [ELSE] ]
                    183:     postpone lit A, 
                    184: [ [THEN] ] ; immediate restrict
1.1       pazsan    185: 
1.8       crook     186: : char   ( '<spaces>ccc' -- c ) \ core
1.15      crook     187:     \G Skip leading spaces. Parse the string @i{ccc} and return @i{c}, the
                    188:     \G display code representing the first character of @i{ccc}.
1.1       pazsan    189:     bl word char+ c@ ;
                    190: 
1.8       crook     191: : [char] ( compilation '<spaces>ccc' -- ; run-time -- c ) \ core bracket-char
1.10      crook     192:     \G Compilation: skip leading spaces. Parse the string
1.15      crook     193:     \G @i{ccc}. Run-time: return @i{c}, the display code
                    194:     \G representing the first character of @i{ccc}.  Interpretation
1.10      crook     195:     \G semantics for this word are undefined.
1.1       pazsan    196:     char postpone Literal ; immediate restrict
                    197: 
                    198: \ \ threading                                                  17mar93py
                    199: 
                    200: : cfa,     ( code-address -- )  \ gforth       cfa-comma
                    201:     here
                    202:     dup lastcfa !
                    203:     0 A, 0 ,  code-address! ;
                    204: 
1.14      jwilke    205: [IFUNDEF] compile,
1.34      anton     206: defer compile, ( xt -- )       \ core-ext      compile-comma
                    207: \G  Compile the word represented by the execution token @i{xt}
                    208: \G  into the current definition.
                    209: 
                    210: ' , is compile,
1.14      jwilke    211: [THEN]
1.1       pazsan    212: 
1.40      anton     213: defer basic-block-end ( -- )
                    214: 
                    215: : bb-end ( -- )
                    216:     0 last-compiled ! ;
                    217: ' bb-end is basic-block-end
                    218: 
1.36      pazsan    219: has? peephole [IF]
1.40      anton     220: 
                    221: \ dynamic only    
                    222: \  : peephole-compile, ( xt -- )
                    223: \      \ compile xt, appending its code to the current dynamic superinstruction
                    224: \      compile-prim , ;
1.38      anton     225:     
1.40      anton     226: \ static only
1.38      anton     227: \  : peephole-compile, ( xt -- )
                    228: \      \ compile xt, possibly combining it with the previous compiled xt
                    229: \      \ into a superinstruction (static superinstructions)
                    230: \      last-compiled @ ?dup if
                    231: \      @ over peeptable peephole-opt ?dup if
                    232: \          last-compiled @ ! drop EXIT
                    233: \      then
                    234: \      then
                    235: \      here last-compiled !
                    236: \      dyn-compile, ;
1.34      anton     237: 
1.40      anton     238: : dyn-compile! ( xt -- )
                    239:     \ compile xt, appending its code to the current dynamic superinstruction
                    240:     compile-prim last-compiled-here @ ! ;
                    241: 
                    242: :noname ( -- )
                    243:     last-compiled @ if
                    244:        last-compiled @ dyn-compile!
                    245:        0 last-compiled !
                    246:     then ;
                    247: is basic-block-end
                    248: 
                    249: : static-compile, ( xt -- )
                    250:     \ compile xt, possibly combining it with the previous compiled xt
                    251:     \ into a superinstruction (static superinstructions)
                    252:     last-compiled @ ?dup if
                    253:        over peeptable peephole-opt ?dup if ( xt comb-xt )
                    254:            last-compiled ! drop EXIT
                    255:        then ( xt )
                    256:        last-compiled @ dyn-compile!
                    257:     then ( xt )
                    258:     last-compiled !
                    259:     here last-compiled-here ! 0 , ;
1.42      anton     260: 
1.35      anton     261: : compile-to-prims, ( xt -- )
                    262:     \G compile xt to use primitives (and their peephole optimization)
                    263:     \G instead of ","-ing the xt.
                    264:     \ !! all POSTPONEs here postpone primitives; this can be optimized
1.39      pazsan    265:     dup >does-code if
                    266:        POSTPONE does-exec , EXIT
1.41      anton     267:        \ dup >body POSTPONE literal POSTPONE call >does-code , EXIT
1.35      anton     268:     then
                    269:     dup >code-address CASE
1.42      anton     270:        \ docon:   OF >body POSTPONE lit@ , EXIT ENDOF
1.41      anton     271:        docon:   OF >body POSTPONE literal POSTPONE @ EXIT ENDOF
1.42      anton     272:        \ docon is also used by VALUEs, so don't @ at compile time
1.35      anton     273:        docol:   OF >body POSTPONE call , EXIT ENDOF
                    274:        dovar:   OF >body POSTPONE literal EXIT ENDOF
                    275:        douser:  OF >body @ POSTPONE useraddr , EXIT ENDOF
1.42      anton     276:        dodefer: OF >body POSTPONE lit-perform , EXIT ENDOF
                    277:        \ dofield: OF >body @ POSTPONE lit+ , EXIT ENDOF
1.41      anton     278:        dofield: OF >body @ POSTPONE literal POSTPONE + EXIT ENDOF
1.35      anton     279:     ENDCASE
1.40      anton     280:     static-compile, ;
1.35      anton     281: 
                    282: ' compile-to-prims, IS compile,
1.36      pazsan    283: [ELSE]
                    284: ' , is compile,
                    285: [THEN]
1.34      anton     286: 
1.1       pazsan    287: : !does    ( addr -- ) \ gforth        store-does
                    288:     lastxt does-code! ;
                    289: 
                    290: : (does>)  ( R: addr -- )
                    291:     r> cfaligned /does-handler + !does ;
                    292: 
                    293: : dodoes,  ( -- )
                    294:   cfalign here /does-handler allot does-handler! ;
                    295: 
                    296: : (compile) ( -- ) \ gforth
                    297:     r> dup cell+ >r @ compile, ;
                    298: 
                    299: \ \ ticks
                    300: 
                    301: : name>comp ( nt -- w xt ) \ gforth
1.15      crook     302:     \G @i{w xt} is the compilation token for the word @i{nt}.
1.1       pazsan    303:     (name>comp)
                    304:     1 = if
                    305:         ['] execute
                    306:     else
                    307:         ['] compile,
                    308:     then ;
                    309: 
                    310: : [(')]  ( compilation "name" -- ; run-time -- nt ) \ gforth bracket-paren-tick
                    311:     (') postpone ALiteral ; immediate restrict
                    312: 
                    313: : [']  ( compilation. "name" -- ; run-time. -- xt ) \ core      bracket-tick
1.15      crook     314:     \g @i{xt} represents @i{name}'s interpretation
                    315:     \g semantics. Perform @code{-14 throw} if the word has no
1.1       pazsan    316:     \g interpretation semantics.
                    317:     ' postpone ALiteral ; immediate restrict
                    318: 
1.5       anton     319: : COMP'    ( "name" -- w xt ) \ gforth  comp-tick
1.15      crook     320:     \g Compilation token @i{w xt} represents @i{name}'s compilation semantics.
1.1       pazsan    321:     (') name>comp ;
                    322: 
                    323: : [COMP']  ( compilation "name" -- ; run-time -- w xt ) \ gforth bracket-comp-tick
1.15      crook     324:     \g Compilation token @i{w xt} represents @i{name}'s compilation semantics.
1.1       pazsan    325:     COMP' swap POSTPONE Aliteral POSTPONE ALiteral ; immediate restrict
                    326: 
1.18      jwilke    327: : postpone, ( w xt -- ) \ gforth       postpone-comma
1.26      anton     328:     \g Compile the compilation semantics represented by the
                    329:     \g compilation token @i{w xt}.
1.18      jwilke    330:     dup ['] execute =
                    331:     if
                    332:        drop compile,
                    333:     else
                    334:        dup ['] compile, =
                    335:        if
                    336:            drop POSTPONE (compile) a,
                    337:        else
                    338:            swap POSTPONE aliteral compile,
                    339:        then
                    340:     then ;
                    341: 
                    342: : POSTPONE ( "name" -- ) \ core
                    343:     \g Compiles the compilation semantics of @i{name}.
                    344:     COMP' postpone, ; immediate restrict
                    345: 
1.1       pazsan    346: \ \ recurse                                                    17may93jaw
                    347: 
                    348: : recurse ( compilation -- ; run-time ?? -- ?? ) \ core
1.10      crook     349:     \g Call the current definition.
1.1       pazsan    350:     lastxt compile, ; immediate restrict
                    351: 
                    352: \ \ compiler loop
                    353: 
                    354: : compiler ( c-addr u -- )
                    355:     2dup find-name dup
                    356:     if ( c-addr u nt )
                    357:        nip nip name>comp execute
                    358:     else
                    359:        drop
                    360:        2dup snumber? dup
                    361:        IF
                    362:            0>
                    363:            IF
                    364:                swap postpone Literal
                    365:            THEN
                    366:            postpone Literal
                    367:            2drop
                    368:        ELSE
                    369:            drop compiler-notfound
                    370:        THEN
                    371:     then ;
                    372: 
1.22      crook     373: : [ ( -- ) \  core     left-bracket
1.8       crook     374:     \G Enter interpretation state. Immediate word.
1.1       pazsan    375:     ['] interpreter  IS parser state off ; immediate
                    376: 
                    377: : ] ( -- ) \ core      right-bracket
1.8       crook     378:     \G Enter compilation state.
1.1       pazsan    379:     ['] compiler     IS parser state on  ;
                    380: 
                    381: \ \ Strings                                                    22feb93py
                    382: 
                    383: : ," ( "string"<"> -- ) [char] " parse
                    384:   here over char+ allot  place align ;
                    385: 
                    386: : SLiteral ( Compilation c-addr1 u ; run-time -- c-addr2 u ) \ string
1.15      crook     387:     \G Compilation: compile the string specified by @i{c-addr1},
                    388:     \G @i{u} into the current definition. Run-time: return
                    389:     \G @i{c-addr2 u} describing the address and length of the
1.10      crook     390:     \G string.
1.1       pazsan    391:     postpone (S") here over char+ allot  place align ;
                    392:                                              immediate restrict
                    393: 
                    394: \ \ abort"                                                     22feb93py
                    395: 
                    396: : abort" ( compilation 'ccc"' -- ; run-time f -- ) \ core,exception-ext        abort-quote
1.15      crook     397:     \G If any bit of @i{f} is non-zero, perform the function of @code{-2 throw},
                    398:     \G displaying the string @i{ccc} if there is no exception frame on the
1.10      crook     399:     \G exception stack.
1.1       pazsan    400:     postpone (abort") ," ;        immediate restrict
                    401: 
                    402: \ \ Header states                                              23feb93py
                    403: 
                    404: : cset ( bmask c-addr -- )
1.30      anton     405:     tuck @ or swap ! ; 
1.1       pazsan    406: 
                    407: : creset ( bmask c-addr -- )
1.30      anton     408:     tuck @ swap invert and swap ! ; 
1.1       pazsan    409: 
                    410: : ctoggle ( bmask c-addr -- )
1.30      anton     411:     tuck @ xor swap ! ; 
1.1       pazsan    412: 
                    413: : lastflags ( -- c-addr )
                    414:     \ the address of the flags byte in the last header
                    415:     \ aborts if the last defined word was headerless
                    416:     last @ dup 0= abort" last word was headerless" cell+ ;
                    417: 
                    418: : immediate ( -- ) \ core
1.10      crook     419:     \G Make the compilation semantics of a word be to @code{execute}
                    420:     \G the execution semantics.
1.1       pazsan    421:     immediate-mask lastflags cset ;
                    422: 
                    423: : restrict ( -- ) \ gforth
1.10      crook     424:     \G A synonym for @code{compile-only}
1.1       pazsan    425:     restrict-mask lastflags cset ;
1.18      jwilke    426: 
1.1       pazsan    427: ' restrict alias compile-only ( -- ) \ gforth
1.10      crook     428: \G Remove the interpretation semantics of a word.
1.1       pazsan    429: 
                    430: \ \ Create Variable User Constant                              17mar93py
                    431: 
1.15      crook     432: : Alias    ( xt "name" -- ) \ gforth
1.1       pazsan    433:     Header reveal
                    434:     alias-mask lastflags creset
                    435:     dup A, lastcfa ! ;
                    436: 
                    437: doer? :dovar [IF]
                    438: 
                    439: : Create ( "name" -- ) \ core
                    440:     Header reveal dovar: cfa, ;
                    441: [ELSE]
                    442: 
                    443: : Create ( "name" -- ) \ core
                    444:     Header reveal here lastcfa ! 0 A, 0 , DOES> ;
                    445: [THEN]
                    446: 
                    447: : Variable ( "name" -- ) \ core
                    448:     Create 0 , ;
                    449: 
                    450: : AVariable ( "name" -- ) \ gforth
                    451:     Create 0 A, ;
                    452: 
1.22      crook     453: : 2Variable ( "name" -- ) \ double two-variable
1.1       pazsan    454:     create 0 , 0 , ;
                    455: 
1.21      crook     456: : uallot ( n -- ) \ gforth
                    457:     udp @ swap udp +! ;
1.1       pazsan    458: 
                    459: doer? :douser [IF]
                    460: 
                    461: : User ( "name" -- ) \ gforth
                    462:     Header reveal douser: cfa, cell uallot , ;
                    463: 
                    464: : AUser ( "name" -- ) \ gforth
                    465:     User ;
                    466: [ELSE]
                    467: 
                    468: : User Create cell uallot , DOES> @ up @ + ;
                    469: 
                    470: : AUser User ;
                    471: [THEN]
                    472: 
                    473: doer? :docon [IF]
                    474:     : (Constant)  Header reveal docon: cfa, ;
                    475: [ELSE]
                    476:     : (Constant)  Create DOES> @ ;
                    477: [THEN]
                    478: 
                    479: : Constant ( w "name" -- ) \ core
1.15      crook     480:     \G Define a constant @i{name} with value @i{w}.
1.1       pazsan    481:     \G  
1.15      crook     482:     \G @i{name} execution: @i{-- w}
1.1       pazsan    483:     (Constant) , ;
                    484: 
                    485: : AConstant ( addr "name" -- ) \ gforth
                    486:     (Constant) A, ;
                    487: 
                    488: : Value ( w "name" -- ) \ core-ext
                    489:     (Constant) , ;
                    490: 
1.37      jwilke    491: : AValue ( w "name" -- ) \ core-ext
                    492:     (Constant) A, ;
                    493: 
1.22      crook     494: : 2Constant ( w1 w2 "name" -- ) \ double two-constant
1.1       pazsan    495:     Create ( w1 w2 "name" -- )
                    496:         2,
                    497:     DOES> ( -- w1 w2 )
                    498:         2@ ;
                    499:     
                    500: doer? :dofield [IF]
                    501:     : (Field)  Header reveal dofield: cfa, ;
                    502: [ELSE]
                    503:     : (Field)  Create DOES> @ + ;
                    504: [THEN]
1.39      pazsan    505: 
                    506: \ \ interpret/compile:
                    507: 
                    508: struct
                    509:     >body
                    510:     cell% field interpret/compile-int
                    511:     cell% field interpret/compile-comp
                    512: end-struct interpret/compile-struct
                    513: 
                    514: : interpret/compile: ( interp-xt comp-xt "name" -- ) \ gforth
                    515:     Create immediate swap A, A,
                    516: DOES>
                    517:     abort" executed primary cfa of an interpret/compile: word" ;
                    518: \    state @ IF  cell+  THEN  perform ;
                    519: 
1.1       pazsan    520: \ IS Defer What's Defers TO                            24feb93py
                    521: 
                    522: doer? :dodefer [IF]
                    523: 
                    524: : Defer ( "name" -- ) \ gforth
                    525:     \ !! shouldn't it be initialized with abort or something similar?
                    526:     Header Reveal dodefer: cfa,
                    527:     ['] noop A, ;
1.18      jwilke    528: 
1.1       pazsan    529: [ELSE]
                    530: 
                    531: : Defer ( "name" -- ) \ gforth
                    532:     Create ['] noop A,
                    533: DOES> @ execute ;
1.18      jwilke    534: 
1.1       pazsan    535: [THEN]
                    536: 
1.25      anton     537: : Defers ( compilation "name" -- ; run-time ... -- ... ) \ gforth
                    538:     \G Compiles the present contents of the deferred word @i{name}
                    539:     \G into the current definition.  I.e., this produces static
                    540:     \G binding as if @i{name} was not deferred.
1.1       pazsan    541:     ' >body @ compile, ; immediate
1.18      jwilke    542: 
                    543: :noname
                    544:     dodoes, here !does ]
                    545:     defstart :-hook ;
                    546: :noname
                    547:     ;-hook ?struc
                    548:     [ has? xconds [IF] ] exit-like [ [THEN] ]
                    549:     postpone (does>) dodoes,
                    550:     defstart :-hook ;
                    551: interpret/compile: DOES>  ( compilation colon-sys1 -- colon-sys2 ; run-time nest-sys -- ) \ core        does
                    552: 
1.20      anton     553: : <IS> ( "name" xt -- ) \ gforth
                    554:     \g Changes the @code{defer}red word @var{name} to execute @var{xt}.
                    555:     ' >body ! ;
                    556: 
                    557: : [IS] ( compilation "name" -- ; run-time xt -- ) \ gforth bracket-is
                    558:     \g At run-time, changes the @code{defer}red word @var{name} to
                    559:     \g execute @var{xt}.
1.18      jwilke    560:     ' >body postpone ALiteral postpone ! ; immediate restrict
                    561: 
1.20      anton     562: ' <IS>
1.18      jwilke    563: ' [IS]
                    564: interpret/compile: IS ( xt "name" -- ) \ gforth
1.21      crook     565: \G A combined word made up from @code{<IS>} and @code{[IS]}.
1.18      jwilke    566: 
1.20      anton     567: ' <IS>
                    568: ' [IS]
                    569: interpret/compile: TO ( w "name" -- ) \ core-ext
1.18      jwilke    570: 
                    571: :noname    ' >body @ ;
                    572: :noname    ' >body postpone ALiteral postpone @ ;
1.25      anton     573: interpret/compile: What's ( interpretation "name" -- xt; compilation "name" -- ; run-time -- xt ) \ gforth
                    574: \G @i{Xt} is the XT that is currently assigned to @i{name}.
1.18      jwilke    575: 
                    576: : interpret/compile? ( xt -- flag )
                    577:     >does-code ['] DOES> >does-code = ;
1.1       pazsan    578: 
                    579: \ \ : ;                                                        24feb93py
                    580: 
                    581: defer :-hook ( sys1 -- sys2 )
                    582: 
                    583: defer ;-hook ( sys2 -- sys1 )
                    584: 
1.16      jwilke    585: 0 Constant defstart
                    586: 
1.14      jwilke    587: [IFDEF] docol,
                    588: : (:noname) ( -- colon-sys )
                    589:     \ common factor of : and :noname
1.34      anton     590:     docol, ]comp
1.14      jwilke    591: [ELSE]
1.7       anton     592: : (:noname) ( -- colon-sys )
                    593:     \ common factor of : and :noname
1.34      anton     594:     docol: cfa,
1.14      jwilke    595: [THEN]
1.40      anton     596:     defstart ] :-hook ;
1.7       anton     597: 
1.1       pazsan    598: : : ( "name" -- colon-sys ) \ core     colon
1.7       anton     599:     Header (:noname) ;
                    600: 
                    601: : :noname ( -- xt colon-sys ) \ core-ext       colon-no-name
                    602:     0 last !
                    603:     cfalign here (:noname) ;
1.1       pazsan    604: 
1.14      jwilke    605: [IFDEF] fini,
                    606: : ; ( compilation colon-sys -- ; run-time nest-sys ) \ core   semicolon
                    607:     ;-hook ?struc fini, comp[ reveal postpone [ ; immediate restrict
                    608: [ELSE]
1.1       pazsan    609: : ; ( compilation colon-sys -- ; run-time nest-sys ) \ core    semicolon
1.37      jwilke    610:     ;-hook ?struc [compile] exit reveal postpone [ ; immediate restrict
1.14      jwilke    611: [THEN]
1.1       pazsan    612: 
                    613: \ \ Search list handling: reveal words, recursive              23feb93py
                    614: 
                    615: : last?   ( -- false / nfa nfa )
                    616:     last @ ?dup ;
                    617: 
                    618: : (reveal) ( nt wid -- )
1.3       pazsan    619:     wordlist-id dup >r
1.1       pazsan    620:     @ over ( name>link ) ! 
                    621:     r> ! ;
                    622: 
                    623: \ make entry in wordlist-map
                    624: ' (reveal) f83search reveal-method !
                    625: 
                    626: Variable warnings ( -- addr ) \ gforth
                    627: G -1 warnings T !
                    628: 
                    629: : check-shadow  ( addr count wid -- )
1.2       pazsan    630:     \G prints a warning if the string is already present in the wordlist
                    631:     >r 2dup 2dup r> (search-wordlist) warnings @ and ?dup if
                    632:        >stderr
                    633:        ." redefined " name>string 2dup type
1.43    ! anton     634:        str= 0= if
1.2       pazsan    635:            ."  with " type
                    636:        else
                    637:            2drop
                    638:        then
                    639:        space space EXIT
                    640:     then
                    641:     2drop 2drop ;
1.1       pazsan    642: 
                    643: : reveal ( -- ) \ gforth
                    644:     last?
                    645:     if \ the last word has a header
                    646:        dup ( name>link ) @ 1 and
                    647:        if \ it is still hidden
                    648:            dup ( name>link ) @ 1 xor           ( nt wid )
                    649:            2dup >r name>string r> check-shadow ( nt wid )
                    650:            dup wordlist-map @ reveal-method perform
                    651:        else
                    652:            drop
                    653:        then
                    654:     then ;
                    655: 
                    656: : rehash  ( wid -- )
                    657:     dup wordlist-map @ rehash-method perform ;
                    658: 
                    659: ' reveal alias recursive ( compilation -- ; run-time -- ) \ gforth
1.10      crook     660: \g Make the current definition visible, enabling it to call itself
1.1       pazsan    661: \g recursively.
                    662:        immediate restrict

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