Mercurial > emacs
annotate src/sheap.c @ 105137:1ca02a761eac
(elint): New custom group.
(elint-log-buffer): Make it a defcustom.
(elint-scan-preloaded, elint-ignored-warnings)
(elint-directory-skip-re): New options.
(elint-builtin-variables): Doc fix.
(elint-preloaded-env): New variable.
(elint-unknown-builtin-args): Add an entry for encode-time.
(elint-extra-errors): Make it a variable rather than a constant.
(elint-preloaded-skip-re): New constant.
(elint-directory): Skip files matching elint-directory-skip-re.
(elint-features): New variable, local to linted buffers.
(elint-update-env): Initialize elint-features. Possibly add
elint-preloaded-env to the buffer's environment.
(elint-get-top-forms): Bind elint-current-pos, for log messages.
Skip quoted forms.
(elint-init-form): New function, extracted from elint-init-env.
Make non-list forms a warning rather than an error.
Add the mode-map for define-derived-mode. Handle define-minor-mode,
easy-menu-define, put that adds an error-condition, and provide.
When requiring cl, also require cl-macs. Really require cl, to handle
some cl macros. Store required libraries in the list elint-features,
so as not to re-load them. Treat cc-require like require.
(elint-init-env): Call elint-init-form to do the work.
Handle eval-and-compile and such like.
(elint-add-required-env): Do not clear messages.
(elint-special-forms): Add handlers for function, defalias, if, when,
unless, and, or.
(elint-form): Add optional argument to ignore elint-special-forms,
useful to prevent recursive calls from handlers. Doc fix.
Respect elint-ignored-warnings.
(elint-form): Respect elint-ignored-warnings.
(elint-bound-variable, elint-bound-function): New variables.
(elint-unbound-variable): Respect elint-bound-variable.
(elint-get-args): Respect elint-bound-function.
(elint-check-cond-form): Add some simple handling for (f)boundp and
featurep tests.
(elint-check-defalias-form): New handler.
(elint-check-let-form): Make an empty let a warning rather than an error.
(elint-check-setq-form): Make an empty setq a warning rather than an
error. Respect elint-ignored-warnings.
(elint-check-defvar-form): Accept null doc-strings.
(elint-check-conditional-form): New handler. Does some simple-minded
checking of featurep and (f)boundp tests.
(elint-put-function-args): New function.
(elint-initialize): Use elint-scan-doc-file rather than
elint-find-builtin-variables. Use elint-put-function-args.
Possibly scan preloaded-file-list.
(elint-scan-doc-file): Rename from elint-find-builtin-variables and
extend to handle functions as well.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Tue, 22 Sep 2009 02:28:28 +0000 |
parents | e038c1a8307c |
children | 68dd71358159 |
rev | line source |
---|---|
66663
d74deb025f5a
(STATIC_HEAP_SIZE): Increment both definitions.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
1 /* simulate `sbrk' with an array in .bss, for `unexec' support for Cygwin; |
d74deb025f5a
(STATIC_HEAP_SIZE): Increment both definitions.
Richard M. Stallman <rms@gnu.org>
parents:
64770
diff
changeset
|
2 complete rewrite of xemacs Cygwin `unexec' code |
54844 | 3 |
100951 | 4 Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
54844 | 5 |
6 This file is part of GNU Emacs. | |
7 | |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
8 GNU Emacs is free software: you can redistribute it and/or modify |
54844 | 9 it under the terms of the GNU General Public License as published by |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
10 the Free Software Foundation, either version 3 of the License, or |
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
11 (at your option) any later version. |
54844 | 12 |
13 GNU Emacs is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79759
diff
changeset
|
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
54844 | 20 |
21 #include <config.h> | |
22 #include <stdio.h> | |
23 #include "lisp.h" | |
24 | |
25 #include <unistd.h> | |
26 | |
69554
e6104b603d86
(STATIC_HEAP_SIZE): Enlarge STATIC_HEAP_SIZE to 12MB.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
27 #define STATIC_HEAP_SIZE (12 * 1024 * 1024) |
54844 | 28 |
29 int debug_sheap = 0; | |
30 | |
31 #define BLOCKSIZE 4096 | |
32 | |
33 char bss_sbrk_buffer[STATIC_HEAP_SIZE]; | |
34 char *bss_sbrk_ptr; | |
35 int bss_sbrk_did_unexec; | |
36 | |
37 void * | |
38 bss_sbrk (ptrdiff_t request_size) | |
39 { | |
40 if (!bss_sbrk_ptr) | |
41 { | |
42 bss_sbrk_ptr = bss_sbrk_buffer; | |
43 #ifdef CYGWIN | |
44 sbrk (BLOCKSIZE); /* force space for fork to work */ | |
45 #endif | |
46 } | |
47 | |
48 if (!(int) request_size) | |
49 { | |
50 return (bss_sbrk_ptr); | |
51 } | |
52 else if (bss_sbrk_ptr + (int) request_size < bss_sbrk_buffer) | |
53 { | |
54 printf | |
55 ("attempt to free too much: avail %d used %d failed request %d\n", | |
56 STATIC_HEAP_SIZE, bss_sbrk_ptr - bss_sbrk_buffer, | |
57 (int) request_size); | |
58 exit (-1); | |
59 return 0; | |
60 } | |
61 else if (bss_sbrk_ptr + (int) request_size > | |
62 bss_sbrk_buffer + STATIC_HEAP_SIZE) | |
63 { | |
64 printf ("static heap exhausted: avail %d used %d failed request %d\n", | |
65 STATIC_HEAP_SIZE, | |
66 bss_sbrk_ptr - bss_sbrk_buffer, (int) request_size); | |
67 exit (-1); | |
68 return 0; | |
69 } | |
70 else if ((int) request_size < 0) | |
71 { | |
72 bss_sbrk_ptr += (int) request_size; | |
73 if (debug_sheap) | |
74 printf ("freed size %d\n", request_size); | |
75 return bss_sbrk_ptr; | |
76 } | |
77 else | |
78 { | |
79 char *ret = bss_sbrk_ptr; | |
80 if (debug_sheap) | |
81 printf ("allocated 0x%08x size %d\n", ret, request_size); | |
82 bss_sbrk_ptr += (int) request_size; | |
83 return ret; | |
84 } | |
85 } | |
86 | |
87 void | |
88 report_sheap_usage (int die_if_pure_storage_exceeded) | |
89 { | |
90 char buf[200]; | |
91 sprintf (buf, "Static heap usage: %d of %d bytes", | |
92 bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE); | |
93 message ("%s", buf); | |
94 } | |
54858
44a3fff23885
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
54844
diff
changeset
|
95 |
44a3fff23885
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
54844
diff
changeset
|
96 /* arch-tag: 1bc386e8-71c2-4da4-b8b5-c1674a9cf926 |
44a3fff23885
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
54844
diff
changeset
|
97 (do not change this comment) */ |