X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fppc%2Fbackend-parms.lisp;h=cfb3bb487953617dbf765070d801a36287e955dd;hb=2b0851c405b494143009f68e2bc7e91017a809d4;hp=ebaf637238dde046b824e97eba2ac8f5a498efec;hpb=4e5668af19abcf84587bf3f7a1c4294cd92c94a7;p=sbcl.git diff --git a/src/compiler/ppc/backend-parms.lisp b/src/compiler/ppc/backend-parms.lisp index ebaf637..cfb3bb4 100644 --- a/src/compiler/ppc/backend-parms.lisp +++ b/src/compiler/ppc/backend-parms.lisp @@ -5,13 +5,13 @@ (setf *backend-byte-order* :big-endian) (eval-when (:compile-toplevel :load-toplevel :execute) - ;; On Linux, the ABI specifies the page size to be 4k-65k, use the + ;; 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-size* #!+linux 65536 #!-linux 4096)) + (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-size *backend-page-size*) +(def!constant gencgc-page-bytes *backend-page-bytes*)