X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fx86-64%2Fparms.lisp;h=f51e4adfd3fb13cf457556d3a4460780c0b870ce;hb=bcd323c39d6f5f80020ba4a5d9eb8d348c6cc499;hp=d294c4fdf48d8694ff72b4231e1ab71b6b1e8aa5;hpb=e6f4c7523aa628ece995ee01879d3fb90eed6d9f;p=sbcl.git diff --git a/src/compiler/x86-64/parms.lisp b/src/compiler/x86-64/parms.lisp index d294c4f..f51e4ad 100644 --- a/src/compiler/x86-64/parms.lisp +++ b/src/compiler/x86-64/parms.lisp @@ -103,25 +103,19 @@ ;;; would be possible, but probably not worth the time and code bloat ;;; it would cause. -- JES, 2005-12-11 -(progn - (def!constant read-only-space-start #x20000000) - (def!constant read-only-space-end #x200ff000) +;;; The default dynamic space size is lower on OpenBSD to allow SBCL to +;;; run under the default 512M data size limit. - (def!constant static-space-start #x20100000) - (def!constant static-space-end #x201ff000) +(!gencgc-space-setup #x20000000 + #x1000000000 - (def!constant dynamic-space-start #x1000000000) - #!-openbsd - (def!constant dynamic-space-end (!configure-dynamic-space-end)) - #!+openbsd - ;; This is lower on OpenBSD to allow SBCL to run under the default - ;; 512M data size limit. - (def!constant dynamic-space-end (!configure-dynamic-space-end #x101bcf0000)) + ;; :default-dynamic-space-size + #!+openbsd #x1bcf0000 - (def!constant linkage-table-space-start #x20200000) - (def!constant linkage-table-space-end #x202ff000) + ;; :alignment + #!+win32 #!+win32 nil #x10000) - (def!constant linkage-table-entry-size 16)) +(def!constant linkage-table-entry-size 16) ;;;; other miscellaneous constants