Changing the structure of installclosurevalues to count how many it needs. That way, we can generate static code for pushing, rather than use .apply
This commit is contained in:
parent
97dd749a52
commit
872d72ed2b
|
@ -71,7 +71,7 @@
|
|||
;; abandon the current continuation, initialize the control and environment, and then jump.
|
||||
call/cc-closure-entry
|
||||
(make-AssignImmediate 'val (make-EnvLexicalReference 0 #f))
|
||||
(make-Perform (make-InstallClosureValues!))
|
||||
(make-Perform (make-InstallClosureValues! 2))
|
||||
(make-Perform (make-RestoreControl! default-continuation-prompt-tag))
|
||||
(make-Perform (make-RestoreEnvironment!))
|
||||
(make-AssignImmediate 'proc (make-ControlStackLabel))
|
||||
|
|
|
@ -855,7 +855,8 @@
|
|||
(if (not (empty? (Lam-closure-map exp)))
|
||||
(append-instruction-sequences
|
||||
(make-Comment (format "installing closure for ~s" (Lam-name exp)))
|
||||
(make-Perform (make-InstallClosureValues!)))
|
||||
(make-Perform (make-InstallClosureValues!
|
||||
(length (Lam-closure-map exp)))))
|
||||
empty-instruction-sequence)]
|
||||
[lam-body-code : InstructionSequence
|
||||
(compile (Lam-body exp)
|
||||
|
|
|
@ -387,7 +387,7 @@
|
|||
|
||||
;; Adjusts the environment by pushing the values in the
|
||||
;; closure (held in the proc register) into itself.
|
||||
(define-struct: InstallClosureValues! ()
|
||||
(define-struct: InstallClosureValues! ([n : Natural])
|
||||
#:transparent)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user