X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fvalidate.h;h=7dfb73d4792618f5a5738be2401157db21f1b127;hb=eac461c1f1ca91cfe282c779291d582ed6b336cb;hp=11cee1a976d857f243ae321e95bb72211ef2f751;hpb=94ea2b2082deaa0331dfb66fa6af6ca12dd8dc83;p=sbcl.git diff --git a/src/runtime/validate.h b/src/runtime/validate.h index 11cee1a..7dfb73d 100644 --- a/src/runtime/validate.h +++ b/src/runtime/validate.h @@ -13,38 +13,94 @@ #define _INCLUDE_VALIDATE_H_ #ifndef LISP_FEATURE_GENCGC +/* FIXME: genesis/constants.h also defines this with a constant value */ #define DYNAMIC_SPACE_START current_dynamic_space #endif -#define BINDING_STACK_SIZE (1024*1024) /* chosen at random */ -#define THREAD_CONTROL_STACK_SIZE (2*1024*1024) /* eventually choosable per-thread */ +#define BINDING_STACK_SIZE (1024*1024) /* chosen at random */ +#define ALIEN_STACK_SIZE (1024*1024) /* chosen at random */ + +/* eventually choosable per-thread: */ +#define DEFAULT_CONTROL_STACK_SIZE (2*1024*1024) /* constants derived from the fundamental constants in passed by GENESIS */ #ifdef LISP_FEATURE_GENCGC -#define DYNAMIC_SPACE_SIZE (DYNAMIC_SPACE_END - DYNAMIC_SPACE_START) +#define DEFAULT_DYNAMIC_SPACE_SIZE (DYNAMIC_SPACE_END - DYNAMIC_SPACE_START) #else -#define DYNAMIC_SPACE_SIZE (DYNAMIC_0_SPACE_END - DYNAMIC_0_SPACE_START) +#define DEFAULT_DYNAMIC_SPACE_SIZE (DYNAMIC_0_SPACE_END - DYNAMIC_0_SPACE_START) #endif -#define READ_ONLY_SPACE_SIZE (READ_ONLY_SPACE_END - READ_ONLY_SPACE_START) -#define STATIC_SPACE_SIZE (STATIC_SPACE_END - STATIC_SPACE_START) +#define READ_ONLY_SPACE_SIZE (READ_ONLY_SPACE_END - READ_ONLY_SPACE_START) +#define STATIC_SPACE_SIZE (STATIC_SPACE_END - STATIC_SPACE_START) #ifdef LISP_FEATURE_LINKAGE_TABLE -#define LINKAGE_TABLE_SPACE_SIZE (LINKAGE_TABLE_SPACE_END - LINKAGE_TABLE_SPACE_START) +#define LINKAGE_TABLE_SPACE_SIZE \ + (LINKAGE_TABLE_SPACE_END - LINKAGE_TABLE_SPACE_START) #endif #if !defined(LANGUAGE_ASSEMBLY) #include -#ifdef LISP_FEATURE_STACK_GROWS_DOWNWARD_NOT_UPWARD -#define CONTROL_STACK_GUARD_PAGE(th) ((void *)(th->control_stack_start)) -#define CONTROL_STACK_RETURN_GUARD_PAGE(th) (CONTROL_STACK_GUARD_PAGE(th) + os_vm_page_size) +#ifdef LISP_FEATURE_STACK_GROWS_DOWNWARD_NOT_UPWARD + +#define CONTROL_STACK_HARD_GUARD_PAGE(th) \ + ((os_vm_address_t)(th->control_stack_start)) +#define CONTROL_STACK_GUARD_PAGE(th) \ + (CONTROL_STACK_HARD_GUARD_PAGE(th) + os_vm_page_size) +#define CONTROL_STACK_RETURN_GUARD_PAGE(th) \ + (CONTROL_STACK_GUARD_PAGE(th) + os_vm_page_size) + +#define ALIEN_STACK_HARD_GUARD_PAGE(th) \ + ((os_vm_address_t)(th->alien_stack_start)) +#define ALIEN_STACK_GUARD_PAGE(th) \ + (ALIEN_STACK_HARD_GUARD_PAGE(th) + os_vm_page_size) +#define ALIEN_STACK_RETURN_GUARD_PAGE(th) \ + (ALIEN_STACK_GUARD_PAGE(th) + os_vm_page_size) + #else -#define CONTROL_STACK_GUARD_PAGE(th) (((void *)(th->control_stack_end)) - os_vm_page_size) -#define CONTROL_STACK_RETURN_GUARD_PAGE(th) (CONTROL_STACK_GUARD_PAGE(th) - os_vm_page_size) + +#define CONTROL_STACK_HARD_GUARD_PAGE(th) \ + (((os_vm_address_t)(th->control_stack_end)) - os_vm_page_size) +#define CONTROL_STACK_GUARD_PAGE(th) \ + (CONTROL_STACK_HARD_GUARD_PAGE(th) - os_vm_page_size) +#define CONTROL_STACK_RETURN_GUARD_PAGE(th) \ + (CONTROL_STACK_GUARD_PAGE(th) - os_vm_page_size) + +#define ALIEN_STACK_HARD_GUARD_PAGE(th) \ + (((os_vm_address_t)th->alien_stack_start) + ALIEN_STACK_SIZE - \ + os_vm_page_size) +#define ALIEN_STACK_GUARD_PAGE(th) \ + (ALIEN_STACK_HARD_GUARD_PAGE(th) - os_vm_page_size) +#define ALIEN_STACK_RETURN_GUARD_PAGE(th) \ + (ALIEN_STACK_GUARD_PAGE(th) - os_vm_page_size) + #endif +#define BINDING_STACK_HARD_GUARD_PAGE(th) \ + (((os_vm_address_t)th->binding_stack_start) + BINDING_STACK_SIZE - \ + os_vm_page_size) +#define BINDING_STACK_GUARD_PAGE(th) \ + (BINDING_STACK_HARD_GUARD_PAGE(th) - os_vm_page_size) +#define BINDING_STACK_RETURN_GUARD_PAGE(th) \ + (BINDING_STACK_GUARD_PAGE(th) - os_vm_page_size) + extern void validate(void); -extern void protect_control_stack_guard_page(struct thread *th, int protect_p); -extern void protect_control_stack_return_guard_page(struct thread *th, - int protect_p); + +extern void +protect_control_stack_hard_guard_page(int protect_p, struct thread *thread); +extern void +protect_control_stack_guard_page(int protect_p, struct thread *thread); +extern void +protect_control_stack_return_guard_page(int protect_p, struct thread *thread); +extern void +protect_binding_stack_hard_guard_page(int protect_p, struct thread *thread); +extern void +protect_binding_stack_guard_page(int protect_p, struct thread *thread); +extern void +protect_binding_stack_return_guard_page(int protect_p, struct thread *thread); +extern void +protect_alien_stack_hard_guard_page(int protect_p, struct thread *thread); +extern void +protect_alien_stack_guard_page(int protect_p, struct thread *thread); +extern void +protect_alien_stack_return_guard_page(int protect_p, struct thread *thread); extern os_vm_address_t undefined_alien_address; #endif @@ -59,7 +115,7 @@ extern os_vm_address_t undefined_alien_address; * and so forth. In SBCL, the memory map data are defined at the Lisp * level (compiler/target/parms.lisp) and stuffed into the sbcl.h file * created by GENESIS, so there's no longer a need for an - * architecture-dependent header file of memory map data. + * architecture-dependent header file of memory map data. */ #endif