X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fx86%2Fparms.lisp;h=f1043a6f2ce671beceb3188e2768945f2519e7a0;hb=cd8fe50554652680dde36396d7862fc6cc83839c;hp=9fc5366ae29fdd0fc77f49e6434d720b2b4242a2;hpb=47eb330ef0f3b99d24c0e24d897b757f16950c4b;p=sbcl.git diff --git a/src/compiler/x86/parms.lisp b/src/compiler/x86/parms.lisp index 9fc5366..f1043a6 100644 --- a/src/compiler/x86/parms.lisp +++ b/src/compiler/x86/parms.lisp @@ -35,6 +35,10 @@ ;;; addressable object (def!constant n-byte-bits 8) +;;; The size in bytes of the GENCGC pages. Should be a multiple of the +;;; architecture code size. +(def!constant gencgc-page-size 4096) + (def!constant float-sign-shift 31) ;;; comment from CMU CL: @@ -147,6 +151,18 @@ ;;; set the top-down mmap allocation option in the kernel (not yet ;;; the default), all bets are totally off! +#!+win32 +(progn + + (def!constant read-only-space-start #x01000000) + (def!constant read-only-space-end #x037ff000) + + (def!constant static-space-start #x05000000) + (def!constant static-space-end #x07fff000) + + (def!constant dynamic-space-start #x09000000) + (def!constant dynamic-space-end #x29000000)) + #!+linux (progn (def!constant read-only-space-start #x01000000) @@ -161,6 +177,20 @@ (def!constant linkage-table-space-start #x70000000) (def!constant linkage-table-space-end #x7ffff000)) +#!+sunos +(progn + (def!constant read-only-space-start #x20000000) + (def!constant read-only-space-end #x2ffff000) + + (def!constant static-space-start #x40000000) + (def!constant static-space-end #x42fff000) + + (def!constant dynamic-space-start #x48000000) + (def!constant dynamic-space-end #xA0000000) + + (def!constant linkage-table-space-start #xA2000000) + (def!constant linkage-table-space-end #xA3000000)) + #!+freebsd (progn (def!constant read-only-space-start #x10000000) @@ -206,6 +236,21 @@ (def!constant linkage-table-space-start #xA0000000) (def!constant linkage-table-space-end #xA1000000)) + +#!+darwin +(progn + (def!constant read-only-space-start #x01000000) + (def!constant read-only-space-end #x04ff8000) + + (def!constant static-space-start #x08000000) + (def!constant static-space-end #x097fff00) + + (def!constant dynamic-space-start #x10000000) + (def!constant dynamic-space-end #x6ffff000) + + (def!constant linkage-table-space-start #x0a000000) + (def!constant linkage-table-space-end #x0b000000)) + ;;; Size of one linkage-table entry in bytes. (def!constant linkage-table-entry-size 8) @@ -222,7 +267,8 @@ cerror breakpoint fun-end-breakpoint - single-step-breakpoint) + single-step-breakpoint + #!+win32 context-restore) ;; HACK: The Win32 exception handling system does wrong things with this. ;;; FIXME: It'd be nice to replace all the DEFENUMs with something like ;;; (WITH-DEF-ENUM (:START 8) ;;; (DEF-ENUM HALT-TRAP) @@ -274,6 +320,7 @@ sb!kernel::memory-fault-error sb!di::handle-breakpoint fdefinition-object + #!+win32 sb!kernel::handle-win32-exception ;; free pointers ;; @@ -299,8 +346,10 @@ *gc-inhibit* #!+sb-thread *stop-for-gc-pending* *gc-pending* + #!+sb-thread sb!thread::run-interruption *free-tls-index* + *tls-index-lock* *allocation-pointer* *binding-stack-pointer* @@ -322,6 +371,13 @@ *fp-constant-lg2* *fp-constant-ln2* + ;; For GC-AND-SAVE + *restart-lisp-function* + + ;; Needed for callbacks to work across saving cores. see + ;; ALIEN-CALLBACK-ASSEMBLER-WRAPPER in c-call.lisp for gory details. + sb!alien::*enter-alien-callback* + ;; The ..SLOT-UNBOUND.. symbol is static in order to optimise the ;; common slot unbound check. ;;