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