Skip to content
Snippets Groups Projects
Forked from cmucl / cmucl
Source project has a limited visibility.
  • gerd's avatar
    5d00555f
    (compile nil · 5d00555f
    gerd authored
    	  '(lambda (c) (declare (optimize (speed 3) (debug 1)))
    	     (flet ((%f18 () -36))
    	        (flet ((%f13 () (let () (block b8 (return-from b8 c)))))
    	          (%f18)))))
    	 => error nil is not an integer, in dump-1-variable
    
    	Found by Paul Dietz.
    
    	This is caused by a lambda-var being passed to dump-1-variable
    	which hasn't been packed, and so has a null tn-offset.  A ref to
    	this lambda-var remains at this point because it is referenced
    	from a different component.  The ref is deleted when that
    	component is compiled.  The problem is that there shouldn't have
    	been two components to begin with, which we prevent by recording
    	additional DFO dependencies for closed-over variables and entries.
    
    	Port from SBCL, basically.
    
    	Does not require a bootstrap file, but a full build is necessary
    	due to the renamed clambda structure slot.
    
    	* src/compiler/dfo.lisp (dfo-walk-call-graph): Process
    	new dfo dependencies.
    
    	* src/compiler/node.lisp (clambda): Rename slot `calls'
    	to `dfo-dependencies'.
    
    	* src/compiler/locall.lisp (convert-call, convert-mv-call):
    	Call note-dfo-dependency.
    	(merge-lets): Change for new clambda slot name.
    	(unconvert-tail-calls): Handle the case of non-clambdas in
    	the dfo dependencies.
    
    	* src/compiler/ir1util.lisp (continuation-home-lambda)
    	(note-dfo-dependency): New functions.
    
    	* src/compiler/ir1tran.lisp (ir1-convert-variable)
    	(return-from, go, setq): Call note-dfo-dependency.
    
    	* src/compiler/xref.lisp (lambda-called-p): New function.
    	(prettiest-caller-name): Use lambda-called-p instead of
    	lambda-calls.
    5d00555f
    History
    (compile nil
    gerd authored
    	  '(lambda (c) (declare (optimize (speed 3) (debug 1)))
    	     (flet ((%f18 () -36))
    	        (flet ((%f13 () (let () (block b8 (return-from b8 c)))))
    	          (%f18)))))
    	 => error nil is not an integer, in dump-1-variable
    
    	Found by Paul Dietz.
    
    	This is caused by a lambda-var being passed to dump-1-variable
    	which hasn't been packed, and so has a null tn-offset.  A ref to
    	this lambda-var remains at this point because it is referenced
    	from a different component.  The ref is deleted when that
    	component is compiled.  The problem is that there shouldn't have
    	been two components to begin with, which we prevent by recording
    	additional DFO dependencies for closed-over variables and entries.
    
    	Port from SBCL, basically.
    
    	Does not require a bootstrap file, but a full build is necessary
    	due to the renamed clambda structure slot.
    
    	* src/compiler/dfo.lisp (dfo-walk-call-graph): Process
    	new dfo dependencies.
    
    	* src/compiler/node.lisp (clambda): Rename slot `calls'
    	to `dfo-dependencies'.
    
    	* src/compiler/locall.lisp (convert-call, convert-mv-call):
    	Call note-dfo-dependency.
    	(merge-lets): Change for new clambda slot name.
    	(unconvert-tail-calls): Handle the case of non-clambdas in
    	the dfo dependencies.
    
    	* src/compiler/ir1util.lisp (continuation-home-lambda)
    	(note-dfo-dependency): New functions.
    
    	* src/compiler/ir1tran.lisp (ir1-convert-variable)
    	(return-from, go, setq): Call note-dfo-dependency.
    
    	* src/compiler/xref.lisp (lambda-called-p): New function.
    	(prettiest-caller-name): Use lambda-called-p instead of
    	lambda-calls.