From e18d379f5e3d2f5324906baa25eb3d9af6593c62 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Fri, 23 Feb 1990 20:22:09 +0000
Subject: [PATCH] Added load-symbol macro that will load one of the initial
 symbols into a reg.

Changed pseudo-atomic macro to emit a break instruction when a pending
interrupt is detected.
---
 compiler/mips/macros.lisp | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/compiler/mips/macros.lisp b/compiler/mips/macros.lisp
index 7afa466e4..d66ecbdc4 100644
--- a/compiler/mips/macros.lisp
+++ b/compiler/mips/macros.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/macros.lisp,v 1.14 1990/02/22 16:59:27 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/macros.lisp,v 1.15 1990/02/23 20:22:09 wlott Exp $
 ;;;
 ;;;    This file contains various useful macros for generating MIPS code.
 ;;;
@@ -74,6 +74,10 @@
 	   (t
 	    (error "Constant ~D cannot be loaded." ,n-const)))))
 
+(defmacro load-symbol (reg symbol)
+  `(inst addi ,reg null-tn (initial-symbol-offset ,symbol)))
+
+
 
 ;;; Load-Stack-TN, Store-Stack-TN  --  Interface
 ;;;
@@ -458,13 +462,12 @@
 (defmacro pseudo-atomic ((ndescr-temp) &rest forms)
   (let ((label (gensym "LABEL-")))
     `(let ((,label (gen-label)))
+       (inst andi flags-tn flags-tn (lognot (ash 1 interrupted-flag)))
        (inst ori flags-tn flags-tn (ash 1 atomic-flag))
        ,@forms
        (inst andi flags-tn flags-tn (lognot (ash 1 atomic-flag)))
        (inst andi ,ndescr-temp flags-tn (ash 1 interrupted-flag))
        (inst beq ,ndescr-temp zero-tn ,label)
        (nop)
-       (inst load-foreign-address ,ndescr-temp "interrupt_resumer")
-       (inst jr ,ndescr-temp)
-       (nop)
+       (inst break vm:pending-interrupt-trap)
        (emit-label ,label))))
-- 
GitLab