355
|
1 /* How much read-only Lisp storage a dumped Emacs needs.
|
75227
|
2 Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005,
|
79759
|
3 2006, 2007, 2008 Free Software Foundation, Inc.
|
355
|
4
|
|
5 This file is part of GNU Emacs.
|
|
6
|
94994
|
7 GNU Emacs is free software: you can redistribute it and/or modify
|
355
|
8 it under the terms of the GNU General Public License as published by
|
94994
|
9 the Free Software Foundation, either version 3 of the License, or
|
|
10 (at your option) any later version.
|
355
|
11
|
|
12 GNU Emacs is distributed in the hope that it will be useful,
|
|
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
15 GNU General Public License for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
94994
|
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
|
355
|
19
|
8933
|
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
|
30 /* First define a measure of the amount of data we have. */
|
|
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
|
39 #ifndef SITELOAD_PURESIZE_EXTRA
|
|
40 #define SITELOAD_PURESIZE_EXTRA 0
|
|
41 #endif
|
|
42
|
8933
|
43 #ifndef BASE_PURESIZE
|
95999
|
44 #define BASE_PURESIZE (1230000 + SYSTEM_PURESIZE_EXTRA + SITELOAD_PURESIZE_EXTRA)
|
484
|
45 #endif
|
8933
|
46
|
|
47 /* Increase BASE_PURESIZE by a ratio depending on the machine's word size. */
|
|
48 #ifndef PURESIZE_RATIO
|
57111
|
49 #if BITS_PER_EMACS_INT > 32
|
70035
|
50 #define PURESIZE_RATIO 10/6 /* Don't surround with `()'. */
|
8933
|
51 #else
|
|
52 #define PURESIZE_RATIO 1
|
|
53 #endif
|
|
54 #endif
|
|
55
|
|
56 /* This is the actual size in bytes to allocate. */
|
|
57 #ifndef PURESIZE
|
|
58 #define PURESIZE (BASE_PURESIZE * PURESIZE_RATIO)
|
484
|
59 #endif
|
355
|
60
|
13778
|
61 /* Signal an error if OBJ is pure. */
|
|
62 #define CHECK_IMPURE(obj) \
|
|
63 { if (PURE_P (obj)) \
|
|
64 pure_write_error (); }
|
21515
|
65
|
69883
|
66 extern void pure_write_error P_ ((void)) NO_RETURN;
|
13778
|
67
|
|
68 /* Define PURE_P. */
|
|
69
|
91393
|
70 #ifdef VIRT_ADDR_VARIES
|
87730
|
71 /* For machines where text and data can go anywhere
|
355
|
72 in virtual memory. */
|
13778
|
73
|
|
74 extern EMACS_INT pure[];
|
|
75
|
|
76 #define PURE_P(obj) \
|
|
77 ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE) \
|
|
78 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
|
355
|
79
|
|
80 #else /* not VIRT_ADDR_VARIES */
|
|
81 #ifdef PNTR_COMPARISON_TYPE
|
13778
|
82 /* When PNTR_COMPARISON_TYPE is not the default (unsigned int). */
|
355
|
83
|
13778
|
84 extern char my_edata[];
|
|
85
|
|
86 #define PURE_P(obj) \
|
|
87 ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) my_edata)
|
355
|
88
|
|
89 #else /* not VIRT_ADDRESS_VARIES, not PNTR_COMPARISON_TYPE */
|
|
90
|
13778
|
91 extern char my_edata[];
|
49600
|
92
|
13778
|
93 #define PURE_P(obj) \
|
|
94 (XPNTR (obj) < (unsigned int) my_edata)
|
355
|
95
|
|
96 #endif /* PNTR_COMPARISON_TYPE */
|
|
97 #endif /* VIRT_ADDRESS_VARIES */
|
52401
|
98
|
|
99 /* arch-tag: fd9b0a91-a70e-4729-a75a-6bb4ca1ce14f
|
|
100 (do not change this comment) */
|