From 53cefe36677ecd5eabde3b7d7ced0f6092519048 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 7 Mar 1990 18:40:36 +0000 Subject: [PATCH] Added structure-index-{ref,set} VOPs. They are just like structure-{ref,set}, except they take the index as an argument instead of as info. --- compiler/mips/cell.lisp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/compiler/mips/cell.lisp b/compiler/mips/cell.lisp index 1e94eae44..879c1a061 100644 --- a/compiler/mips/cell.lisp +++ b/compiler/mips/cell.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/cell.lisp,v 1.19 1990/03/06 22:09:29 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/cell.lisp,v 1.20 1990/03/07 18:40:36 wlott Exp $ ;;; ;;; This file contains the VM definition of various primitive memory access ;;; VOPs for the MIPS. @@ -463,3 +463,10 @@ (define-vop (structure-set slot-set) (:variant vm:vector-data-offset vm:other-pointer-type)) + +(define-vop (structure-index-ref word-index-ref) + (:variant vm:vector-data-offset vm:other-pointer-type)) + +(define-vop (structure-index-set word-index-set) + (:variant vm:vector-data-offset vm:other-pointer-type)) + -- GitLab