Update of /project/movitz/cvsroot/movitz/losp/muerte In directory common-lisp.net:/tmp/cvs-serv7395
Modified Files: functions.lisp Log Message: Added placeholder function funobj-frame-num-unboxed. The idea is that when the compiler supports local unboxed variables, a field in the funobj is used to mark off such sections of the stack-frame (each stack-frame also holds a reference to the funobj).
Date: Sun Mar 28 12:31:41 2004 Author: ffjeld
Index: movitz/losp/muerte/functions.lisp diff -u movitz/losp/muerte/functions.lisp:1.6 movitz/losp/muerte/functions.lisp:1.7 --- movitz/losp/muerte/functions.lisp:1.6 Fri Mar 26 08:58:01 2004 +++ movitz/losp/muerte/functions.lisp Sun Mar 28 12:31:41 2004 @@ -10,7 +10,7 @@ ;;;; Author: Frode Vatvedt Fjeld frodef@acm.org ;;;; Created at: Tue Mar 12 22:58:54 2002 ;;;; -;;;; $Id: functions.lisp,v 1.6 2004/03/26 13:58:01 ffjeld Exp $ +;;;; $Id: functions.lisp,v 1.7 2004/03/28 17:31:41 ffjeld Exp $ ;;;; ;;;;------------------------------------------------------------------
@@ -312,6 +312,11 @@ (defun funobj-debug-info (funobj) (check-type funobj compiled-function) (movitz-accessor-u16 funobj movitz-funobj debug-info)) + +(defun funobj-frame-num-unboxed (funobj) + "The number of unboxed slots in this function's stack-frame(s)." + (declare (ignore funobj)) + 0)
(defun make-funobj (&key (name :unnamed) (code-vector (funobj-code-vector #'constantly-prototype))