From 9c6f455499c96304eab6d6344aee8550c109ecf3 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Wed, 15 Aug 1990 02:55:01 +0000
Subject: [PATCH] Added cell-setf-function vop, to be used when we want a
 setf-function as apposed to a setf-macro (i.e. new-value first not last).

---
 compiler/mips/memory.lisp | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

diff --git a/compiler/mips/memory.lisp b/compiler/mips/memory.lisp
index ef16a4681..5845278eb 100644
--- a/compiler/mips/memory.lisp
+++ b/compiler/mips/memory.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/memory.lisp,v 1.9 1990/06/18 14:47:14 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/memory.lisp,v 1.10 1990/08/15 02:55:01 wlott Exp $
 ;;;
 ;;;    This file contains the MIPS definitions of some general purpose memory
 ;;; reference VOPs inherited by basic memory reference operations.
@@ -22,7 +22,9 @@
 
 ;;; Cell-Ref and Cell-Set are used to define VOPs like CAR, where the offset to
 ;;; be read or written is a property of the VOP used.  Cell-Setf is similar to
-;;; Cell-Set, but delivers the new value as the result.
+;;; Cell-Set, but delivers the new value as the result.  Cell-Setf-Function
+;;; takes its arguments as if it were a setf function (new value first, as
+;;; apposed to a setf macro, which takes the new value last).
 ;;;
 (define-vop (cell-ref)
   (:args (object :scs (descriptor-reg)))
@@ -50,6 +52,17 @@
   (:generator 4
     (storew value object offset lowtag)
     (move result value)))
+;;;
+(define-vop (cell-setf-function)
+  (:args (value :scs (descriptor-reg any-reg)
+		:target result)
+	 (object :scs (descriptor-reg)))
+  (:results (result :scs (descriptor-reg any-reg)))
+  (:variant-vars offset lowtag)
+  (:policy :fast-safe)
+  (:generator 4
+    (storew value object offset lowtag)
+    (move result value)))
 
 ;;; Define-Cell-Accessors  --  Interface
 ;;;
-- 
GitLab