From f7c525cc78f7af4372871775f551f88f6a3fd3ee Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Fri, 9 Jan 2004 05:15:09 +0000 Subject: [PATCH] o Get the space_start values from internals.h o Increase the max heap space to 2816 MB from 2048 MB. (This is about as much as we can do, since some space is needed for the C stack located at high memory.) --- lisp/sparc-validate.h | 39 ++++++++++++++++++++++++++++++--------- 1 file changed, 30 insertions(+), 9 deletions(-) diff --git a/lisp/sparc-validate.h b/lisp/sparc-validate.h index 72b23e804..5330c69e1 100644 --- a/lisp/sparc-validate.h +++ b/lisp/sparc-validate.h @@ -1,6 +1,6 @@ /* - $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/sparc-validate.h,v 1.15 2003/10/06 17:15:06 toy Exp $ + $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/sparc-validate.h,v 1.16 2004/01/09 05:15:09 toy Exp $ This code was written as part of the CMU Common Lisp project at Carnegie Mellon University, and has been placed in the public domain. @@ -20,6 +20,21 @@ * 0x80000000->0xc0000000 1024M Dynamic space 2 * 0xc0000000->0xffffffff 1024M C stack, dynamic libs, etc. * + * With GENCGC: + * + * 0x00000000->0x0f800000 248M C code and stuff(?) + * 0x0f800000->0x10000000 8M for linkage table area + * 0x10000000->0x20000000 256M Read-Only Space. + * 0x20000000->0x28000000 128M Binding stack growing up. + * 0x28000000->0x38000000 256M Static Space. + * 0x38000000->0x40000000 128M Control stack growing up. + * 0x40000000->0xc0000000 2048M Dynamic space 1 + * 0xc0000000->0xffffffff 1024M C stack, dynamic libs, etc. + * + * But look at the definitions below to see how much is really + * allocated. The numbers above are the maximums allowed. We might + * use less. + * * Almost. We leave a hole of size 32 KB at the end of each of these * spaces. * @@ -34,6 +49,10 @@ * Shared libraries can be mapped anywhere there's room. */ +/* Need this to define the spaces described in Lisp */ + +/*#include "internals.h"*/ + /* * * Note: I'm not sure why, but the sizes must be on a @@ -55,7 +74,8 @@ * * See the notes there! */ -#define FOREIGN_LINKAGE_SPACE_START (0x0f800000) + +#define FOREIGN_LINKAGE_SPACE_START (LinkageSpaceStart) /* * This allows for about 510K symbols (assuming each entry is 16 bytes @@ -66,20 +86,21 @@ #endif -#define READ_ONLY_SPACE_START (0x10000000) +#define READ_ONLY_SPACE_START (SpaceStart_TargetReadOnly) #define READ_ONLY_SPACE_SIZE (0x08000000 - SPARSE_BLOCK_SIZE) /* 128 MB - 32 KB, 256 MB max */ #define BINDING_STACK_START (0x20000000) #define BINDING_STACK_SIZE (0x08000000 - SPARSE_BLOCK_SIZE) /* 128 MB - 32 KB, 128 MB max */ -#define STATIC_SPACE_START (0x28000000) -#define STATIC_SPACE_SIZE (0x04000000 - SPARSE_BLOCK_SIZE) /* 128 MB - 32 KB, 256 MB max */ +#define STATIC_SPACE_START (SpaceStart_TargetStatic) +#define STATIC_SPACE_SIZE (0x08000000 - SPARSE_BLOCK_SIZE) /* 128 MB - 32 KB, 256 MB max */ #define CONTROL_STACK_START (0x38000000) #define CONTROL_STACK_SIZE (0x08000000 - SPARSE_BLOCK_SIZE) /* 128 MB - 32 KB, 128 MB max */ #define CONTROL_STACK_END (CONTROL_STACK_START + CONTROL_STACK_SIZE) -#define DYNAMIC_0_SPACE_START (0x40000000) +#define DYNAMIC_0_SPACE_START (SpaceStart_TargetDynamic) + /* This isn't used with GENCGC */ #define DYNAMIC_1_SPACE_START (0x80000000) @@ -89,10 +110,10 @@ /* The maximum dynamic space that we can allocate */ #ifdef GENCGC /* - * For GENCGC, we can use both dynamic spaces, so we get double the - * heap size. + * For GENCGC, we can use both dynamic spaces, so we get at least + * double the heap size. */ -#define DYNAMIC_SPACE_SIZE (0x80000000 - SPARSE_BLOCK_SIZE) /* 2GB - 32 KB max */ +#define DYNAMIC_SPACE_SIZE (0xB0000000 - SPARSE_BLOCK_SIZE) /* 2816 MB - 32 KB max */ #else #define DYNAMIC_SPACE_SIZE (0x40000000 - SPARSE_BLOCK_SIZE) /* 1GB - 32 KB max */ #endif -- GitLab