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

📄 cell.lisp

📁 开源跨平台Lisp编译器
💻 LISP
📖 第 1 页 / 共 3 页
字号:
;;;; various primitive memory access VOPs for the x86 VM;;;; 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");;;; data object ref/set stuff(define-vop (slot)  (:args (object :scs (descriptor-reg)))  (:info name offset lowtag)  (:ignore name)  (:results (result :scs (descriptor-reg any-reg)))  (:generator 1   (loadw result object offset lowtag)))(define-vop (set-slot)  (:args (object :scs (descriptor-reg))         (value :scs (descriptor-reg any-reg immediate)))  (:temporary (:sc descriptor-reg) temp)  (:info name offset lowtag)  (:ignore name)  (:results)  (:generator 1    (if (sc-is value immediate)        (let ((val (tn-value value)))          (move-immediate (make-ea :qword                                   :base object                                   :disp (- (* offset n-word-bytes)                                            lowtag))                          (etypecase val                            (integer                             (fixnumize val))                            (symbol                             (+ nil-value (static-symbol-offset val)))                            (character                             (logior (ash (char-code val) n-widetag-bits)                                     character-widetag)))                          temp))        ;; Else, value not immediate.        (storew value object offset lowtag))))(define-vop (compare-and-swap-slot)  (:args (object :scs (descriptor-reg) :to :eval)         (old :scs (descriptor-reg any-reg) :target rax)         (new :scs (descriptor-reg any-reg)))  (:temporary (:sc descriptor-reg :offset rax-offset                   :from (:argument 1) :to :result :target result)              rax)  (:info name offset lowtag)  (:ignore name)  (:results (result :scs (descriptor-reg any-reg)))  (:generator 5     (move rax old)     (inst cmpxchg (make-ea :qword :base object                            :disp (- (* offset n-word-bytes) lowtag))           new :lock)     (move result rax)));;;; symbol hacking VOPs(define-vop (%compare-and-swap-symbol-value)  (:translate %compare-and-swap-symbol-value)  (:args (symbol :scs (descriptor-reg) :to (:result 1))         (old :scs (descriptor-reg any-reg) :target rax)         (new :scs (descriptor-reg any-reg)))  (:temporary (:sc descriptor-reg :offset rax-offset) rax)  #!+sb-thread  (:temporary (:sc descriptor-reg) tls)  (:results (result :scs (descriptor-reg any-reg)))  (:policy :fast-safe)  (:vop-var vop)  (:generator 15    ;; This code has two pathological cases: NO-TLS-VALUE-MARKER    ;; or UNBOUND-MARKER as NEW: in either case we would end up    ;; doing possible damage with CMPXCHG -- so don't do that!    (let ((unbound (generate-error-code vop 'unbound-symbol-error symbol))          (check (gen-label)))      (move rax old)      #!+sb-thread      (progn        (loadw tls symbol symbol-tls-index-slot other-pointer-lowtag)        ;; Thread-local area, no LOCK needed.        (inst cmpxchg (make-ea :qword :base thread-base-tn                               :index tls :scale 1)              new)        (inst cmp rax no-tls-value-marker-widetag)        (inst jmp :ne check)        (move rax old))      (inst cmpxchg (make-ea :qword :base symbol                             :disp (- (* symbol-value-slot n-word-bytes)                                      other-pointer-lowtag)                             :scale 1)            new :lock)      (emit-label check)      (move result rax)      (inst cmp result unbound-marker-widetag)      (inst jmp :e unbound))));;; these next two cf the sparc version, by jrd.;;; FIXME: Deref this ^ reference.;;; The compiler likes to be able to directly SET symbols.#!+sb-thread(define-vop (set)  (:args (symbol :scs (descriptor-reg))         (value :scs (descriptor-reg any-reg)))  (:temporary (:sc descriptor-reg) tls)  ;;(:policy :fast-safe)  (:generator 4    (let ((global-val (gen-label))          (done (gen-label)))      (loadw tls symbol symbol-tls-index-slot other-pointer-lowtag)      (inst cmp (make-ea :qword :base thread-base-tn :scale 1 :index tls)            no-tls-value-marker-widetag)      (inst jmp :z global-val)      (inst mov (make-ea :qword :base thread-base-tn :scale 1 :index tls)            value)      (inst jmp done)      (emit-label global-val)      (storew value symbol symbol-value-slot other-pointer-lowtag)      (emit-label done))));; unithreaded it's a lot simpler ...#!-sb-thread(define-vop (set cell-set)  (:variant symbol-value-slot other-pointer-lowtag));;; With Symbol-Value, we check that the value isn't the trap object. So;;; Symbol-Value of NIL is NIL.#!+sb-thread(define-vop (symbol-value)  (:translate symbol-value)  (:policy :fast-safe)  (:args (object :scs (descriptor-reg) :to (:result 1)))  (:results (value :scs (descriptor-reg any-reg)))  (:vop-var vop)  (:save-p :compute-only)  (:generator 9    (let* ((check-unbound-label (gen-label))           (err-lab (generate-error-code vop 'unbound-symbol-error object))           (ret-lab (gen-label)))      (loadw value object symbol-tls-index-slot other-pointer-lowtag)      (inst mov value (make-ea :qword :base thread-base-tn                               :index value :scale 1))      (inst cmp value no-tls-value-marker-widetag)      (inst jmp :ne check-unbound-label)      (loadw value object symbol-value-slot other-pointer-lowtag)      (emit-label check-unbound-label)      (inst cmp value unbound-marker-widetag)      (inst jmp :e err-lab)      (emit-label ret-lab))))#!+sb-thread(define-vop (fast-symbol-value symbol-value)  ;; KLUDGE: not really fast, in fact, because we're going to have to  ;; do a full lookup of the thread-local area anyway.  But half of  ;; the meaning of FAST-SYMBOL-VALUE is "do not signal an error if  ;; unbound", which is used in the implementation of COPY-SYMBOL.  --  ;; CSR, 2003-04-22  (:policy :fast)  (:translate symbol-value)  (:generator 8    (let ((ret-lab (gen-label)))      (loadw value object symbol-tls-index-slot other-pointer-lowtag)      (inst mov value            (make-ea :qword :base thread-base-tn :index value :scale 1))      (inst cmp value no-tls-value-marker-widetag)      (inst jmp :ne ret-lab)      (loadw value object symbol-value-slot other-pointer-lowtag)      (emit-label ret-lab))))#!-sb-thread(define-vop (symbol-value)  (:translate symbol-value)  (:policy :fast-safe)  (:args (object :scs (descriptor-reg) :to (:result 1)))  (:results (value :scs (descriptor-reg any-reg)))  (:vop-var vop)  (:save-p :compute-only)  (:generator 9    (let ((err-lab (generate-error-code vop 'unbound-symbol-error object)))      (loadw value object symbol-value-slot other-pointer-lowtag)      (inst cmp value unbound-marker-widetag)      (inst jmp :e err-lab))))#!-sb-thread(define-vop (fast-symbol-value cell-ref)  (:variant symbol-value-slot other-pointer-lowtag)  (:policy :fast)  (:translate symbol-value))(defknown locked-symbol-global-value-add (symbol fixnum) fixnum ())(define-vop (locked-symbol-global-value-add)    (:args (object :scs (descriptor-reg) :to :result)           (value :scs (any-reg) :target result))  (:arg-types * tagged-num)  (:results (result :scs (any-reg) :from (:argument 1)))  (:policy :fast)  (:translate locked-symbol-global-value-add)  (:result-types tagged-num)  (:policy :fast-safe)  (:generator 4    (move result value)    (inst add (make-ea :qword :base object                       :disp (- (* symbol-value-slot n-word-bytes)                                other-pointer-lowtag))          value :lock)))#!+sb-thread(define-vop (boundp)  (:translate boundp)  (:policy :fast-safe)  (:args (object :scs (descriptor-reg)))  (:conditional)  (:info target not-p)  (:temporary (:sc descriptor-reg #+nil(:from (:argument 0))) value)  (:generator 9    (let ((check-unbound-label (gen-label)))      (loadw value object symbol-tls-index-slot other-pointer-lowtag)      (inst mov value            (make-ea :qword :base thread-base-tn :index value :scale 1))      (inst cmp value no-tls-value-marker-widetag)      (inst jmp :ne check-unbound-label)      (loadw value object symbol-value-slot other-pointer-lowtag)      (emit-label check-unbound-label)      (inst cmp value unbound-marker-widetag)      (inst jmp (if not-p :e :ne) target))))#!-sb-thread(define-vop (boundp)  (:translate boundp)  (:policy :fast-safe)  (:args (object :scs (descriptor-reg)))  (:conditional)  (:info target not-p)  (:generator 9    (inst cmp (make-ea-for-object-slot object symbol-value-slot                                       other-pointer-lowtag)          unbound-marker-widetag)    (inst jmp (if not-p :e :ne) target)))(define-vop (symbol-hash)  (:policy :fast-safe)  (:translate symbol-hash)  (:args (symbol :scs (descriptor-reg)))  (:results (res :scs (any-reg)))  (:result-types positive-fixnum)  (:generator 2    ;; The symbol-hash slot of NIL holds NIL because it is also the    ;; cdr slot, so we have to strip off the three low bits to make sure    ;; it is a fixnum.  The lowtag selection magic that is required to    ;; ensure this is explained in the comment in objdef.lisp    (loadw res symbol symbol-hash-slot other-pointer-lowtag)    (inst and res (lognot #b111))));;;; fdefinition (FDEFN) objects(define-vop (fdefn-fun cell-ref)        ; /pfw - alpha  (:variant fdefn-fun-slot other-pointer-lowtag))(define-vop (safe-fdefn-fun)  (:args (object :scs (descriptor-reg) :to (:result 1)))  (:results (value :scs (descriptor-reg any-reg)))  (:vop-var vop)  (:save-p :compute-only)  (:generator 10    (loadw value object fdefn-fun-slot other-pointer-lowtag)    (inst cmp value nil-value)    (let ((err-lab (generate-error-code vop 'undefined-fun-error object)))      (inst jmp :e err-lab))))(define-vop (set-fdefn-fun)  (:policy :fast-safe)  (:translate (setf fdefn-fun))  (:args (function :scs (descriptor-reg) :target result)         (fdefn :scs (descriptor-reg)))  (:temporary (:sc unsigned-reg) raw)  (:temporary (:sc byte-reg) type)  (:results (result :scs (descriptor-reg)))  (:generator 38    (load-type type function (- fun-pointer-lowtag))    (inst lea raw          (make-ea :byte :base function                   :disp (- (* simple-fun-code-offset n-word-bytes)                            fun-pointer-lowtag)))    (inst cmp type simple-fun-header-widetag)    (inst jmp :e NORMAL-FUN)    (inst lea raw (make-fixup "closure_tramp" :foreign))    NORMAL-FUN    (storew function fdefn fdefn-fun-slot other-pointer-lowtag)    (storew raw fdefn fdefn-raw-addr-slot other-pointer-lowtag)    (move result function)))(define-vop (fdefn-makunbound)  (:policy :fast-safe)  (:translate fdefn-makunbound)  (:args (fdefn :scs (descriptor-reg) :target result))  (:results (result :scs (descriptor-reg)))  (:generator 38    (storew nil-value fdefn fdefn-fun-slot other-pointer-lowtag)    (storew (make-fixup "undefined_tramp" :foreign)            fdefn fdefn-raw-addr-slot other-pointer-lowtag)    (move result fdefn)));;;; binding and unbinding;;; BIND -- Establish VAL as a binding for SYMBOL. Save the old value and;;; the symbol on the binding stack and stuff the new value into the;;; symbol.#!+sb-thread(define-vop (bind)  (:args (val :scs (any-reg descriptor-reg))         (symbol :scs (descriptor-reg)))  (:temporary (:sc unsigned-reg) tls-index bsp)  (:generator 10    (let ((tls-index-valid (gen-label)))      (load-binding-stack-pointer bsp)      (loadw tls-index symbol symbol-tls-index-slot other-pointer-lowtag)      (inst add bsp (* binding-size n-word-bytes))      (store-binding-stack-pointer bsp)      (inst or tls-index tls-index)      (inst jmp :ne tls-index-valid)      (inst mov tls-index symbol)

⌨️ 快捷键说明

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