From 660c9c169455ba1ba15540c75b7d83fb25c2a2de Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sat, 4 May 1991 18:46:52 +0000 Subject: [PATCH] Fixed a bug in the data-vector-ref/unsigned-byte-{1,2,4}-c VOP in which it wouldn't clear the extra bits if the bit offset into the word was 0. In actuality, this didn't matter, because this vop was never used. Even if the index was a constant, it got fed through check-bounds, so it was no longer a constant when it showed up at data-vector-ref. --- compiler/sparc/array.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/sparc/array.lisp b/compiler/sparc/array.lisp index 6eac60ecc..42d894a76 100644 --- a/compiler/sparc/array.lisp +++ b/compiler/sparc/array.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/array.lisp,v 1.4 1991/04/17 21:36:54 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/array.lisp,v 1.5 1991/05/04 18:46:52 wlott Exp $ ;;; ;;; This file contains the SPARC definitions for array operations. ;;; @@ -193,6 +193,7 @@ (:temporary (:scs (non-descriptor-reg)) temp) (:generator 15 (multiple-value-bind (word extra) (floor index ,elements-per-word) + (setf extra (logxor extra (1- ,elements-per-word))) (let ((offset (- (* (+ word vm:vector-data-offset) vm:word-bytes) vm:other-pointer-type))) (cond ((typep offset '(signed-byte 13)) @@ -203,7 +204,7 @@ (unless (zerop extra) (inst srl result (logxor (* extra ,bits) ,(1- elements-per-word)))) - (unless (zerop extra) + (unless (= extra ,(1- elements-per-word)) (inst and result ,(1- (ash 1 bits))))))) (define-vop (,(symbolicate 'data-vector-set/ type)) (:note "inline array store") -- GitLab