From d4293e4006a40699054fd9563f274b764b3060e5 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Thu, 21 May 1992 02:12:53 +0000
Subject: [PATCH] Changed default-unknown-values to note the location as either
 a :single-value-return or an :unknown-return based on the number of expected
 return values.

---
 compiler/mips/call.lisp      | 20 +++++++++++++-------
 compiler/mips/static-fn.lisp | 10 +++++-----
 2 files changed, 18 insertions(+), 12 deletions(-)

diff --git a/compiler/mips/call.lisp b/compiler/mips/call.lisp
index 63a311600..5b259d85d 100644
--- a/compiler/mips/call.lisp
+++ b/compiler/mips/call.lisp
@@ -7,11 +7,11 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.44 1992/04/27 20:03:15 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.45 1992/05/21 02:12:38 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.44 1992/04/27 20:03:15 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.45 1992/05/21 02:12:38 wlott Exp $
 ;;;
 ;;;    This file contains the VM definition of function call for the MIPS.
 ;;;
@@ -294,7 +294,7 @@ default-value-8
         nop
 |#
 ;;;
-(defun default-unknown-values (values nvals move-temp temp lra-label)
+(defun default-unknown-values (vop values nvals move-temp temp lra-label)
   (declare (type (or tn-ref null) values)
 	   (type unsigned-byte nvals) (type tn move-temp temp))
   (if (<= nvals 1)
@@ -302,10 +302,14 @@ default-value-8
 	(move csp-tn old-fp-tn)
 	(inst nop)
 	(inst entry-point)
+	;; Note that this is a single-value return point.
+	(note-this-location vop :single-value-return)
 	(inst compute-code-from-lra code-tn code-tn lra-label temp))
       (let ((regs-defaulted (gen-label))
 	    (defaulting-done (gen-label))
 	    (default-stack-vals (gen-label)))
+	;; Note that this is an unknown-values return point.
+	(note-this-location vop :unknown-return)
 	;; Branch off to the MV case.
 	(inst b regs-defaulted)
 	;; If there are no stack results, clear the stack now.
@@ -485,8 +489,7 @@ default-value-8
       (inst b target)
       (inst nop)
       (emit-return-pc label)
-      (note-this-location vop :unknown-return)
-      (default-unknown-values values nvals move-temp temp label)
+      (default-unknown-values vop values nvals move-temp temp label)
       (when cur-nfp
 	(load-stack-tn cur-nfp nfp-save)))
     (trace-table-entry trace-table-normal)))
@@ -522,6 +525,7 @@ default-value-8
       (maybe-load-stack-tn fp-tn fp)
       (inst compute-lra-from-code
 	    (callee-return-pc-tn callee) code-tn label temp)
+      (note-this-location vop :call-site)
       (inst b target)
       (inst nop)
       (emit-return-pc label)
@@ -565,6 +569,7 @@ default-value-8
       (maybe-load-stack-tn fp-tn fp)
       (inst compute-lra-from-code
 	    (callee-return-pc-tn callee) code-tn label temp)
+      (note-this-location vop :call-site)
       (inst b target)
       (inst nop)
       (emit-return-pc label)
@@ -845,14 +850,15 @@ default-value-8
 		 (do-next-filler)
 		 (return)))
 	   
+	   (note-this-location vop :call-site)
 	   (inst j lip)
 	   (do-next-filler))
 
 	 ,@(ecase return
 	     (:fixed
 	      '((emit-return-pc lra-label)
-		(note-this-location vop :unknown-return)
-		(default-unknown-values values nvals move-temp temp lra-label)
+		(default-unknown-values vop values nvals
+					move-temp temp lra-label)
 		(when cur-nfp
 		  (load-stack-tn cur-nfp nfp-save))))
 	     (:unknown
diff --git a/compiler/mips/static-fn.lisp b/compiler/mips/static-fn.lisp
index b3658aef1..1b3ebdbe7 100644
--- a/compiler/mips/static-fn.lisp
+++ b/compiler/mips/static-fn.lisp
@@ -1,4 +1,4 @@
-;;; -*- Package: C; Log: C.Log -*-
+;;; -*- Package: MIPS -*-
 ;;;
 ;;; **********************************************************************
 ;;; This code was written as part of the CMU Common Lisp project at
@@ -7,11 +7,11 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/static-fn.lisp,v 1.16 1992/03/11 21:26:48 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/static-fn.lisp,v 1.17 1992/05/21 02:12:53 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/static-fn.lisp,v 1.16 1992/03/11 21:26:48 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/static-fn.lisp,v 1.17 1992/05/21 02:12:53 wlott Exp $
 ;;;
 ;;; This file contains the VOPs and macro magic necessary to call static
 ;;; functions.
@@ -96,10 +96,10 @@
 	       (store-stack-tn nfp-save cur-nfp))
 	     (inst move old-fp cfp-tn)
 	     (inst compute-lra-from-code lra code-tn lra-label temp)
+	     (note-this-location vop :call-site)
 	     (inst j lip)
 	     (inst move cfp-tn csp-tn)
 	     (emit-return-pc lra-label)
-	     (note-this-location vop :unknown-return)
 	     ,(collect ((bindings) (links))
 		(do ((temp (temp-names) (cdr temp))
 		     (name 'values (gensym))
@@ -112,7 +112,7 @@
 		    (links `(setf (tn-ref-across ,prev) ,name))))
 		`(let ,(bindings)
 		   ,@(links)
-		   (default-unknown-values
+		   (default-unknown-values vop
 		       ,(if (zerop num-results) nil 'values)
 		       ,num-results move-temp temp lra-label)))
 	     (when cur-nfp
-- 
GitLab