correcting the return from prompt linkage in the repl compiled output.
This commit is contained in:
parent
6f03e04ee8
commit
8fd768e4ef
|
@ -77,10 +77,10 @@
|
||||||
(define (compile-for-repl exp)
|
(define (compile-for-repl exp)
|
||||||
(define lambda-bodies (collect-all-lambdas-with-bodies exp))
|
(define lambda-bodies (collect-all-lambdas-with-bodies exp))
|
||||||
(define after-lam-bodies: (make-label 'afterLamBodies))
|
(define after-lam-bodies: (make-label 'afterLamBodies))
|
||||||
(define after-first-seq: (make-label 'afterFirstSeq))
|
(define bundle-values-into-list: (make-label 'bundleValuesIntoList))
|
||||||
(define abort-with-multiple-values: (make-label 'abortWithMultipleValues))
|
(define abort-with-multiple-values: (make-label 'abortWithMultipleValues))
|
||||||
(define last: (make-label 'last))
|
(define last: (make-label 'last))
|
||||||
(define-values (after-pop-prompt-multiple: after-pop-prompt:)
|
(define-values (handle-multiple-return: handle-return:)
|
||||||
(new-linked-labels 'afterPopPrompt))
|
(new-linked-labels 'afterPopPrompt))
|
||||||
|
|
||||||
(optimize-il
|
(optimize-il
|
||||||
|
@ -94,46 +94,27 @@
|
||||||
|
|
||||||
;; Begin a prompted evaluation:
|
;; Begin a prompted evaluation:
|
||||||
(make-PushControlFrame/Prompt default-continuation-prompt-tag
|
(make-PushControlFrame/Prompt default-continuation-prompt-tag
|
||||||
after-pop-prompt: ;; <--- FIXME: this argument isn't used right now!
|
handle-return:
|
||||||
after-pop-prompt:)
|
#f)
|
||||||
(compile exp '() 'val next-linkage/keep-multiple-on-stack)
|
(compile exp '() 'val return-linkage/nontail)
|
||||||
|
|
||||||
;; After coming back from the evaluation, rearrange the return values
|
handle-multiple-return:
|
||||||
;; as a list.
|
;; After coming back from the evaluation, rearrange the return
|
||||||
(make-PopControlFrame) ; pop off the synthetic prompt frame
|
;; values as a list.
|
||||||
(make-TestAndJump (make-TestZero (make-Reg 'argcount)) after-first-seq:)
|
(make-TestAndJump (make-TestZero (make-Reg 'argcount))
|
||||||
|
bundle-values-into-list:)
|
||||||
|
handle-return:
|
||||||
(make-PushImmediateOntoEnvironment (make-Reg 'val) #f)
|
(make-PushImmediateOntoEnvironment (make-Reg 'val) #f)
|
||||||
after-first-seq:
|
bundle-values-into-list:
|
||||||
(make-Perform (make-UnspliceRestFromStack! (make-Const 0) (make-Reg 'argcount)))
|
(make-Perform (make-UnspliceRestFromStack!
|
||||||
|
(make-Const 0) (make-Reg 'argcount)))
|
||||||
(make-AssignImmediate 'val (make-EnvLexicalReference 0 #f))
|
(make-AssignImmediate 'val (make-EnvLexicalReference 0 #f))
|
||||||
(make-PopEnvironment (make-Const 1) (make-Const 0))
|
(make-PopEnvironment (make-Const 1) (make-Const 0))
|
||||||
(make-Goto (make-Label last:))
|
(make-Goto (make-Label last:))
|
||||||
|
|
||||||
|
;; FIXME: missing the abort handler. if we abort, we want the
|
||||||
;; If we abort, the abort handler code should call the expected thunk
|
;; handler to call the thunk in the context that packages the
|
||||||
;; with a return going to this code:
|
;; results into a list.
|
||||||
;; FIXME
|
|
||||||
|
|
||||||
|
|
||||||
after-pop-prompt-multiple:
|
|
||||||
(make-DebugPrint (make-Const "abort multiple"))
|
|
||||||
(make-TestAndJump (make-TestZero (make-Reg 'argcount)) abort-with-multiple-values:)
|
|
||||||
(make-PushImmediateOntoEnvironment (make-Reg 'val) #f)
|
|
||||||
abort-with-multiple-values:
|
|
||||||
(make-Perform (make-UnspliceRestFromStack! (make-Const 0) (make-Reg 'argcount)))
|
|
||||||
(make-AssignImmediate 'val (make-EnvLexicalReference 0 #f))
|
|
||||||
(make-PopEnvironment (make-Const 1) (make-Const 0))
|
|
||||||
(make-Goto (make-Label last:))
|
|
||||||
|
|
||||||
after-pop-prompt:
|
|
||||||
(make-DebugPrint (make-Const "abort single"))
|
|
||||||
|
|
||||||
;; If we escaped with a single value, return that single value in a singleton list
|
|
||||||
(make-PushImmediateOntoEnvironment (make-Reg 'val) #f)
|
|
||||||
(make-Perform (make-UnspliceRestFromStack! (make-Const 0) (make-Const 1)))
|
|
||||||
(make-AssignImmediate 'val (make-EnvLexicalReference 0 #f))
|
|
||||||
(make-PopEnvironment (make-Const 1) (make-Const 0))
|
|
||||||
(make-Goto (make-Label last:))
|
|
||||||
|
|
||||||
last:
|
last:
|
||||||
;; Finally, return to the success continuation on the stack.
|
;; Finally, return to the success continuation on the stack.
|
||||||
|
|
|
@ -265,13 +265,20 @@
|
||||||
(define-struct: PushControlFrame/Call ([label : LinkedLabel])
|
(define-struct: PushControlFrame/Call ([label : LinkedLabel])
|
||||||
#:transparent)
|
#:transparent)
|
||||||
|
|
||||||
(define-struct: PushControlFrame/Prompt ([tag : (U OpArg DefaultContinuationPromptTag)]
|
(define-struct: PushControlFrame/Prompt
|
||||||
[label : LinkedLabel]
|
([tag : (U OpArg DefaultContinuationPromptTag)]
|
||||||
[handler : (U LinkedLabel #f)]
|
[label : LinkedLabel]
|
||||||
;; TODO: add arguments to the handler?
|
[handler : (U #f
|
||||||
)
|
;; #f stands for using the default abort handler.
|
||||||
|
;;
|
||||||
|
;; The only other case the compiler needs to deal
|
||||||
|
;; with is capturing a closure, when we need to abort
|
||||||
|
;; with a special handler (currently for repl).
|
||||||
|
;; Maybe just use the 'proc register for simplicity?
|
||||||
|
#;OpArg)])
|
||||||
#:transparent)
|
#:transparent)
|
||||||
|
|
||||||
|
|
||||||
(define-struct: DefaultContinuationPromptTag ()
|
(define-struct: DefaultContinuationPromptTag ()
|
||||||
#:transparent)
|
#:transparent)
|
||||||
(define default-continuation-prompt-tag
|
(define default-continuation-prompt-tag
|
||||||
|
|
Loading…
Reference in New Issue
Block a user