1 /*******************************************************************
3 ** Forth Inspired Command Language - virtual machine methods
4 ** Author: John Sadler (john_sadler@alum.mit.edu)
5 ** Created: 19 July 1997
6 ** $Id: vm.c,v 1.13 2001/12/05 07:21:34 jsadler Exp $
7 *******************************************************************/
9 ** This file implements the virtual machine of FICL. Each virtual
10 ** machine retains the state of an interpreter. A virtual machine
11 ** owns a pair of stacks for parameters and return addresses, as
12 ** well as a pile of state variables and the two dedicated registers
16 ** Copyright (c) 1997-2001 John Sadler (john_sadler@alum.mit.edu)
17 ** All rights reserved.
19 ** Get the latest Ficl release at http://ficl.sourceforge.net
21 ** I am interested in hearing from anyone who uses ficl. If you have
22 ** a problem, a success story, a defect, an enhancement request, or
23 ** if you would like to contribute to the ficl release, please
24 ** contact me by email at the address above.
26 ** L I C E N S E and D I S C L A I M E R
28 ** Redistribution and use in source and binary forms, with or without
29 ** modification, are permitted provided that the following conditions
31 ** 1. Redistributions of source code must retain the above copyright
32 ** notice, this list of conditions and the following disclaimer.
33 ** 2. Redistributions in binary form must reproduce the above copyright
34 ** notice, this list of conditions and the following disclaimer in the
35 ** documentation and/or other materials provided with the distribution.
37 ** THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
38 ** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
39 ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
40 ** ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
41 ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
42 ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
43 ** OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44 ** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
45 ** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
46 ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 static char digits
[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
65 /**************************************************************************
66 v m B r a n c h R e l a t i v e
68 **************************************************************************/
69 void vmBranchRelative(FICL_VM
*pVM
, int offset
)
76 /**************************************************************************
78 ** Creates a virtual machine either from scratch (if pVM is NULL on entry)
79 ** or by resizing and reinitializing an existing VM to the specified stack
81 **************************************************************************/
82 FICL_VM
*vmCreate(FICL_VM
*pVM
, unsigned nPStack
, unsigned nRStack
)
86 pVM
= (FICL_VM
*)ficlMalloc(sizeof (FICL_VM
));
88 memset(pVM
, 0, sizeof (FICL_VM
));
92 stackDelete(pVM
->pStack
);
93 pVM
->pStack
= stackCreate(nPStack
);
96 stackDelete(pVM
->rStack
);
97 pVM
->rStack
= stackCreate(nRStack
);
101 stackDelete(pVM
->fStack
);
102 pVM
->fStack
= stackCreate(nPStack
);
105 pVM
->textOut
= ficlTextOut
;
112 /**************************************************************************
114 ** Free all memory allocated to the specified VM and its subordinate
116 **************************************************************************/
117 void vmDelete (FICL_VM
*pVM
)
121 ficlFree(pVM
->pStack
);
122 ficlFree(pVM
->rStack
);
124 ficlFree(pVM
->fStack
);
133 /**************************************************************************
135 ** Sets up the specified word to be run by the inner interpreter.
136 ** Executes the word's code part immediately, but in the case of
137 ** colon definition, the definition itself needs the inner interp
138 ** to complete. This does not happen until control reaches ficlExec
139 **************************************************************************/
140 void vmExecute(FICL_VM
*pVM
, FICL_WORD
*pWord
)
142 pVM
->runningWord
= pWord
;
148 /**************************************************************************
149 v m I n n e r L o o p
150 ** the mysterious inner interpreter...
151 ** This loop is the address interpreter that makes colon definitions
152 ** work. Upon entry, it assumes that the IP points to an entry in
153 ** a definition (the body of a colon word). It runs one word at a time
154 ** until something does vmThrow. The catcher for this is expected to exist
155 ** in the calling code.
156 ** vmThrow gets you out of this loop with a longjmp()
157 ** Visual C++ 5 chokes on this loop in Release mode. Aargh.
158 **************************************************************************/
159 #if INLINE_INNER_LOOP == 0
160 void vmInnerLoop(FICL_VM
*pVM
)
167 ** Recast inner loop that inlines tokens for control structures, arithmetic and stack operations,
168 ** as well as create does> : ; and various literals
193 typedef CELL
*IPTYPE
;
195 void vmInnerLoop(FICL_VM
*pVM
)
198 FICL_STACK
*pStack
= pVM
->pStack
;
202 OPCODE o
= (*ip
++).i
;
207 stackPushINT(pStack
, 0);
210 stackPushINT(pStack
, 1);
213 stackPushINT(pStack
, 2);
216 stackPushINT(pStack
, -1);
219 stackPushINT(pStack
, -2);
222 stackDrop(pStack
, 1);
225 stackRoll(pStack
, 1);
228 stackPick(pStack
, 0);
232 stackPick(pStack
, c
.i
);
236 stackRoll(pStack
, c
.i
);
249 /**************************************************************************
251 ** Returns the address dictionary for this VM's system
252 **************************************************************************/
253 FICL_DICT
*vmGetDict(FICL_VM
*pVM
)
256 return pVM
->pSys
->dp
;
260 /**************************************************************************
261 v m G e t S t r i n g
262 ** Parses a string out of the VM input buffer and copies up to the first
263 ** FICL_STRING_MAX characters to the supplied destination buffer, a
264 ** FICL_STRING. The destination string is NULL terminated.
266 ** Returns the address of the first unused character in the dest buffer.
267 **************************************************************************/
268 char *vmGetString(FICL_VM
*pVM
, FICL_STRING
*spDest
, char delimiter
)
270 STRINGINFO si
= vmParseStringEx(pVM
, delimiter
, 0);
272 if (SI_COUNT(si
) > FICL_STRING_MAX
)
274 SI_SETLEN(si
, FICL_STRING_MAX
);
277 strncpy(spDest
->text
, SI_PTR(si
), SI_COUNT(si
));
278 spDest
->text
[SI_COUNT(si
)] = '\0';
279 spDest
->count
= (FICL_COUNT
)SI_COUNT(si
);
281 return spDest
->text
+ SI_COUNT(si
) + 1;
285 /**************************************************************************
287 ** vmGetWord calls vmGetWord0 repeatedly until it gets a string with
289 **************************************************************************/
290 STRINGINFO
vmGetWord(FICL_VM
*pVM
)
292 STRINGINFO si
= vmGetWord0(pVM
);
294 if (SI_COUNT(si
) == 0)
296 vmThrow(pVM
, VM_RESTART
);
303 /**************************************************************************
305 ** Skip leading whitespace and parse a space delimited word from the tib.
306 ** Returns the start address and length of the word. Updates the tib
307 ** to reflect characters consumed, including the trailing delimiter.
308 ** If there's nothing of interest in the tib, returns zero. This function
309 ** does not use vmParseString because it uses isspace() rather than a
310 ** single delimiter character.
311 **************************************************************************/
312 STRINGINFO
vmGetWord0(FICL_VM
*pVM
)
314 char *pSrc
= vmGetInBuf(pVM
);
315 char *pEnd
= vmGetInBufEnd(pVM
);
320 pSrc
= skipSpace(pSrc
, pEnd
);
324 for (ch = *pSrc; (pEnd != pSrc) && !isspace(ch); ch = *++pSrc)
330 /* Changed to make Purify happier. --lch */
342 SI_SETLEN(si
, count
);
344 if ((pEnd
!= pSrc
) && isspace(ch
)) /* skip one trailing delimiter */
347 vmUpdateTib(pVM
, pSrc
);
353 /**************************************************************************
354 v m G e t W o r d T o P a d
355 ** Does vmGetWord and copies the result to the pad as a NULL terminated
356 ** string. Returns the length of the string. If the string is too long
357 ** to fit in the pad, it is truncated.
358 **************************************************************************/
359 int vmGetWordToPad(FICL_VM
*pVM
)
362 char *cp
= (char *)pVM
->pad
;
365 if (SI_COUNT(si
) > nPAD
)
368 strncpy(cp
, SI_PTR(si
), SI_COUNT(si
));
369 cp
[SI_COUNT(si
)] = '\0';
370 return (int)(SI_COUNT(si
));
374 /**************************************************************************
375 v m P a r s e S t r i n g
376 ** Parses a string out of the input buffer using the delimiter
377 ** specified. Skips leading delimiters, marks the start of the string,
378 ** and counts characters to the next delimiter it encounters. It then
379 ** updates the vm input buffer to consume all these chars, including the
380 ** trailing delimiter.
381 ** Returns the address and length of the parsed string, not including the
382 ** trailing delimiter.
383 **************************************************************************/
384 STRINGINFO
vmParseString(FICL_VM
*pVM
, char delim
)
386 return vmParseStringEx(pVM
, delim
, 1);
389 STRINGINFO
vmParseStringEx(FICL_VM
*pVM
, char delim
, char fSkipLeading
)
392 char *pSrc
= vmGetInBuf(pVM
);
393 char *pEnd
= vmGetInBufEnd(pVM
);
397 { /* skip lead delimiters */
398 while ((pSrc
!= pEnd
) && (*pSrc
== delim
))
402 SI_SETPTR(si
, pSrc
); /* mark start of text */
404 for (ch
= *pSrc
; (pSrc
!= pEnd
)
407 && (ch
!= '\n'); ch
= *++pSrc
)
409 ; /* find next delimiter or end of line */
412 /* set length of result */
413 SI_SETLEN(si
, pSrc
- SI_PTR(si
));
415 if ((pSrc
!= pEnd
) && (*pSrc
== delim
)) /* gobble trailing delimiter */
418 vmUpdateTib(pVM
, pSrc
);
423 /**************************************************************************
426 **************************************************************************/
427 CELL
vmPop(FICL_VM
*pVM
)
429 return stackPop(pVM
->pStack
);
433 /**************************************************************************
436 **************************************************************************/
437 void vmPush(FICL_VM
*pVM
, CELL c
)
439 stackPush(pVM
->pStack
, c
);
444 /**************************************************************************
447 **************************************************************************/
448 void vmPopIP(FICL_VM
*pVM
)
450 pVM
->ip
= (IPTYPE
)(stackPopPtr(pVM
->rStack
));
455 /**************************************************************************
458 **************************************************************************/
459 void vmPushIP(FICL_VM
*pVM
, IPTYPE newIP
)
461 stackPushPtr(pVM
->rStack
, (void *)pVM
->ip
);
467 /**************************************************************************
469 ** Binds the specified input string to the VM and clears >IN (the index)
470 **************************************************************************/
471 void vmPushTib(FICL_VM
*pVM
, char *text
, FICL_INT nChars
, TIB
*pSaveTib
)
475 *pSaveTib
= pVM
->tib
;
479 pVM
->tib
.end
= text
+ nChars
;
484 void vmPopTib(FICL_VM
*pVM
, TIB
*pTib
)
494 /**************************************************************************
497 **************************************************************************/
498 void vmQuit(FICL_VM
*pVM
)
500 stackReset(pVM
->rStack
);
503 pVM
->runningWord
= NULL
;
504 pVM
->state
= INTERPRET
;
514 /**************************************************************************
517 **************************************************************************/
518 void vmReset(FICL_VM
*pVM
)
521 stackReset(pVM
->pStack
);
523 stackReset(pVM
->fStack
);
530 /**************************************************************************
531 v m S e t T e x t O u t
532 ** Binds the specified output callback to the vm. If you pass NULL,
533 ** binds the default output function (ficlTextOut)
534 **************************************************************************/
535 void vmSetTextOut(FICL_VM
*pVM
, OUTFUNC textOut
)
538 pVM
->textOut
= textOut
;
540 pVM
->textOut
= ficlTextOut
;
546 /**************************************************************************
548 ** Feeds text to the vm's output callback
549 **************************************************************************/
550 void vmTextOut(FICL_VM
*pVM
, char *text
, int fNewline
)
553 assert(pVM
->textOut
);
554 (pVM
->textOut
)(pVM
, text
, fNewline
);
560 /**************************************************************************
563 **************************************************************************/
564 void vmThrow(FICL_VM
*pVM
, int except
)
567 longjmp(*(pVM
->pState
), except
);
571 void vmThrowErr(FICL_VM
*pVM
, char *fmt
, ...)
575 vsprintf(pVM
->pad
, fmt
, va
);
576 vmTextOut(pVM
, pVM
->pad
, 1);
578 longjmp(*(pVM
->pState
), VM_ERREXIT
);
582 /**************************************************************************
583 w o r d I s I m m e d i a t e
585 **************************************************************************/
586 int wordIsImmediate(FICL_WORD
*pFW
)
588 return ((pFW
!= NULL
) && (pFW
->flags
& FW_IMMEDIATE
));
592 /**************************************************************************
593 w o r d I s C o m p i l e O n l y
595 **************************************************************************/
596 int wordIsCompileOnly(FICL_WORD
*pFW
)
598 return ((pFW
!= NULL
) && (pFW
->flags
& FW_COMPILE
));
602 /**************************************************************************
605 **************************************************************************/
606 char *strrev( char *string
)
607 { /* reverse a string in-place */
608 int i
= strlen(string
);
609 char *p1
= string
; /* first char of string */
610 char *p2
= string
+ i
- 1; /* last non-NULL char of string */
628 /**************************************************************************
629 d i g i t _ t o _ c h a r
631 **************************************************************************/
632 char digit_to_char(int value
)
634 return digits
[value
];
638 /**************************************************************************
639 i s P o w e r O f T w o
640 ** Tests whether supplied argument is an integer power of 2 (2**n)
641 ** where 32 > n > 1, and returns n if so. Otherwise returns zero.
642 **************************************************************************/
643 int isPowerOfTwo(FICL_UNS u
)
648 for (; ((t
<= u
) && (t
!= 0)); i
++, t
<<= 1)
658 /**************************************************************************
661 **************************************************************************/
662 char *ltoa( FICL_INT value
, char *string
, int radix
)
663 { /* convert long to string, any base */
665 int sign
= ((radix
== 10) && (value
< 0));
672 pwr
= isPowerOfTwo((FICL_UNS
)radix
);
681 FICL_UNS v
= (FICL_UNS
) value
;
682 FICL_UNS mask
= (FICL_UNS
) ~(-1 << pwr
);
685 *cp
++ = digits
[v
& mask
];
694 v
.lo
= (FICL_UNS
)value
;
697 result
= ficlLongDiv(v
, (FICL_UNS
)radix
);
698 *cp
++ = digits
[result
.rem
];
708 return strrev(string
);
712 /**************************************************************************
715 **************************************************************************/
716 char *ultoa(FICL_UNS value
, char *string
, int radix
)
717 { /* convert long to string, any base */
736 result
= ficlLongDiv(ud
, (FICL_UNS
)radix
);
738 *cp
++ = digits
[result
.rem
];
744 return strrev(string
);
748 /**************************************************************************
750 ** Case folds a NULL terminated string in place. All characters
751 ** get converted to lower case.
752 **************************************************************************/
753 char *caseFold(char *cp
)
760 *cp
= (char)tolower(*cp
);
768 /**************************************************************************
770 ** (jws) simplified the code a bit in hopes of appeasing Purify
771 **************************************************************************/
772 int strincmp(char *cp1
, char *cp2
, FICL_UNS count
)
776 for (; 0 < count
; ++cp1
, ++cp2
, --count
)
778 i
= tolower(*cp1
) - tolower(*cp2
);
781 else if (*cp1
== '\0')
787 /**************************************************************************
789 ** Given a string pointer, returns a pointer to the first non-space
790 ** char of the string, or to the NULL terminator if no such char found.
791 ** If the pointer reaches "end" first, stop there. Pass NULL to
792 ** suppress this behavior.
793 **************************************************************************/
794 char *skipSpace(char *cp
, char *end
)
798 while ((cp
!= end
) && isspace(*cp
))