X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fppc%2Fparms.lisp;h=363556b520fa6a7919ff1cf104a62840a41f16a4;hb=c179ad4d7bef50a974e8907adb079d47c8bea37e;hp=f856ae8713b4f0dcc39a3464e1787b3f5b5fbac6;hpb=152ba31a2cccde6902106a2082a569f9ad83c43b;p=sbcl.git diff --git a/src/compiler/ppc/parms.lisp b/src/compiler/ppc/parms.lisp index f856ae8..363556b 100644 --- a/src/compiler/ppc/parms.lisp +++ b/src/compiler/ppc/parms.lisp @@ -116,7 +116,7 @@ #!+gencgc (progn (def!constant dynamic-space-start #x4f000000) - (def!constant dynamic-space-end #x7efff000)) + (def!constant dynamic-space-end (!configure-dynamic-space-end #x7efff000))) #!-gencgc (progn (def!constant dynamic-0-space-start #x4f000000) @@ -129,7 +129,7 @@ #!+gencgc (progn (def!constant dynamic-space-start #x4f000000) - (def!constant dynamic-space-end #x7efff000)) + (def!constant dynamic-space-end (!configure-dynamic-space-end #x7efff000))) #!-gencgc (progn (def!constant dynamic-0-space-start #x4f000000) @@ -149,7 +149,7 @@ #!+gencgc (progn (def!constant dynamic-space-start #x4f000000) - (def!constant dynamic-space-end #x6afff000)) + (def!constant dynamic-space-end (!configure-dynamic-space-end #x6afff000))) #!-gencgc (progn (def!constant dynamic-0-space-start #x4f000000) @@ -162,7 +162,7 @@ #!+gencgc (progn (def!constant dynamic-space-start #x10000000) - (def!constant dynamic-space-end #x6ffff000)) + (def!constant dynamic-space-end (!configure-dynamic-space-end #x6ffff000))) #!-gencgc (progn (def!constant dynamic-0-space-start #x10000000) @@ -207,11 +207,6 @@ '( #!+gencgc *restart-lisp-function* - ;; Swiped from x86-64 thread implementation. - #!+sb-thread *stop-for-gc-pending* - #!+sb-thread *free-tls-index* - #!+sb-thread *tls-index-lock* - ;; CLH: 20060210 Taken from x86-64/parms.lisp per JES' suggestion ;; Needed for callbacks to work across saving cores. see ;; ALIEN-CALLBACK-ASSEMBLER-WRAPPER in c-call.lisp for gory