SourceForge!
PFE 0.33.70


Homepage
SourceForge
Download
 
Documentation
-Overview
-The PFE Manual
  old manual / (book)
-ChangeLog
-Authors
-License (LGPL)  
-Wordsets / (book)
-Functions .. (book)
-Dp of ANS Forth
-The 4thTutor
-Forthprimer.pdf
-   Old Wordsets
-   Old Words List
 

Forth Links
* Forth Repository
* Taygeta Compilation
* TinyBoot FirmWare
* FiCL, Free Forth
* Research Vienna
* Research Bournemouth
* zForth WebRing
 

Other Links
* Tektronix/MPT
* Forth Org. (FIG)
* Forth Inc.
* MPE Ltd. Forths
* SF Win32Forth
* PD Win32Forth
* Neil Bawd
 

 

generated
(C) Guido U. Draheim
guidod@gmx.de

Header

Navigation

BODY>( pfa -- cfa )  => [FORTH]

trying to convert a pointer to the parameter-field (PFA) to point then to the corresponding code-field (CFA) - note that this is not necessarily the inverse of >BODY instead it is a fast implementation assuming a VARIABLE thing had been used. Every use of "BODY>" is warned in the logfile.

  implementation-specific simulation:
    : BODY> CELL - ;

primitive code = [p4_body_from]


>LINK( cfa -- lfa )  => [FORTH]

converts a pointer to the code-field (CFA) to point then to the corresponding link-field (LFA) - in some configurations this can be a very slow operation since the system might need to walk through all header-words in the system, looking for a >NAME that has the cfa and *then* returning the "N>LINK" result here - which might be none at all if the word is a :NONAME. Use always >NAME and treat this word as non-portable just like any assumption about the contents of the >LINK-field. Only in fig-mode and for traditional fig-mode programs, this word may possibly have enough extra assertions to be somewhat reliable. (and fig-mode did not know about SYNONYMs - see note at LINK>).

primitive code = [p4_to_link]


LINK>( lfa -- cfa )  => [FORTH]

converts a pointer to the link-field (LFA) to point then to the corresponding code-field (CFA)

BEWARE: this one does not care about SYNONYMs and it is the only way to get at the data of a SYNONYM. Therefore, if you have a synonym called A for an old word B then there is a different result using "NAME>" on an A-nfa or using "N>LINK LINK>" since the first "NAME>" will return the xt of B while the latter will return the xt of A - but executing an xt of A is an error and it will THROW

this difference is intentional to allow knowledgable persons to do weird things looking around in the dictionary. The forth standard words will not give you much of a chance to get hold of the nfa of a SYNONYM word anyway - asking FIND for a word A will return the execution token of B immediatly and "NAME>" on that one lead to the nfa of B and not that of A.

primitive code = [p4_link_from]


>NAME( cfa -- nfa )  => [FORTH]

converts a pointer to the code-field (CFA) to point then to the corresponding name-field (NFA)

  implementation-specific simulation:
    : >NAME  >LINK L>NAME ;
  

primitive code = [p4_to_name]


NAME>( nfa -- cfa )  => [FORTH]

converts a pointer to the name-field (NFA) to point then to the corresponding code-field (CFA)

In all cases but a SYNONYM the pfe will behave not unlike the original fig-forth did - being identical to N>LINK LINK> .

primitive code = [p4_name_from]


L>NAME( lfa -- nfa )  => [FORTH]

converts a pointer to the link-field (LFA) to point then to the corresponding name-field (CFA) - this one is one of the slowest operation available. One should always use the inverse operation N>LINK and cache an older value if that is needed. Some words might be linked but they do not have a name-field (just the other fields) but this word can not detect that and will try to look into the bits of the dictionary anway in the assumption that there is something - and if done in the wrong place it might even segfault. Only in fig-mode and for traditional fig-mode programs, this word may possibly have enough extra assertions to be somewhat reliable. (and fig-mode did not know about SYNONYMs - see note at LINK>).

 
  implementation-specific configure-dependent fig-only simulation:
  : L>NAME BEGIN DUP C@ 128 AND 0= WHILE 1- REPEAT ;
  

primitive code = [p4_l_to_name]


N>LINK( nfa -- lfa )  => [FORTH]

converts a pointer to the name-field (NFA) to point then to the corresponding link-field (LFA) - this operation is quicker than the inverse L>NAME. This word is a specific implementation detail and should not be used by normal users - instead use always NAME> which is much more portable. Many systems may possibly not even have a >LINK-field in the sense that a @ on this adress will lead to another >NAME. Any operation on the resulting >LINK-adress is even dependent on the current configuration of PFE - only in fig-mode you are asserted to have the classic detail. (and fig-mode did not know about SYNONYMs - see note at LINK>).

 
  implementation-specific configure-dependent fig-only simulation:
    : N>LINK  C@ + ;
  

primitive code = [p4_n_to_link]


NAME>STRING( name-token -- str-ptr str-len )  => [FORTH]

convert a name-token into a string-span, used to detect the name for a word and print it. The word ID. can be defined as

  : ID. NAME>STRING TYPE ;

the implementation of NAME>STRING depends on the header layout that is defined during the configuration of the forth system.

  : NAME>STRING COUNT 31 AND ; ( for fig-like names )
  : NAME>STRING COUNT ;        ( default, name is a simple counted string )
  : NAME>STRING @ ZCOUNT ;     ( name-token is a pointer to a C-level string )
  : NAME>STRING COUNT 31 AND   ( hybrid of fig-like and zero-terminated )
       DUP 31 = IF DROP 1+ ZCOUNT THEN
  ;
  : NAME>STRING HEAD:: COUNT CODE:: PAD PLACE PAD ; ( different i86 segments )
 

