X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fppc%2Fparms.lisp;h=d665d137b1ce6691a7715e77d2c938f9b0842592;hb=1831934a29eb9361472e4f49efbcd5398392a6b0;hp=51b9474d433c77d46b4103ee03e7884a432565b0;hpb=47eb330ef0f3b99d24c0e24d897b757f16950c4b;p=sbcl.git diff --git a/src/compiler/ppc/parms.lisp b/src/compiler/ppc/parms.lisp index 51b9474..d665d13 100644 --- a/src/compiler/ppc/parms.lisp +++ b/src/compiler/ppc/parms.lisp @@ -90,14 +90,21 @@ (def!constant static-space-start #x08000000) (def!constant static-space-end #x097fff00) -;;; nothing _seems_ to be using these addresses -(def!constant dynamic-0-space-start #x10000000) -(def!constant dynamic-0-space-end #x3ffff000) -(def!constant dynamic-1-space-start #x40000000) -(def!constant dynamic-1-space-end #x6ffff000) +#!+linux +(progn + (def!constant dynamic-0-space-start #x40000000) + (def!constant dynamic-0-space-end #x47fff000) + (def!constant dynamic-1-space-start #x48000000) + (def!constant dynamic-1-space-end #x4ffff000)) #!+darwin (progn + ;;; nothing _seems_ to be using these addresses + (def!constant dynamic-0-space-start #x10000000) + (def!constant dynamic-0-space-end #x3ffff000) + (def!constant dynamic-1-space-start #x40000000) + (def!constant dynamic-1-space-end #x6ffff000) + (def!constant linkage-table-space-start #x0a000000) (def!constant linkage-table-space-end #x0b000000) (def!constant linkage-table-entry-size 16))