Continuations objs are pairlike for GC marking.
[scheme.forth.jl.git] / src / scheme.4th
index 4f04d8c..9347750 100644 (file)
@@ -548,14 +548,19 @@ global-env obj!
         2swap cons
     2 +loop
 
-  depth 2- fixnum-type 2swap cons
+  depth 2- 2/ fixnum-type 2swap cons
 ;
 
-: make-continuation
+: make-continuation ( -- continuation true-obj )
+    \ true-obj allows calling code to detect whether
+    \ it is being called immediately following make-continuation
+    \ or by a restore-continuation.
 
   cons-param-stack
   cons-return-stack
   cons drop continuation-type
+
+  true boolean-type
 ;
 
 : continuation->pstack-list
@@ -564,6 +569,10 @@ global-env obj!
 : continuation->rstack-list
   drop pair-type cdr ;
 
+: stack-list-len ( stack-list -- n )
+    car drop
+;
+
 : restore-param-stack ( continuation -- obj_stack )
   continuation->pstack-list
   2dup >R >R
@@ -571,67 +580,62 @@ global-env obj!
   ( Allocate stack space first using psp!,
     then copy objects from list. )
 
-  car drop
+  car drop 2*
   object-stack-base @ psp0 + + psp!
 
   R> R> 2dup cdr
   2swap
-  car drop 2- 0 swap do
+  stack-list-len 1- 0 swap do
 
       2dup car
-      PSP0 object-stack-base @ + i + 2 + !
-      PSP0 object-stack-base @ + i + 1 + !
+      PSP0 object-stack-base @ + i 2* + 2 + !
+      PSP0 object-stack-base @ + i 2* + 1 + !
       cdr
 
-  -2 +loop
+  -1 +loop
 
   2drop
 ;
 
-: list->pad ( list -- n )
+: restore-return-stack ( continuation -- )
+
+    continuation->rstack-list
+
+    2dup cdr 2swap stack-list-len ( list n )
 
-    2dup car drop -rot \ keep length of list on stack
-    2dup cdr 2swap car drop \ get length from list
+    dup RSP0 + RSP! \ expand return stack to accommodate entries
 
-    pad + 1- \ final dest addr
-    pad      \ initial dest addr
+    ( list n )
+
+    1-  \ initial offset n-1
+    0   \ final offset 0
     swap
     do
-        2dup cdr 2swap car
-        drop i !
+        2dup cdr 2swap car drop
+        RSP0 i 1+ + !
     -1 +loop
 
     2drop
 ;
 
-: restore-return-stack ( continuation -- )
+: restore-continuation-with-arg ( continuation obj -- )
 
-    trace
+    >R >R \ Store obj on return stack
 
-    continuation->rstack-list
-    list->pad
-    dup
-    RSP0 + RSP! \ expand return stack to accommodate entries
+    2dup >R >R \ Store copy of continuation on return stack
 
-    0   \ initial offset
-    do
-        pad i + @ RSP0 i 1+ + !
-    loop
+    restore-param-stack
 
-    trace
-;
+    R> R> \ Pop continuation from return stack
 
-: restore-continuation ( continuation -- )
-  \ TODO: replace current parameter and return stacks with
-  \ contents of continuation object.
+    R> R> \ Pop obj from return stack
 
-    2dup >R >R
-    restore-param-stack
+    2swap
+
+    false boolean-type \ Add flag signifying continuation restore
+
+    2swap
 
-    ." ====== PARAM STACK RESTORED ======" cr
-    trace
-    
-    R> R>
     restore-return-stack
 ;
 
@@ -1778,7 +1782,22 @@ parse-idx-stack parse-idx-sp !
         endof
 
         continuation-type of
-          \ TODO: Apply continuation
+            2swap
+            nil? if
+                except-message: ." Continuations expect exactly 1 argument."
+                recoverable-exception throw
+            then
+
+            2dup cdr
+
+            nil? invert if
+                except-message: ." Continuations expect exactly 1 argument."
+                recoverable-exception throw
+            then
+
+            2drop car
+                
+            restore-continuation-with-arg
         endof
 
         except-message: ." object '" drop print ." ' not applicable." recoverable-exception throw
@@ -2082,6 +2101,7 @@ parse-idx-stack parse-idx-sp !
     symbol-type istype? if true exit then
     compound-proc-type istype? if true exit then
     port-type istype? if true exit then
+    continuation-type istype? if true exit then
 
     false
 ;
@@ -2165,9 +2185,6 @@ parse-idx-stack parse-idx-sp !
 
 \ }}}
 
-\ DEBUGGING
-xxxx
-
 \ ---- Loading files ---- {{{
 
 : load ( addr n -- finalResult )