Skip to content
Snippets Groups Projects
Commit ade59ea0 authored by wlott's avatar wlott
Browse files

Added funcallable-instance support.

parent 4604ec02
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Lisp, please contact Scott Fahlman (Scott.Fahlman@CS.CMU.EDU)
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/cell.lisp,v 1.3 1991/04/23 17:00:56 chiles Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/cell.lisp,v 1.4 1991/05/04 03:37:56 wlott Exp $
;;;
;;; This file contains the VM definition of various primitive memory access
;;; VOPs for the IBM RT.
......@@ -181,6 +181,8 @@
(load-type type function vm:function-pointer-type)
(inst c type vm:closure-header-type)
(inst bc :eq closure)
(inst c type funcallable-instance-header-type)
(inst bc :eq closure)
(inst c type vm:function-header-type)
(inst bcx :eq normal-fn)
(inst a temp function
......@@ -289,6 +291,9 @@
(:variant vm:closure-info-offset vm:function-pointer-type)
(:translate %closure-index-ref))
(define-vop (set-funcallable-instance-info word-index-set)
(:variant funcallable-instance-info-offset function-pointer-type)
(:translate %set-funcallable-instance-info))
;;;; Structure hackery:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment