Replace off_t with file_offset_t
[pforth] / csrc / pf_inner.c
CommitLineData
8e9db35f
PB
1/* @(#) pf_inner.c 98/03/16 1.7 */
2/***************************************************************
3** Inner Interpreter for Forth based on 'C'
4**
5** Author: Phil Burk
6** Copyright 1994 3DO, Phil Burk, Larry Polansky, David Rosenboom
7**
8** The pForth software code is dedicated to the public domain,
9** and any third party may reproduce, distribute and modify
10** the pForth software code or any derivative works thereof
11** without any compensation or license. The pForth software
12** code is provided on an "as is" basis without any warranty
13** of any kind, including, without limitation, the implied
14** warranties of merchantability and fitness for a particular
15** purpose and their equivalents under the laws of any jurisdiction.
16**
17****************************************************************
18**
19** 940502 PLB Creation.
20** 940505 PLB More macros.
21** 940509 PLB Moved all stack stuff into pfCatch.
22** 941014 PLB Converted to flat secondary strusture.
23** 941027 rdg added casts to ID_SP_FETCH, ID_RP_FETCH,
24** and ID_HERE for armcc
25** 941130 PLB Made w@ unsigned
26**
27***************************************************************/
28
8e9db35f
PB
29#include "pf_all.h"
30
31#if defined(WIN32) && !defined(__MINGW32__)
32#include <crtdbg.h>
33#endif
34
35#define SYSTEM_LOAD_FILE "system.fth"
36
37/***************************************************************
38** Macros for data stack access.
39** TOS is cached in a register in pfCatch.
40***************************************************************/
41
42#define STKPTR (DataStackPtr)
43#define M_POP (*(STKPTR++))
44#define M_PUSH(n) {*(--(STKPTR)) = (cell_t) (n);}
45#define M_STACK(n) (STKPTR[n])
46
47#define TOS (TopOfStack)
48#define PUSH_TOS M_PUSH(TOS)
49#define M_DUP PUSH_TOS;
50#define M_DROP { TOS = M_POP; }
51
52
53/***************************************************************
54** Macros for Floating Point stack access.
55***************************************************************/
56#ifdef PF_SUPPORT_FP
57#define FP_STKPTR (FloatStackPtr)
58#define M_FP_SPZERO (gCurrentTask->td_FloatStackBase)
59#define M_FP_POP (*(FP_STKPTR++))
60#define M_FP_PUSH(n) {*(--(FP_STKPTR)) = (PF_FLOAT) (n);}
61#define M_FP_STACK(n) (FP_STKPTR[n])
62
63#define FP_TOS (fpTopOfStack)
64#define PUSH_FP_TOS M_FP_PUSH(FP_TOS)
65#define M_FP_DUP PUSH_FP_TOS;
66#define M_FP_DROP { FP_TOS = M_FP_POP; }
67#endif
68
69/***************************************************************
70** Macros for return stack access.
71***************************************************************/
72
73#define TORPTR (ReturnStackPtr)
74#define M_R_DROP {TORPTR++;}
75#define M_R_POP (*(TORPTR++))
76#define M_R_PICK(n) (TORPTR[n])
77#define M_R_PUSH(n) {*(--(TORPTR)) = (cell_t) (n);}
78
79/***************************************************************
80** Misc Forth macros
81***************************************************************/
82
83#define M_BRANCH { InsPtr = (cell_t *) (((uint8_t *) InsPtr) + READ_CELL_DIC(InsPtr)); }
84
85/* Cache top of data stack like in JForth. */
86#ifdef PF_SUPPORT_FP
87#define LOAD_REGISTERS \
88 { \
89 STKPTR = gCurrentTask->td_StackPtr; \
90 TOS = M_POP; \
91 FP_STKPTR = gCurrentTask->td_FloatStackPtr; \
92 FP_TOS = M_FP_POP; \
93 TORPTR = gCurrentTask->td_ReturnPtr; \
94 }
95
96#define SAVE_REGISTERS \
97 { \
98 gCurrentTask->td_ReturnPtr = TORPTR; \
99 M_PUSH( TOS ); \
100 gCurrentTask->td_StackPtr = STKPTR; \
101 M_FP_PUSH( FP_TOS ); \
102 gCurrentTask->td_FloatStackPtr = FP_STKPTR; \
103 }
104
105#else
106/* Cache top of data stack like in JForth. */
107#define LOAD_REGISTERS \
108 { \
109 STKPTR = gCurrentTask->td_StackPtr; \
110 TOS = M_POP; \
111 TORPTR = gCurrentTask->td_ReturnPtr; \
112 }
113
114#define SAVE_REGISTERS \
115 { \
116 gCurrentTask->td_ReturnPtr = TORPTR; \
117 M_PUSH( TOS ); \
118 gCurrentTask->td_StackPtr = STKPTR; \
119 }
120#endif
121
122#define M_DOTS \
123 SAVE_REGISTERS; \
124 ffDotS( ); \
125 LOAD_REGISTERS;
126
127#define DO_VAR(varname) { PUSH_TOS; TOS = (cell_t) &varname; }
128
129#ifdef PF_SUPPORT_FP
130#define M_THROW(err) \
131 { \
132 ExceptionReturnCode = (ThrowCode)(err); \
133 TORPTR = InitialReturnStack; /* Will cause return to 'C' */ \
134 STKPTR = InitialDataStack; \
135 FP_STKPTR = InitialFloatStack; \
136 }
137#else
138#define M_THROW(err) \
139 { \
140 ExceptionReturnCode = (err); \
141 TORPTR = InitialReturnStack; /* Will cause return to 'C' */ \
142 STKPTR = InitialDataStack; \
143 }
144#endif
145
146/***************************************************************
147** Other macros
148***************************************************************/
149
150#define BINARY_OP( op ) { TOS = M_POP op TOS; }
151#define endcase break
152
153#if defined(PF_NO_SHELL) || !defined(PF_SUPPORT_TRACE)
154 #define TRACENAMES /* no names */
155#else
156/* Display name of executing routine. */
157static void TraceNames( ExecToken Token, cell_t Level )
158{
159 char *DebugName;
160 cell_t i;
161
162 if( ffTokenToName( Token, &DebugName ) )
163 {
164 cell_t NumSpaces;
165 if( gCurrentTask->td_OUT > 0 ) EMIT_CR;
166 EMIT( '>' );
167 for( i=0; i<Level; i++ )
168 {
169 MSG( " " );
170 }
171 TypeName( DebugName );
172/* Space out to column N then .S */
173 NumSpaces = 30 - gCurrentTask->td_OUT;
174 for( i=0; i < NumSpaces; i++ )
175 {
176 EMIT( ' ' );
177 }
178 ffDotS();
179/* No longer needed? gCurrentTask->td_OUT = 0; */ /* !!! Hack for ffDotS() */
180
181 }
182 else
183 {
184 MSG_NUM_H("Couldn't find Name for ", Token);
185 }
186}
187
188#define TRACENAMES \
189 if( (gVarTraceLevel > Level) ) \
190 { SAVE_REGISTERS; TraceNames( Token, Level ); LOAD_REGISTERS; }
191#endif /* PF_NO_SHELL */
192
193/* Use local copy of CODE_BASE for speed. */
194#define LOCAL_CODEREL_TO_ABS( a ) ((cell_t *) (((cell_t) a) + CodeBase))
195
0b1e2489
HE
196/* Truncate the unsigned double cell integer LO/HI to an uint64_t. */
197static uint64_t UdToUint64( ucell_t Lo, ucell_t Hi )
198{
199 return (( 2 * sizeof(ucell_t) == sizeof(uint64_t) )
200 ? (((uint64_t)Lo) | (((uint64_t)Hi) >> (sizeof(ucell_t) * 8)))
201 : Lo );
202}
203
204/* Return TRUE if the unsigned double cell integer LO/HI is not greater
205 * then the greatest uint64_t.
206 */
207static int UdIsUint64( ucell_t Lo, ucell_t Hi )
208{
209 return (( 2 * sizeof(ucell_t) == sizeof(uint64_t) )
210 ? TRUE
211 : Hi == 0 );
212}
213
8e9db35f
PB
214static const char *pfSelectFileModeCreate( int fam );
215static const char *pfSelectFileModeOpen( int fam );
216
217/**************************************************************/
218static const char *pfSelectFileModeCreate( int fam )
219{
220 const char *famText = NULL;
221 switch( fam )
222 {
223 case (PF_FAM_WRITE_ONLY + PF_FAM_BINARY_FLAG):
224 famText = PF_FAM_BIN_CREATE_WO;
225 break;
226 case (PF_FAM_READ_WRITE + PF_FAM_BINARY_FLAG):
227 famText = PF_FAM_BIN_CREATE_RW;
228 break;
229 case PF_FAM_WRITE_ONLY:
230 famText = PF_FAM_CREATE_WO;
231 break;
232 case PF_FAM_READ_WRITE:
233 famText = PF_FAM_CREATE_RW;
234 break;
235 default:
236 famText = "illegal";
237 break;
238 }
239 return famText;
240}
241
242/**************************************************************/
243static const char *pfSelectFileModeOpen( int fam )
244{
245 const char *famText = NULL;
246 switch( fam )
247 {
248 case (PF_FAM_READ_ONLY + PF_FAM_BINARY_FLAG):
249 famText = PF_FAM_BIN_OPEN_RO;
250 break;
251 case (PF_FAM_WRITE_ONLY + PF_FAM_BINARY_FLAG):
252 famText = PF_FAM_BIN_CREATE_WO;
253 break;
254 case (PF_FAM_READ_WRITE + PF_FAM_BINARY_FLAG):
255 famText = PF_FAM_BIN_OPEN_RW;
256 break;
257 case PF_FAM_READ_ONLY:
258 famText = PF_FAM_OPEN_RO;
259 break;
260 case PF_FAM_WRITE_ONLY:
261 famText = PF_FAM_CREATE_WO;
262 break;
263 case PF_FAM_READ_WRITE:
264 default:
265 famText = PF_FAM_OPEN_RW;
266 break;
267 }
268 return famText;
269}
270
271/**************************************************************/
272int pfCatch( ExecToken XT )
273{
274 register cell_t TopOfStack; /* Cache for faster execution. */
275 register cell_t *DataStackPtr;
276 register cell_t *ReturnStackPtr;
277 register cell_t *InsPtr = NULL;
278 register cell_t Token;
279 cell_t Scratch;
280
281#ifdef PF_SUPPORT_FP
282 PF_FLOAT fpTopOfStack;
283 PF_FLOAT *FloatStackPtr;
284 PF_FLOAT fpScratch;
285 PF_FLOAT fpTemp;
286 PF_FLOAT *InitialFloatStack;
287#endif
288#ifdef PF_SUPPORT_TRACE
289 cell_t Level = 0;
290#endif
291 cell_t *LocalsPtr = NULL;
292 cell_t Temp;
293 cell_t *InitialReturnStack;
294 cell_t *InitialDataStack;
295 cell_t FakeSecondary[2];
296 char *CharPtr;
297 cell_t *CellPtr;
298 FileStream *FileID;
299 uint8_t *CodeBase = (uint8_t *) CODE_BASE;
300 ThrowCode ExceptionReturnCode = 0;
301
302/* FIXME
303 gExecutionDepth += 1;
304 PRT(("pfCatch( 0x%x ), depth = %d\n", XT, gExecutionDepth ));
305*/
306
307/*
308** Initialize FakeSecondary this way to avoid having stuff in the data section,
309** which is not supported for some embedded system loaders.
310*/
311 FakeSecondary[0] = 0;
312 FakeSecondary[1] = ID_EXIT; /* For EXECUTE */
313
314/* Move data from task structure to registers for speed. */
315 LOAD_REGISTERS;
316
317/* Save initial stack depths for THROW */
318 InitialReturnStack = TORPTR;
319 InitialDataStack = STKPTR ;
320#ifdef PF_SUPPORT_FP
321 InitialFloatStack = FP_STKPTR;
322#endif
323
324 Token = XT;
325
326 do
327 {
328DBUG(("pfCatch: Token = 0x%x\n", Token ));
329
330/* --------------------------------------------------------------- */
331/* If secondary, thread down code tree until we hit a primitive. */
332 while( !IsTokenPrimitive( Token ) )
333 {
334#ifdef PF_SUPPORT_TRACE
335 if((gVarTraceFlags & TRACE_INNER) )
336 {
337 MSG("pfCatch: Secondary Token = 0x");
338 ffDotHex(Token);
339 MSG_NUM_H(", InsPtr = 0x", InsPtr);
340 }
341 TRACENAMES;
342#endif
343
344/* Save IP on return stack like a JSR. */
345 M_R_PUSH( InsPtr );
346
347/* Convert execution token to absolute address. */
348 InsPtr = (cell_t *) ( LOCAL_CODEREL_TO_ABS(Token) );
349
350/* Fetch token at IP. */
351 Token = READ_CELL_DIC(InsPtr++);
352
353#ifdef PF_SUPPORT_TRACE
354/* Bump level for trace display */
355 Level++;
356#endif
357 }
358
359
360#ifdef PF_SUPPORT_TRACE
361 TRACENAMES;
362#endif
363
364/* Execute primitive Token. */
365 switch( Token )
366 {
367
368 /* Pop up a level in Forth inner interpreter.
369 ** Used to implement semicolon.
370 ** Put first in switch because ID_EXIT==0 */
371 case ID_EXIT:
372 InsPtr = ( cell_t *) M_R_POP;
373#ifdef PF_SUPPORT_TRACE
374 Level--;
375#endif
376 endcase;
377
378 case ID_1MINUS: TOS--; endcase;
379
380 case ID_1PLUS: TOS++; endcase;
381
382#ifndef PF_NO_SHELL
383 case ID_2LITERAL:
384 ff2Literal( TOS, M_POP );
385 M_DROP;
386 endcase;
387#endif /* !PF_NO_SHELL */
388
389 case ID_2LITERAL_P:
390/* hi part stored first, put on top of stack */
391 PUSH_TOS;
392 TOS = READ_CELL_DIC(InsPtr++);
393 M_PUSH(READ_CELL_DIC(InsPtr++));
394 endcase;
395
396 case ID_2MINUS: TOS -= 2; endcase;
397
398 case ID_2PLUS: TOS += 2; endcase;
399
400
401 case ID_2OVER: /* ( a b c d -- a b c d a b ) */
402 PUSH_TOS;
403 Scratch = M_STACK(3);
404 M_PUSH(Scratch);
405 TOS = M_STACK(3);
406 endcase;
407
408 case ID_2SWAP: /* ( a b c d -- c d a b ) */
409 Scratch = M_STACK(0); /* c */
410 M_STACK(0) = M_STACK(2); /* a */
411 M_STACK(2) = Scratch; /* c */
412 Scratch = TOS; /* d */
413 TOS = M_STACK(1); /* b */
414 M_STACK(1) = Scratch; /* d */
415 endcase;
416
417 case ID_2DUP: /* ( a b -- a b a b ) */
418 PUSH_TOS;
419 Scratch = M_STACK(1);
420 M_PUSH(Scratch);
421 endcase;
422
423 case ID_2_R_FETCH:
424 PUSH_TOS;
425 M_PUSH( (*(TORPTR+1)) );
426 TOS = (*(TORPTR));
427 endcase;
428
429 case ID_2_R_FROM:
430 PUSH_TOS;
431 TOS = M_R_POP;
432 M_PUSH( M_R_POP );
433 endcase;
434
435 case ID_2_TO_R:
436 M_R_PUSH( M_POP );
437 M_R_PUSH( TOS );
438 M_DROP;
439 endcase;
440
441 case ID_ACCEPT_P: /* ( c-addr +n1 -- +n2 ) */
442 CharPtr = (char *) M_POP;
443 TOS = ioAccept( CharPtr, TOS );
444 endcase;
445
446#ifndef PF_NO_SHELL
447 case ID_ALITERAL:
448 ffALiteral( ABS_TO_CODEREL(TOS) );
449 M_DROP;
450 endcase;
451#endif /* !PF_NO_SHELL */
452
453 case ID_ALITERAL_P:
454 PUSH_TOS;
455 TOS = (cell_t) LOCAL_CODEREL_TO_ABS( READ_CELL_DIC(InsPtr++) );
456 endcase;
457
458/* Allocate some extra and put validation identifier at base */
459#define PF_MEMORY_VALIDATOR (0xA81B4D69)
460 case ID_ALLOCATE:
461 /* Allocate at least one cell's worth because we clobber first cell. */
462 if ( TOS < sizeof(cell_t) )
463 {
464 Temp = sizeof(cell_t);
465 }
466 else
467 {
468 Temp = TOS;
469 }
470 /* Allocate extra cells worth because we store validation info. */
471 CellPtr = (cell_t *) pfAllocMem( Temp + sizeof(cell_t) );
472 if( CellPtr )
473 {
474/* This was broken into two steps because different compilers incremented
475** CellPtr before or after the XOR step. */
476 Temp = (cell_t)CellPtr ^ PF_MEMORY_VALIDATOR;
477 *CellPtr++ = Temp;
478 M_PUSH( (cell_t) CellPtr );
479 TOS = 0;
480 }
481 else
482 {
483 M_PUSH( 0 );
484 TOS = -1; /* FIXME Fix error code. */
485 }
486 endcase;
487
488 case ID_AND: BINARY_OP( & ); endcase;
489
490 case ID_ARSHIFT: BINARY_OP( >> ); endcase; /* Arithmetic right shift */
491
492 case ID_BODY_OFFSET:
493 PUSH_TOS;
494 TOS = CREATE_BODY_OFFSET;
495 endcase;
496
497/* Branch is followed by an offset relative to address of offset. */
498 case ID_BRANCH:
499DBUGX(("Before Branch: IP = 0x%x\n", InsPtr ));
500 M_BRANCH;
501DBUGX(("After Branch: IP = 0x%x\n", InsPtr ));
502 endcase;
503
504 case ID_BYE:
505 M_THROW( THROW_BYE );
506 endcase;
507
508 case ID_BAIL:
509 MSG("Emergency exit.\n");
510 EXIT(1);
511 endcase;
512
513 case ID_CATCH:
514 Scratch = TOS;
515 TOS = M_POP;
516 SAVE_REGISTERS;
517 Scratch = pfCatch( Scratch );
518 LOAD_REGISTERS;
519 M_PUSH( TOS );
520 TOS = Scratch;
521 endcase;
522
523 case ID_CALL_C:
524 SAVE_REGISTERS;
525 Scratch = READ_CELL_DIC(InsPtr++);
526 CallUserFunction( Scratch & 0xFFFF,
527 (Scratch >> 31) & 1,
528 (Scratch >> 24) & 0x7F );
529 LOAD_REGISTERS;
530 endcase;
531
532 /* Support 32/64 bit operation. */
533 case ID_CELL:
534 M_PUSH( TOS );
535 TOS = sizeof(cell_t);
536 endcase;
537
538 case ID_CELLS:
539 TOS = TOS * sizeof(cell_t);
540 endcase;
541
542 case ID_CFETCH: TOS = *((uint8_t *) TOS); endcase;
543
544 case ID_CMOVE: /* ( src dst n -- ) */
545 {
546 register char *DstPtr = (char *) M_POP; /* dst */
547 CharPtr = (char *) M_POP; /* src */
548 for( Scratch=0; (ucell_t) Scratch < (ucell_t) TOS ; Scratch++ )
549 {
550 *DstPtr++ = *CharPtr++;
551 }
552 M_DROP;
553 }
554 endcase;
555
556 case ID_CMOVE_UP: /* ( src dst n -- ) */
557 {
558 register char *DstPtr = ((char *) M_POP) + TOS; /* dst */
559 CharPtr = ((char *) M_POP) + TOS;; /* src */
560 for( Scratch=0; (ucell_t) Scratch < (ucell_t) TOS ; Scratch++ )
561 {
562 *(--DstPtr) = *(--CharPtr);
563 }
564 M_DROP;
565 }
566 endcase;
567
568#ifndef PF_NO_SHELL
569 case ID_COLON:
570 SAVE_REGISTERS;
571 ffColon( );
572 LOAD_REGISTERS;
573 endcase;
574 case ID_COLON_P: /* ( $name xt -- ) */
575 CreateDicEntry( TOS, (char *) M_POP, 0 );
576 M_DROP;
577 endcase;
578#endif /* !PF_NO_SHELL */
579
580 case ID_COMPARE:
581 {
582 const char *s1, *s2;
583 cell_t len1;
584 s2 = (const char *) M_POP;
585 len1 = M_POP;
586 s1 = (const char *) M_POP;
587 TOS = ffCompare( s1, len1, s2, TOS );
588 }
589 endcase;
590
591/* ( a b -- flag , Comparisons ) */
592 case ID_COMP_EQUAL:
593 TOS = ( TOS == M_POP ) ? FTRUE : FFALSE ;
594 endcase;
595 case ID_COMP_NOT_EQUAL:
596 TOS = ( TOS != M_POP ) ? FTRUE : FFALSE ;
597 endcase;
598 case ID_COMP_GREATERTHAN:
599 TOS = ( M_POP > TOS ) ? FTRUE : FFALSE ;
600 endcase;
601 case ID_COMP_LESSTHAN:
602 TOS = ( M_POP < TOS ) ? FTRUE : FFALSE ;
603 endcase;
604 case ID_COMP_U_GREATERTHAN:
605 TOS = ( ((ucell_t)M_POP) > ((ucell_t)TOS) ) ? FTRUE : FFALSE ;
606 endcase;
607 case ID_COMP_U_LESSTHAN:
608 TOS = ( ((ucell_t)M_POP) < ((ucell_t)TOS) ) ? FTRUE : FFALSE ;
609 endcase;
610 case ID_COMP_ZERO_EQUAL:
611 TOS = ( TOS == 0 ) ? FTRUE : FFALSE ;
612 endcase;
613 case ID_COMP_ZERO_NOT_EQUAL:
614 TOS = ( TOS != 0 ) ? FTRUE : FALSE ;
615 endcase;
616 case ID_COMP_ZERO_GREATERTHAN:
617 TOS = ( TOS > 0 ) ? FTRUE : FFALSE ;
618 endcase;
619 case ID_COMP_ZERO_LESSTHAN:
620 TOS = ( TOS < 0 ) ? FTRUE : FFALSE ;
621 endcase;
622
623 case ID_CR:
624 EMIT_CR;
625 endcase;
626
627#ifndef PF_NO_SHELL
628 case ID_CREATE:
629 SAVE_REGISTERS;
630 ffCreate();
631 LOAD_REGISTERS;
632 endcase;
633#endif /* !PF_NO_SHELL */
634
635 case ID_CREATE_P:
636 PUSH_TOS;
637/* Put address of body on stack. Insptr points after code start. */
638 TOS = (cell_t) ((char *)InsPtr - sizeof(cell_t) + CREATE_BODY_OFFSET );
639 endcase;
640
641 case ID_CSTORE: /* ( c caddr -- ) */
642 *((uint8_t *) TOS) = (uint8_t) M_POP;
643 M_DROP;
644 endcase;
645
646/* Double precision add. */
647 case ID_D_PLUS: /* D+ ( al ah bl bh -- sl sh ) */
648 {
649 register ucell_t ah,al,bl,sh,sl;
650#define bh TOS
651 bl = M_POP;
652 ah = M_POP;
653 al = M_POP;
654 sh = 0;
655 sl = al + bl;
656 if( sl < bl ) sh = 1; /* Carry */
657 sh += ah + bh;
658 M_PUSH( sl );
659 TOS = sh;
660#undef bh
661 }
662 endcase;
663
664/* Double precision subtract. */
665 case ID_D_MINUS: /* D- ( al ah bl bh -- sl sh ) */
666 {
667 register ucell_t ah,al,bl,sh,sl;
668#define bh TOS
669 bl = M_POP;
670 ah = M_POP;
671 al = M_POP;
672 sh = 0;
673 sl = al - bl;
674 if( al < bl ) sh = 1; /* Borrow */
675 sh = ah - bh - sh;
676 M_PUSH( sl );
677 TOS = sh;
678#undef bh
679 }
680 endcase;
681
682/* Assume 8-bit char and calculate cell width. */
683#define NBITS ((sizeof(ucell_t)) * 8)
684/* Define half the number of bits in a cell. */
685#define HNBITS (NBITS / 2)
686/* Assume two-complement arithmetic to calculate lower half. */
687#define LOWER_HALF(n) ((n) & (((ucell_t)1 << HNBITS) - 1))
688#define HIGH_BIT ((ucell_t)1 << (NBITS - 1))
689
690/* Perform cell*cell bit multiply for a 2 cell result, by factoring into half cell quantities.
691 * Using an improved algorithm suggested by Steve Green.
692 * Converted to 64-bit by Aleksej Saushev.
693 */
694 case ID_D_UMTIMES: /* UM* ( a b -- lo hi ) */
695 {
696 ucell_t ahi, alo, bhi, blo; /* input parts */
697 ucell_t lo, hi, temp;
698/* Get values from stack. */
699 ahi = M_POP;
700 bhi = TOS;
701/* Break into hi and lo 16 bit parts. */
702 alo = LOWER_HALF(ahi);
703 ahi = ahi >> HNBITS;
704 blo = LOWER_HALF(bhi);
705 bhi = bhi >> HNBITS;
706
707 lo = 0;
708 hi = 0;
709/* higher part: ahi * bhi */
710 hi += ahi * bhi;
711/* middle (overlapping) part: ahi * blo */
712 temp = ahi * blo;
713 lo += LOWER_HALF(temp);
714 hi += temp >> HNBITS;
715/* middle (overlapping) part: alo * bhi */
716 temp = alo * bhi;
717 lo += LOWER_HALF(temp);
718 hi += temp >> HNBITS;
719/* lower part: alo * blo */
720 temp = alo * blo;
721/* its higher half overlaps with middle's lower half: */
722 lo += temp >> HNBITS;
723/* process carry: */
724 hi += lo >> HNBITS;
725 lo = LOWER_HALF(lo);
726/* combine lower part of result: */
727 lo = (lo << HNBITS) + LOWER_HALF(temp);
728
729 M_PUSH( lo );
730 TOS = hi;
731 }
732 endcase;
733
734/* Perform cell*cell bit multiply for 2 cell result, using shift and add. */
735 case ID_D_MTIMES: /* M* ( a b -- pl ph ) */
736 {
737 ucell_t ahi, alo, bhi, blo; /* input parts */
738 ucell_t lo, hi, temp;
739 int sg;
740/* Get values from stack. */
741 ahi = M_POP;
742 bhi = TOS;
743
744/* Calculate product sign: */
745 sg = ((cell_t)(ahi ^ bhi) < 0);
746/* Take absolute values and reduce to um* */
747 if ((cell_t)ahi < 0) ahi = (ucell_t)(-ahi);
748 if ((cell_t)bhi < 0) bhi = (ucell_t)(-bhi);
749
750/* Break into hi and lo 16 bit parts. */
751 alo = LOWER_HALF(ahi);
752 ahi = ahi >> HNBITS;
753 blo = LOWER_HALF(bhi);
754 bhi = bhi >> HNBITS;
755
756 lo = 0;
757 hi = 0;
758/* higher part: ahi * bhi */
759 hi += ahi * bhi;
760/* middle (overlapping) part: ahi * blo */
761 temp = ahi * blo;
762 lo += LOWER_HALF(temp);
763 hi += temp >> HNBITS;
764/* middle (overlapping) part: alo * bhi */
765 temp = alo * bhi;
766 lo += LOWER_HALF(temp);
767 hi += temp >> HNBITS;
768/* lower part: alo * blo */
769 temp = alo * blo;
770/* its higher half overlaps with middle's lower half: */
771 lo += temp >> HNBITS;
772/* process carry: */
773 hi += lo >> HNBITS;
774 lo = LOWER_HALF(lo);
775/* combine lower part of result: */
776 lo = (lo << HNBITS) + LOWER_HALF(temp);
777
778/* Negate product if one operand negative. */
779 if(sg)
780 {
781 /* lo = (ucell_t)(- lo); */
782 lo = ~lo + 1;
783 hi = ~hi + ((lo == 0) ? 1 : 0);
784 }
785
786 M_PUSH( lo );
787 TOS = hi;
788 }
789 endcase;
790
791#define DULT(du1l,du1h,du2l,du2h) ( (du2h<du1h) ? FALSE : ( (du2h==du1h) ? (du1l<du2l) : TRUE) )
792/* Perform 2 cell by 1 cell divide for 1 cell result and remainder, using shift and subtract. */
793 case ID_D_UMSMOD: /* UM/MOD ( al ah bdiv -- rem q ) */
794 {
795 ucell_t ah,al, q,di, bl,bh, sl,sh;
796 ah = M_POP;
797 al = M_POP;
798 bh = TOS;
799 bl = 0;
800 q = 0;
801 for( di=0; di<NBITS; di++ )
802 {
803 if( !DULT(al,ah,bl,bh) )
804 {
805 sh = 0;
806 sl = al - bl;
807 if( al < bl ) sh = 1; /* Borrow */
808 sh = ah - bh - sh;
809 ah = sh;
810 al = sl;
811 q |= 1;
812 }
813 q = q << 1;
814 bl = (bl >> 1) | (bh << (NBITS-1));
815 bh = bh >> 1;
816 }
817 if( !DULT(al,ah,bl,bh) )
818 {
819
820 al = al - bl;
821 q |= 1;
822 }
823 M_PUSH( al ); /* rem */
824 TOS = q;
825 }
826 endcase;
827
828/* Perform 2 cell by 1 cell divide for 2 cell result and remainder, using shift and subtract. */
829 case ID_D_MUSMOD: /* MU/MOD ( al am bdiv -- rem ql qh ) */
830 {
831 register ucell_t ah,am,al,ql,qh,di;
832#define bdiv ((ucell_t)TOS)
833 ah = 0;
834 am = M_POP;
835 al = M_POP;
836 qh = ql = 0;
837 for( di=0; di<2*NBITS; di++ )
838 {
839 if( bdiv <= ah )
840 {
841 ah = ah - bdiv;
842 ql |= 1;
843 }
844 qh = (qh << 1) | (ql >> (NBITS-1));
845 ql = ql << 1;
846 ah = (ah << 1) | (am >> (NBITS-1));
847 am = (am << 1) | (al >> (NBITS-1));
848 al = al << 1;
849DBUG(("XX ah,m,l = 0x%8x,%8x,%8x - qh,l = 0x%8x,%8x\n", ah,am,al, qh,ql ));
850 }
851 if( bdiv <= ah )
852 {
853 ah = ah - bdiv;
854 ql |= 1;
855 }
856 M_PUSH( ah ); /* rem */
857 M_PUSH( ql );
858 TOS = qh;
859#undef bdiv
860 }
861 endcase;
862
863#ifndef PF_NO_SHELL
864 case ID_DEFER:
865 ffDefer( );
866 endcase;
867#endif /* !PF_NO_SHELL */
868
869 case ID_DEFER_P:
870 endcase;
871
872 case ID_DEPTH:
873 PUSH_TOS;
874 TOS = gCurrentTask->td_StackBase - STKPTR;
875 endcase;
876
877 case ID_DIVIDE: BINARY_OP( / ); endcase;
878
879 case ID_DOT:
880 ffDot( TOS );
881 M_DROP;
882 endcase;
883
884 case ID_DOTS:
885 M_DOTS;
886 endcase;
887
888 case ID_DROP: M_DROP; endcase;
889
890 case ID_DUMP:
891 Scratch = M_POP;
892 DumpMemory( (char *) Scratch, TOS );
893 M_DROP;
894 endcase;
895
896 case ID_DUP: M_DUP; endcase;
897
898 case ID_DO_P: /* ( limit start -- ) ( R: -- start limit ) */
899 M_R_PUSH( TOS );
900 M_R_PUSH( M_POP );
901 M_DROP;
902 endcase;
903
904 case ID_EOL: /* ( -- end_of_line_char ) */
905 PUSH_TOS;
906 TOS = (cell_t) '\n';
907 endcase;
908
909 case ID_ERRORQ_P: /* ( flag num -- , quit if flag true ) */
910 Scratch = TOS;
911 M_DROP;
912 if(TOS)
913 {
914 M_THROW(Scratch);
915 }
916 else
917 {
918 M_DROP;
919 }
920 endcase;
921
922 case ID_EMIT_P:
923 EMIT( (char) TOS );
924 M_DROP;
925 endcase;
926
927 case ID_EXECUTE:
928/* Save IP on return stack like a JSR. */
929 M_R_PUSH( InsPtr );
930#ifdef PF_SUPPORT_TRACE
931/* Bump level for trace. */
932 Level++;
933#endif
934 if( IsTokenPrimitive( TOS ) )
935 {
936 WRITE_CELL_DIC( (cell_t *) &FakeSecondary[0], TOS); /* Build a fake secondary and execute it. */
937 InsPtr = &FakeSecondary[0];
938 }
939 else
940 {
941 InsPtr = (cell_t *) LOCAL_CODEREL_TO_ABS(TOS);
942 }
943 M_DROP;
944 endcase;
945
946 case ID_FETCH:
947#if (defined(PF_BIG_ENDIAN_DIC) || defined(PF_LITTLE_ENDIAN_DIC))
948 if( IN_DICS( TOS ) )
949 {
950 TOS = (cell_t) READ_CELL_DIC((cell_t *)TOS);
951 }
952 else
953 {
954 TOS = *((cell_t *)TOS);
955 }
956#else
957 TOS = *((cell_t *)TOS);
958#endif
959 endcase;
960
961 case ID_FILE_CREATE: /* ( c-addr u fam -- fid ior ) */
962/* Build NUL terminated name string. */
963 Scratch = M_POP; /* u */
964 Temp = M_POP; /* caddr */
965 if( Scratch < TIB_SIZE-2 )
966 {
967 const char *famText = pfSelectFileModeCreate( TOS );
968 pfCopyMemory( gScratch, (char *) Temp, (ucell_t) Scratch );
969 gScratch[Scratch] = '\0';
970 DBUG(("Create file = %s with famTxt %s\n", gScratch, famText ));
971 FileID = sdOpenFile( gScratch, famText );
972 TOS = ( FileID == NULL ) ? -1 : 0 ;
973 M_PUSH( (cell_t) FileID );
974 }
975 else
976 {
977 ERR("Filename too large for name buffer.\n");
978 M_PUSH( 0 );
979 TOS = -2;
980 }
981 endcase;
982
983 case ID_FILE_DELETE: /* ( c-addr u -- ior ) */
984/* Build NUL terminated name string. */
985 Temp = M_POP; /* caddr */
986 if( TOS < TIB_SIZE-2 )
987 {
988 pfCopyMemory( gScratch, (char *) Temp, (ucell_t) TOS );
989 gScratch[TOS] = '\0';
990 DBUG(("Delete file = %s\n", gScratch ));
991 TOS = sdDeleteFile( gScratch );
992 }
993 else
994 {
995 ERR("Filename too large for name buffer.\n");
996 TOS = -2;
997 }
998 endcase;
999
1000 case ID_FILE_OPEN: /* ( c-addr u fam -- fid ior ) */
1001/* Build NUL terminated name string. */
1002 Scratch = M_POP; /* u */
1003 Temp = M_POP; /* caddr */
1004 if( Scratch < TIB_SIZE-2 )
1005 {
1006 const char *famText = pfSelectFileModeOpen( TOS );
1007 pfCopyMemory( gScratch, (char *) Temp, (ucell_t) Scratch );
1008 gScratch[Scratch] = '\0';
1009 DBUG(("Open file = %s\n", gScratch ));
1010 FileID = sdOpenFile( gScratch, famText );
1011
1012 TOS = ( FileID == NULL ) ? -1 : 0 ;
1013 M_PUSH( (cell_t) FileID );
1014 }
1015 else
1016 {
1017 ERR("Filename too large for name buffer.\n");
1018 M_PUSH( 0 );
1019 TOS = -2;
1020 }
1021 endcase;
1022
1023 case ID_FILE_CLOSE: /* ( fid -- ior ) */
1024 TOS = sdCloseFile( (FileStream *) TOS );
1025 endcase;
1026
1027 case ID_FILE_READ: /* ( addr len fid -- u2 ior ) */
1028 FileID = (FileStream *) TOS;
1029 Scratch = M_POP;
1030 CharPtr = (char *) M_POP;
1031 Temp = sdReadFile( CharPtr, 1, Scratch, FileID );
1032 M_PUSH(Temp);
1033 TOS = 0;
1034 endcase;
1035
1036 case ID_FILE_SIZE: /* ( fid -- ud ior ) */
1037/* Determine file size by seeking to end and returning position. */
1038 FileID = (FileStream *) TOS;
1039 {
4d9c915d
PB
1040 file_offset_t endposition, offsetHi;
1041 file_offset_t original = sdTellFile( FileID );
8e9db35f
PB
1042 sdSeekFile( FileID, 0, PF_SEEK_END );
1043 endposition = sdTellFile( FileID );
1044 M_PUSH(endposition);
1045 /* Just use a 0 if they are the same size. */
4d9c915d
PB
1046 offsetHi = (sizeof(file_offset_t) > sizeof(cell_t))
1047 ? (endposition >> (8*sizeof(cell_t))) : 0 ;
8e9db35f
PB
1048 M_PUSH(offsetHi);
1049 sdSeekFile( FileID, original, PF_SEEK_SET );
1050 TOS = (original < 0) ? -4 : 0 ; /* !!! err num */
1051 }
1052 endcase;
1053
1054 case ID_FILE_WRITE: /* ( addr len fid -- ior ) */
1055 FileID = (FileStream *) TOS;
1056 Scratch = M_POP;
1057 CharPtr = (char *) M_POP;
1058 Temp = sdWriteFile( CharPtr, 1, Scratch, FileID );
1059 TOS = (Temp != Scratch) ? -3 : 0;
1060 endcase;
1061
1062 case ID_FILE_REPOSITION: /* ( ud fid -- ior ) */
1063 {
4d9c915d 1064 file_offset_t offset;
8e9db35f
PB
1065 FileID = (FileStream *) TOS;
1066 offset = M_POP;
1067 /* Avoid compiler warnings on Mac. */
4d9c915d
PB
1068 offset = (sizeof(file_offset_t) > sizeof(cell_t))
1069 ? (offset << 8*sizeof(cell_t)) : 0 ;
8e9db35f
PB
1070 offset += M_POP;
1071 TOS = sdSeekFile( FileID, offset, PF_SEEK_SET );
1072 }
1073 endcase;
1074
1075 case ID_FILE_POSITION: /* ( fid -- ud ior ) */
1076 {
4d9c915d
PB
1077 file_offset_t position;
1078 file_offset_t offsetHi;
8e9db35f
PB
1079 FileID = (FileStream *) TOS;
1080 position = sdTellFile( FileID );
1081 M_PUSH(position);
1082 /* Just use a 0 if they are the same size. */
4d9c915d
PB
1083 offsetHi = (sizeof(file_offset_t) > sizeof(cell_t))
1084 ? (position >> (8*sizeof(cell_t))) : 0 ;
8e9db35f
PB
1085 M_PUSH(offsetHi);
1086 TOS = (position < 0) ? -4 : 0 ; /* !!! err num */
1087 }
1088 endcase;
1089
1090 case ID_FILE_RO: /* ( -- fam ) */
1091 PUSH_TOS;
1092 TOS = PF_FAM_READ_ONLY;
1093 endcase;
1094
1095 case ID_FILE_RW: /* ( -- fam ) */
1096 PUSH_TOS;
1097 TOS = PF_FAM_READ_WRITE;
1098 endcase;
1099
1100 case ID_FILE_WO: /* ( -- fam ) */
1101 PUSH_TOS;
1102 TOS = PF_FAM_WRITE_ONLY;
1103 endcase;
1104
1105 case ID_FILE_BIN: /* ( -- fam ) */
1106 TOS = TOS | PF_FAM_BINARY_FLAG;
1107 endcase;
1108
8bf2fe25
HE
1109 case ID_FILE_FLUSH: /* ( fileid -- ior ) */
1110 {
1111 FileStream *Stream = (FileStream *) TOS;
1112 TOS = (sdFlushFile( Stream ) == 0) ? 0 : THROW_FLUSH_FILE;
1113 }
1114 endcase;
1115
6f3de396
HE
1116 case ID_FILE_RENAME: /* ( oldName newName -- ior ) */
1117 {
1118 char *New = (char *) TOS;
1119 char *Old = (char *) M_POP;
1120 TOS = sdRenameFile( Old, New );
1121 }
1122 endcase;
1123
e0701bfb
HE
1124 case ID_FILE_RESIZE: /* ( ud fileid -- ior ) */
1125 {
1126 FileStream *File = (FileStream *) TOS;
1127 ucell_t SizeHi = (ucell_t) M_POP;
1128 ucell_t SizeLo = (ucell_t) M_POP;
0b1e2489
HE
1129 TOS = ( UdIsUint64( SizeLo, SizeHi )
1130 ? sdResizeFile( File, UdToUint64( SizeLo, SizeHi ))
1131 : THROW_RESIZE_FILE );
e0701bfb
HE
1132 }
1133 endcase;
1134
8e9db35f
PB
1135 case ID_FILL: /* ( caddr num charval -- ) */
1136 {
1137 register char *DstPtr;
1138 Temp = M_POP; /* num */
1139 DstPtr = (char *) M_POP; /* dst */
1140 for( Scratch=0; (ucell_t) Scratch < (ucell_t) Temp ; Scratch++ )
1141 {
1142 *DstPtr++ = (char) TOS;
1143 }
1144 M_DROP;
1145 }
1146 endcase;
1147
1148#ifndef PF_NO_SHELL
1149 case ID_FIND: /* ( $addr -- $addr 0 | xt +-1 ) */
1150 TOS = ffFind( (char *) TOS, (ExecToken *) &Temp );
1151 M_PUSH( Temp );
1152 endcase;
1153
1154 case ID_FINDNFA:
1155 TOS = ffFindNFA( (const ForthString *) TOS, (const ForthString **) &Temp );
1156 M_PUSH( (cell_t) Temp );
1157 endcase;
1158#endif /* !PF_NO_SHELL */
1159
1160 case ID_FLUSHEMIT:
1161 sdTerminalFlush();
1162 endcase;
1163
1164/* Validate memory before freeing. Clobber validator and first word. */
1165 case ID_FREE: /* ( addr -- result ) */
1166 if( TOS == 0 )
1167 {
1168 ERR("FREE passed NULL!\n");
1169 TOS = -2; /* FIXME error code */
1170 }
1171 else
1172 {
1173 CellPtr = (cell_t *) TOS;
1174 CellPtr--;
1175 if( ((ucell_t)*CellPtr) != ((ucell_t)CellPtr ^ PF_MEMORY_VALIDATOR))
1176 {
1177 TOS = -2; /* FIXME error code */
1178 }
1179 else
1180 {
1181 CellPtr[0] = 0xDeadBeef;
1182 pfFreeMem((char *)CellPtr);
1183 TOS = 0;
1184 }
1185 }
1186 endcase;
1187
1188#include "pfinnrfp.h"
1189
1190 case ID_HERE:
1191 PUSH_TOS;
1192 TOS = (cell_t)CODE_HERE;
1193 endcase;
1194
1195 case ID_NUMBERQ_P: /* ( addr -- 0 | n 1 ) */
1196/* Convert using number converter in 'C'.
1197** Only supports single precision for bootstrap.
1198*/
1199 TOS = (cell_t) ffNumberQ( (char *) TOS, &Temp );
1200 if( TOS == NUM_TYPE_SINGLE)
1201 {
1202 M_PUSH( Temp ); /* Push single number */
1203 }
1204 endcase;
1205
1206 case ID_I: /* ( -- i , DO LOOP index ) */
1207 PUSH_TOS;
1208 TOS = M_R_PICK(1);
1209 endcase;
1210
1211#ifndef PF_NO_SHELL
1212 case ID_INCLUDE_FILE:
1213 FileID = (FileStream *) TOS;
1214 M_DROP; /* Drop now so that INCLUDE has a clean stack. */
1215 SAVE_REGISTERS;
1216 Scratch = ffIncludeFile( FileID );
1217 LOAD_REGISTERS;
1218 if( Scratch ) M_THROW(Scratch)
1219 endcase;
1220#endif /* !PF_NO_SHELL */
1221
1222#ifndef PF_NO_SHELL
1223 case ID_INTERPRET:
1224 SAVE_REGISTERS;
1225 Scratch = ffInterpret();
1226 LOAD_REGISTERS;
1227 if( Scratch ) M_THROW(Scratch)
1228 endcase;
1229#endif /* !PF_NO_SHELL */
1230
1231 case ID_J: /* ( -- j , second DO LOOP index ) */
1232 PUSH_TOS;
1233 TOS = M_R_PICK(3);
1234 endcase;
1235
1236 case ID_KEY:
1237 PUSH_TOS;
1238 TOS = ioKey();
1239 endcase;
1240
1241#ifndef PF_NO_SHELL
1242 case ID_LITERAL:
1243 ffLiteral( TOS );
1244 M_DROP;
1245 endcase;
1246#endif /* !PF_NO_SHELL */
1247
1248 case ID_LITERAL_P:
1249 DBUG(("ID_LITERAL_P: InsPtr = 0x%x, *InsPtr = 0x%x\n", InsPtr, *InsPtr ));
1250 PUSH_TOS;
1251 TOS = READ_CELL_DIC(InsPtr++);
1252 endcase;
1253
1254#ifndef PF_NO_SHELL
1255 case ID_LOCAL_COMPILER: DO_VAR(gLocalCompiler_XT); endcase;
1256#endif /* !PF_NO_SHELL */
1257
1258 case ID_LOCAL_FETCH: /* ( i <local> -- n , fetch from local ) */
1259 TOS = *(LocalsPtr - TOS);
1260 endcase;
1261
1262#define LOCAL_FETCH_N(num) \
1263 case ID_LOCAL_FETCH_##num: /* ( <local> -- n , fetch from local ) */ \
1264 PUSH_TOS; \
1265 TOS = *(LocalsPtr -(num)); \
1266 endcase;
1267
1268 LOCAL_FETCH_N(1);
1269 LOCAL_FETCH_N(2);
1270 LOCAL_FETCH_N(3);
1271 LOCAL_FETCH_N(4);
1272 LOCAL_FETCH_N(5);
1273 LOCAL_FETCH_N(6);
1274 LOCAL_FETCH_N(7);
1275 LOCAL_FETCH_N(8);
1276
1277 case ID_LOCAL_STORE: /* ( n i <local> -- , store n in local ) */
1278 *(LocalsPtr - TOS) = M_POP;
1279 M_DROP;
1280 endcase;
1281
1282#define LOCAL_STORE_N(num) \
1283 case ID_LOCAL_STORE_##num: /* ( n <local> -- , store n in local ) */ \
1284 *(LocalsPtr - (num)) = TOS; \
1285 M_DROP; \
1286 endcase;
1287
1288 LOCAL_STORE_N(1);
1289 LOCAL_STORE_N(2);
1290 LOCAL_STORE_N(3);
1291 LOCAL_STORE_N(4);
1292 LOCAL_STORE_N(5);
1293 LOCAL_STORE_N(6);
1294 LOCAL_STORE_N(7);
1295 LOCAL_STORE_N(8);
1296
1297 case ID_LOCAL_PLUSSTORE: /* ( n i <local> -- , add n to local ) */
1298 *(LocalsPtr - TOS) += M_POP;
1299 M_DROP;
1300 endcase;
1301
1302 case ID_LOCAL_ENTRY: /* ( x0 x1 ... xn n -- ) */
1303 /* create local stack frame */
1304 {
1305 cell_t i = TOS;
1306 cell_t *lp;
1307 DBUG(("LocalEntry: n = %d\n", TOS));
1308 /* End of locals. Create stack frame */
1309 DBUG(("LocalEntry: before RP@ = 0x%x, LP = 0x%x\n",
1310 TORPTR, LocalsPtr));
1311 M_R_PUSH(LocalsPtr);
1312 LocalsPtr = TORPTR;
1313 TORPTR -= TOS;
1314 DBUG(("LocalEntry: after RP@ = 0x%x, LP = 0x%x\n",
1315 TORPTR, LocalsPtr));
1316 lp = TORPTR;
1317 while(i-- > 0)
1318 {
1319 *lp++ = M_POP; /* Load local vars from stack */
1320 }
1321 M_DROP;
1322 }
1323 endcase;
1324
1325 case ID_LOCAL_EXIT: /* cleanup up local stack frame */
1326 DBUG(("LocalExit: before RP@ = 0x%x, LP = 0x%x\n",
1327 TORPTR, LocalsPtr));
1328 TORPTR = LocalsPtr;
1329 LocalsPtr = (cell_t *) M_R_POP;
1330 DBUG(("LocalExit: after RP@ = 0x%x, LP = 0x%x\n",
1331 TORPTR, LocalsPtr));
1332 endcase;
1333
1334#ifndef PF_NO_SHELL
1335 case ID_LOADSYS:
1336 MSG("Load "); MSG(SYSTEM_LOAD_FILE); EMIT_CR;
1337 FileID = sdOpenFile(SYSTEM_LOAD_FILE, "r");
1338 if( FileID )
1339 {
1340 SAVE_REGISTERS;
1341 Scratch = ffIncludeFile( FileID ); /* Also closes the file. */
1342 LOAD_REGISTERS;
1343 if( Scratch ) M_THROW(Scratch);
1344 }
1345 else
1346 {
1347 ERR(SYSTEM_LOAD_FILE); ERR(" could not be opened!\n");
1348 }
1349 endcase;
1350#endif /* !PF_NO_SHELL */
1351
1352 case ID_LEAVE_P: /* ( R: index limit -- ) */
1353 M_R_DROP;
1354 M_R_DROP;
1355 M_BRANCH;
1356 endcase;
1357
1358 case ID_LOOP_P: /* ( R: index limit -- | index limit ) */
1359 Temp = M_R_POP; /* limit */
1360 Scratch = M_R_POP + 1; /* index */
1361 if( Scratch == Temp )
1362 {
1363 InsPtr++; /* skip branch offset, exit loop */
1364 }
1365 else
1366 {
1367/* Push index and limit back to R */
1368 M_R_PUSH( Scratch );
1369 M_R_PUSH( Temp );
1370/* Branch back to just after (DO) */
1371 M_BRANCH;
1372 }
1373 endcase;
1374
1375 case ID_LSHIFT: BINARY_OP( << ); endcase;
1376
1377 case ID_MAX:
1378 Scratch = M_POP;
1379 TOS = ( TOS > Scratch ) ? TOS : Scratch ;
1380 endcase;
1381
1382 case ID_MIN:
1383 Scratch = M_POP;
1384 TOS = ( TOS < Scratch ) ? TOS : Scratch ;
1385 endcase;
1386
1387 case ID_MINUS: BINARY_OP( - ); endcase;
1388
1389#ifndef PF_NO_SHELL
1390 case ID_NAME_TO_TOKEN:
1391 TOS = (cell_t) NameToToken((ForthString *)TOS);
1392 endcase;
1393
1394 case ID_NAME_TO_PREVIOUS:
1395 TOS = (cell_t) NameToPrevious((ForthString *)TOS);
1396 endcase;
1397#endif
1398
1399 case ID_NOOP:
1400 endcase;
1401
1402 case ID_OR: BINARY_OP( | ); endcase;
1403
1404 case ID_OVER:
1405 PUSH_TOS;
1406 TOS = M_STACK(1);
1407 endcase;
1408
1409 case ID_PICK: /* ( ... n -- sp(n) ) */
1410 TOS = M_STACK(TOS);
1411 endcase;
1412
1413 case ID_PLUS: BINARY_OP( + ); endcase;
1414
1415 case ID_PLUS_STORE: /* ( n addr -- , add n to *addr ) */
1416#if (defined(PF_BIG_ENDIAN_DIC) || defined(PF_LITTLE_ENDIAN_DIC))
1417 if( IN_DICS( TOS ) )
1418 {
1419 Scratch = READ_CELL_DIC((cell_t *)TOS);
1420 Scratch += M_POP;
1421 WRITE_CELL_DIC((cell_t *)TOS,Scratch);
1422 }
1423 else
1424 {
1425 *((cell_t *)TOS) += M_POP;
1426 }
1427#else
1428 *((cell_t *)TOS) += M_POP;
1429#endif
1430 M_DROP;
1431 endcase;
1432
1433 case ID_PLUSLOOP_P: /* ( delta -- ) ( R: index limit -- | index limit ) */
1434 {
d98c27bb
HE
1435 cell_t Limit = M_R_POP;
1436 cell_t OldIndex = M_R_POP;
1437 cell_t Delta = TOS; /* add TOS to index, not 1 */
1438 cell_t NewIndex = OldIndex + Delta;
1439 cell_t OldDiff = OldIndex - Limit;
1440
1441 /* This exploits this idea (lifted from Gforth):
1442 (x^y)<0 is equivalent to (x<0) != (y<0) */
1443 if( ((OldDiff ^ (OldDiff + Delta)) /* is the limit crossed? */
1444 & (OldDiff ^ Delta)) /* is it a wrap-around? */
1445 < 0 )
1446 {
8e9db35f
PB
1447 InsPtr++; /* skip branch offset, exit loop */
1448 }
1449 else
1450 {
1451/* Push index and limit back to R */
1452 M_R_PUSH( NewIndex );
1453 M_R_PUSH( Limit );
1454/* Branch back to just after (DO) */
1455 M_BRANCH;
1456 }
1457 M_DROP;
1458 }
1459 endcase;
1460
1461 case ID_QDO_P: /* (?DO) ( limit start -- ) ( R: -- start limit ) */
1462 Scratch = M_POP; /* limit */
1463 if( Scratch == TOS )
1464 {
1465/* Branch to just after (LOOP) */
1466 M_BRANCH;
1467 }
1468 else
1469 {
1470 M_R_PUSH( TOS );
1471 M_R_PUSH( Scratch );
1472 InsPtr++; /* skip branch offset, enter loop */
1473 }
1474 M_DROP;
1475 endcase;
1476
1477 case ID_QDUP: if( TOS ) M_DUP; endcase;
1478
1479 case ID_QTERMINAL: /* WARNING: Typically not fully implemented! */
1480 PUSH_TOS;
1481 TOS = sdQueryTerminal();
1482 endcase;
1483
1484 case ID_QUIT_P: /* Stop inner interpreter, go back to user. */
1485#ifdef PF_SUPPORT_TRACE
1486 Level = 0;
1487#endif
1488 M_THROW(THROW_QUIT);
1489 endcase;
1490
1491 case ID_R_DROP:
1492 M_R_DROP;
1493 endcase;
1494
1495 case ID_R_FETCH:
1496 PUSH_TOS;
1497 TOS = (*(TORPTR));
1498 endcase;
1499
1500 case ID_R_FROM:
1501 PUSH_TOS;
1502 TOS = M_R_POP;
1503 endcase;
1504
1505 case ID_REFILL:
1506 PUSH_TOS;
1507 TOS = (ffRefill() > 0) ? FTRUE : FFALSE;
1508 endcase;
1509
1510/* Resize memory allocated by ALLOCATE. */
1511 case ID_RESIZE: /* ( addr1 u -- addr2 result ) */
1512 {
1513 cell_t *Addr1 = (cell_t *) M_POP;
1514 /* Point to validator below users address. */
1515 cell_t *FreePtr = Addr1 - 1;
1516 if( ((ucell_t)*FreePtr) != ((ucell_t)FreePtr ^ PF_MEMORY_VALIDATOR))
1517 {
1518 /* 090218 - Fixed bug, was returning zero. */
1519 M_PUSH( Addr1 );
1520 TOS = -3;
1521 }
1522 else
1523 {
1524 /* Try to allocate. */
1525 CellPtr = (cell_t *) pfAllocMem( TOS + sizeof(cell_t) );
1526 if( CellPtr )
1527 {
1528 /* Copy memory including validation. */
1529 pfCopyMemory( (char *) CellPtr, (char *) FreePtr, TOS + sizeof(cell_t) );
1530 *CellPtr = (cell_t)(((ucell_t)CellPtr) ^ (ucell_t)PF_MEMORY_VALIDATOR);
1531 /* 090218 - Fixed bug that was incrementing the address twice. Thanks Reinhold Straub. */
1532 /* Increment past validator to user address. */
1533 M_PUSH( (cell_t) (CellPtr + 1) );
1534 TOS = 0; /* Result code. */
1535 /* Mark old cell as dead so we can't free it twice. */
1536 FreePtr[0] = 0xDeadBeef;
1537 pfFreeMem((char *) FreePtr);
1538 }
1539 else
1540 {
1541 /* 090218 - Fixed bug, was returning zero. */
1542 M_PUSH( Addr1 );
1543 TOS = -4; /* FIXME Fix error code. */
1544 }
1545 }
1546 }
1547 endcase;
1548
1549/*
1550** RP@ and RP! are called secondaries so we must
1551** account for the return address pushed before calling.
1552*/
1553 case ID_RP_FETCH: /* ( -- rp , address of top of return stack ) */
1554 PUSH_TOS;
1555 TOS = (cell_t)TORPTR; /* value before calling RP@ */
1556 endcase;
1557
1558 case ID_RP_STORE: /* ( rp -- , address of top of return stack ) */
1559 TORPTR = (cell_t *) TOS;
1560 M_DROP;
1561 endcase;
1562
1563 case ID_ROLL: /* ( xu xu-1 xu-1 ... x0 u -- xu-1 xu-1 ... x0 xu ) */
1564 {
1565 cell_t ri;
1566 cell_t *srcPtr, *dstPtr;
1567 Scratch = M_STACK(TOS);
1568 srcPtr = &M_STACK(TOS-1);
1569 dstPtr = &M_STACK(TOS);
1570 for( ri=0; ri<TOS; ri++ )
1571 {
1572 *dstPtr-- = *srcPtr--;
1573 }
1574 TOS = Scratch;
1575 STKPTR++;
1576 }
1577 endcase;
1578
1579 case ID_ROT: /* ( a b c -- b c a ) */
1580 Scratch = M_POP; /* b */
1581 Temp = M_POP; /* a */
1582 M_PUSH( Scratch ); /* b */
1583 PUSH_TOS; /* c */
1584 TOS = Temp; /* a */
1585 endcase;
1586
1587/* Logical right shift */
1588 case ID_RSHIFT: { TOS = ((ucell_t)M_POP) >> TOS; } endcase;
1589
1590#ifndef PF_NO_SHELL
1591 case ID_SAVE_FORTH_P: /* ( $name Entry NameSize CodeSize -- err ) */
1592 {
1593 cell_t NameSize, CodeSize, EntryPoint;
1594 CodeSize = TOS;
1595 NameSize = M_POP;
1596 EntryPoint = M_POP;
1597 ForthStringToC( gScratch, (char *) M_POP, sizeof(gScratch) );
1598 TOS = ffSaveForth( gScratch, EntryPoint, NameSize, CodeSize );
1599 }
1600 endcase;
1601#endif
1602
8e9db35f
PB
1603 case ID_SP_FETCH: /* ( -- sp , address of top of stack, sorta ) */
1604 PUSH_TOS;
1605 TOS = (cell_t)STKPTR;
1606 endcase;
1607
1608 case ID_SP_STORE: /* ( sp -- , address of top of stack, sorta ) */
1609 STKPTR = (cell_t *) TOS;
1610 M_DROP;
1611 endcase;
1612
1613 case ID_STORE: /* ( n addr -- , write n to addr ) */
1614#if (defined(PF_BIG_ENDIAN_DIC) || defined(PF_LITTLE_ENDIAN_DIC))
1615 if( IN_DICS( TOS ) )
1616 {
1617 WRITE_CELL_DIC((cell_t *)TOS,M_POP);
1618 }
1619 else
1620 {
1621 *((cell_t *)TOS) = M_POP;
1622 }
1623#else
1624 *((cell_t *)TOS) = M_POP;
1625#endif
1626 M_DROP;
1627 endcase;
1628
1629 case ID_SCAN: /* ( addr cnt char -- addr' cnt' ) */
1630 Scratch = M_POP; /* cnt */
1631 Temp = M_POP; /* addr */
1632 TOS = ffScan( (char *) Temp, Scratch, (char) TOS, &CharPtr );
1633 M_PUSH((cell_t) CharPtr);
1634 endcase;
1635
1636#ifndef PF_NO_SHELL
1637 case ID_SEMICOLON:
1638 SAVE_REGISTERS;
1639 Scratch = ffSemiColon();
1640 LOAD_REGISTERS;
1641 if( Scratch ) M_THROW( Scratch );
1642 endcase;
1643#endif /* !PF_NO_SHELL */
1644
1645 case ID_SKIP: /* ( addr cnt char -- addr' cnt' ) */
1646 Scratch = M_POP; /* cnt */
1647 Temp = M_POP; /* addr */
1648 TOS = ffSkip( (char *) Temp, Scratch, (char) TOS, &CharPtr );
1649 M_PUSH((cell_t) CharPtr);
1650 endcase;
1651
1652 case ID_SOURCE: /* ( -- c-addr num ) */
1653 PUSH_TOS;
1654 M_PUSH( (cell_t) gCurrentTask->td_SourcePtr );
1655 TOS = (cell_t) gCurrentTask->td_SourceNum;
1656 endcase;
1657
1658 case ID_SOURCE_SET: /* ( c-addr num -- ) */
1659 gCurrentTask->td_SourcePtr = (char *) M_POP;
1660 gCurrentTask->td_SourceNum = TOS;
1661 M_DROP;
1662 endcase;
1663
1664 case ID_SOURCE_ID:
1665 PUSH_TOS;
1666 TOS = ffConvertStreamToSourceID( gCurrentTask->td_InputStream ) ;
1667 endcase;
1668
1669 case ID_SOURCE_ID_POP:
1670 PUSH_TOS;
1671 TOS = ffConvertStreamToSourceID( ffPopInputStream() ) ;
1672 endcase;
1673
1674 case ID_SOURCE_ID_PUSH: /* ( source-id -- ) */
1675 TOS = (cell_t)ffConvertSourceIDToStream( TOS );
1676 Scratch = ffPushInputStream((FileStream *) TOS );
1677 if( Scratch )
1678 {
1679 M_THROW(Scratch);
1680 }
1681 else M_DROP;
1682 endcase;
1683
08689895
HE
1684 case ID_SOURCE_LINE_NUMBER_FETCH: /* ( -- linenr ) */
1685 PUSH_TOS;
1686 TOS = gCurrentTask->td_LineNumber;
1687 endcase;
1688
1689 case ID_SOURCE_LINE_NUMBER_STORE: /* ( linenr -- ) */
1690 gCurrentTask->td_LineNumber = TOS;
1691 TOS = M_POP;
1692 endcase;
1693
8e9db35f
PB
1694 case ID_SWAP:
1695 Scratch = TOS;
1696 TOS = *STKPTR;
1697 *STKPTR = Scratch;
1698 endcase;
1699
1700 case ID_TEST1:
1701 PUSH_TOS;
1702 M_PUSH( 0x11 );
1703 M_PUSH( 0x22 );
1704 TOS = 0x33;
1705 endcase;
1706
1707 case ID_TEST2:
1708 endcase;
1709
1710 case ID_THROW: /* ( k*x err -- k*x | i*x err , jump to where CATCH was called ) */
1711 if(TOS)
1712 {
1713 M_THROW(TOS);
1714 }
1715 else M_DROP;
1716 endcase;
1717
1718#ifndef PF_NO_SHELL
1719 case ID_TICK:
1720 PUSH_TOS;
1721 CharPtr = (char *) ffWord( (char) ' ' );
1722 TOS = ffFind( CharPtr, (ExecToken *) &Temp );
1723 if( TOS == 0 )
1724 {
1725 ERR("' could not find ");
1726 ioType( (char *) CharPtr+1, *CharPtr );
1727 M_THROW(-13);
1728 }
1729 else
1730 {
1731 TOS = Temp;
1732 }
1733 endcase;
1734#endif /* !PF_NO_SHELL */
1735
1736 case ID_TIMES: BINARY_OP( * ); endcase;
1737
1738 case ID_TYPE:
1739 Scratch = M_POP; /* addr */
1740 ioType( (char *) Scratch, TOS );
1741 M_DROP;
1742 endcase;
1743
1744 case ID_TO_R:
1745 M_R_PUSH( TOS );
1746 M_DROP;
1747 endcase;
1748
1749 case ID_VAR_BASE: DO_VAR(gVarBase); endcase;
1750 case ID_VAR_CODE_BASE: DO_VAR(gCurrentDictionary->dic_CodeBase); endcase;
1751 case ID_VAR_CODE_LIMIT: DO_VAR(gCurrentDictionary->dic_CodeLimit); endcase;
1752 case ID_VAR_CONTEXT: DO_VAR(gVarContext); endcase;
1753 case ID_VAR_DP: DO_VAR(gCurrentDictionary->dic_CodePtr.Cell); endcase;
1754 case ID_VAR_ECHO: DO_VAR(gVarEcho); endcase;
1755 case ID_VAR_HEADERS_BASE: DO_VAR(gCurrentDictionary->dic_HeaderBase); endcase;
1756 case ID_VAR_HEADERS_LIMIT: DO_VAR(gCurrentDictionary->dic_HeaderLimit); endcase;
1757 case ID_VAR_HEADERS_PTR: DO_VAR(gCurrentDictionary->dic_HeaderPtr); endcase;
1758 case ID_VAR_NUM_TIB: DO_VAR(gCurrentTask->td_SourceNum); endcase;
1759 case ID_VAR_OUT: DO_VAR(gCurrentTask->td_OUT); endcase;
1760 case ID_VAR_STATE: DO_VAR(gVarState); endcase;
1761 case ID_VAR_TO_IN: DO_VAR(gCurrentTask->td_IN); endcase;
1762 case ID_VAR_TRACE_FLAGS: DO_VAR(gVarTraceFlags); endcase;
1763 case ID_VAR_TRACE_LEVEL: DO_VAR(gVarTraceLevel); endcase;
1764 case ID_VAR_TRACE_STACK: DO_VAR(gVarTraceStack); endcase;
1765 case ID_VAR_RETURN_CODE: DO_VAR(gVarReturnCode); endcase;
1766
1767 case ID_WORD:
1768 TOS = (cell_t) ffWord( (char) TOS );
1769 endcase;
1770
1771 case ID_WORD_FETCH: /* ( waddr -- w ) */
1772#if (defined(PF_BIG_ENDIAN_DIC) || defined(PF_LITTLE_ENDIAN_DIC))
1773 if( IN_DICS( TOS ) )
1774 {
1775 TOS = (uint16_t) READ_SHORT_DIC((uint16_t *)TOS);
1776 }
1777 else
1778 {
1779 TOS = *((uint16_t *)TOS);
1780 }
1781#else
1782 TOS = *((uint16_t *)TOS);
1783#endif
1784 endcase;
1785
1786 case ID_WORD_STORE: /* ( w waddr -- ) */
1787
1788#if (defined(PF_BIG_ENDIAN_DIC) || defined(PF_LITTLE_ENDIAN_DIC))
1789 if( IN_DICS( TOS ) )
1790 {
1791 WRITE_SHORT_DIC((uint16_t *)TOS,(uint16_t)M_POP);
1792 }
1793 else
1794 {
1795 *((uint16_t *)TOS) = (uint16_t) M_POP;
1796 }
1797#else
1798 *((uint16_t *)TOS) = (uint16_t) M_POP;
1799#endif
1800 M_DROP;
1801 endcase;
1802
1803 case ID_XOR: BINARY_OP( ^ ); endcase;
1804
1805
1806/* Branch is followed by an offset relative to address of offset. */
1807 case ID_ZERO_BRANCH:
1808DBUGX(("Before 0Branch: IP = 0x%x\n", InsPtr ));
1809 if( TOS == 0 )
1810 {
1811 M_BRANCH;
1812 }
1813 else
1814 {
1815 InsPtr++; /* skip over offset */
1816 }
1817 M_DROP;
1818DBUGX(("After 0Branch: IP = 0x%x\n", InsPtr ));
1819 endcase;
1820
1821 default:
1822 ERR("pfCatch: Unrecognised token = 0x");
1823 ffDotHex(Token);
1824 ERR(" at 0x");
1825 ffDotHex((cell_t) InsPtr);
1826 EMIT_CR;
1827 InsPtr = 0;
1828 endcase;
1829 }
1830
1831 if(InsPtr) Token = READ_CELL_DIC(InsPtr++); /* Traverse to next token in secondary. */
1832
1833#ifdef PF_DEBUG
1834 M_DOTS;
1835#endif
1836
1837#if 0
1838 if( _CrtCheckMemory() == 0 )
1839 {
1840 ERR("_CrtCheckMemory abort: InsPtr = 0x");
1841 ffDotHex((int)InsPtr);
1842 ERR("\n");
1843 }
1844#endif
1845
1846 } while( (InitialReturnStack - TORPTR) > 0 );
1847
1848 SAVE_REGISTERS;
1849
1850 return ExceptionReturnCode;
1851}