primitive code = [p4_name_to_string]


LATEST( -- nfa )  => [FORTH]

return the NFA of the lateset definition in the CURRENT vocabulary

primitive code = [p4_latest]


>FFA( nfa -- ffa ) obsolete  => [FORTH]

converts a pointer to the name-field (NFA) to point then to the corresponding flag-field (FFA) - in traditinal Forth this is the same address. pfe _can_ do different.

  implementation-specific configure-dependent simulation:
    : FFA  1- ;
  

primitive code = [p4_to_ffa]


FFA>( ffa -- nfa ) obsolete  => [FORTH]

converts a pointer to the flag-field (FFA) to point then to the corresponding name-field (NFA) - in traditinal Forth this is the same address. pfe _can_ do different.

  implementation-specific configure-dependent simulation:
    : FFA  1+ ;
  

primitive code = [p4_ffa_from]


NAME-FLAGS@( nfa -- nfa-flags )  => [FORTH]

get the nfa-flags that corresponds to the nfa given. Note that in the fig-style would include the nfa-count in the lower bits. (see NAME-FLAGS!)

primitive code = [p4_name_flags_fetch]


NAME-FLAGS!( nfa-flags nfa -- )  => [FORTH]

set the nfa-flags of nfa given. Note that in the fig-style the nfa-flags would include the nfa-count in the lower bits - therefore this should only set bits that had been previously retrieved with NAME-FLAGS@

  : IMMEDIATE LAST @ NAME-FLAGS@ IMMEDIATE-MASK OR LAST @ NAME-FLAGS! ;
  

primitive code = [p4_name_flags_store]


HEADER,( str-ptr str-len -- )  => [FORTH]

CREATE a new header in the dictionary from the given string, without CFA

  usage: : VARIABLE  BL WORD COUNT HEADER, DOVAR , ;
  

primitive code = [p4_header_comma]


$HEADER( bstring -- )  => [FORTH]

CREATE a new header in the dictionary from the given string with the variable runtime (see HEADER, and CREATE:)

  usage: : VARIABLE  BL WORD $HEADER ;
  

primitive code = [p4_str_header]


SMUDGE  => [FORTH]

(no description)

primitive code = [p4_smudge]


HIDE( -- )  => [FORTH]

the FIG definition toggles the SMUDGE bit, and not all systems have a smudge bit - instead one should use REVEAL or HIDE

  : HIDE LAST @ FLAGS@ SMUDGE-MASK XOR LAST @ FLAGS! ;
  

primitive code = [p4_hide]


REVEAL( -- )  => [FORTH]

the FIG definition toggles the SMUDGE bit, and not all systems have a smudge bit - instead one should use REVEAL or HIDE

  : REVEAL LAST @ FLAGS@ SMUDGE-MASK INVERT AND LAST @ FLAGS! ;
  : REVEAL LAST @ CHAIN-INTO-CURRENT ;
  

primitive code = [p4_reveal]


RECURSIVE( -- )  => [FORTH]

REVEAL the current definition making it RECURSIVE by its own name instead of using the ans-forth word to RECURSE.

  ' REVEAL ALIAS RECURSIVE IMMEDIATE
  

immediate code = [p4_reveal]


(CHECK-DEPRECATED:)  => [FORTH]

(no description)

primitive code = [p4_check_deprecated]


ALIAS( some-xt* "name" -- ) [EXT]  => [FORTH]

create a defer word that is initialized with the given x-token. DO-ALIAS

primitive code = [p4_alias]


IS( xt-value [word] -- )  => [FORTH]

set a DEFER word (in pfe: set the DOES-field - which is the BODY-field in ans-mode and therefore the same as TO / in fig-mode the DOES-field is one cell higher up than for a CREATE: VARIABLE Use IS freely on each DOES-words in both modes).

  : IS ' 
    STATE @ IF LITERAL, POSTPONE >DOES-BODY POSTPONE ! 
    ELSE >DOES-BODY ! THEN 
  ; IMMEDIATE
  

compiling word = [p4_is]


DEFER!( xt-value xt-defer -- )  => [FORTH]

A Forth200x definition that is not very useful.

primitive code = [p4_defer_store]


DEFER@( xt1 -- xt2 )  => [FORTH]

get the execution token xt2 that would be executed by the DEFER identified by xt1.

This command is used to obtain the execution contents of a deferred word. A typical use would be to retrieve and save the execution behavior of the deferred word, set the deferred word to a new behavior, and then later restore the old behavior.

If the deferred word identified by _xt1_ is associated with some other deferred word, _xt2_ is the execution token of that other deferred word. To retrieve the execution token of the word currently associated with that other deferred word, use the phrase DEFER@ DEFER@ .

Experience: BEHAVIOR was used many years in OpenBoot and OpenFirmware systems.

In PFE it is the inverse of an IS operation and it will never fail if applied to a word with atleast a body. That's just like IS can be applied to almost every DOES> word where DEFER@ will get the value back.

primitive code = [p4_defer_fetch]


ACTION-OF( [word] -- xt-value )  => [FORTH]

get the BEHAVIOR of a DEFER word when executed. If being compiled then the ACTION-OF will be the value of [word] at the time of execution and not that of compilation time (non-constant).

In PFE it does actually pick whatever is stored in the DOES-field of a word and therefore ACTION-OF may applied to all DOES-words.

compiling word = [p4_action_of]