⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 array.lisp

📁 开源跨平台Lisp编译器
💻 LISP
📖 第 1 页 / 共 2 页
字号:
;;;; the Sparc definitions for array operations;;;; This software is part of the SBCL system. See the README file for;;;; more information.;;;;;;;; This software is derived from the CMU CL system, which was;;;; written at Carnegie Mellon University and released into the;;;; public domain. The software is in the public domain and is;;;; provided with absolutely no warranty. See the COPYING and CREDITS;;;; files for more information.(in-package "SB!VM");;;; allocator for the array header.(define-vop (make-array-header)  (:translate make-array-header)  (:policy :fast-safe)  (:args (type :scs (any-reg))         (rank :scs (any-reg)))  (:arg-types tagged-num tagged-num)  (:temporary (:scs (descriptor-reg) :to (:result 0) :target result) header)  (:temporary (:scs (non-descriptor-reg)) ndescr)  (:results (result :scs (descriptor-reg)))  (:generator 0    (pseudo-atomic ()      (inst or header alloc-tn other-pointer-lowtag)      (inst add ndescr rank (+ (* (1+ array-dimensions-offset) n-word-bytes)                               lowtag-mask))      (inst andn ndescr lowtag-mask)      (inst add alloc-tn ndescr)      (inst add ndescr rank (fixnumize (1- array-dimensions-offset)))      (inst sll ndescr ndescr n-widetag-bits)      (inst or ndescr ndescr type)      ;; Remove the extraneous fixnum tag bits because TYPE and RANK      ;; were fixnums      (inst srl ndescr ndescr n-fixnum-tag-bits)      (storew ndescr header 0 other-pointer-lowtag))    (move result header)));;;; Additional accessors and setters for the array header.(define-vop (%array-dimension word-index-ref)  (:translate sb!kernel:%array-dimension)  (:policy :fast-safe)  (:variant array-dimensions-offset other-pointer-lowtag))(define-vop (%set-array-dimension word-index-set)  (:translate sb!kernel:%set-array-dimension)  (:policy :fast-safe)  (:variant array-dimensions-offset other-pointer-lowtag))(define-vop (array-rank-vop)  (:translate sb!kernel:%array-rank)  (:policy :fast-safe)  (:args (x :scs (descriptor-reg)))  (:temporary (:scs (non-descriptor-reg)) temp)  (:results (res :scs (any-reg descriptor-reg)))  (:generator 6    (loadw temp x 0 other-pointer-lowtag)    (inst sra temp n-widetag-bits)    (inst sub temp (1- array-dimensions-offset))    (inst sll res temp n-fixnum-tag-bits)));;;; Bounds checking routine.(define-vop (check-bound)  (:translate %check-bound)  (:policy :fast-safe)  (:args (array :scs (descriptor-reg))         (bound :scs (any-reg descriptor-reg))         (index :scs (any-reg descriptor-reg) :target result))  (:results (result :scs (any-reg descriptor-reg)))  (:vop-var vop)  (:save-p :compute-only)  (:generator 5    (let ((error (generate-error-code vop invalid-array-index-error                                      array bound index)))      (inst cmp index bound)      (inst b :geu error)      (inst nop)      (move result index))));;;; Accessors/Setters;;; Variants built on top of word-index-ref, etc.  I.e. those vectors whos;;; elements are represented in integer registers and are built out of;;; 8, 16, or 32 bit elements.(macrolet ((def-data-vector-frobs (type variant element-type &rest scs)  `(progn     (define-vop (,(symbolicate "DATA-VECTOR-REF/" (string type))                  ,(symbolicate (string variant) "-REF"))       (:note "inline array access")       (:variant vector-data-offset other-pointer-lowtag)       (:translate data-vector-ref)       (:arg-types ,type positive-fixnum)       (:results (value :scs ,scs))       (:result-types ,element-type))     (define-vop (,(symbolicate "DATA-VECTOR-SET/" (string type))                  ,(symbolicate (string variant) "-SET"))       (:note "inline array store")       (:variant vector-data-offset other-pointer-lowtag)       (:translate data-vector-set)       (:arg-types ,type positive-fixnum ,element-type)       (:args (object :scs (descriptor-reg))              (index :scs (any-reg zero immediate))              (value :scs ,scs))       (:results (result :scs ,scs))       (:result-types ,element-type)))))  (def-data-vector-frobs simple-base-string byte-index    character character-reg)  #!+sb-unicode  (def-data-vector-frobs simple-character-string word-index    character character-reg)  (def-data-vector-frobs simple-vector word-index    * descriptor-reg any-reg)  (def-data-vector-frobs simple-array-unsigned-byte-7 byte-index    positive-fixnum unsigned-reg)  (def-data-vector-frobs simple-array-unsigned-byte-8 byte-index    positive-fixnum unsigned-reg)  (def-data-vector-frobs simple-array-unsigned-byte-15 halfword-index    positive-fixnum unsigned-reg)  (def-data-vector-frobs simple-array-unsigned-byte-16 halfword-index    positive-fixnum unsigned-reg)  (def-data-vector-frobs simple-array-unsigned-byte-31 word-index    unsigned-num unsigned-reg)  (def-data-vector-frobs simple-array-unsigned-byte-32 word-index    unsigned-num unsigned-reg)  (def-data-vector-frobs simple-array-unsigned-byte-29 word-index    positive-fixnum any-reg)  (def-data-vector-frobs simple-array-signed-byte-30 word-index    tagged-num any-reg)  (def-data-vector-frobs simple-array-signed-byte-32 word-index    signed-num signed-reg));;; Integer vectors whose elements are smaller than a byte.  I.e. bit, 2-bit,;;; and 4-bit vectors.(macrolet ((def-small-data-vector-frobs (type bits)  (let* ((elements-per-word (floor n-word-bits bits))         (bit-shift (1- (integer-length elements-per-word))))    `(progn       (define-vop (,(symbolicate "DATA-VECTOR-REF/" type))         (:note "inline array access")         (:translate data-vector-ref)         (:policy :fast-safe)         (:args (object :scs (descriptor-reg))                (index :scs (unsigned-reg)))         (:arg-types ,type positive-fixnum)         (:results (value :scs (any-reg)))         (:result-types positive-fixnum)         (:temporary (:scs (non-descriptor-reg) :to (:result 0)) temp result)         (:generator 20           (inst srl temp index ,bit-shift)           (inst sll temp n-fixnum-tag-bits)           (inst add temp (- (* vector-data-offset n-word-bytes)                             other-pointer-lowtag))           (inst ld result object temp)           (inst and temp index ,(1- elements-per-word))           (inst xor temp ,(1- elements-per-word))           ,@(unless (= bits 1)               `((inst sll temp ,(1- (integer-length bits)))))           (inst srl result temp)           (inst and result ,(1- (ash 1 bits)))           (inst sll value result 2)))       (define-vop (,(symbolicate "DATA-VECTOR-REF-C/" type))         (:translate data-vector-ref)         (:policy :fast-safe)         (:args (object :scs (descriptor-reg)))         (:arg-types ,type (:constant index))         (:info index)         (:results (result :scs (unsigned-reg)))         (:result-types positive-fixnum)         (: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 vector-data-offset) n-word-bytes)                              other-pointer-lowtag)))               (cond ((typep offset '(signed-byte 13))                      (inst ld result object offset))                     (t                      (inst li temp offset)                      (inst ld result object temp))))             (unless (zerop extra)               (inst srl result (* extra ,bits)))             (unless (= extra ,(1- elements-per-word))               (inst and result ,(1- (ash 1 bits)))))))       (define-vop (,(symbolicate "DATA-VECTOR-SET/" type))         (:note "inline array store")         (:translate data-vector-set)         (:policy :fast-safe)         (:args (object :scs (descriptor-reg))                (index :scs (unsigned-reg) :target shift)                (value :scs (unsigned-reg zero immediate) :target result))         (:arg-types ,type positive-fixnum positive-fixnum)         (:results (result :scs (unsigned-reg)))         (:result-types positive-fixnum)         (:temporary (:scs (non-descriptor-reg)) temp old offset)         (:temporary (:scs (non-descriptor-reg) :from (:argument 1)) shift)         (:generator 25           (inst srl offset index ,bit-shift)           (inst sll offset n-fixnum-tag-bits)           (inst add offset (- (* vector-data-offset n-word-bytes)                               other-pointer-lowtag))           (inst ld old object offset)           (inst and shift index ,(1- elements-per-word))           (inst xor shift ,(1- elements-per-word))           ,@(unless (= bits 1)               `((inst sll shift ,(1- (integer-length bits)))))           (unless (and (sc-is value immediate)                        (= (tn-value value) ,(1- (ash 1 bits))))             (inst li temp ,(1- (ash 1 bits)))             (inst sll temp shift)             (inst not temp)             (inst and old temp))           (unless (sc-is value zero)             (sc-case value               (immediate                (inst li temp (logand (tn-value value) ,(1- (ash 1 bits)))))               (unsigned-reg                (inst and temp value ,(1- (ash 1 bits)))))             (inst sll temp shift)             (inst or old temp))           (inst st old object offset)           (sc-case value             (immediate              (inst li result (tn-value value)))             (t              (move result value)))))       (define-vop (,(symbolicate "DATA-VECTOR-SET-C/" type))         (:translate data-vector-set)         (:policy :fast-safe)         (:args (object :scs (descriptor-reg))                (value :scs (unsigned-reg zero immediate) :target result))         (:arg-types ,type                     (:constant index)                     positive-fixnum)         (:info index)         (:results (result :scs (unsigned-reg)))         (:result-types positive-fixnum)         (:temporary (:scs (non-descriptor-reg)) offset-reg temp old)         (:generator 20           (multiple-value-bind (word extra) (floor index ,elements-per-word)             (let ((offset (- (* (+ word vector-data-offset) n-word-bytes)                              other-pointer-lowtag)))               (cond ((typep offset '(signed-byte 13))                      (inst ld old object offset))                     (t                      (inst li offset-reg offset)                      (inst ld old object offset-reg)))               (unless (and (sc-is value immediate)                            (= (tn-value value) ,(1- (ash 1 bits))))                 (cond ((zerop extra)                        (inst sll old ,bits)                        (inst srl old ,bits))                       (t                        (inst li temp                              (lognot (ash ,(1- (ash 1 bits))                                           (* (logxor extra                                                      ,(1- elements-per-word))                                              ,bits))))                        (inst and old temp))))               (sc-case value                 (zero)                 (immediate                  (let ((value (ash (logand (tn-value value)                                            ,(1- (ash 1 bits)))                                    (* (logxor extra                                               ,(1- elements-per-word))                                       ,bits))))                    (cond ((typep value '(signed-byte 13))                           (inst or old value))                          (t                           (inst li temp value)                           (inst or old temp)))))                 (unsigned-reg                  (inst sll temp value                        (* (logxor extra ,(1- elements-per-word)) ,bits))                  (inst or old temp)))               (if (typep offset '(signed-byte 13))                   (inst st old object offset)                   (inst st old object offset-reg)))             (sc-case value               (immediate                (inst li result (tn-value value)))               (t                (move result value))))))))))  (def-small-data-vector-frobs simple-bit-vector 1)  (def-small-data-vector-frobs simple-array-unsigned-byte-2 2)  (def-small-data-vector-frobs simple-array-unsigned-byte-4 4));;; And the float variants.(define-vop (data-vector-ref/simple-array-single-float)  (:note "inline array access")  (:translate data-vector-ref)  (:policy :fast-safe)  (:args (object :scs (descriptor-reg))         (index :scs (any-reg)))  (:arg-types simple-array-single-float positive-fixnum)  (:results (value :scs (single-reg)))  (:temporary (:scs (non-descriptor-reg)) offset)  (:result-types single-float)  (:generator 5    (inst add offset index (- (* vector-data-offset n-word-bytes)                              other-pointer-lowtag))    (inst ldf value object offset)))(define-vop (data-vector-set/simple-array-single-float)  (:note "inline array store")  (:translate data-vector-set)  (:policy :fast-safe)  (:args (object :scs (descriptor-reg))         (index :scs (any-reg))         (value :scs (single-reg) :target result))  (:arg-types simple-array-single-float positive-fixnum single-float)  (:results (result :scs (single-reg)))  (:result-types single-float)  (:temporary (:scs (non-descriptor-reg)) offset)  (:generator 5    (inst add offset index

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -