1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
|
;; Copyright (C) 1994 M. Hagiya, W. Schelter, T. Yuasa
;; Copyright (C) 2024 Camm Maguire
;; This file is part of GNU Common Lisp, herein referred to as GCL
;;
;; GCL is free software; you can redistribute it and/or modify it under
;; the terms of the GNU LIBRARY GENERAL PUBLIC LICENSE as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; GCL is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
;; License for more details.
;;
;; You should have received a copy of the GNU Library General Public License
;; along with GCL; see the file COPYING. If not, write to the Free Software
;; Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
;;;; arraylib.lsp
;;;;
;;;; array routines
(in-package :system)
(defconstant +array-type-info+
(mapcar (lambda (x &aux (y (make-vector x 1 t nil nil 0 nil nil)))
(list x (c-array-elttype y) (c-array-eltsize y) (c-array-eltmode y)
(ecase x
(signed-char '*char)
((character unsigned-char non-negative-char bit) '*uchar)
(signed-short '*short)
((unsigned-short non-negative-short) '*ushort)
(signed-int '*int)
((unsigned-int non-negative-int) '*uint)
(short-float '*float)
(long-float '*double)
(t '*object)
((non-negative-fixnum fixnum) '*fixnum))))
+array-types+))
#.`(defun set-array (r i s j &optional sw);assumes arrays of same type and indices in bounds
(declare (optimize (safety 1))(seqind i j))
(check-type r array)
(check-type s array)
(flet ((sp (r i s j gf sf &aux (x (when sw (funcall gf r i))))
(funcall sf (funcall gf s j) r i)
(when sw (funcall sf x s j))))
(case
(c-array-eltsize r)
,@(mapcar (lambda (x &aux (z (pop x))(y (pop x))(w (car x)))
`(,z (infer-tp
r ,y (infer-tp
s ,y
,(if (zerop z)
`(sp r i s j #'0-byte-array-self #'set-0-byte-array-self)
`(let* ((rs (c-array-self r))(ss (if (eq r s) rs (c-array-self s))))
(sp rs i ss j
(lambda (rs i) (,w rs i nil nil))
(lambda (v rs i) (,w rs i t v)))))))))
(lreduce (lambda (y x &aux (sz (caddr x))(fn (fifth x))(z (assoc sz y))(tp (cmp-norm-tp `(array ,(car x)))))
(cond (z (setf (cadr z) (tp-or (cadr z) tp) (caddr z) fn) y)
((cons (list sz tp fn) y))))
+array-type-info+ :initial-value nil)))))
(declaim (inline set-array))
(defun set-array-n (r i s j n);assumes arrays of same type and indices in bounds
(declare (optimize (safety 1))(seqind i j n));FIXME
(check-type r array)
(check-type s array)
(let ((z (c-array-eltsize r)))
(if (zerop z)
(copy-bit-vector r i s j n)
(let* ((rs (c-array-self r))(ss (if (eq r s) rs (c-array-self s))))
(memmove (c+ rs (<< i (1- z))) (c+ ss (<< j (1- z))) (<< n (1- z))))))
r)
(declaim (inline set-array-n))
#.`(defun array-element-type (x)
(declare (optimize (safety 1)))
(check-type x array)
(case
(c-array-elttype x)
,@(mapcar (lambda (x &aux (tp (pop x))) `(,(car x) ',tp)) +array-type-info+)))
#.`(defun row-major-aref-int (a i)
(ecase
(c-array-elttype a)
,@(mapcar (lambda (y &aux (x (pop y)))
`(,(pop y)
,(case x
(character `(code-char (*uchar (c-array-self a) i nil nil)))
(bit `(0-byte-array-self a i))
(otherwise `(,(caddr y) (c-array-self a) i nil nil)))))
+array-type-info+)))
(declaim (inline row-major-aref-int))
(defun row-major-aref (a i)
(declare (optimize (safety 1)))
(check-type a array)
(check-type i seqind)
(assert (< i (array-total-size a)) (i) 'type-error :datum i :expected-type `(integer 0 (,(array-total-size a))))
(row-major-aref-int a i))
#.`(defun row-major-aset (v a i)
(declare (optimize (safety 1)))
(check-type a array)
(check-type i seqind)
(assert (< i (array-total-size a)) (i) 'type-error :datum i :expected-type `(integer 0 (,(array-total-size a))))
(ecase
(c-array-elttype a)
,@(mapcar (lambda (y &aux (x (pop y)))
`(,(pop y)
(check-type v ,x)
,(case x
(character `(code-char (*uchar (c-array-self a) i t (char-code v))))
(bit `(set-0-byte-array-self v a i))
((t) `(,(caddr y) (c-array-self a) i a v))
(otherwise `(,(caddr y) (c-array-self a) i t v)))))
+array-type-info+)))
(setf (get 'row-major-aset 'compiler::consider-inline) t)
(defun 0-byte-array-self (array index)
(declare (optimize (safety 1)))
(check-type array (array bit))
(check-type index seqind)
(let* ((off (+ index (array-offset array)))
(ind (>> off #.(1- (integer-length fixnum-length))))
(word (*fixnum (c-array-self array) ind nil nil))
(shft (end-shft (& off #.(1- fixnum-length)))))
(& (>> word shft) 1)))
(declaim (inline 0-byte-array-self))
(defun set-0-byte-array-self (bit array index)
(declare (optimize (safety 1)))
(check-type array (array bit))
(check-type index seqind)
(check-type bit bit)
(let* ((off (+ index (array-offset array)))
(ind (>> off #.(1- (integer-length fixnum-length))))
(word (*fixnum (c-array-self array) ind nil nil))
(shft (end-shft (& off #.(1- fixnum-length))))
(val (<< 1 shft)))
(*fixnum (c-array-self array) ind t (if (zerop bit) (& word (~ val)) (\| word val)))
bit))
(declaim (inline set-0-byte-array-self))
(defun array-row-major-index (array &rest indices &aux (k 1))
(declare (optimize (safety 1))(inline array-dimension)(rnkind k))
(check-type array array)
(assert (apply 'array-in-bounds-p array indices))
(the seqind
(lreduce (lambda (y x &aux (z (array-dimension array k)))
(declare (seqind x y))
(incf k)
(+ x (the seqind (c* y z))));FIXME * inline-args
(cdr indices) :initial-value (if indices (car indices) 0))))
(defun aref (a &rest q)
(declare (optimize (safety 1)) (dynamic-extent q))
(check-type a array)
(if (and q (not (cdr q)))
(let ((x a))(check-type x vector))
(let ((x a))(check-type x matrix)))
(row-major-aref a (apply 'array-row-major-index a q)))
#-(and pre-gcl raw-image)
(defun aset (v a &rest q)
(declare (optimize (safety 1)) (dynamic-extent q))
(check-type a array)
(if (and q (not (cdr q)))
(let ((x a))(check-type x vector))
(let ((x a))(check-type x matrix)))
(row-major-aset v a (apply 'array-row-major-index a q)))
(declaim (inline aset))
(setf (symbol-function 'array-rank) (symbol-function 'c-array-rank)
(symbol-function 'array-total-size) (symbol-function 'c-array-dim))
(defun array-in-bounds-p (a &rest i &aux (j 0))
(declare (optimize (safety 1)) (dynamic-extent i))
(check-type a array)
(unless (member-if-not (lambda (x) (<= 0 x (1- (array-dimension a (prog1 j (incf j)))))) i)
(eql j (c-array-rank a))))
(defun array-dimension (x i)
(declare (optimize (safety 2)))
(check-type x array)
(check-type i rnkind)
(let ((r (c-array-rank x)));FIXME
(assert (< i r) () 'type-error :datum i :expected-type `(integer 0 (,r)))
(if (eql 1 r) (c-array-dim x) (array-dims x i))));(the seqind (*fixnum (c-array-dims x) i nil nil))
(defun array-displacement (x)
(declare (optimize (safety 1)))
(check-type x array)
(let ((x (typecase x (adjustable-array (car (c-adjarray-displaced x))))))
(values (car x) (or (cdr x) 0))))
(defun array-dimensions (x)
(declare (optimize (safety 1)))
(check-type x array)
(let ((r (array-rank x)) z)
(labels ((collect (i) (cond ((minusp i) z) ((push (array-dimension x i) z) (collect (1- i))))))
(collect (1- r)))))
(defun array-has-fill-pointer-p (x)
(declare (optimize (safety 1)))
(check-type x array)
(typecase
x
(adjustable-vector
(not (zerop (c-array-hasfillp x))))))
(defun fill-pointer (x)
(declare (optimize (safety 1)))
(check-type x adjustable-vector)
(assert (array-has-fill-pointer-p x) (x) 'type-error :datum x :expected-type '(satisfies array-has-fill-pointer-p))
(c-adjvector-fillp x))
; (fill-pointer-internal x)
(defun make-array (dimensions
&key (element-type t)
initial-element
(initial-contents nil icsp)
adjustable fill-pointer
displaced-to (displaced-index-offset 0)
static
&aux
(dimensions (if (and (listp dimensions) (not (cdr dimensions))) (car dimensions) dimensions))
(element-type (upgraded-array-element-type element-type)))
(declare (optimize (safety 1)))
(check-type fill-pointer (or boolean integer))
(check-type displaced-to (or null array))
(check-type displaced-index-offset integer)
(etypecase
dimensions
(list
(assert (not fill-pointer))
(dolist (d dimensions) (check-type d integer))
(let ((x (make-array1 element-type static initial-element displaced-to displaced-index-offset dimensions adjustable)))
(when (unless (member 0 dimensions) icsp)
(let ((i -1))
(labels ((set (d c) (cond (d (assert (eql (car d) (length c))) (map nil (lambda (z) (set (cdr d) z)) c))
((row-major-aset c x (incf i))))))
(set dimensions initial-contents))))
x))
(integer
(let ((x (make-vector element-type dimensions adjustable (when fill-pointer dimensions)
displaced-to displaced-index-offset static initial-element)))
(when icsp (replace x initial-contents))
(when (and fill-pointer (not (eq t fill-pointer))) (setf (fill-pointer x) fill-pointer))
x))))
(defun vector (&rest objects)
(declare (dynamic-extent objects))
(make-array (length objects) :element-type t :initial-contents objects))
(deftype bit-array nil `(array bit))
(deftype simple-bit-array nil `(simple-array bit))
(defun bit (bit-array &rest indices)
(declare (dynamic-extent indices)(optimize (safety 1)))
(check-type bit-array bit-array)
(apply 'aref bit-array indices))
#-(and pre-gcl raw-image)
(defun sbit (bit-array &rest indices)
(declare (dynamic-extent indices)(optimize (safety 1)))
(check-type bit-array simple-bit-array)
(apply 'aref bit-array indices))
(defun char (x i)
(declare (optimize (safety 2)))
(check-type x string)
(check-type i seqind)
(aref x i))
(defun schar (x i)
(declare (optimize (safety 1)))
(check-type x simple-string)
(check-type i seqind)
(aref x i))
(declaim (inline char-set))
(defun char-set (x i v)
(declare (optimize (safety 1)))
(check-type x string)
(check-type i seqind)
(check-type v character)
(aset v x i))
(declaim (inline schar-set))
(defun schar-set (x i v)
(declare (optimize (safety 1)))
(check-type x simple-string)
(check-type i seqind)
(check-type v character)
(aset v x i))
(defun vector-push (new-element vector)
(declare (optimize (safety 1)))
(check-type vector adjustable-vector)
(assert (array-has-fill-pointer-p vector) (vector) 'type-error :datum vector :expected-type '(satisfies array-has-fill-pointer-p));FIXME
(let ((fp (fill-pointer vector)))
(cond ((< fp (array-dimension vector 0))
(setf (aref vector fp) new-element (fill-pointer vector) (1+ fp))
fp))))
(defun vector-push-extend (new-element vector &optional extension)
(declare (optimize (safety 1)))
(check-type vector adjustable-vector)
(assert (array-has-fill-pointer-p vector) (vector) 'type-error :datum vector :expected-type '(satisfies array-has-fill-pointer-p))
(let* ((fp (fill-pointer vector))
(dim (array-dimension vector 0))
(vector (if (< fp dim) vector
(adjust-array vector (the seqind (+ dim (or extension (max 5 dim))))
:element-type (array-element-type vector)
:fill-pointer fp))))
(setf (aref vector fp) new-element (fill-pointer vector) (1+ fp))
fp))
(defun vector-pop (vector)
(declare (optimize (safety 1)))
(check-type vector adjustable-vector)
(assert (array-has-fill-pointer-p vector) (vector) 'type-error :datum vector :expected-type '(satisfies array-has-fill-pointer-p))
(let ((fp (fill-pointer vector)))
(check-type fp (integer 1))
(setf (fill-pointer vector) (1- fp))
(aref vector (1- fp))))
(defun adjustable-array-p (array)
(declare (optimize (safety 1)))
(check-type array array)
(typep array 'adjustable-array))
(defun adjust-array (array new-dimensions
&rest r
&key element-type
initial-element
(initial-contents nil initial-contents-supplied-p)
(fill-pointer nil fill-pointer-supplied-p)
(displaced-to nil)
(displaced-index-offset 0)
(static nil static-supplied-p))
(declare (ignore initial-element initial-contents static displaced-index-offset) ;FIXME
(dynamic-extent r)
(optimize (safety 2)))
(check-type array array)
(check-type new-dimensions (or seqind proper-list))
(when (and (listp new-dimensions) (not (cdr new-dimensions))) (setq new-dimensions (car new-dimensions)))
(setq element-type (array-element-type array))
(unless (eq element-type t)
(setq r (cons element-type r) r (cons :element-type r)))
(unless static-supplied-p
(setq r (cons (staticp array) r) r (cons :static r)))
(cond (fill-pointer-supplied-p
(let ((fill-pointer (or fill-pointer (when (array-has-fill-pointer-p array) (fill-pointer array)))))
(setf (cadr (member :fill-pointer r)) fill-pointer)))
((array-has-fill-pointer-p array) (setq r (cons (fill-pointer array) r) r (cons :fill-pointer r))))
(let ((x (apply 'make-array new-dimensions :adjustable t r))) ;FIXME avoid when possible
(unless (or displaced-to initial-contents-supplied-p)
(cond ((or (seqindp new-dimensions)
(and (equal (cdr new-dimensions) (cdr (array-dimensions array)))
(or (not (eq element-type 'bit))
(when new-dimensions (= 0 (mod (the seqind (car (last new-dimensions))) char-length))))))
(copy-array-portion array x 0 0 (min (array-total-size x) (array-total-size array))))
((let ((i -1))
(labels ((set (dim &optional (cur (make-list (length new-dimensions) :initial-element 0)) (ind cur))
(declare (dynamic-extent cur))
(cond (dim (dotimes (i (pop dim)) (setf (car cur) i) (set dim (cdr cur) ind)))
((incf i)
(when (apply 'array-in-bounds-p array ind)
(row-major-aset (apply 'aref array ind) x i))))))
(set new-dimensions))))))
(if (typep array 'unadjustable-array)
(setq array x)
(replace-array array x))
(when (eq fill-pointer t)
(setq fill-pointer (array-total-size array)))
(when fill-pointer
(setf (fill-pointer array) fill-pointer))
array))
(defun array-total-size (a)
(declare (optimize (safety 1)))
(check-type a array)
(c-array-dim a))
(defun array-rank (a)
(declare (optimize (safety 1)))
(check-type a array)
(c-array-rank a))
(defun array-dims-propagator (f t1 t2 &aux (d (atomic-tp-array-dimensions t1))
(a (car (atomic-tp t2))))
(declare (ignore f))
(when (and a d)
(object-tp (nth a (car d)))))
(setf (get 'array-dims 'type-propagator) 'array-dims-propagator)
(defun applicable-array-infos (x k)
(when (tp>= #tarray x)
(cmp-norm-tp
(cons 'member
(mapcar k
(lreduce (lambda (y z)
(if (tp<= x (car z)) y (cons (cdr z) y)))
'#.(mapcar (lambda (x) (cons (cmp-norm-tp `(not (array ,(pop x)))) x))
+array-type-info+)
:initial-value nil))))))
(defun array-elttype-propagator (f x)
(declare (ignore f))
(applicable-array-infos x 'car))
(setf (get 'c-array-elttype 'type-propagator) 'array-elttype-propagator)
(defun array-eltsize-propagator (f x)
(declare (ignore f))
(applicable-array-infos x 'cadr))
(setf (get 'c-array-eltsize 'type-propagator) 'array-eltsize-propagator)
(defun array-eltmode-propagator (f x)
(declare (ignore f))
(applicable-array-infos x 'caddr))
(setf (get 'c-array-eltmode 'type-propagator) 'array-eltmode-propagator)
(defun array-rank-propagator (f x)
(declare (ignore f))
(cond
((tp>= #tvector x) #t(member 1))
((let ((d (atomic-tp-array-rank x)))
(when d (object-tp d))))
((tp>= #tmatrix x) #t(and rnkind (not (eql 1))))
((tp>= #tarray x) #trnkind)))
(setf (get 'c-array-rank 'type-propagator) 'array-rank-propagator)
(defun array-dim-propagator (f t1 &aux (d (atomic-tp-array-dimensions t1)))
(declare (ignore f))
(when d
(object-tp (reduce '* (car d)))))
(setf (get 'c-array-dim 'type-propagator) 'array-dim-propagator)
(defun svref (x i)
(declare (optimize (safety 1)))
(check-type x simple-vector)
(check-type i seqind)
(aref x i))
(defun svset (x i v)
(declare (optimize (safety 1)))
(check-type x simple-vector)
(check-type i seqind)
(aset v x i))
(setf (get 'svset 'cmp-inline) t)
#.`(defun array-eql-is-eq (x)
(case (c-array-elttype x)
(,(mapcan (lambda (x)
(when (subtypep x 'eql-is-eq-tp)
(list (c-array-elttype (make-array 1 :element-type x)))))
+array-types+)
t)))
(declaim (inline array-eql-is-eq))
(defun msdata-ref (d s)
(structure-ref1 d (fifth (assoc s (structure-ref1 d 7)))));FIXME 7
(defmacro str-refset (x s n &optional (v nil vp)
&aux (str (sgen "STR-REFSET"))(val (sgen "STR-REFSET")))
(declare (optimize (safety 1)))
(assert (and (constantp s) (constantp n)))
(let* ((s (eval s))(n (eval n))(?sd (eq s 's-data))
(d (get s 's-data))
(pos (aref (if ?sd (msdata-ref d 'slot-position) (s-data-slot-position d)) n))
(tp (car (last (nth n (if ?sd (msdata-ref d 'slot-descriptions) (s-data-slot-descriptions d))))))
(k (aref (if ?sd (msdata-ref d 'raw) (s-data-raw d)) n))
(l (nth k +array-type-info+))
(off (ash pos (min 0 (- (1- (third l))))))
(cp (eq (car l) 'character)))
(flet ((fm (x y)
(let* ((res `(,(fifth l) (c-strstd-sself ,x) ,off ,(when y (if (eq '*object (fifth l)) x t)) ,y))
(res (if cp `(code-char ,res) res)))
(if (unless (eq tp t) tp) `(the ,tp ,res) res))))
(if vp
`(let ((,str ,x)(,val ,(if cp `(char-code ,v) v)));FIXME sgc-touch would go here
,(fm str val))
(fm x nil)))))
(defun *-propagator (f t1 t2 t3 t4)
(declare (ignore t1 t2))
(when (tp<= t3 #t(not null))
(tp-and t4
(reduce 'tp-or
(mapcar (lambda (x) (unless (eq (car x) 'character) (cmp-norm-tp (car x))));FIXME
(remove f +array-type-info+ :test-not 'eq :key 'fifth))
:initial-value nil))))
(dolist (l (mapcar 'fifth +array-type-info+))
(setf (get l 'type-propagator) '*-propagator))
|