Skip to content
Snippets Groups Projects
Forked from cmucl / cmucl
Source project has a limited visibility.
  • gerd's avatar
    5ac014db
    Dynamic-extent closures for x86. Use boot15.lisp for · 5ac014db
    gerd authored
    	bootstrapping.
    
    	(defun prn (fn)
    	  (print (funcall fn)))
    
    	(defun foo (x)
    	  (flet ((bar () x))
    	    (declare (dynamic-extent #'bar))
    	    (prn #'bar)))
    
    	=> The closure for BAR is allocated from the stack
    
    	* src/compiler/node.lisp (lexenv): Add slot dynamic-extent.
    
    	* src/compiler/ir1util.lisp (make-lexenv): Add keyword
    	arg for dynamic-extent.
    
    	* src/code/defstruct.lisp (%redefine-defstruct)
    	[#+bootstrap-dynamic-extent]: Definition that corresponds
    	to to the clobber-it restart.
    
    	* src/compiler/ir1tran.lisp (process-dynamic-extent-declaration):
    	Rewritten.
    
    	* src/compiler/x86/alloc.lisp (make-closure): Add constant
    	arg dynamic-extent, and use it for allocation.
    
    	* src/compiler/ir2tran.lisp (ir2-convert-closure) [#+x86]:
    	Pass dynamic-extent to the make-closure vop.
    5ac014db
    History
    Dynamic-extent closures for x86. Use boot15.lisp for
    gerd authored
    	bootstrapping.
    
    	(defun prn (fn)
    	  (print (funcall fn)))
    
    	(defun foo (x)
    	  (flet ((bar () x))
    	    (declare (dynamic-extent #'bar))
    	    (prn #'bar)))
    
    	=> The closure for BAR is allocated from the stack
    
    	* src/compiler/node.lisp (lexenv): Add slot dynamic-extent.
    
    	* src/compiler/ir1util.lisp (make-lexenv): Add keyword
    	arg for dynamic-extent.
    
    	* src/code/defstruct.lisp (%redefine-defstruct)
    	[#+bootstrap-dynamic-extent]: Definition that corresponds
    	to to the clobber-it restart.
    
    	* src/compiler/ir1tran.lisp (process-dynamic-extent-declaration):
    	Rewritten.
    
    	* src/compiler/x86/alloc.lisp (make-closure): Add constant
    	arg dynamic-extent, and use it for allocation.
    
    	* src/compiler/ir2tran.lisp (ir2-convert-closure) [#+x86]:
    	Pass dynamic-extent to the make-closure vop.