~ chicken-core (chicken-5) 285f53dbca729cffb4c4d9ee84e4ba893c882546


commit 285f53dbca729cffb4c4d9ee84e4ba893c882546
Author:     felix <felix@call-with-current-continuation.org>
AuthorDate: Fri Jul 6 08:50:29 2012 +0200
Commit:     Mario Domenech Goulart <mario.goulart@gmail.com>
CommitDate: Fri Jul 6 09:45:10 2012 -0300

    Copy propagation of local procedure names may re-introduce references to contracted procedures, and thus breaks the invariant that contracted procedures are only referenced once. With certain code patterns (for example in srfi-14-tests.scm as reported by Mario) this could cause the compiler to contract infinitely (if the contracted code contains propagated references to other contractions).
    
    Now contraction is disabled for variables that are "replacing" (i.e.
    propagated). Once the propagation has taken place a later optimization
    pass will do the contraction.
    
    This fixes #874 (https://bugs.call-cc.org/ticket/874)
    
    Signed-off-by: Mario Domenech Goulart <mario.goulart@gmail.com>

diff --git a/optimizer.scm b/optimizer.scm
index 2ce577d2..d904246b 100644
--- a/optimizer.scm
+++ b/optimizer.scm
@@ -249,7 +249,8 @@
 	  ((let)
 	   (let ((var (first params)))
 	     (cond ((or (test var 'removable)
-			(and (test var 'contractable) (not (test var 'replacing))) )
+			(and (test var 'contractable) 
+			     (not (test var 'replacing))))
 		    (touch)
 		    (set! removed-lets (add1 removed-lets))
 		    (walk (second subs) fids gae) )
@@ -312,7 +313,10 @@
 				  (or (test var 'value)
 				      (test var 'local-value))))
 		       (args (cdr subs)) )
-		  (cond ((test var 'contractable)
+		  (cond ((and (test var 'contractable)
+			      (not (test var 'replacing))
+			      ;; inlinable procedure has changed
+			      (not (test (first (node-parameters lval)) 'inline-target)))
 			 ;; only called once
 			 (let* ([lparams (node-parameters lval)]
 				[llist (third lparams)] )
Trap