From 90ecfe6bb534369954cc7a809a1a9920e71128ae Mon Sep 17 00:00:00 2001
From: gerd <gerd>
Date: Fri, 12 Sep 2003 11:29:37 +0000
Subject: [PATCH] 	* src/compiler/srctran.lisp (%dpb-derive-type-aux):
 Extract from 	%dpb optimizer.  Add in a sign bit for signed numbers. 	(%dpb,
 %deposit-field) <defoptimizer>: Use %dpb-derive-type-aux. 	Reported by
 Paul Dietz.

---
 compiler/srctran.lisp | 70 ++++++++++++++-----------------------------
 1 file changed, 22 insertions(+), 48 deletions(-)

diff --git a/compiler/srctran.lisp b/compiler/srctran.lisp
index 74c7ba2e8..39259fdb5 100644
--- a/compiler/srctran.lisp
+++ b/compiler/srctran.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/srctran.lisp,v 1.131 2003/09/12 10:36:18 gerd Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/srctran.lisp,v 1.132 2003/09/12 11:29:37 gerd Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -2444,56 +2444,30 @@
 	      (specifier-type 'unsigned-byte)))
 	*universal-type*)))
 
-(defoptimizer (%dpb derive-type) ((newbyte size posn int))
-  (let ((size (continuation-type size))
-	(posn (continuation-type posn))
-	(int (continuation-type int)))
-    (if (and (numeric-type-p size)
-	     (csubtypep size (specifier-type 'integer))
+(defun %dpb-derive-type-aux (size posn int)
+  (when (and (numeric-type-p size)
 	     (numeric-type-p posn)
-	     (csubtypep posn (specifier-type 'integer))
-	     (numeric-type-p int)
-	     (csubtypep int (specifier-type 'integer)))
-	(let ((size-high (numeric-type-high size))
-	      (posn-high (numeric-type-high posn))
-	      (high (numeric-type-high int))
-	      (low (numeric-type-low int)))
-	  (if (and size-high posn-high high low
-		   (<= (+ size-high posn-high) vm:word-bits))
-	      (specifier-type
-	       (list (if (minusp low) 'signed-byte 'unsigned-byte)
-		     (max (integer-length high)
-			  (integer-length low)
-			  (+ size-high posn-high))))
-	      *universal-type*))
-	*universal-type*)))
+	     (numeric-type-p int))
+    (let ((size-high (numeric-type-high size))
+	  (posn-high (numeric-type-high posn))
+	  (high (numeric-type-high int))
+	  (low (numeric-type-low int)))
+      (when (and size-high posn-high high low
+		 (<= (+ size-high posn-high) vm:word-bits))
+	(let ((raw-bit-count (max (integer-length high)
+				  (integer-length low)
+				  (+ size-high posn-high))))
+	  (specifier-type
+	   (if (minusp low)
+	       `(signed-byte ,(1+ raw-bit-count))
+	       `(unsigned-byte ,raw-bit-count))))))))
 
+(defoptimizer (%dpb derive-type) ((newbyte size posn int))
+  (%dpb-derive-type-aux size posn int))
+  
 (defoptimizer (%deposit-field derive-type) ((newbyte size posn int))
-  (let ((size (continuation-type size))
-	(posn (continuation-type posn))
-	(int (continuation-type int)))
-    (if (and (numeric-type-p size)
-	     (csubtypep size (specifier-type 'integer))
-	     (numeric-type-p posn)
-	     (csubtypep posn (specifier-type 'integer))
-	     (numeric-type-p int)
-	     (csubtypep int (specifier-type 'integer)))
-	(let ((size-high (numeric-type-high size))
-	      (posn-high (numeric-type-high posn))
-	      (high (numeric-type-high int))
-	      (low (numeric-type-low int)))
-	  (if (and size-high posn-high high low
-		   (<= (+ size-high posn-high) vm:word-bits))
-	      (specifier-type
-	       (list (if (minusp low) 'signed-byte 'unsigned-byte)
-		     (max (integer-length high)
-			  (integer-length low)
-			  (+ size-high posn-high))))
-	      *universal-type*))
-	*universal-type*)))
-
-
-
+  (%dpb-derive-type-aux size posn int))
+  
 (deftransform %ldb ((size posn int)
 		    (fixnum fixnum integer)
 		    (unsigned-byte #.vm:word-bits))
-- 
GitLab