Fixed calendar-string-spread to allow 0 or 1 string; this simplified several
[emacs.git] / src / w32heap.c
blob7c717fbdfd0d81c152ed7a46bbdc89713278cc98
1 /* Heap management routines for GNU Emacs on Windows NT.
2 Copyright (C) 1994 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any later
9 version.
11 GNU Emacs is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 more details.
16 You should have received a copy of the GNU General Public License along
17 with GNU Emacs; see the file COPYING. If not, write to the Free Software
18 Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 Geoff Voelker (voelker@cs.washington.edu) 7-29-94
23 #include <stdlib.h>
24 #include <stdio.h>
26 #include "ntheap.h"
28 /* This gives us the page size and the size of the allocation unit on NT. */
29 SYSTEM_INFO sysinfo_cache;
31 /* These are defined to get Emacs to compile, but are not used. */
32 int edata;
33 int etext;
35 /* The major and minor versions of NT. */
36 int nt_major_version;
37 int nt_minor_version;
39 /* Cache information describing the NT system for later use. */
40 void
41 cache_system_info (void)
43 union
45 struct info
47 char major;
48 char minor;
49 short platform;
50 } info;
51 DWORD data;
52 } version;
54 /* Cache the version of the operating system. */
55 version.data = GetVersion ();
56 nt_major_version = version.info.major;
57 nt_minor_version = version.info.minor;
59 /* Cache page size, allocation unit, processor type, etc. */
60 GetSystemInfo (&sysinfo_cache);
63 /* Round ADDRESS up to be aligned with ALIGN. */
64 unsigned char *
65 round_to_next (unsigned char *address, unsigned long align)
67 unsigned long tmp;
69 tmp = (unsigned long) address;
70 tmp = (tmp + align - 1) / align;
72 return (unsigned char *) (tmp * align);
75 /* Info for keeping track of our heap. */
76 unsigned char *data_region_base = NULL;
77 unsigned char *data_region_end = NULL;
78 unsigned long data_region_size = 0;
79 unsigned long reserved_heap_size = 0;
81 /* The start of the data segment. */
82 unsigned char *
83 get_data_start (void)
85 return data_region_base;
88 /* The end of the data segment. */
89 unsigned char *
90 get_data_end (void)
92 return data_region_end;
96 #ifdef WINDOWS95
97 static char *
98 allocate_heap (void)
100 unsigned long base = 0x00030000;
101 unsigned long end = 0x00D00000;
103 reserved_heap_size = end - base;
105 return VirtualAlloc ((void *) base,
106 get_reserved_heap_size (),
107 MEM_RESERVE,
108 PAGE_NOACCESS);
110 #else
111 static char *
112 allocate_heap (void)
114 unsigned long start = 0x400000;
115 unsigned long stop = 0xF00000;
116 unsigned long increment = 0x100000;
117 char *ptr, *begin = NULL, *end = NULL;
118 int i;
120 for (i = start; i < stop; i += increment)
122 ptr = VirtualAlloc ((void *) i, increment, MEM_RESERVE, PAGE_NOACCESS);
123 if (ptr)
124 begin = begin ? begin : ptr;
125 else if (begin)
127 end = ptr;
128 break;
132 if (begin && !end)
133 end = (char *) i;
135 if (!begin)
136 /* We couldn't allocate any memory for the heap. Exit. */
137 exit (-2);
139 reserved_heap_size = end - begin;
140 return begin;
142 #endif
145 /* Emulate Unix sbrk. */
146 void *
147 sbrk (unsigned long increment)
149 void *result;
150 long size = (long) increment;
152 /* Allocate our heap if we haven't done so already. */
153 if (!data_region_base)
155 data_region_base = allocate_heap ();
156 if (!data_region_base)
157 return NULL;
159 /* Ensure that the addresses don't use the upper 8 bits since
160 the Lisp type goes there (yucko). */
161 if (((unsigned long) data_region_base & 0xFF000000) != 0)
163 printf ("Error: The heap was allocated in upper memory.\n");
164 exit (1);
167 data_region_end = data_region_base;
168 data_region_size = get_reserved_heap_size ();
171 result = data_region_end;
173 /* If size is negative, shrink the heap by decommitting pages. */
174 if (size < 0)
176 size = -size;
178 /* Sanity checks. */
179 if ((data_region_end - size) < data_region_base)
180 return NULL;
182 /* Decommit size bytes from the end of the heap. */
183 if (!VirtualFree (data_region_end - size, size, MEM_DECOMMIT))
184 return NULL;
186 data_region_end -= size;
188 /* If size is positive, grow the heap by committing reserved pages. */
189 else if (size > 0)
191 /* Sanity checks. */
192 if ((data_region_end + size) >
193 (data_region_base + get_reserved_heap_size ()))
194 return NULL;
196 /* Commit more of our heap. */
197 if (VirtualAlloc (data_region_end, size, MEM_COMMIT,
198 PAGE_READWRITE) == NULL)
199 return NULL;
200 data_region_end += size;
203 return result;
206 /* Recreate the heap from the data that was dumped to the executable.
207 EXECUTABLE_PATH tells us where to find the executable. */
208 void
209 recreate_heap (char *executable_path)
211 unsigned char *tmp;
213 /* First reserve the upper part of our heap. (We reserve first
214 because there have been problems in the past where doing the
215 mapping first has loaded DLLs into the VA space of our heap.) */
216 tmp = VirtualAlloc ((void *) get_heap_end (),
217 get_reserved_heap_size () - get_committed_heap_size (),
218 MEM_RESERVE,
219 PAGE_NOACCESS);
220 if (!tmp)
221 exit (1);
223 /* We read in the data for the .bss section from the executable
224 first and map in the heap from the executable second to prevent
225 any funny interactions between file I/O and file mapping. */
226 read_in_bss (executable_path);
227 map_in_heap (executable_path);
230 /* Round the heap up to the given alignment. */
231 void
232 round_heap (unsigned long align)
234 unsigned long needs_to_be;
235 unsigned long need_to_alloc;
237 needs_to_be = (unsigned long) round_to_next (get_heap_end (), align);
238 need_to_alloc = needs_to_be - (unsigned long) get_heap_end ();
240 if (need_to_alloc)
241 sbrk (need_to_alloc);