From 7a54240cc2aaceac5ec2027c2b26deee87319d7a Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Sun, 6 May 1990 05:22:00 +0000
Subject: [PATCH] Moved the guts of {get,set}-vector-subtype into
 {get,set}-header-data (in system.lisp) and made the vector-subtype vops
 variants of the header-data vops.

---
 compiler/mips/array.lisp | 27 +++------------------------
 1 file changed, 3 insertions(+), 24 deletions(-)

diff --git a/compiler/mips/array.lisp b/compiler/mips/array.lisp
index 59e9a9b89..dc75c5457 100644
--- a/compiler/mips/array.lisp
+++ b/compiler/mips/array.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/array.lisp,v 1.13 1990/04/29 03:22:57 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/array.lisp,v 1.14 1990/05/06 05:22:00 wlott Exp $
 ;;;
 ;;;    This file contains the MIPS definitions for array operations.
 ;;;
@@ -168,27 +168,6 @@
     (loadw res vec clc::g-vector-header-words)
     (inst niuo res res clc::g-vector-words-mask-16)))
 
-
-(define-vop (get-vector-subtype)
-  (:args (x :scs (descriptor-reg)))
-  (:temporary (:scs (non-descriptor-reg) :type random) temp)
-  (:results (res :scs (any-reg descriptor-reg)))
-  (:generator 6
-    (loadw temp x 0 vm:other-pointer-type)
-    (inst sra temp temp vm:type-bits)
-    (inst sll res temp 2)))
-
-(define-vop (set-vector-subtype)
-  (:args (x :scs (descriptor-reg) :target res)
-	 (subtype :scs (any-reg descriptor-reg)))
-  (:results (res :scs (descriptor-reg)))
-  (:temporary (:scs (non-descriptor-reg) :type random) t1 t2)
-  (:generator 6
-    (loadw t1 x 0 vm:other-pointer-type)
-    (inst li t2 vm:type-mask)
-    (inst and t1 t1 t2)
-    (inst sll t2 subtype (- vm:type-bits 2))
-    (inst or t1 t1 t2)
-    (storew t1 x 0 vm:other-pointer-type)
-    (move res x)))
+(define-vop (get-vector-subtype get-header-data))
+(define-vop (set-vector-subtype set-header-data))
 
-- 
GitLab