From 1885f64eea46244d1ccaa2a8d5e967aa625335b5 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 4 Oct 1990 23:23:43 +0000 Subject: [PATCH] Added a define-vop for structurify. --- compiler/mips/system.lisp | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/compiler/mips/system.lisp b/compiler/mips/system.lisp index ccaf76884..dca1f1082 100644 --- a/compiler/mips/system.lisp +++ b/compiler/mips/system.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.31 1990/09/09 20:39:52 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.32 1990/10/04 23:23:43 wlott Exp $ ;;; ;;; MIPS VM definitions of various system hacking operations. ;;; @@ -156,6 +156,18 @@ (move res x))) +(define-vop (structurify) + (:policy :fast-safe) + (:translate structurify) + (:args (vec :scs (descriptor-reg) :target struct)) + (:results (struct :scs (descriptor-reg))) + (:temporary (:scs (any-reg)) temp) + (:generator 2 + (inst li temp vm:structure-header-type) + (storew temp vec 0 vm:other-pointer-type) + (move struct vec))) + + (define-vop (make-fixnum) (:args (ptr :scs (any-reg descriptor-reg))) (:results (res :scs (any-reg descriptor-reg))) -- GitLab