Date: Sunday, August 21, 2011 @ 00:43:39 Author: rtoy Path: /project/cmucl/cvsroot/src
Modified: code/room.lisp general-info/release-20c.txt
Reduce consing of SAPs in ROOM.
Patch from Helmut Eller, cmucl-imp 2011-08-11.
------------------------------+ code/room.lisp | 4 ++-- general-info/release-20c.txt | 1 + 2 files changed, 3 insertions(+), 2 deletions(-)
Index: src/code/room.lisp diff -u src/code/room.lisp:1.40 src/code/room.lisp:1.41 --- src/code/room.lisp:1.40 Tue Apr 20 10:57:45 2010 +++ src/code/room.lisp Sun Aug 21 00:43:38 2011 @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /project/cmucl/cvsroot/src/code/room.lisp,v 1.40 2010/04/20 17:57:45 rtoy Rel $") + "$Header: /project/cmucl/cvsroot/src/code/room.lisp,v 1.41 2011/08/21 07:43:38 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -368,7 +368,7 @@ (fixnum (sap+ current size)) (memory-size (sap+ current size))))) (setf current c)))) - (declare (inline next)) + (declare (inline next maybe-finish-mapping)) (loop (maybe-finish-mapping) (maybe-skip-page) Index: src/general-info/release-20c.txt diff -u src/general-info/release-20c.txt:1.27 src/general-info/release-20c.txt:1.28 --- src/general-info/release-20c.txt:1.27 Tue Jul 12 10:24:26 2011 +++ src/general-info/release-20c.txt Sun Aug 21 00:43:39 2011 @@ -136,6 +136,7 @@ - Getting documentation of a structure via DOCUMENTATION no longer signals an error in DGETTEXT trying to translate the null documentation string. + - Reduce unnecessary consing of SAPs in ROOM.
* Trac Tickets: