From 3a208dedece4cdde6a46d32f8f9da6947c043e3e Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Wed, 21 Nov 1990 12:39:03 +0000
Subject: [PATCH] Default-unknown-values needs to use OCFP to get at return
 values that don't show up in registers, so people who use it better not
 allocate tns in it. Or more specifically, they better wire a temporary in it
 that is live from the return to the end of the vop.

---
 compiler/mips/call.lisp | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/compiler/mips/call.lisp b/compiler/mips/call.lisp
index 0b0ffca4e..4d3f3cc9c 100644
--- a/compiler/mips/call.lisp
+++ b/compiler/mips/call.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.34 1990/11/14 17:33:51 ram Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.35 1990/11/21 12:39:03 wlott Exp $
 ;;;
 ;;;    This file contains the VM definition of function call for the MIPS.
 ;;;
@@ -442,11 +442,12 @@ default-value-8
   (:save-p t)
   (:move-args :local-call)
   (:info arg-locs callee target nvals)
-  (:ignore arg-locs args)
   (:vop-var vop)
-  (:temporary (:scs (descriptor-reg)) move-temp)
+  (:temporary (:scs (descriptor-reg) :from :eval) move-temp)
   (:temporary (:scs (non-descriptor-reg)) temp)
   (:temporary (:sc control-stack :offset nfp-save-offset) nfp-save)
+  (:temporary (:sc any-reg :offset old-fp-offset :from :eval) ocfp)
+  (:ignore arg-locs args ocfp)
   (:generator 5
     (let ((label (gen-label))
 	  (cur-nfp (current-nfp-tn vop)))
@@ -657,7 +658,8 @@ default-value-8
      (:temporary (:sc descriptor-reg
 		  :offset old-fp-offset
 		  :from (:argument 1)
-		  :to :eval)
+		  ,@(unless (eq return :fixed)
+		      '(:to :eval)))
 		 old-fp-pass)
 
      (:temporary (:sc descriptor-reg
-- 
GitLab