1.0.12.40: NetBSD/Sparc port by Robert Swindells
[sbcl.git] / src / compiler / sparc / parms.lisp
index 11c5b1e..55b5c26 100644 (file)
   (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)