Return stack restoration working?
[scheme.forth.jl.git] / src / scheme.4th
index 2edd16d..4f04d8c 100644 (file)
@@ -564,8 +564,7 @@ global-env obj!
 : continuation->rstack-list
   drop pair-type cdr ;
 
-: restore-param-stack ( continuation -- obj_stack continuation )
-
+: restore-param-stack ( continuation -- obj_stack )
   continuation->pstack-list
   2dup >R >R
 
@@ -587,12 +586,53 @@ global-env obj!
   -2 +loop
 
   2drop
+;
+
+: list->pad ( list -- n )
+
+    2dup car drop -rot \ keep length of list on stack
+    2dup cdr 2swap car drop \ get length from list
+
+    pad + 1- \ final dest addr
+    pad      \ initial dest addr
+    swap
+    do
+        2dup cdr 2swap car
+        drop i !
+    -1 +loop
+
+    2drop
+;
 
+: restore-return-stack ( continuation -- )
+
+    trace
+
+    continuation->rstack-list
+    list->pad
+    dup
+    RSP0 + RSP! \ expand return stack to accommodate entries
+
+    0   \ initial offset
+    do
+        pad i + @ RSP0 i 1+ + !
+    loop
+
+    trace
 ;
 
-: restore-continuation
+: restore-continuation ( continuation -- )
   \ TODO: replace current parameter and return stacks with
   \ contents of continuation object.
+
+    2dup >R >R
+    restore-param-stack
+
+    ." ====== PARAM STACK RESTORED ======" cr
+    trace
+    
+    R> R>
+    restore-return-stack
 ;
 
 \ }}}
@@ -2125,6 +2165,7 @@ parse-idx-stack parse-idx-sp !
 
 \ }}}
 
+\ DEBUGGING
 xxxx
 
 \ ---- Loading files ---- {{{