From 6f3714af79d6ecabe4ac209baea159b9f1dc708c Mon Sep 17 00:00:00 2001 From: Tim Vaughan Date: Wed, 1 Aug 2018 13:08:40 +0200 Subject: [PATCH] Simplified restore-return-stack. Not using pad anymore. --- src/scheme.4th | 34 ++++++++++++---------------------- 1 file changed, 12 insertions(+), 22 deletions(-) diff --git a/src/scheme.4th b/src/scheme.4th index d9c8aa5..0f2fc0d 100644 --- a/src/scheme.4th +++ b/src/scheme.4th @@ -580,7 +580,7 @@ global-env obj! R> R> 2dup cdr 2swap - car drop 1- 0 swap do + stack-list-len 1- 0 swap do 2dup car PSP0 object-stack-base @ + i 2* + 2 + ! @@ -592,35 +592,25 @@ global-env obj! 2drop ; -: list->pad ( list n -- ) - - pad + 1- \ final dest addr - pad \ initial dest addr - swap - do - 2dup cdr 2swap car - drop i ! - -1 +loop - - 2drop -; - : restore-return-stack ( continuation -- ) continuation->rstack-list - 2dup stack-list-len -rot ( n stack-list ) - 2dup cdr 2swap stack-list-len ( n list n ) - - list->pad ( n ) + 2dup cdr 2swap stack-list-len ( list n ) dup RSP0 + RSP! \ expand return stack to accommodate entries - ( n ) - 0 \ initial offset + ( list n ) + + 1- \ initial offset n-1 + 0 \ final offset 0 + swap do - pad i + @ RSP0 i 1+ + ! - loop + 2dup cdr 2swap car drop + RSP0 i 1+ + ! + -1 +loop + + 2drop ; : restore-continuation ( continuation -- ) -- 2.20.1