From d42e588dd8844720e88c0c2174eb4f565ef828cf Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Fri, 25 May 1990 12:28:15 +0000 Subject: [PATCH] Added ref-vops and set-vops for various code and function slots. --- compiler/mips/parms.lisp | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/compiler/mips/parms.lisp b/compiler/mips/parms.lisp index 85d8539a6..e1794b498 100644 --- a/compiler/mips/parms.lisp +++ b/compiler/mips/parms.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.49 1990/05/18 00:55:23 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.50 1990/05/25 12:28:15 wlott Exp $ ;;; ;;; This file contains some parameterizations of various VM ;;; attributes for the MIPS. This file is separate from other stuff so @@ -371,17 +371,20 @@ (define-primitive-object (code :lowtag other-pointer-type :header t) code-size - entry-points - debug-info + (entry-points :ref-vop c::code-entry-points + :set-vop c::set-code-entry-points) + (debug-info :type t + :ref-trans di::code-debug-info + :ref-known (c::flushable)) (constants :rest-p t)) (define-primitive-object (function-header :lowtag function-pointer-type :header function-header-type) (self :ref-vop c::function-self) - (next :ref-vop c::function-next) - (name :ref-vop c::function-name) - (arglist :ref-vop c::function-arglist) - (type :ref-vop c::function-type) + (next :ref-vop c::function-next :set-vop c::set-function-next) + (name :ref-vop c::function-name :set-vop c::set-function-name) + (arglist :ref-vop c::function-arglist :set-vop c::set-function-arglist) + (type :ref-vop c::function-type :set-vop c::set-function-type) (code :rest-p t :c-type "unsigned char")) (define-primitive-object (return-pc :lowtag other-pointer-type :header t) -- GitLab