From 770c71a44c3a3721730523f3cd80edef6cffd4b6 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Tue, 22 Oct 1991 16:43:32 +0000
Subject: [PATCH] Added explicit gc-trigger test.

---
 compiler/rt/alloc.lisp  | 10 +++++++---
 compiler/rt/array.lisp  |  4 +++-
 compiler/rt/call.lisp   |  2 ++
 compiler/rt/macros.lisp | 23 +++++++++++++----------
 compiler/rt/move.lisp   |  4 +++-
 5 files changed, 28 insertions(+), 15 deletions(-)

diff --git a/compiler/rt/alloc.lisp b/compiler/rt/alloc.lisp
index 6af2d8dd7..b0802c9f3 100644
--- a/compiler/rt/alloc.lisp
+++ b/compiler/rt/alloc.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/alloc.lisp,v 1.3 1991/04/23 17:23:50 chiles Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/alloc.lisp,v 1.4 1991/10/22 16:43:17 wlott Exp $
 ;;;
 ;;; Allocation VOPs for the IBM RT port.
 ;;;
@@ -72,7 +72,9 @@
 			(storew null-tn ptr
 				cons-cdr-slot list-pointer-type)))
 		 (assert (null (tn-ref-across things)))
-		 (move result res))))))))
+		 (move result res))
+	       (load-symbol-value ndescr *internal-gc-trigger*)
+	       (inst tlt ndescr alloc)))))))
 
 (define-vop (list list-or-list*)
   (:variant nil))
@@ -112,7 +114,9 @@
       (storew ndescr result 0 other-pointer-type)
       (storew unboxed result code-code-size-slot other-pointer-type)
       (storew null-tn result code-entry-points-slot other-pointer-type)
-      (storew null-tn result code-debug-info-slot other-pointer-type))))
+      (storew null-tn result code-debug-info-slot other-pointer-type))
+    (load-symbol-value ndescr *internal-gc-trigger*)
+    (inst tlt ndescr alloc)))
 
 (define-vop (make-symbol)
   (:args (name :scs (descriptor-reg) :to :eval))
diff --git a/compiler/rt/array.lisp b/compiler/rt/array.lisp
index 0357ae121..b4dee2392 100644
--- a/compiler/rt/array.lisp
+++ b/compiler/rt/array.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/array.lisp,v 1.7 1991/08/25 19:06:23 ram Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/array.lisp,v 1.8 1991/10/22 16:43:21 wlott Exp $
 ;;;
 ;;; This file contains the IBM RT definitions for array operations.
 ;;;
@@ -52,6 +52,8 @@
       (inst o ndescr type)
       (inst sr ndescr 2)
       (storew ndescr header 0 vm:other-pointer-type))
+    (load-symbol-value ndescr *internal-gc-trigger*)
+    (inst tlt ndescr alloc)
     (move result header)))
 
 
diff --git a/compiler/rt/call.lisp b/compiler/rt/call.lisp
index 349d1a9d4..3d46bef77 100644
--- a/compiler/rt/call.lisp
+++ b/compiler/rt/call.lisp
@@ -1092,6 +1092,8 @@ default-value-5
 
 	;; NIL out the last cons.
 	(storew null-tn dst -1 vm:list-pointer-type))
+      (load-symbol-value ndescr *internal-gc-trigger*)
+      (inst tlt ndescr alloc)
       (emit-label done))))
 
 
diff --git a/compiler/rt/macros.lisp b/compiler/rt/macros.lisp
index 2ea5a6110..f61393ee0 100644
--- a/compiler/rt/macros.lisp
+++ b/compiler/rt/macros.lisp
@@ -189,16 +189,19 @@
    Alloc-tn is a register to hold the heap pointer, and it can be any register
    since raw heap pointers look like fixnums (dual-word aligned objects).  The
    body is placed inside PSEUDO-ATOMIC, and presumably initializes the object."
-  `(pseudo-atomic (,header-tn)
-     (load-symbol-value ,alloc-tn *allocation-pointer*)
-     ;; Take free pointer and make descriptor pointer.
-     ;; Just add in three low-tag bits since alloc ptr is dual-word aligned.
-     (inst cal ,result-tn ,alloc-tn other-pointer-type)
-     (inst cal ,alloc-tn ,alloc-tn (pad-data-block ,size))
-     (store-symbol-value ,alloc-tn *allocation-pointer*)
-     (inst li ,header-tn (logior (ash (1- ,size) type-bits) ,type-code))
-     (storew ,header-tn ,result-tn 0 other-pointer-type)
-     ,@body))
+  `(progn
+     (pseudo-atomic (,header-tn)
+       (load-symbol-value ,alloc-tn *allocation-pointer*)
+       ;; Take free pointer and make descriptor pointer.
+       ;; Just add in three low-tag bits since alloc ptr is dual-word aligned.
+       (inst cal ,result-tn ,alloc-tn other-pointer-type)
+       (inst cal ,alloc-tn ,alloc-tn (pad-data-block ,size))
+       (store-symbol-value ,alloc-tn *allocation-pointer*)
+       (inst li ,header-tn (logior (ash (1- ,size) type-bits) ,type-code))
+       (storew ,header-tn ,result-tn 0 other-pointer-type)
+       ,@body)
+     (load-symbol-value ,header-tn *internal-gc-trigger*)
+     (inst tlt ,alloc-tn ,header-tn)))
 
 
 
diff --git a/compiler/rt/move.lisp b/compiler/rt/move.lisp
index 6bfb53061..6d9047eaa 100644
--- a/compiler/rt/move.lisp
+++ b/compiler/rt/move.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/move.lisp,v 1.3 1991/05/09 16:30:06 ram Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/move.lisp,v 1.4 1991/10/22 16:42:18 wlott Exp $
 ;;;
 ;;; This file contains the IBM RT VM definition of operand loading/saving and the
 ;;; Move VOP.
@@ -303,6 +303,8 @@
 	  (store-symbol-value alloc *allocation-pointer*)
 	  (storew temp y 0 other-pointer-type)
 	  (storew x y bignum-digits-offset other-pointer-type))
+	(load-symbol-value temp *internal-gc-trigger*)
+	(inst tlt temp alloc)
 	(inst b done)))))
 ;;;
 (define-move-vop move-from-unsigned :move
-- 
GitLab