From 752245bc92489f6e1a79c2dff0a50475ce1dd6ab Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Fri, 10 Jan 1992 17:10:11 +0000
Subject: [PATCH] When we have a :SAFE VOP, flush result type checks when the
 result has only a single use.

---
 compiler/ltn.lisp | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/compiler/ltn.lisp b/compiler/ltn.lisp
index 5a929b29e..9eedec2f7 100644
--- a/compiler/ltn.lisp
+++ b/compiler/ltn.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ltn.lisp,v 1.28 1991/12/12 14:57:07 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ltn.lisp,v 1.29 1992/01/10 17:10:11 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -918,15 +918,21 @@
 ;;;
 ;;;    Flush type checks according to policy.  If the policy is unsafe, then we
 ;;; never do any checks.  If our policy is safe, and we are using a safe
-;;; template, then we can also flush arg type checks.
+;;; template, then we can also flush arg and result type checks.  Result type
+;;; checks are only flushed when the continuation as a single use.
 ;;;
 (defun flush-type-checks-according-to-policy (call policy template)
   (declare (type combination call) (type policies policy)
 	   (type template template))
-  (when (or (not (policy-safe-p policy))
-	    (eq (template-policy template) :safe))
-    (dolist (arg (basic-combination-args call))
-      (flush-type-check arg)))
+  (let ((safe-op (eq (template-policy template) :safe)))
+    (when (or (not (policy-safe-p policy)) safe-op)
+      (dolist (arg (basic-combination-args call))
+	(flush-type-check arg)))
+    (when safe-op
+      (let ((cont (node-cont call)))
+	(when (eq (continuation-use cont) call)
+	  (flush-type-check cont)))))
+
   (undefined-value))
 
 
-- 
GitLab