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

📄 memory.lisp

📁 开源跨平台Lisp编译器
💻 LISP
字号:
(in-package "SB!VM");;; Cell-Ref and Cell-Set are used to define VOPs like CAR, where the offset to;;; be read or written is a property of the VOP used.  Cell-Setf is similar to;;; Cell-Set, but delivers the new value as the result.  Cell-Setf-Function;;; takes its arguments as if it were a setf function (new value first, as;;; apposed to a setf macro, which takes the new value last).;;;(define-vop (cell-ref)  (:args (object :scs (descriptor-reg)))  (:results (value :scs (descriptor-reg any-reg)))  (:variant-vars offset lowtag)  (:policy :fast-safe)  (:generator 4    (loadw value object offset lowtag)));;;(define-vop (cell-set)  (:args (object :scs (descriptor-reg))         (value :scs (descriptor-reg any-reg)))  (:variant-vars offset lowtag)  (:policy :fast-safe)  (:generator 1    (storew value object offset lowtag)));;; Slot-Ref and Slot-Set are used to define VOPs like Closure-Ref, where the;;; offset is constant at compile time, but varies for different uses.  We add;;; in the stardard g-vector overhead.;;;(define-vop (slot-ref)  (:args (object :scs (descriptor-reg)))  (:results (value :scs (descriptor-reg any-reg)))  (:variant-vars base lowtag)  (:info offset)  (:generator 4    (loadw value object (+ base offset) lowtag)));;;(define-vop (slot-set)  (:args (object :scs (descriptor-reg))         (value :scs (descriptor-reg any-reg)))  (:variant-vars base lowtag)  (:info offset)  (:generator 1    (storew value object (+ base offset) lowtag)))

⌨️ 快捷键说明

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