trying to fix let-void

This commit is contained in:
Danny Yoo 2011-07-01 11:17:36 -04:00
parent 0a4b6da39e
commit 9b3951adb6

View File

@ -1777,16 +1777,40 @@
,(make-PushEnvironment n (LetVoid-boxes? exp)))) ,(make-PushEnvironment n (LetVoid-boxes? exp))))
body-code body-code
after-body-code after-body-code
;; There may be multiple values coming back at this point. ;; We want to clear out the scratch space introduced by the
;; We need to route around those. ;; let-void. However, there may be multiple values coming
(make-instruction-sequence ;; back at this point, from the evaluation of the body. We
`(,(make-PopEnvironment (make-Const n) ;; look at the context and route around those values
(make-Const 0) ;; appropriate.
;(make-SubtractArg (cond
; (make-Reg 'argcount) [(eq? context 'tail)
; (make-Const 1)) empty-instruction-sequence]
))) [(eq? context 'drop-multiple)
(make-PopEnvironment (make-Const n)
(make-Const 0))]
[(eq? context 'keep-multiple)
;; dynamic number of arguments that need
;; to be preserved
(make-PopEnvironment (make-Const n)
(make-SubtractArg
(make-Reg 'argcount)
(make-Const 1)))]
[else
(cond [(= context 0)
(make-PopEnvironment (make-Const n)
(make-Const 0))]
[(= context 1)
(make-PopEnvironment (make-Const n)
(make-Const 0))]
[else
;; n-1 values on stack that we need to route
;; around
(make-PopEnvironment (make-Const n)
(make-SubtractArg
(make-Const context)
(make-Const 1)))])])
after-let)))) after-let))))