From f4b822e6d21db0016e62070ef5db5a5d6f8c19d1 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Tue, 26 Jun 1990 03:50:31 +0000
Subject: [PATCH] Added temp arg to compute-lra-from-code, 'cause it might need
 one if the code object is huge.

---
 compiler/mips/nlx.lisp     | 22 +++++++++++-----------
 compiler/mips/print.lisp   |  8 +++++---
 compiler/mips/subprim.lisp |  8 +++++---
 3 files changed, 21 insertions(+), 17 deletions(-)

diff --git a/compiler/mips/nlx.lisp b/compiler/mips/nlx.lisp
index 131e1f578..f100f4145 100644
--- a/compiler/mips/nlx.lisp
+++ b/compiler/mips/nlx.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/nlx.lisp,v 1.10 1990/06/16 15:35:21 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/nlx.lisp,v 1.11 1990/06/26 03:49:44 wlott Exp $
 ;;;
 ;;;    This file contains the definitions of VOPs used for non-local exit
 ;;; (throw, lexical exit, etc.)
@@ -119,16 +119,15 @@
   (:info entry-label)
   (:results (block :scs (any-reg)))
   (:temporary (:scs (descriptor-reg)) temp)
-  (:temporary (:scs (descriptor-reg) :target block) result)
+  (:temporary (:scs (non-descriptor-reg)) ndescr)
   (:generator 22
-    (inst addu result fp-tn (* (tn-offset tn) vm:word-bytes))
+    (inst addu block fp-tn (* (tn-offset tn) vm:word-bytes))
     (load-symbol-value temp lisp::*current-unwind-protect-block*)
-    (storew temp result vm:unwind-block-current-uwp-slot)
-    (storew fp-tn result vm:unwind-block-current-cont-slot)
-    (storew code-tn result vm:unwind-block-current-code-slot)
-    (inst compute-lra-from-code temp code-tn entry-label)
-    (storew temp result vm:catch-block-entry-pc-slot)
-    (move block result)))
+    (storew temp block vm:unwind-block-current-uwp-slot)
+    (storew fp-tn block vm:unwind-block-current-cont-slot)
+    (storew code-tn block vm:unwind-block-current-code-slot)
+    (inst compute-lra-from-code temp code-tn entry-label ndescr)
+    (storew temp block vm:catch-block-entry-pc-slot)))
 
 
 ;;; Like Make-Unwind-Block, except that we also store in the specified tag, and
@@ -140,14 +139,15 @@
   (:info entry-label)
   (:results (block :scs (any-reg)))
   (:temporary (:scs (descriptor-reg)) temp)
-  (:temporary (:scs (descriptor-reg) :target block) result)
+  (:temporary (:scs (descriptor-reg) :target block :to (:result 0)) result)
+  (:temporary (:scs (non-descriptor-reg)) ndescr)
   (:generator 44
     (inst addu result fp-tn (* (tn-offset tn) vm:word-bytes))
     (load-symbol-value temp lisp::*current-unwind-protect-block*)
     (storew temp result vm:catch-block-current-uwp-slot)
     (storew fp-tn result vm:catch-block-current-cont-slot)
     (storew code-tn result vm:catch-block-current-code-slot)
-    (inst compute-lra-from-code temp code-tn entry-label)
+    (inst compute-lra-from-code temp code-tn entry-label ndescr)
     (storew temp result vm:catch-block-entry-pc-slot)
 
     (storew tag result vm:catch-block-tag-slot)
diff --git a/compiler/mips/print.lisp b/compiler/mips/print.lisp
index bfa9d96da..970ee89a4 100644
--- a/compiler/mips/print.lisp
+++ b/compiler/mips/print.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/print.lisp,v 1.3 1990/05/19 09:44:37 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/print.lisp,v 1.4 1990/06/26 03:50:23 wlott Exp $
 ;;;
 ;;; This file contains temporary printing utilities and similar noise.
 ;;;
@@ -23,7 +23,7 @@
   (:temporary (:sc any-reg :offset 2) v0)
   (:temporary (:sc any-reg :offset lra-offset) lra)
   (:temporary (:sc any-reg :offset code-offset) code)
-  (:temporary (:scs (any-reg) :type fixnum) temp)
+  (:temporary (:scs (non-descriptor-reg)) temp)
   (:temporary (:sc control-stack :offset nfp-save-offset) nfp-save)
   (:vop-var vop)
   (:generator 0
@@ -33,10 +33,12 @@
 	(store-stack-tn nfp-save cur-nfp))
       (inst addu nsp-tn nsp-tn -16)
       (storew object nsp-tn 0)
+      (inst compute-lra-from-code lra code lra-label temp)
       (inst li v0 (make-fixup "debug_print" :foreign))
       (inst li temp (make-fixup "call_into_c" :foreign))
       (inst j temp)
-      (inst compute-lra-from-code lra code lra-label)
+      (inst nop)
+
       (align vm:lowtag-bits)
       (emit-label lra-label)
       (inst lra-header-word)
diff --git a/compiler/mips/subprim.lisp b/compiler/mips/subprim.lisp
index 5e3b7649f..d9d2f03fc 100644
--- a/compiler/mips/subprim.lisp
+++ b/compiler/mips/subprim.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/subprim.lisp,v 1.14 1990/06/04 05:23:41 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/subprim.lisp,v 1.15 1990/06/26 03:50:31 wlott Exp $
 ;;;
 ;;;    Linkage information for standard static functions, and random vops.
 ;;;
@@ -75,7 +75,7 @@
   (:temporary (:sc any-reg :offset 2) v0)
   (:temporary (:sc any-reg :offset lra-offset) lra)
   (:temporary (:sc any-reg :offset code-offset) code)
-  (:temporary (:scs (any-reg) :type fixnum) temp)
+  (:temporary (:scs (non-descriptor-reg)) temp)
   (:temporary (:sc control-stack :offset nfp-save-offset) nfp-save)
   (:vop-var vop)
   (:generator 0
@@ -83,10 +83,12 @@
 	  (cur-nfp (current-nfp-tn vop)))
       (when cur-nfp
 	(store-stack-tn nfp-save cur-nfp))
+      (inst compute-lra-from-code lra code lra-label temp)
       (inst li v0 (make-fixup function :foreign))
       (inst li temp (make-fixup "call_into_c" :foreign))
       (inst j temp)
-      (inst compute-lra-from-code lra code lra-label)
+      (inst nop)
+
       (align vm:lowtag-bits)
       (emit-label lra-label)
       (inst lra-header-word)
-- 
GitLab