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