Mercurial > emacs
annotate src/puresize.h @ 13373:c2eff18fae26
Initial revision
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Tue, 31 Oct 1995 16:57:10 +0000 |
parents | 180f04639e71 |
children | 7b2f71009e4c |
rev | line source |
---|---|
355 | 1 /* How much read-only Lisp storage a dumped Emacs needs. |
2961 | 2 Copyright (C) 1993 Free Software Foundation, Inc. |
355 | 3 |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
12244 | 8 the Free Software Foundation; either version 2, or (at your option) |
355 | 9 any later version. |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
19 | |
8933
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
20 /* Define PURESIZE, the number of bytes of pure Lisp code to leave space for. |
355 | 21 |
22 At one point, this was defined in config.h, meaning that changing | |
23 PURESIZE would make Make recompile all of Emacs. But only a few | |
484 | 24 files actually use PURESIZE, so we split it out to its own .h file. |
25 | |
26 Make sure to include this file after config.h, since that tells us | |
27 whether we are running X windows, which tells us how much pure | |
28 storage to allocate. */ | |
355 | 29 |
8933
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
30 /* First define a measure of the amount of data we have. */ |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
31 |
9572 | 32 /* A system configuration file may set this to request a certain extra |
33 amount of storage. This is a lot more update-robust that defining | |
34 BASE_PURESIZE or even PURESIZE directly. */ | |
35 #ifndef SYSTEM_PURESIZE_EXTRA | |
36 #define SYSTEM_PURESIZE_EXTRA 0 | |
37 #endif | |
38 | |
12986
180f04639e71
(SITELOAD_PURESIZE_EXTRA): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
12612
diff
changeset
|
39 #ifndef SITELOAD_PURESIZE_EXTRA |
180f04639e71
(SITELOAD_PURESIZE_EXTRA): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
12612
diff
changeset
|
40 #define SITELOAD_PURESIZE_EXTRA 0 |
180f04639e71
(SITELOAD_PURESIZE_EXTRA): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
12612
diff
changeset
|
41 #endif |
180f04639e71
(SITELOAD_PURESIZE_EXTRA): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
12612
diff
changeset
|
42 |
8933
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
43 #ifndef BASE_PURESIZE |
3498
e34b759a7b77
Test MULTI_FRAME, not HAVE_X_WINDOWS.
Richard M. Stallman <rms@gnu.org>
parents:
2970
diff
changeset
|
44 #ifdef MULTI_FRAME |
12986
180f04639e71
(SITELOAD_PURESIZE_EXTRA): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
12612
diff
changeset
|
45 #define BASE_PURESIZE (325000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) |
484 | 46 #else |
12986
180f04639e71
(SITELOAD_PURESIZE_EXTRA): New macro.
Richard M. Stallman <rms@gnu.org>
parents:
12612
diff
changeset
|
47 #define BASE_PURESIZE (240000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA) |
8933
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
48 #endif |
484 | 49 #endif |
8933
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
50 |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
51 /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */ |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
52 #ifndef PURESIZE_RATIO |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
53 #if VALBITS + GCTYPEBITS + 1 > 32 |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
54 #define PURESIZE_RATIO 8/5 /* Don't surround with `()'. */ |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
55 #else |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
56 #define PURESIZE_RATIO 1 |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
57 #endif |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
58 #endif |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
59 |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
60 /* This is the actual size in bytes to allocate. */ |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
61 #ifndef PURESIZE |
f060ee7326c5
(PURESIZE_RATIO, BASE_PURESIZE): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
8832
diff
changeset
|
62 #define PURESIZE (BASE_PURESIZE * PURESIZE_RATIO) |
484 | 63 #endif |
355 | 64 |
65 #ifdef VIRT_ADDR_VARIES | |
66 | |
67 /* For machines like APOLLO where text and data can go anywhere | |
68 in virtual memory. */ | |
69 #define CHECK_IMPURE(obj) \ | |
8832
02bbe8ec50ea
(CHECK_IMPURE, all versions): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
8490
diff
changeset
|
70 { extern EMACS_INT pure[]; \ |
355 | 71 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE) \ |
72 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure) \ | |
73 pure_write_error (); } | |
74 | |
75 #else /* not VIRT_ADDR_VARIES */ | |
76 #ifdef PNTR_COMPARISON_TYPE | |
77 | |
78 /* when PNTR_COMPARISON_TYPE is not the default (unsigned int) */ | |
79 #define CHECK_IMPURE(obj) \ | |
11078
fd9f2d854e41
(CHECK_IMPURE): Declare my_edata as char array.
Richard M. Stallman <rms@gnu.org>
parents:
10237
diff
changeset
|
80 { extern char my_edata[]; \ |
11236
abd63066ddf0
(CHECK_IMPURE): Remove & from before my_edata.
Richard M. Stallman <rms@gnu.org>
parents:
11216
diff
changeset
|
81 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) my_edata) \ |
355 | 82 pure_write_error (); } |
83 | |
84 #else /* not VIRT_ADDRESS_VARIES, not PNTR_COMPARISON_TYPE */ | |
85 | |
86 #define CHECK_IMPURE(obj) \ | |
11078
fd9f2d854e41
(CHECK_IMPURE): Declare my_edata as char array.
Richard M. Stallman <rms@gnu.org>
parents:
10237
diff
changeset
|
87 { extern char my_edata[]; \ |
11236
abd63066ddf0
(CHECK_IMPURE): Remove & from before my_edata.
Richard M. Stallman <rms@gnu.org>
parents:
11216
diff
changeset
|
88 if (XPNTR (obj) < (unsigned int) my_edata) \ |
355 | 89 pure_write_error (); } |
90 | |
91 #endif /* PNTR_COMPARISON_TYPE */ | |
92 #endif /* VIRT_ADDRESS_VARIES */ | |
93 |