Documentation
Ficl Documentation
Core reference, features, and API details.
Contents
- What is ficl?
- References
- LICENSE and DISCLAIMER
- Getting Started: Porting Ficl to your system
- Application Programming Interface
- Ficl Source Files
- Ficl Internals
- Ficl extras
- ANS Required Information
What is ficl?
Ficl is a lightweight, embeddable scripting language designed to be incorporated into other programs, including memory constrained embedded systems. Ficl conforms to the 1994 ANSI Standard for Forth, and provides several useful extensions including OOP that can wrap compiled code and hardware interfaces.
Unlike Lua or Python, Ficl acts as a component of your system: you feed it stuff to do, it does the stuff, and comes back to you for more. You can export compiled code to Ficl, execute Ficl code from your compiled code, or interact with a read-execute-print loop. Your choice. Ficl includes a simple but capable object model that can wrap existing data structures.
Ficl vs. other Interpreters
Where language interpreters usually view themselves as the center of the system, Ficl acts as a component of the system. It is easy to export compiled code to Ficl in the style of TCL, or to invoke Ficl code from a compiled module. This allows you to do incremental development in a way that combines the best features of threaded languages (rapid development, quick code/test/debug cycle, reasonably fast) with the best features of C (everyone knows it, easier to support large blocks of code, efficient, type checking). In addition, Ficl provides a simple and powerful object model that can act as an object oriented adapter for code written in C/C++.Ficl Design goals
- Scripting, prototyping, and extension language for systems written also in C/C++
- Target 32 & 64 bit processors, including embedded systems with limited memory
- Wrap functions and data structures written in C/C++
- Conform to the Forth DPANS 94
- Minimize porting effort - require an ANSI C runtime environment and minimal glue code
- Provide Object Oriented extensions that can wrap system functions and structures
References: More information on Ficl
- Web home of Ficl
- Ficl Internals
- Ficl OOP extension
- Prefix parser extension
- Local variable extension
- Debugger
- OO in C background notes
- Manuscript of Ficl article for January 1999 Dr. Dobb's Journal
- 1998 FORML Conference paper - OO Programming in Ficl
Forth and Threaded Interpretive Languages
- An Introduction to Forth using Stack Flow (start here if you're new to Forth)
- Phil Burk's Forth Tutorial
- An excellent Forth Primer by Hans Bezemer
- Anton Ertl's description of Threaded Code
- Draft Proposed American National Standard for Forth surprisingly readable
- Forth literature index on Taygeta
- Forth Interest Group
LICENSE and DISCLAIMER
Copyright (c) 1997-2026 John Sadler, All rights reserved.
I am interested in hearing from anyone who uses ficl. If you have a problem, a success story, a defect, an enhancement request, or if you would like to contribute to a ficl release, please contact me on Sourceforge.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Getting Started: Porting Ficl to your system
To install ficl on your target system, you need an ANSI C compiler (C11 or newer) and its runtime library. System dependent code is isolated to a few functions that you need to implement for your system. See sysdep.h for build controls.Edit the definitions (in sysdep.c) of ficlMalloc, ficlFree, ficlRealloc, and ficlTextOut for your application and target. Use testmain.c as a guide to installing the ficl system and one or more virtual machines into your code.
Ficl includes portable double precision math routines that work for 32 and 64 bit machines. You may replace them with machine-dependent versions by #defining PORTABLE_LONGMULDIV to 0 in sysdep.h and implementing your versions of ficlLongMul and ficlLongDiv in sysdep.c.
Build controls
The file sysdep.h contains default values for build controls. Most of these are written such that if you define them on the compiler command line, the defaults are overridden. I suggest you take the defaults on everything below the "build controls" section until you're confident of your port. Beware of declaring too small a dictionary, for example. You need about 3200 cells for a full system, about 2000 if you strip out the softwords.Softwords
Many words from the supported wordsets are written in Forth and stored as a big string that Ficl compiles when it starts. The sources for all of these words are in directory ficl/softwords. There is a Python 3 script (softcore.py) that converts the .fr files into softcore.c. See the makefile in ficl/softwords.Application Programming Interface
The following is a partial listing of functions that interface your system or program to ficl. For a complete listing, see ficl.h (heavily commented). For examples, see testmain.c and the ficlwin sources (below). See the comments in ficl.c and ficl.h for additional information, and the example in file testmain.c.- FICL_SYSTEM *ficlInitSystem(int nDictCells)
- Initializes Ficl's shared system data structures, and creates the dictionary allocating the specified number of CELLs from the heap (by a call to ficlMalloc)
- void ficlTermSystem(FICL_SYSTEM *pSys)
- Reclaims memory allocated for the ficl system including all dictionaries and all virtual machines created by vmCreate. Any uses of the memory allocation words (allocate and resize) are your problem.
- int ficlBuild(FICL_SYSTEM *pSys, char *name, FICL_CODE code, char flags)
- Create a primitive word in ficl's main dictionary with the given name, code pointer, and properties (immediate, compile only, etc) as described by the flags (see ficl.h for flag descriptions of the form FW_XXXX)
- int ficlExec(FICL_VM *pVM, char *text)
- Feed the specified C string ('\0' terminated) to the given virtual machine for evaluation. Returns various exception codes (VM_XXXX in ficl.h) to indicate the reason for returning. Normal exit condition is VM_OUTOFTEXT, indicating that the VM consumed the string successfully and is back for more. ficlExec calls can be nested, and the function itself is re-entrant, but note that a VM is static, so you have to take reasonable precautions (for example, use one VM per thread in a multithreaded system if you want multiple threads to be able to execute commands).
- int ficlExecC(FICL_VM *pVM, char *text, int nChars)
- Same as ficlExec, but takes a count indicating the length of the supplied string. Setting nChars to -1 is equivalent to ficlExec (expects '\0' termination).
- int ficlExecXT(FICL_VM *pVM, FICL_WORD *pFW)
- Same as ficlExec, but takes a pointer to a FICL_WORD instead of a string. Executes the word and returns after it has finished. If executing the word results in an exception, this function will re-throw the same code if it is nested under another ficlExec family function, or return the exception code directly if not. This function is useful if you need to execute the same word repeatedly - you save the dictionary search and outer interpreter overhead.
- void ficlFreeVM(FICL_VM *pVM)
- Removes the VM in question from the system VM list and deletes the memory allocated to it. This is an optional call, since ficlTermSystem will do this cleanup for you. This function is handy if you're going to do a lot of dynamic creation of VMs.
- FICL_VM *ficlNewVM(FICL_SYSTEM *pSys)
- Create, initialize, and return a VM from the heap using ficlMalloc. Links the VM into the system VM list for later reclamation by ficlTermSystem.
- FICL_WORD *ficlLookup(FICL_SYSTEM *pSys, char *name)
- Returns the address (also known as an XT in this case) of the specified word in the main dictionary. If not found, returns NULL. The address can be used in a call to ficlExecXT.
- FICL_DICT *ficlGetDict(FICL_SYSTEM *pSys)
- Returns a pointer to the main system dictionary, or NULL if the system is uninitialized.
- FICL_DICT *ficlGetEnv(FICL_SYSTEM *pSys)
- Returns a pointer to the environment dictionary. This dictionary stores information that describes this implementation as required by the Standard.
- void ficlSetEnv(FICL_SYSTEM *pSys, char *name, UNS32 value)
- Enters a new constant into the environment dictionary, with the specified name and value.
- void ficlSetEnvD(FICL_SYSTEM *pSys, char *name, UNS32 hi, UNS32 lo)
- Enters a new double-cell constant into the environment dictionary with the specified name and value.
- FICL_DICT *ficlGetLoc(FICL_SYSTEM *pSys)
- Returns a pointer to the locals dictionary. This function is defined only if FICL_WANT_LOCALS is #defined as non-zero (see sysdep.h). The locals dictionary is the symbol table for local variables.
- void ficlCompileCore(FICL_SYSTEM *pSys)
- Defined in words.c, this function builds ficl's primitives.
- void ficlCompileSoftCore(FICL_SYSTEM *pSys)
- Defined in softcore.c, this function builds ANS required words and ficl extras by evaluating a text string. Python3 script softcore.py generates the string in softcore.c from .fr files in ficl/softcore.
Ficl Internals
Major Data Structures
A running memory image of Ficl consists of one or more FICL_SYSTEMs, each of which owns exactly one dictionary (FICL_DICT), and one or more virtual machines (FICL_VM). Each VM owns two stacks (FICL_STACK) - one for parameters (the parameter stack) and one for return addresses (the return stack). Ficl is a permissive, untyped language by nature, so its fundamental unit of storage is a CELL: a chunk of memory large enough to hold an address or a scalar type.
FICL_SYSTEM
The system structure associates one or more virtual machines with a dictionary. All FICL_SYSTEMS include a link pointer that is used to keep track of every allocated system so that memory can be freed by ficlTermSystem. Each system contains a list of virtual machines associated with it. Each system has at least one virtual machine. In a typical implementation, there is one virtual machine per native OS thread, and there may be several VMs sharing a single FICL_SYSTEM, or one FICL_SYSTEM per VM if the implementation needs to support multiple user sessions in a robust way. A FICL_SYSTEM also includes a special dictionary for local variable support (if enabled by FICL_WANT_LOCALS) and another for environment variable support. Environment variables describe the configuration of the system in conformance with American National Standard Forth (ANS Forth).FICL_DICT
A dictionary manages a fixed-size block of contiguous memory. It serves two roles: to keep track of allocated memory, and to collect symbol tables called wordlists. Each dictionary contains at least one wordlist. The dictionary organized memory (perhaps this is too kind) as an array of CELLs that grows from low memory to high memory within fixed limits determined by the FICL_DEFAULT_DICT parameter in sysdep.h. A wordlist is the controlling structure of a Ficl symbol table. Each wordlist is a hash table containing pointers to FICL_WORDs. Each FICL_WORD associates a pointer to code with one or more CELLs of the dictionay. Each word usually has a name as well, but this is not required. It is possible to create anonymous words using :NONAME. Each word's code pointer determines that word's runtime behavior, and by implication the purpose of its payload data. Some words interpret their payload as a list of Ficl words, and execute them. This is how new behaviors of the language are defined. Other words view their payload field as a location in which one or more CELLs can be stored (VARIABLEs, for example). At runtime, such words push the address of their payload area onto the parameter stack.FICL_VM
The virtual machine collects state related to execution of Ficl words. Each VM includes registers used by the inner interpreter, some state variables (AKA user variables) such as the current numeric base, and a jmpbuf. A VM has a pointer to the FICL_SYSTEM of which it is a part. It also has a pointer to an incoming text string that it is interpreting. There are VM methods that excute a word given its address (xt), and ones that interpret a text string.FICL_STACK
Each VM owns a parameter stack, a return stack, and if float support is enabled, a float parameter stack. Parameters, return addresses, and floats are all CELL sized, and values may be moved back and forth among stacks using various Ficl words for that purpose.Inner Interpreter: Example Execution
This example shows how the inner interpreter executes a simple colon definition with control flow. The word below computes a factorial using a counted loop and a running accumulator.
: fact ( n -- n! )
1 swap 1+ 1 ?DO
I *
LOOP
;
Ficl stores colon definitions as a payload of execution tokens (XTs). In simplified form, the payload for fact looks like this:
XT (literal) 1 XT swap XT (literal) 1 XT + XT (?do) [exit address] XT I XT * XT (loop) [branch address] XT (;)
When C code calls ficlExecXT with the fact word, it sets up a nested exception frame, pushes the exit-inner sentinel on the IP stack, and then enters the inner loop. The inner loop walks the XT list until (;) triggers VM_INNEREXIT.
If an XT in the payload refers to a colon definition, the inner loop executes its code like any other word. The callee pushes the current instruction pointer, switches to its own payload, and returns to the caller when (;) pops the saved IP.
- Setup Save the current pState and runningWord, install a new jmp_buf, and push pExitInner onto the IP stack.
- Execute vmExecute positions the IP at the word's payload, then vmInnerLoop executes XTs in order.
- Looping (?do) initializes the loop parameters, I fetches the loop index, and (loop) advances or exits the loop.
- Exit (;) throws VM_INNEREXIT, the inner loop unwinds, and ficlExecXT restores the previous pState.
Ficl extras
Number syntax
You can precede a number with "0x", as in C, and it will be interpreted as a hex value regardless of the value ofBASE. Likewise, numbers prefixed with "0d" will be interpreted as
decimal values. Example:
ok> decimal 123 . cr 123 ok> 0x123 . cr 291 ok> 0x123 x. cr 123Note: ficl2.05 and later - this behavior is controlled by the prefix parser defined in
prefix.c. You can add other prefixes by defining handlers for
them in ficl or C.
The SEARCH wordset and Ficl extensions
Ficl implements many of the search order words in terms of two primitives called >SEARCH and SEARCH>. As
their names suggest (assuming you're familiar with Forth), they push and pop the search order stack.
The standard does not appear to specify any conditions under which the search order is reset to a sane state. Ficl resets the search order to its default state whenever ABORT happens. This includes stack underflows and overflows. QUIT does not affect the search order. The minimum search order (set by ONLY) is equivalent to
FORTH-WORDLIST 1 SET-ORDER
There is a default maximum of 16 wordlists in the search order. This can be changed by redefining FICL_DEFAULT_VOCS (declared in sysdep.h).
Note: Ficl resets the search order whenever it does ABORT. If you don't like this behavior, just comment out the dictResetSearchOrder() lines in ficlExec().
-
>search ( wid -- ) - Push wid onto the search order. Many of the other search order words are written in terms of the SEARCH> and >SEARCH primitives. This word can be defined in ANS Forth as follows
- : >search >r get-order 1+ r> swap set-order ;
- search> ( -- wid )
- Pop wid off the search order (can be coded in ANS Forth as : search> get-order nip 1- set-order ; )
- ficl-set-current ( wid -- old-wid )
- Set wid as compile wordlist, leaving the previous compile wordlist on the stack
- ficl-vocabulary ( nBins "name" -- )
- Creates a ficl-wordlist with the specified number of hash table bins, binds it to the name, and associates the semantics of vocabulary with it (replaces the top wid in the search order list with its own wid when executed)
- ficl-wordlist ( nBins -- wid )
- Creates a wordlist with the specified number of hash table bins, and leaves the address of the wordlist on the stack. A ficl-wordlist behaves exactly as a regular wordlist, but it may search faster depending on the number of bins chosen and the number of words it contains at search time. As implemented in ficl, a wordlist is single threaded by default. ficl-named-wordlist takes a name for the wordlist and creates a word that pushes the wid. This is by contrast to VOCABULARY, which also has a name, but replaces the top of the search order with its wid.
- forget-wid ( wid -- )
- Iterates through the specified wordlist and unlinks all definitions whose xt addresses are greater than or equal to the value of HERE, the dictionary fill pointer.
- hide ( -- current-wid-was )
- Push the hidden wordlist onto the search order, and set it as the current compile wordlist (unsing ficl-set-current). Leaves the previous compile wordlist ID. I use this word to hide implementation factor words that have low reuse potential so that they don't clutter the default wordlist. To undo the effect of hide, execute previous set-current
- hidden ( -- wid )
- Wordlist for storing implementation factors of ficl provided words. To see what's in there, try: hide words previous set-current
- wid-get-name ( wid -- c-addr u )
- Ficl wordlists (2.05 and later) have a name property that can be assigned. This is used by ORDER to list the names of wordlists in the search order.
- wid-set-name ( c-addr wid -- )
- Ficl wordlists (2.05 and later) have a name property that can be assigned. This is used by ORDER to list the names of wordlists in the search order. The name is assumed to be a \0 terminated string (C style), which conveniently is how Ficl stores word names. See softwords/softcore.fr definition of brand-wordlist
- wid-set-super ( wid -- )
- Ficl wordlists have a parent wordlist pointer that is not specified in standard Forth. Ficl initializes this pointer to NULL whenever it creates a wordlist, so it ordinarily has no effect. This word sets the parent pointer to the wordlist specified on the top of the stack. Ficl's implementation of SEARCH-WORDLIST will chain backward through the parent link of the wordlist when searching. This simplifies Ficl's object model in that the search order does not need to reflect an object's class hierarchy when searching for a method. It is possible to implement Ficl object syntax in strict ANS Forth, but method finders need to manipulate the search order explicitly.
User variables
- user ( -- ) name
- Create a user variable with the given name. User variables are virtual machine local. Each VM allocates a fixed amount of storage for them. You can change the maximum number of user variables allowed by defining FICL_USER_CELLS on your compiiler's command line. Default is 16 user cells. User variables behave like VARIABLEs in all other respects (you use @ and ! on them, for example). Example:
-
- user current-class
- 0 current-class !
Miscellaneous
- -roll ( xu xu-1 ... x0 u -- x0 xu-1 ... x1 )
- Rotate u+1 items on top of the stack after removing u. Rotation is in the opposite sense to ROLL
- -rot ( a b c -- c a b )
- Rotate the top three stack entries, moving the top of stack to third place. I like to think of this as 11/2swap because it's good for tucking a single cell value behind a cell-pair (like an object).
- .env ( -- )
- List all environment variables of the system
- .hash ( -- )
- List hash table performance statistics of the wordlist that's first in the search order
- .ver ( -- )
- Display ficl version ID
- >name ( xt -- c-addr u )
- Convert a word's execution token into the address and length of its name
- body> ( a-addr -- xt )
- Reverses the effect of CORE word >body (converts a parameter field address to an execution token)
- compile-only
- Mark the most recently defined word as being executable only while in compile state. Many immediate words have this property.
- empty ( -- )
- Empty the parameter stack
- endif
- Synonym for THEN
- last-word ( -- xt )
- Pushes the xt address of the most recently defined word. This applies to colon definitions, constants, variables, and words that use create. You can print the name of the most recently defined word with
- last-word >name type
- parse-word ( <spaces>name -- c-addr u )
- Skip leading spaces and parse name delimited by a space. c-addr is the address within the input buffer and u is the length of the selected string. If the parse area is empty, the resulting string has a zero length. (From the Standard)
- q@ ( addr -- x )
- Fetch a 32 bit quantity from the specified address
- q! ( x addr -- )
- Store a 32 bit quantity to the specified address
- w@ ( addr -- x )
- Fetch a 16 bit quantity from the specified address
- w! ( x addr -- )
- Store a 16 bit quantity to the specified address (the low 16 bits of the given value)
- x. ( x -- )
- Pop and display the value in hex format, regardless of the current value of BASE
Extra words defined in testmain.c
- break ( -- )
- Does nothing - just a handy place to set a debugger breakpoint
- cd ( "directory-name<newline>" -- )
- Executes the Win32 chdir() function, changing the program's logged directory.
- clock ( -- now )
- Wrapper for the ANSI C clock() function. Returns the number of clock ticks elapsed since process start.
- clocks/sec ( -- clocks_per_sec )
- Pushes the number of ticks in a second as returned by clock
- load ( "filename<newline>" -- )
- Opens the Forth source file specified and loads it one line at a time, like INCLUDED (FILE)
- pwd ( -- )
- Prints the current working directory as set by cd
- system ( "command<newline>" -- )
- Issues a command to a shell; implemented with the Win32 system() call.
- spewhash ( "filename<newline>" -- )
- Dumps all threads of the current compilation wordlist to the specified text file. This was useful when I thought there might be some point in attempting to optimize the hash function. I no longer harbor those illusions.
ANS Required Information
- ANS Forth System
- Providing names from the Core Extensions word set
- Providing the Exception word set
- Providing names from the Exception Extensions word set
- Providing the Locals word set
- Providing the Locals Extensions word set
- Providing the Memory Allocation word set
- Providing the Programming-Tools word set
- Providing names from the Programming-Tools Extensions word set
- Providing the Search-Order word set
- Providing the Search-Order Extensions word set
Implementation-defined Options
The implementation-defined items in the following list represent characteristics and choices left to the discretion of the implementor, provided that the requirements of the Standard are met. A system shall document the values for, or behaviors of, each item.-
aligned address requirements (3.1.3.3 Addresses);
System dependent. You can change the default address alignment by defining FICL_ALIGN on your compiler's command line. The default value is set to 2 in sysdep.h. This causes dictionary entries and ALIGN and ALIGNED to align on 4 byte boundaries. To align on 2n byte boundaries, set FICL_ALIGN to n. -
behavior of 6.1.1320 EMIT for non-graphic characters;
Depends on target system, C runtime library, and your implementation of ficlTextOut(). -
character editing of 6.1.0695 ACCEPT and 6.2.1390 EXPECT;
None implemented in the versions supplied in words.c. Because ficlExec() is supplied a text buffer externally, it's up to your system to define how that buffer will be obtained. -
character set (3.1.2 Character types, 6.1.1320 EMIT, 6.1.1750 KEY);
Depends on target system and implementation of ficlTextOut(). -
character-aligned address requirements (3.1.3.3 Addresses);
Ficl characters are one byte each. There are no alignment requirements. -
character-set-extensions matching characteristics (3.4.2 Finding definition names);
No special processing is performed on characters beyond case-folding. Therefore, extended characters will not match their unaccented counterparts. -
conditions under which control characters match a space delimiter (3.4.1.1 Delimiters);
Ficl uses the Standard C function isspace() to distinguish space characters. The rest is up to your library vendor. -
format of the control-flow stack (3.2.3.2 Control-flow stack);
Uses the data stack -
conversion of digits larger than thirty-five (3.2.1.2 Digit conversion);
The maximum supported value of BASE is 36. Ficl will assertion fail in function ltoa of vm.c if the base is found to be larger than 36 or smaller than 2. There will be no effect if NDEBUG is defined, however, other than possibly unexpected behavior. -
display after input terminates in 6.1.0695 ACCEPT and 6.2.1390 EXPECT;
Target system dependent -
exception abort sequence (as in 6.1.0680 ABORT");
Does ABORT -
input line terminator (3.2.4.1 User input device);
Target system dependent (implementation of outer loop that calls ficlExec) -
maximum size of a counted string, in characters (3.1.3.4 Counted strings, 6.1.2450 WORD);
255 -
maximum size of a parsed string (3.4.1 Parsing);
Limited by available memory and the maximum unsigned value that can fit in a CELL (232-1). -
maximum size of a definition name, in characters (3.3.1.2 Definition names);
Ficl stores the first 31 characters of a definition name. -
maximum string length for 6.1.1345 ENVIRONMENT?, in characters;
Same as maximum definition name length -
method of selecting 3.2.4.1 User input device;
None supported. This is up to the target system -
method of selecting 3.2.4.2 User output device;
None supported. This is up to the target system - methods of dictionary compilation (3.3 The Forth dictionary);
-
number of bits in one address unit (3.1.3.3 Addresses);
Target system dependent. Ficl generally supports processors that can address 8 bit quantities, but there is no dependency that I'm aware of. -
number representation and arithmetic (3.2.1.1 Internal number representation);
System dependent. Ficl represents a CELL internally as a union that can hold INT32 (a signed 32 bit scalar value), UNS32 (32 bits unsigned), and an untyped pointer. No specific byte ordering is assumed. -
ranges for n, +n, u, d, +d, and ud (3.1.3 Single-cell types, 3.1.4 Cell-pair types);
Assuming a 32 bit implementation, range for signed single-cell values is -231..231-1. Range for unsigned single cell values is 0..232-1. Range for signed double-cell values is -263..263-1. Range for unsigned single cell values is 0..264-1. -
read-only data-space regions (3.3.3 Data space);
None -
size of buffer at 6.1.2450 WORD (3.3.3.6 Other transient regions);
Default is 255. Depends on the setting of nPAD in ficl.h. -
size of one cell in address units (3.1.3 Single-cell types);
System dependent, generally four. -
size of one character in address units (3.1.2 Character types);
System dependent, generally one. -
size of the keyboard terminal input buffer (3.3.3.5 Input buffers);
This buffer is supplied by the host program. Ficl imposes no practical limit. -
size of the pictured numeric output string buffer (3.3.3.6 Other transient regions);
Default is 255 characters. Depends on the setting of nPAD in ficl.h. -
size of the scratch area whose address is returned by 6.2.2000 PAD (3.3.3.6 Other transient regions);
Not presently supported -
system case-sensitivity characteristics (3.4.2 Finding definition names);
Ficl is not case sensitive -
system prompt (3.4 The Forth text interpreter, 6.1.2050 QUIT);
"ok>" -
type of division rounding (3.2.2.1 Integer division, 6.1.0100 */, 6.1.0110 */MOD, 6.1.0230 /, 6.1.0240 /MOD, 6.1.1890 MOD);
Symmetric rounding (toward zero) -
values of 6.1.2250 STATE when true;
One (no others) -
values returned after arithmetic overflow (3.2.2.2 Other integer operations);
System dependent. Ficl makes no special checks for overflow. -
whether the current definition can be found after 6.1.1250 DOES> (6.1.0450 :).
No. Definitions are unsmudged after ; only, and only then if no control structure matching problems have been detected.
Ambiguous Conditions
A system shall document the system action taken upon each of the general or specific ambiguous conditions identified in this Standard. See 3.4.4 Possible actions on an ambiguous condition.The following general ambiguous conditions could occur because of a combination of factors:
-
a name is neither a valid definition name nor a valid number during text interpretation (3.4 The Forth text interpreter);
Ficl does ABORT and prints the name followed by " not found". -
a definition name exceeded the maximum length allowed (3.3.1.2 Definition names);
Ficl stores the first 31 characters of the definition name, and uses all characters of the name in computing its hash code. The actual length of the name, up to 255 characters, is stored in the definition's length field. -
addressing a region not listed in 3.3.3 Data Space;
No problem: all addresses in ficl are absolute. You can reach any address in Ficl's address space. -
argument type incompatible with specified input parameter, e.g., passing a flag to a word expecting an n (3.1 Data types);
Ficl makes no check for argument type compatibility. Effects of a mismatch vary widely depending on the specific problem and operands. -
attempting to obtain the execution token, (e.g., with 6.1.0070 ', 6.1.1550 FIND, etc.) of a definition with undefined interpretation semantics;
Ficl returns a valid token, but the result of executing that token while interpreting may be undesirable. -
dividing by zero (6.1.0100 */, 6.1.0110 */MOD, 6.1.0230 /, 6.1.0240 /MOD, 6.1.1561 FM/MOD, 6.1.1890 MOD, 6.1.2214 SM/REM, 6.1.2370 UM/MOD, 8.6.1.1820 M*/);
Results are target procesor dependent. Generally, Ficl makes no check for divide-by-zero. The target processor will probably throw an exception. -
insufficient data-stack space or return-stack space (stack overflow);
With FICL_ROBUST (sysdep.h) set >= 2, most parameter stack operations are checked for underflow and overflow. Ficl does not check the return stack. -
insufficient space for loop-control parameters;
No check - Evil results. -
insufficient space in the dictionary;
Ficl generates an error message if the dictionary is too full to create a definition header. It checks ALLOT as well, but it is possible to make an unchecked allocation request that overflows the dictionary. -
interpreting a word with undefined interpretation semantics;
Ficl protects all ANS Forth words with undefined interpretation semantics from being executed while in interpret state. It is possible to defeat this protection using ' (tick) and EXECUTE, though. -
modifying the contents of the input buffer or a string literal (3.3.3.4 Text-literal regions, 3.3.3.5 Input buffers);
Varies depending on the nature of the buffer. The input buffer is supplied by ficl's host function, and may reside in read-only memory. If so, writing the input buffer can ganerate an exception. String literals are stored in the dictionary, and are writable. -
overflow of a pictured numeric output string;
In the unlikely event you are able to construct a pictured numeric string of more than 255 characters, the system will be corrupted unpredictably. The buffer area that holds pictured numeric output is at the end of the virtual machine. Whatever is mapped after the offending VM in memory will be trashed, along with the heap structures that contain it. -
parsed string overflow;
Ficl does not copy parsed strings unless asked to. Ordinarily, a string parsed from the input buffer during normal interpretation is left in-place, so there is no possibility of overflow. If you ask to parse a string into the dictionary, as in SLITERAL, you need to have enough room for the string, otherwise bad things may happen. This is not usually a problem. -
producing a result out of range, e.g., multiplication (using *) results in a value too big to be represented by a single-cell integer (6.1.0090 *, 6.1.0100 */, 6.1.0110 */MOD, 6.1.0570
>NUMBER, 6.1.1561 FM/MOD, 6.1.2214 SM/REM, 6.1.2370 UM/MOD, 6.2.0970 CONVERT, 8.6.1.1820 M*/);
Value will be truncated to fit in a single cell. -
reading from an empty data stack or return stack (stack underflow);
Most stack underflows are detected and prevented if FICL_ROBUST (sysdep.h) is set to 2 or greater. Otherwise, the stack pointer and size are likely to be trashed. -
unexpected end of input buffer, resulting in an attempt to use a zero-length string as a name;
Ficl returns for a new input buffer until a non-empty one is supplied.
-
>IN greater than size of input buffer (3.4.1 Parsing)
Bad Things occur - unpredictable bacause the input buffer is supplied by the host program's outer loop. -
6.1.2120 RECURSE appears after 6.1.1250 DOES>
It finds the address of the definition before DOES> -
argument input source different than current input source for 6.2.2148 RESTORE-INPUT
Not implemented -
data space containing definitions is de-allocated (3.3.3.2 Contiguous regions)
This is OK until the cells are overwritten with something else. The dictionary maintains a hash table, and the table must be updated in order to de-allocate words without corruption. -
data space read/write with incorrect alignment (3.3.3.1 Address alignment)
Target processor dependent. Consequences include: none (Intel), address error exception (68K). -
data-space pointer not properly aligned (6.1.0150 ,, 6.1.0860 C,)
See above on data space read/write alignment -
less than u+2 stack items (6.2.2030 PICK, 6.2.2150 ROLL)
Ficl detects a stack underflow and reports it, executing ABORT, as long as FICL_ROBUST is two or larger. -
loop-control parameters not available ( 6.1.0140 +LOOP, 6.1.1680 I, 6.1.1730 J, 6.1.1760 LEAVE, 6.1.1800 LOOP, 6.1.2380 UNLOOP)
Loop initiation words are responsible for checking the stack and guaranteeing that the control parameters are pushed. Any underflows will be detected early if FICL_ROBUST is set to two or greater. Note however that Ficl only checks for return stack underflows at the end of each line of text. -
most recent definition does not have a name (6.1.1710 IMMEDIATE)
No problem. -
name not defined by 6.2.2405 VALUE used by 6.2.2295 TO
Ficl's version of TO works correctly with VALUEs, CONSTANTs and VARIABLEs. -
name not found (6.1.0070 ', 6.1.2033 POSTPONE, 6.1.2510 ['], 6.2.2530 [COMPILE])
Ficl prints an error message and does ABORT -
parameters are not of the same type (6.1.1240 DO, 6.2.0620 ?DO, 6.2.2440 WITHIN)
No check. Results vary depending on the specific problem. -
6.1.2033 POSTPONE or 6.2.2530 [COMPILE] applied to 6.2.2295 TO
The word is postponed correctly. -
string longer than a counted string returned by 6.1.2450 WORD
Ficl stores the first FICL_STRING_MAX-1 chars in the destination buffer. (The extra character is the trailing space required by the standard. Yuck.) -
u greater than or equal to the number of bits in a cell (6.1.1805 LSHIFT, 6.1.2162 RSHIFT)
Depends on target process or and C runtime library implementations of the << and >> operators on unsigned values. For I386, the processor appears to shift modulo the number of bits in a cell. - word not defined via 6.1.1000 CREATE (6.1.0550 >BODY, 6.1.1250 DOES>)
-
words improperly used outside 6.1.0490 <# and 6.1.0040 #> (6.1.0030 #, 6.1.0050 #S, 6.1.1670 HOLD, 6.1.2210 SIGN)
Don't. CREATE reserves a field in words it builds for DOES>to fill in. If you use DOES> on a word not made by CREATE, it will overwrite the first cell of its parameter area. That's probably not what you want. Likewise, pictured numeric words assume that there is a string under construction in the VM's scratch buffer. If that's not the case, results may be unpleasant.
Locals Implementation-defined options
-
maximum number of locals in a definition (13.3.3 Processing locals, 13.6.2.1795 LOCALS|)
Default is 16. Change by redefining FICL_MAX_LOCALS, defined in sysdep.h
Locals Ambiguous conditions
-
executing a named local while in interpretation state (13.6.1.0086 (LOCAL))
Locals can be found in interpretation state while in the context of a definition under construction. Under these circumstances, locals behave correctly. Locals are not visible at all outside the scope of a definition. -
name not defined by VALUE or LOCAL (13.6.1.2295 TO)
See the CORE ambiguous conditions, above (no change)
Programming Tools Implementation-defined options
-
source and format of display by 15.6.1.2194 SEE
SEE de-compiles definitions from the dictionary. Because Ficl words are threaded by their header addresses, it is very straightforward to print the name and other characteristics of words in a definition. Primitives are so noted. Colon definitions are decompiled, but branch target labels are not reconstructed. Literals and string literals are so noted, and their contents displayed.
Search Order Implementation-defined options
-
maximum number of word lists in the search order (16.3.3 Finding definition names, 16.6.1.2197 SET-ORDER)
Defaults to 16. Can be changed by redefining FICL_DEFAULT_VOCS, declared in sysdep.h -
minimum search order (16.6.1.2197 SET-ORDER, 16.6.2.1965 ONLY)
Equivalent to FORTH-WORDLIST 1 SET-ORDER
Search Order Ambiguous conditions
-
changing the compilation word list (16.3.3 Finding definition names)
Ficl stores a link to the current definition independently of the compile wordlist while it is being defined, and links it into the compile wordlist only after the definition completes successfully. Changing the compile wordlist mid-definition will cause the definition to link into the new compile wordlist. -
search order empty (16.6.2.2037 PREVIOUS)
Ficl prints an error message if the search order underflows, and resets the order to its default state. -
too many word lists in search order (16.6.2.0715 ALSO)
Ficl prints an error message if the search order overflows, and resets the order to its default state.