From a9940b52e3e0301bd7639a9fcd875a4a44023e86 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 12 Apr 1990 16:33:28 +0000 Subject: [PATCH] Added :ref-vops for function and closure primitive data objects. --- compiler/mips/parms.lisp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/compiler/mips/parms.lisp b/compiler/mips/parms.lisp index 641741769..bc683cabd 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.42 1990/04/06 00:02:24 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.43 1990/04/12 16:33:28 wlott Exp $ ;;; ;;; This file contains some parameterizations of various VM ;;; attributes for the MIPS. This file is separate from other stuff so @@ -365,11 +365,11 @@ (define-primitive-object (function-header :lowtag function-pointer-type :header function-header-type) - self - next - name - arglist - 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) (code :rest-p t :c-type "unsigned char")) (define-primitive-object (return-pc :lowtag other-pointer-type :header t) @@ -378,7 +378,7 @@ (define-primitive-object (closure :lowtag function-pointer-type :header closure-header-type :alloc-vop c::make-closure) - (function :init :arg) + (function :init :arg :ref-vop c::closure-function) (info :rest-p t :set-vop c::closure-init :ref-vop c::closure-ref)) (define-primitive-object (value-cell :lowtag other-pointer-type -- GitLab