From fe1124dcf8259c7f0cf69eb1a1dd27ba758fb852 Mon Sep 17 00:00:00 2001 From: chiles <chiles> Date: Tue, 23 Apr 1991 21:39:07 +0000 Subject: [PATCH] Added COUNT-ME VOP which was missing in RT port. --- compiler/rt/system.lisp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/compiler/rt/system.lisp b/compiler/rt/system.lisp index 159b2f949..9b1519f01 100644 --- a/compiler/rt/system.lisp +++ b/compiler/rt/system.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/system.lisp,v 1.3 1991/04/23 17:00:07 chiles Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/rt/system.lisp,v 1.4 1991/04/23 21:39:07 chiles Exp $ ;;; ;;; IBM RT VM definitions of various system hacking operations. ;;; @@ -286,3 +286,17 @@ (:generator 1 (inst break halt-trap))) + + +;;;; Dynamic vop count collection support + +(define-vop (count-me) + (:args (count-vector :scs (descriptor-reg))) + (:info index) + (:temporary (:scs (non-descriptor-reg)) count) + (:generator 1 + (let ((offset + (- (* (+ index vector-data-offset) word-bytes) other-pointer-type))) + (inst l count count-vector offset) + (inst inc count 1) + (inst st count count-vector offset)))) -- GitLab