: 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
2drop
;
-: list->pad ( list -- n )
-
- 2dup car drop -rot \ keep length of list on stack
- 2dup cdr 2swap car drop \ get length from list
+: list->pad ( list n -- )
pad + 1- \ final dest addr
pad \ initial dest addr
: restore-return-stack ( continuation -- )
- trace
-
continuation->rstack-list
- list->pad
- dup
- RSP0 + RSP! \ expand return stack to accommodate entries
+ 2dup stack-list-len -rot ( n stack-list )
+ 2dup cdr 2swap stack-list-len ( n list n )
+
+ list->pad ( n )
+
+ dup RSP0 + RSP! \ expand return stack to accommodate entries
+
+ ( n )
0 \ initial offset
do
pad i + @ RSP0 i 1+ + !
loop
-
- trace
;
: restore-continuation ( continuation -- )
\ contents of continuation object.
2dup >R >R
+
restore-param-stack
- ." ====== PARAM STACK RESTORED ======" cr
- trace
-
R> R>
+
restore-return-stack
;