X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fsparc%2Fparms.lisp;h=55b5c267bbc640fa29570e6b59fbd7e6160b17ef;hb=23a229276c2447a658b7a30217ec774067c27d5e;hp=792612eb78e3b48b68f0e6346f76facca4f53a90;hpb=b66385e2031fc2cac17dd129df0af400beb48a22;p=sbcl.git diff --git a/src/compiler/sparc/parms.lisp b/src/compiler/sparc/parms.lisp index 792612e..55b5c26 100644 --- a/src/compiler/sparc/parms.lisp +++ b/src/compiler/sparc/parms.lisp @@ -124,6 +124,23 @@ (def!constant dynamic-1-space-start #x40000000) (def!constant dynamic-1-space-end #x48000000)) +#!+netbsd ; Need a gap at 0x4000000 for shared libraries +(progn + (def!constant linkage-table-space-start #x0f800000) + (def!constant linkage-table-space-end #x10000000) + + (def!constant read-only-space-start #x10000000) + (def!constant read-only-space-end #x15000000) + + (def!constant static-space-start #x18000000) + (def!constant static-space-end #x1c000000) + + (def!constant dynamic-0-space-start #x20000000) + (def!constant dynamic-0-space-end #x38000000) + + (def!constant dynamic-1-space-start #x48000000) + (def!constant dynamic-1-space-end #x60000000)) + ;; Size of one linkage-table entry in bytes. See comment in ;; src/runtime/sparc-arch.c (def!constant linkage-table-entry-size 16) @@ -139,9 +156,6 @@ breakpoint fun-end-breakpoint after-breakpoint - ;; Stepper actually not implemented on Sparc, but these constants - ;; are still needed to avoid undefined variable warnings during sbcl - ;; build. single-step-around single-step-before)