1*ca987d46SWarner Losh /******************************************************************* 2*ca987d46SWarner Losh s y s d e p . h 3*ca987d46SWarner Losh ** Forth Inspired Command Language 4*ca987d46SWarner Losh ** Author: John Sadler (john_sadler@alum.mit.edu) 5*ca987d46SWarner Losh ** Created: 16 Oct 1997 6*ca987d46SWarner Losh ** Ficl system dependent types and prototypes... 7*ca987d46SWarner Losh ** 8*ca987d46SWarner Losh ** Note: Ficl also depends on the use of "assert" when 9*ca987d46SWarner Losh ** FICL_ROBUST is enabled. This may require some consideration 10*ca987d46SWarner Losh ** in firmware systems since assert often 11*ca987d46SWarner Losh ** assumes stderr/stdout. 12*ca987d46SWarner Losh ** $Id: sysdep.h,v 1.11 2001/12/05 07:21:34 jsadler Exp $ 13*ca987d46SWarner Losh *******************************************************************/ 14*ca987d46SWarner Losh /* 15*ca987d46SWarner Losh ** Copyright (c) 1997-2001 John Sadler (john_sadler@alum.mit.edu) 16*ca987d46SWarner Losh ** All rights reserved. 17*ca987d46SWarner Losh ** 18*ca987d46SWarner Losh ** Get the latest Ficl release at http://ficl.sourceforge.net 19*ca987d46SWarner Losh ** 20*ca987d46SWarner Losh ** I am interested in hearing from anyone who uses ficl. If you have 21*ca987d46SWarner Losh ** a problem, a success story, a defect, an enhancement request, or 22*ca987d46SWarner Losh ** if you would like to contribute to the ficl release, please 23*ca987d46SWarner Losh ** contact me by email at the address above. 24*ca987d46SWarner Losh ** 25*ca987d46SWarner Losh ** L I C E N S E and D I S C L A I M E R 26*ca987d46SWarner Losh ** 27*ca987d46SWarner Losh ** Redistribution and use in source and binary forms, with or without 28*ca987d46SWarner Losh ** modification, are permitted provided that the following conditions 29*ca987d46SWarner Losh ** are met: 30*ca987d46SWarner Losh ** 1. Redistributions of source code must retain the above copyright 31*ca987d46SWarner Losh ** notice, this list of conditions and the following disclaimer. 32*ca987d46SWarner Losh ** 2. Redistributions in binary form must reproduce the above copyright 33*ca987d46SWarner Losh ** notice, this list of conditions and the following disclaimer in the 34*ca987d46SWarner Losh ** documentation and/or other materials provided with the distribution. 35*ca987d46SWarner Losh ** 36*ca987d46SWarner Losh ** THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 37*ca987d46SWarner Losh ** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 38*ca987d46SWarner Losh ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 39*ca987d46SWarner Losh ** ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 40*ca987d46SWarner Losh ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 41*ca987d46SWarner Losh ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 42*ca987d46SWarner Losh ** OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 43*ca987d46SWarner Losh ** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 44*ca987d46SWarner Losh ** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 45*ca987d46SWarner Losh ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 46*ca987d46SWarner Losh ** SUCH DAMAGE. 47*ca987d46SWarner Losh */ 48*ca987d46SWarner Losh 49*ca987d46SWarner Losh 50*ca987d46SWarner Losh #if !defined (__SYSDEP_H__) 51*ca987d46SWarner Losh #define __SYSDEP_H__ 52*ca987d46SWarner Losh 53*ca987d46SWarner Losh #include <sys/types.h> 54*ca987d46SWarner Losh 55*ca987d46SWarner Losh #include <stddef.h> /* size_t, NULL */ 56*ca987d46SWarner Losh #include <setjmp.h> 57*ca987d46SWarner Losh #include <assert.h> 58*ca987d46SWarner Losh 59*ca987d46SWarner Losh #if !defined IGNORE /* Macro to silence unused param warnings */ 60*ca987d46SWarner Losh #define IGNORE(x) (void)x 61*ca987d46SWarner Losh #endif 62*ca987d46SWarner Losh 63*ca987d46SWarner Losh /* 64*ca987d46SWarner Losh ** TRUE and FALSE for C boolean operations, and 65*ca987d46SWarner Losh ** portable 32 bit types for CELLs 66*ca987d46SWarner Losh ** 67*ca987d46SWarner Losh */ 68*ca987d46SWarner Losh #if !defined TRUE 69*ca987d46SWarner Losh #define TRUE 1 70*ca987d46SWarner Losh #endif 71*ca987d46SWarner Losh #if !defined FALSE 72*ca987d46SWarner Losh #define FALSE 0 73*ca987d46SWarner Losh #endif 74*ca987d46SWarner Losh 75*ca987d46SWarner Losh /* 76*ca987d46SWarner Losh ** System dependent data type declarations... 77*ca987d46SWarner Losh */ 78*ca987d46SWarner Losh #if !defined INT32 79*ca987d46SWarner Losh #define INT32 long 80*ca987d46SWarner Losh #endif 81*ca987d46SWarner Losh 82*ca987d46SWarner Losh #if !defined UNS32 83*ca987d46SWarner Losh #define UNS32 unsigned long 84*ca987d46SWarner Losh #endif 85*ca987d46SWarner Losh 86*ca987d46SWarner Losh #if !defined UNS16 87*ca987d46SWarner Losh #define UNS16 unsigned short 88*ca987d46SWarner Losh #endif 89*ca987d46SWarner Losh 90*ca987d46SWarner Losh #if !defined UNS8 91*ca987d46SWarner Losh #define UNS8 unsigned char 92*ca987d46SWarner Losh #endif 93*ca987d46SWarner Losh 94*ca987d46SWarner Losh #if !defined NULL 95*ca987d46SWarner Losh #define NULL ((void *)0) 96*ca987d46SWarner Losh #endif 97*ca987d46SWarner Losh 98*ca987d46SWarner Losh /* 99*ca987d46SWarner Losh ** FICL_UNS and FICL_INT must have the same size as a void* on 100*ca987d46SWarner Losh ** the target system. A CELL is a union of void*, FICL_UNS, and 101*ca987d46SWarner Losh ** FICL_INT. 102*ca987d46SWarner Losh ** (11/2000: same for FICL_FLOAT) 103*ca987d46SWarner Losh */ 104*ca987d46SWarner Losh #if !defined FICL_INT 105*ca987d46SWarner Losh #define FICL_INT INT32 106*ca987d46SWarner Losh #endif 107*ca987d46SWarner Losh 108*ca987d46SWarner Losh #if !defined FICL_UNS 109*ca987d46SWarner Losh #define FICL_UNS UNS32 110*ca987d46SWarner Losh #endif 111*ca987d46SWarner Losh 112*ca987d46SWarner Losh #if !defined FICL_FLOAT 113*ca987d46SWarner Losh #define FICL_FLOAT float 114*ca987d46SWarner Losh #endif 115*ca987d46SWarner Losh 116*ca987d46SWarner Losh /* 117*ca987d46SWarner Losh ** Ficl presently supports values of 32 and 64 for BITS_PER_CELL 118*ca987d46SWarner Losh */ 119*ca987d46SWarner Losh #if !defined BITS_PER_CELL 120*ca987d46SWarner Losh #define BITS_PER_CELL 32 121*ca987d46SWarner Losh #endif 122*ca987d46SWarner Losh 123*ca987d46SWarner Losh #if ((BITS_PER_CELL != 32) && (BITS_PER_CELL != 64)) 124*ca987d46SWarner Losh Error! 125*ca987d46SWarner Losh #endif 126*ca987d46SWarner Losh 127*ca987d46SWarner Losh typedef struct 128*ca987d46SWarner Losh { 129*ca987d46SWarner Losh FICL_UNS hi; 130*ca987d46SWarner Losh FICL_UNS lo; 131*ca987d46SWarner Losh } DPUNS; 132*ca987d46SWarner Losh 133*ca987d46SWarner Losh typedef struct 134*ca987d46SWarner Losh { 135*ca987d46SWarner Losh FICL_UNS quot; 136*ca987d46SWarner Losh FICL_UNS rem; 137*ca987d46SWarner Losh } UNSQR; 138*ca987d46SWarner Losh 139*ca987d46SWarner Losh typedef struct 140*ca987d46SWarner Losh { 141*ca987d46SWarner Losh FICL_INT hi; 142*ca987d46SWarner Losh FICL_INT lo; 143*ca987d46SWarner Losh } DPINT; 144*ca987d46SWarner Losh 145*ca987d46SWarner Losh typedef struct 146*ca987d46SWarner Losh { 147*ca987d46SWarner Losh FICL_INT quot; 148*ca987d46SWarner Losh FICL_INT rem; 149*ca987d46SWarner Losh } INTQR; 150*ca987d46SWarner Losh 151*ca987d46SWarner Losh 152*ca987d46SWarner Losh /* 153*ca987d46SWarner Losh ** B U I L D C O N T R O L S 154*ca987d46SWarner Losh */ 155*ca987d46SWarner Losh 156*ca987d46SWarner Losh #if !defined (FICL_MINIMAL) 157*ca987d46SWarner Losh #define FICL_MINIMAL 0 158*ca987d46SWarner Losh #endif 159*ca987d46SWarner Losh #if (FICL_MINIMAL) 160*ca987d46SWarner Losh #define FICL_WANT_SOFTWORDS 0 161*ca987d46SWarner Losh #define FICL_WANT_FILE 0 162*ca987d46SWarner Losh #define FICL_WANT_FLOAT 0 163*ca987d46SWarner Losh #define FICL_WANT_USER 0 164*ca987d46SWarner Losh #define FICL_WANT_LOCALS 0 165*ca987d46SWarner Losh #define FICL_WANT_DEBUGGER 0 166*ca987d46SWarner Losh #define FICL_WANT_OOP 0 167*ca987d46SWarner Losh #define FICL_PLATFORM_EXTEND 0 168*ca987d46SWarner Losh #define FICL_MULTITHREAD 0 169*ca987d46SWarner Losh #define FICL_ROBUST 0 170*ca987d46SWarner Losh #define FICL_EXTENDED_PREFIX 0 171*ca987d46SWarner Losh #endif 172*ca987d46SWarner Losh 173*ca987d46SWarner Losh /* 174*ca987d46SWarner Losh ** FICL_PLATFORM_EXTEND 175*ca987d46SWarner Losh ** Includes words defined in ficlCompilePlatform 176*ca987d46SWarner Losh */ 177*ca987d46SWarner Losh #if !defined (FICL_PLATFORM_EXTEND) 178*ca987d46SWarner Losh #define FICL_PLATFORM_EXTEND 1 179*ca987d46SWarner Losh #endif 180*ca987d46SWarner Losh 181*ca987d46SWarner Losh 182*ca987d46SWarner Losh /* 183*ca987d46SWarner Losh ** FICL_WANT_FILE 184*ca987d46SWarner Losh ** Includes the FILE and FILE-EXT wordset and associated code. Turn this off if you do not 185*ca987d46SWarner Losh ** have a filesystem! 186*ca987d46SWarner Losh ** Contributed by Larry Hastings 187*ca987d46SWarner Losh */ 188*ca987d46SWarner Losh #if !defined (FICL_WANT_FILE) 189*ca987d46SWarner Losh #define FICL_WANT_FILE 0 190*ca987d46SWarner Losh #endif 191*ca987d46SWarner Losh 192*ca987d46SWarner Losh /* 193*ca987d46SWarner Losh ** FICL_WANT_FLOAT 194*ca987d46SWarner Losh ** Includes a floating point stack for the VM, and words to do float operations. 195*ca987d46SWarner Losh ** Contributed by Guy Carver 196*ca987d46SWarner Losh */ 197*ca987d46SWarner Losh #if !defined (FICL_WANT_FLOAT) 198*ca987d46SWarner Losh #define FICL_WANT_FLOAT 0 199*ca987d46SWarner Losh #endif 200*ca987d46SWarner Losh 201*ca987d46SWarner Losh /* 202*ca987d46SWarner Losh ** FICL_WANT_DEBUGGER 203*ca987d46SWarner Losh ** Inludes a simple source level debugger 204*ca987d46SWarner Losh */ 205*ca987d46SWarner Losh #if !defined (FICL_WANT_DEBUGGER) 206*ca987d46SWarner Losh #define FICL_WANT_DEBUGGER 1 207*ca987d46SWarner Losh #endif 208*ca987d46SWarner Losh 209*ca987d46SWarner Losh /* 210*ca987d46SWarner Losh ** FICL_EXTENDED_PREFIX enables a bunch of extra prefixes in prefix.c and prefix.fr (if 211*ca987d46SWarner Losh ** included as part of softcore.c) 212*ca987d46SWarner Losh */ 213*ca987d46SWarner Losh #if !defined FICL_EXTENDED_PREFIX 214*ca987d46SWarner Losh #define FICL_EXTENDED_PREFIX 0 215*ca987d46SWarner Losh #endif 216*ca987d46SWarner Losh 217*ca987d46SWarner Losh /* 218*ca987d46SWarner Losh ** User variables: per-instance variables bound to the VM. 219*ca987d46SWarner Losh ** Kinda like thread-local storage. Could be implemented in a 220*ca987d46SWarner Losh ** VM private dictionary, but I've chosen the lower overhead 221*ca987d46SWarner Losh ** approach of an array of CELLs instead. 222*ca987d46SWarner Losh */ 223*ca987d46SWarner Losh #if !defined FICL_WANT_USER 224*ca987d46SWarner Losh #define FICL_WANT_USER 1 225*ca987d46SWarner Losh #endif 226*ca987d46SWarner Losh 227*ca987d46SWarner Losh #if !defined FICL_USER_CELLS 228*ca987d46SWarner Losh #define FICL_USER_CELLS 16 229*ca987d46SWarner Losh #endif 230*ca987d46SWarner Losh 231*ca987d46SWarner Losh /* 232*ca987d46SWarner Losh ** FICL_WANT_LOCALS controls the creation of the LOCALS wordset and 233*ca987d46SWarner Losh ** a private dictionary for local variable compilation. 234*ca987d46SWarner Losh */ 235*ca987d46SWarner Losh #if !defined FICL_WANT_LOCALS 236*ca987d46SWarner Losh #define FICL_WANT_LOCALS 1 237*ca987d46SWarner Losh #endif 238*ca987d46SWarner Losh 239*ca987d46SWarner Losh /* Max number of local variables per definition */ 240*ca987d46SWarner Losh #if !defined FICL_MAX_LOCALS 241*ca987d46SWarner Losh #define FICL_MAX_LOCALS 16 242*ca987d46SWarner Losh #endif 243*ca987d46SWarner Losh 244*ca987d46SWarner Losh /* 245*ca987d46SWarner Losh ** FICL_WANT_OOP 246*ca987d46SWarner Losh ** Inludes object oriented programming support (in softwords) 247*ca987d46SWarner Losh ** OOP support requires locals and user variables! 248*ca987d46SWarner Losh */ 249*ca987d46SWarner Losh #if !(FICL_WANT_LOCALS) || !(FICL_WANT_USER) 250*ca987d46SWarner Losh #if !defined (FICL_WANT_OOP) 251*ca987d46SWarner Losh #define FICL_WANT_OOP 0 252*ca987d46SWarner Losh #endif 253*ca987d46SWarner Losh #endif 254*ca987d46SWarner Losh 255*ca987d46SWarner Losh #if !defined (FICL_WANT_OOP) 256*ca987d46SWarner Losh #define FICL_WANT_OOP 1 257*ca987d46SWarner Losh #endif 258*ca987d46SWarner Losh 259*ca987d46SWarner Losh /* 260*ca987d46SWarner Losh ** FICL_WANT_SOFTWORDS 261*ca987d46SWarner Losh ** Controls inclusion of all softwords in softcore.c 262*ca987d46SWarner Losh */ 263*ca987d46SWarner Losh #if !defined (FICL_WANT_SOFTWORDS) 264*ca987d46SWarner Losh #define FICL_WANT_SOFTWORDS 1 265*ca987d46SWarner Losh #endif 266*ca987d46SWarner Losh 267*ca987d46SWarner Losh /* 268*ca987d46SWarner Losh ** FICL_MULTITHREAD enables dictionary mutual exclusion 269*ca987d46SWarner Losh ** wia the ficlLockDictionary system dependent function. 270*ca987d46SWarner Losh ** Note: this implementation is experimental and poorly 271*ca987d46SWarner Losh ** tested. Further, it's unnecessary unless you really 272*ca987d46SWarner Losh ** intend to have multiple SESSIONS (poor choice of name 273*ca987d46SWarner Losh ** on my part) - that is, threads that modify the dictionary 274*ca987d46SWarner Losh ** at the same time. 275*ca987d46SWarner Losh */ 276*ca987d46SWarner Losh #if !defined FICL_MULTITHREAD 277*ca987d46SWarner Losh #define FICL_MULTITHREAD 0 278*ca987d46SWarner Losh #endif 279*ca987d46SWarner Losh 280*ca987d46SWarner Losh /* 281*ca987d46SWarner Losh ** PORTABLE_LONGMULDIV causes ficlLongMul and ficlLongDiv to be 282*ca987d46SWarner Losh ** defined in C in sysdep.c. Use this if you cannot easily 283*ca987d46SWarner Losh ** generate an inline asm definition 284*ca987d46SWarner Losh */ 285*ca987d46SWarner Losh #if !defined (PORTABLE_LONGMULDIV) 286*ca987d46SWarner Losh #define PORTABLE_LONGMULDIV 0 287*ca987d46SWarner Losh #endif 288*ca987d46SWarner Losh 289*ca987d46SWarner Losh /* 290*ca987d46SWarner Losh ** INLINE_INNER_LOOP causes the inner interpreter to be inline code 291*ca987d46SWarner Losh ** instead of a function call. This is mainly because MS VC++ 5 292*ca987d46SWarner Losh ** chokes with an internal compiler error on the function version. 293*ca987d46SWarner Losh ** in release mode. Sheesh. 294*ca987d46SWarner Losh */ 295*ca987d46SWarner Losh #if !defined INLINE_INNER_LOOP 296*ca987d46SWarner Losh #if defined _DEBUG 297*ca987d46SWarner Losh #define INLINE_INNER_LOOP 0 298*ca987d46SWarner Losh #else 299*ca987d46SWarner Losh #define INLINE_INNER_LOOP 1 300*ca987d46SWarner Losh #endif 301*ca987d46SWarner Losh #endif 302*ca987d46SWarner Losh 303*ca987d46SWarner Losh /* 304*ca987d46SWarner Losh ** FICL_ROBUST enables bounds checking of stacks and the dictionary. 305*ca987d46SWarner Losh ** This will detect stack over and underflows and dictionary overflows. 306*ca987d46SWarner Losh ** Any exceptional condition will result in an assertion failure. 307*ca987d46SWarner Losh ** (As generated by the ANSI assert macro) 308*ca987d46SWarner Losh ** FICL_ROBUST == 1 --> stack checking in the outer interpreter 309*ca987d46SWarner Losh ** FICL_ROBUST == 2 also enables checking in many primitives 310*ca987d46SWarner Losh */ 311*ca987d46SWarner Losh 312*ca987d46SWarner Losh #if !defined FICL_ROBUST 313*ca987d46SWarner Losh #define FICL_ROBUST 2 314*ca987d46SWarner Losh #endif 315*ca987d46SWarner Losh 316*ca987d46SWarner Losh /* 317*ca987d46SWarner Losh ** FICL_DEFAULT_STACK Specifies the default size (in CELLs) of 318*ca987d46SWarner Losh ** a new virtual machine's stacks, unless overridden at 319*ca987d46SWarner Losh ** create time. 320*ca987d46SWarner Losh */ 321*ca987d46SWarner Losh #if !defined FICL_DEFAULT_STACK 322*ca987d46SWarner Losh #define FICL_DEFAULT_STACK 128 323*ca987d46SWarner Losh #endif 324*ca987d46SWarner Losh 325*ca987d46SWarner Losh /* 326*ca987d46SWarner Losh ** FICL_DEFAULT_DICT specifies the number of CELLs to allocate 327*ca987d46SWarner Losh ** for the system dictionary by default. The value 328*ca987d46SWarner Losh ** can be overridden at startup time as well. 329*ca987d46SWarner Losh ** FICL_DEFAULT_ENV specifies the number of cells to allot 330*ca987d46SWarner Losh ** for the environment-query dictionary. 331*ca987d46SWarner Losh */ 332*ca987d46SWarner Losh #if !defined FICL_DEFAULT_DICT 333*ca987d46SWarner Losh #define FICL_DEFAULT_DICT 12288 334*ca987d46SWarner Losh #endif 335*ca987d46SWarner Losh 336*ca987d46SWarner Losh #if !defined FICL_DEFAULT_ENV 337*ca987d46SWarner Losh #define FICL_DEFAULT_ENV 260 338*ca987d46SWarner Losh #endif 339*ca987d46SWarner Losh 340*ca987d46SWarner Losh /* 341*ca987d46SWarner Losh ** FICL_DEFAULT_VOCS specifies the maximum number of wordlists in 342*ca987d46SWarner Losh ** the dictionary search order. See Forth DPANS sec 16.3.3 343*ca987d46SWarner Losh ** (file://dpans16.htm#16.3.3) 344*ca987d46SWarner Losh */ 345*ca987d46SWarner Losh #if !defined FICL_DEFAULT_VOCS 346*ca987d46SWarner Losh #define FICL_DEFAULT_VOCS 16 347*ca987d46SWarner Losh #endif 348*ca987d46SWarner Losh 349*ca987d46SWarner Losh /* 350*ca987d46SWarner Losh ** FICL_MAX_PARSE_STEPS controls the size of an array in the FICL_SYSTEM structure 351*ca987d46SWarner Losh ** that stores pointers to parser extension functions. I would never expect to have 352*ca987d46SWarner Losh ** more than 8 of these, so that's the default limit. Too many of these functions 353*ca987d46SWarner Losh ** will probably exact a nasty performance penalty. 354*ca987d46SWarner Losh */ 355*ca987d46SWarner Losh #if !defined FICL_MAX_PARSE_STEPS 356*ca987d46SWarner Losh #define FICL_MAX_PARSE_STEPS 8 357*ca987d46SWarner Losh #endif 358*ca987d46SWarner Losh 359*ca987d46SWarner Losh /* 360*ca987d46SWarner Losh ** FICL_ALIGN is the power of two to which the dictionary 361*ca987d46SWarner Losh ** pointer address must be aligned. This value is usually 362*ca987d46SWarner Losh ** either 1 or 2, depending on the memory architecture 363*ca987d46SWarner Losh ** of the target system; 2 is safe on any 16 or 32 bit 364*ca987d46SWarner Losh ** machine. 3 would be appropriate for a 64 bit machine. 365*ca987d46SWarner Losh */ 366*ca987d46SWarner Losh #if !defined FICL_ALIGN 367*ca987d46SWarner Losh #define FICL_ALIGN 2 368*ca987d46SWarner Losh #define FICL_ALIGN_ADD ((1 << FICL_ALIGN) - 1) 369*ca987d46SWarner Losh #endif 370*ca987d46SWarner Losh 371*ca987d46SWarner Losh /* 372*ca987d46SWarner Losh ** System dependent routines -- 373*ca987d46SWarner Losh ** edit the implementations in sysdep.c to be compatible 374*ca987d46SWarner Losh ** with your runtime environment... 375*ca987d46SWarner Losh ** ficlTextOut sends a NULL terminated string to the 376*ca987d46SWarner Losh ** default output device - used for system error messages 377*ca987d46SWarner Losh ** ficlMalloc and ficlFree have the same semantics as malloc and free 378*ca987d46SWarner Losh ** in standard C 379*ca987d46SWarner Losh ** ficlLongMul multiplies two UNS32s and returns a 64 bit unsigned 380*ca987d46SWarner Losh ** product 381*ca987d46SWarner Losh ** ficlLongDiv divides an UNS64 by an UNS32 and returns UNS32 quotient 382*ca987d46SWarner Losh ** and remainder 383*ca987d46SWarner Losh */ 384*ca987d46SWarner Losh struct vm; 385*ca987d46SWarner Losh void ficlTextOut(struct vm *pVM, char *msg, int fNewline); 386*ca987d46SWarner Losh void *ficlMalloc (size_t size); 387*ca987d46SWarner Losh void ficlFree (void *p); 388*ca987d46SWarner Losh void *ficlRealloc(void *p, size_t size); 389*ca987d46SWarner Losh /* 390*ca987d46SWarner Losh ** Stub function for dictionary access control - does nothing 391*ca987d46SWarner Losh ** by default, user can redefine to guarantee exclusive dict 392*ca987d46SWarner Losh ** access to a single thread for updates. All dict update code 393*ca987d46SWarner Losh ** must be bracketed as follows: 394*ca987d46SWarner Losh ** ficlLockDictionary(TRUE); 395*ca987d46SWarner Losh ** <code that updates dictionary> 396*ca987d46SWarner Losh ** ficlLockDictionary(FALSE); 397*ca987d46SWarner Losh ** 398*ca987d46SWarner Losh ** Returns zero if successful, nonzero if unable to acquire lock 399*ca987d46SWarner Losh ** before timeout (optional - could also block forever) 400*ca987d46SWarner Losh ** 401*ca987d46SWarner Losh ** NOTE: this function must be implemented with lock counting 402*ca987d46SWarner Losh ** semantics: nested calls must behave properly. 403*ca987d46SWarner Losh */ 404*ca987d46SWarner Losh #if FICL_MULTITHREAD 405*ca987d46SWarner Losh int ficlLockDictionary(short fLock); 406*ca987d46SWarner Losh #else 407*ca987d46SWarner Losh #define ficlLockDictionary(x) /* ignore */ 408*ca987d46SWarner Losh #endif 409*ca987d46SWarner Losh 410*ca987d46SWarner Losh /* 411*ca987d46SWarner Losh ** 64 bit integer math support routines: multiply two UNS32s 412*ca987d46SWarner Losh ** to get a 64 bit product, & divide the product by an UNS32 413*ca987d46SWarner Losh ** to get an UNS32 quotient and remainder. Much easier in asm 414*ca987d46SWarner Losh ** on a 32 bit CPU than in C, which usually doesn't support 415*ca987d46SWarner Losh ** the double length result (but it should). 416*ca987d46SWarner Losh */ 417*ca987d46SWarner Losh DPUNS ficlLongMul(FICL_UNS x, FICL_UNS y); 418*ca987d46SWarner Losh UNSQR ficlLongDiv(DPUNS q, FICL_UNS y); 419*ca987d46SWarner Losh 420*ca987d46SWarner Losh 421*ca987d46SWarner Losh /* 422*ca987d46SWarner Losh ** FICL_HAVE_FTRUNCATE indicates whether the current OS supports 423*ca987d46SWarner Losh ** the ftruncate() function (available on most UNIXes). This 424*ca987d46SWarner Losh ** function is necessary to provide the complete File-Access wordset. 425*ca987d46SWarner Losh */ 426*ca987d46SWarner Losh #if !defined (FICL_HAVE_FTRUNCATE) 427*ca987d46SWarner Losh #define FICL_HAVE_FTRUNCATE 0 428*ca987d46SWarner Losh #endif 429*ca987d46SWarner Losh 430*ca987d46SWarner Losh 431*ca987d46SWarner Losh #endif /*__SYSDEP_H__*/ 432