Skip to content
Snippets Groups Projects
Commit c214d623 authored by ram's avatar ram
Browse files

Improved type testing and declared some functions inline.

parent 96577e79
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/array.lisp,v 1.17 1992/12/10 00:35:16 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/array.lisp,v 1.18 1993/08/06 13:06:05 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -30,6 +30,9 @@ ...@@ -30,6 +30,9 @@
(export '(%with-array-data)) (export '(%with-array-data))
(in-package "LISP") (in-package "LISP")
(declaim (inline fill-pointer array-has-fill-pointer-p adjustable-array-p
array-displacement))
(defconstant array-rank-limit 65529 (defconstant array-rank-limit 65529
"The exclusive upper bound on the rank of an array.") "The exclusive upper bound on the rank of an array.")
...@@ -497,22 +500,22 @@ ...@@ -497,22 +500,22 @@
(defun array-rank (array) (defun array-rank (array)
"Returns the number of dimensions of the Array." "Returns the number of dimensions of the Array."
(cond ((array-header-p array) (if (array-header-p array)
(%array-rank array)) (%array-rank array)
((vectorp array) 1))
1)
(t
(error "~S is not an array." array))))
(defun array-dimension (array axis-number) (defun array-dimension (array axis-number)
"Returns length of dimension Axis-Number of the Array." "Returns length of dimension Axis-Number of the Array."
(declare (array array) (type index axis-number)) (declare (array array) (type index axis-number))
(when (>= axis-number (array-rank array)) (cond ((not (array-header-p array))
(error "~D is too big; ~S only has ~D dimension~:P" (unless (= axis-number 0)
axis-number array (array-rank array))) (error "Vector axis is not zero: ~S" axis-number))
(if (array-header-p array) (length (the (simple-array * (*)) array)))
(%array-dimension array axis-number) ((>= axis-number (%array-rank array))
(length (the (simple-array * (*)) array)))) (error "~D is too big; ~S only has ~D dimension~:P"
axis-number array (%array-rank array)))
(t
(%array-dimension array axis-number))))
(defun array-dimensions (array) (defun array-dimensions (array)
"Returns a list whose elements are the dimensions of the array" "Returns a list whose elements are the dimensions of the array"
...@@ -540,7 +543,7 @@ ...@@ -540,7 +543,7 @@
"Returns T if (adjust-array array...) would return an array identical "Returns T if (adjust-array array...) would return an array identical
to the argument, this happens for complex arrays." to the argument, this happens for complex arrays."
(declare (array array)) (declare (array array))
(not (typep array '(simple-array * (*))))) (not (typep array 'simple-array)))
;;;; Fill pointer frobbing stuff. ;;;; Fill pointer frobbing stuff.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment