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

📄 backend-parms.lisp

📁 开源跨平台Lisp编译器
💻 LISP
字号:
(in-package "SB!VM")(def!constant +backend-fasl-file-implementation+ :ppc)(setf *backend-register-save-penalty* 3)(setf *backend-byte-order* :big-endian)(eval-when (:compile-toplevel :load-toplevel :execute)  ;; On Linux, the ABI specifies the page size to be 4k-64k, use the  ;; maximum of that range. FIXME: it'd be great if somebody would  ;; find out whether using exact multiples of the page size actually  ;; matters in the few places where that's done, or whether we could  ;; just use 4k everywhere.  (setf *backend-page-bytes* #!+linux 65536 #!-linux 4096));;; The size in bytes of the GENCGC pages. Should be a multiple of the;;; architecture page size.(def!constant gencgc-page-bytes *backend-page-bytes*)

⌨️ 快捷键说明

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