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

📄 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)))  (:info name offset lowtag)  (:ignore name)  (:results)  (:generator 1     (storew (encode-value-if-immediate value) object offset lowtag)))(define-vop (compare-and-swap-slot)  (:args (object :scs (descriptor-reg) :to :eval)         (old :scs (descriptor-reg any-reg) :target eax)         (new :scs (descriptor-reg any-reg)))  (:temporary (:sc descriptor-reg :offset eax-offset                   :from (:argument 1) :to :result :target result)              eax)  (:info name offset lowtag)  (:ignore name)  (:results (result :scs (descriptor-reg any-reg)))  (:generator 5     (move eax old)     (inst cmpxchg (make-ea :dword :base object                            :disp (- (* offset n-word-bytes) lowtag))           new :lock)     (move result eax)));;;; 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 eax)         (new :scs (descriptor-reg any-reg)))  (:temporary (:sc descriptor-reg :offset eax-offset) eax)  #!+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 to 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 eax old)      #!+sb-thread      (progn        (loadw tls symbol symbol-tls-index-slot other-pointer-lowtag)        ;; Thread-local area, no LOCK needed.        (inst cmpxchg (make-ea :dword :base tls) new :fs)        (inst cmp eax no-tls-value-marker-widetag)        (inst jmp :ne check)        (move eax old))      (inst cmpxchg (make-ea :dword :base symbol                             :disp (- (* symbol-value-slot n-word-bytes)                                      other-pointer-lowtag))            new :lock)      (emit-label check)      (move result eax)      (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 :dword :base tls) no-tls-value-marker-widetag :fs)      (inst jmp :z global-val)      (inst mov (make-ea :dword :base tls) value :fs)      (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 :dword :base value) :fs)      (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 :dword :base value) :fs)      (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-for-object-slot object symbol-value-slot                                       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 :dword :base value) :fs)      (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 two 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 #b11))));;;; 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-for-object-slot function simple-fun-code-offset                                   fun-pointer-lowtag))    (inst cmp type simple-fun-header-widetag)    (inst jmp :e normal-fn)    (inst lea raw (make-fixup "closure_tramp" :foreign))    NORMAL-FN    (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)

⌨️ 快捷键说明

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