From 30d92e75629c78b9c008852da0e9eb17fd195ab7 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sun, 23 Sep 1990 16:41:17 +0000 Subject: [PATCH] Added a load-sap move-function. --- compiler/mips/move.lisp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/compiler/mips/move.lisp b/compiler/mips/move.lisp index b93597e5e..3898a59aa 100644 --- a/compiler/mips/move.lisp +++ b/compiler/mips/move.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/move.lisp,v 1.21 1990/09/21 00:53:35 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/move.lisp,v 1.22 1990/09/23 16:41:17 wlott Exp $ ;;; ;;; This file contains the MIPS VM definition of operand loading/saving and ;;; the Move VOP. @@ -20,7 +20,7 @@ (define-move-function (load-immediate 1) (vop x y) ((null unsigned-immediate immediate zero negative-immediate - random-immediate immediate-base-character immediate-sap) + random-immediate immediate-base-character) (any-reg descriptor-reg)) (let ((val (tn-value x))) (etypecase val @@ -43,6 +43,10 @@ ((immediate-base-character) (base-character-reg)) (inst li y (char-code (tn-value x)))) +(define-move-function (load-system-area-pointer 1) (vop x y) + ((immediate-sap) (sap-reg)) + (inst li y (sap-int (tn-value x)))) + (define-move-function (load-constant 5) (vop x y) ((constant) (descriptor-reg)) (loadw y code-tn (tn-offset x) other-pointer-type)) -- GitLab