Mercurial > emacs
annotate src/sheap.c @ 87591:4e970ff2f991
* progmodes/verilog-mode.el (top-level): Don't require compile.
(compilation-error-regexp-alist, compilation-last-buffer):
Define for compiler.
(verilog-insert-1): New function.
(verilog-insert-indices, verilog-generate-numbers): Doc fixes.
Use verilog-insert-1.
(verilog-surelint-off): Use next-error-last-buffer if bound.
Check compile buffer is live.
* progmodes/verilog-mode.el: Replace all instances of
string-to-int with string-to-number, insert-string with insert,
and read-input with read-string.
(top-level): No need to require imenu, reporter, dinotrace, vc,
font-lock when compiling. Always require compile. Relegate remaining
compatibility cruft to XEmacs. Don't require font-lock.
(verilog-version): Remove superfluous concat.
(dinotrace-unannotate-all, zmacs-activate-region, customize-apropos):
No need to define.
(verilog-regexp-opt): On Emacs, just make it an alias for regexp-opt.
(verilog-font-lock-keywords, verilog-font-lock-keywords-1)
(verilog-font-lock-keywords-2, verilog-font-lock-keywords-3)
(verilog-startup-message-displayed): These are variables, not constants.
(verilog-batch-execute-func, verilog-auto-inst)
(verilog-auto-inst-param): Use mapc rather than mapcar.
(sigs-in, sigs-inout, sigs-out): Define for compiler rather than
actually defining.
(verilog-modi-get-decls, verilog-modi-get-sub-decls)
(verilog-modi-get-outputs, verilog-modi-get-inouts)
(verilog-modi-get-inputs, verilog-modi-get-wires)
(verilog-modi-get-regs, verilog-modi-get-assigns)
(verilog-modi-get-consts, verilog-modi-get-gparams)
(verilog-modi-get-sub-outputs, verilog-modi-get-sub-inouts)
(verilog-modi-get-sub-inputs): Move inline functions earlier in
the file.
(sigs-in, sigs-out): Don't declare multiple times.
(got-sig, got-rvalue, uses-delayed): Define for compiler with just
`defvar'.
(verilog-auto): Call dinotrace-unannotate-all only if bound.
(verilog-module-inside-filename-p): No need to wrap fboundp test
in condition-case.
(reporter-submit-bug-report): Autoload it.
(verilog-mark-defun): Call zmacs-activate-region only if bound.
(verilog-font-customize): Call customize-apropos only if bound.
(verilog-getopt-flags, verilog-auto-reeval-locals):
Use make-local-variable rather than make-variable-buffer-local.
(verilog-company, verilog-project, verilog-modi-cache-list):
Move make-variable-buffer-local calls to top-level.
(font-lock-defaults-alist): Don't define it.
(verilog-need-fld): Remove.
(verilog-font-lock-init): Don't set font-lock-defaults-alist.
(verilog-mode): Only call make-local-hook on XEmacs.
Set font-lock-defaults rather than using verilog-font-lock-init.
| author | Dan Nicolaescu <dann@ics.uci.edu> |
|---|---|
| date | Sat, 05 Jan 2008 10:23:27 +0000 |
| parents | 922696f363b0 |
| children | fc2bcd2a8aad f55f9811f5d7 |
| 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 |
| 75348 | 4 Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc. |
| 54844 | 5 |
| 6 This file is part of GNU Emacs. | |
| 7 | |
| 8 GNU Emacs is free software; you can redistribute it and/or modify | |
| 9 it under the terms of the GNU General Public License as published by | |
|
78260
922696f363b0
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
10 the Free Software Foundation; either version 3, or (at your option) |
| 54844 | 11 any later version. |
| 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 | |
| 19 along with GNU Emacs; see the file COPYING. If not, write to | |
| 64084 | 20 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 21 Boston, MA 02110-1301, USA. */ | |
| 54844 | 22 |
| 23 #include <config.h> | |
| 24 #include <stdio.h> | |
| 25 #include "lisp.h" | |
| 26 | |
| 27 #include <unistd.h> | |
| 28 | |
|
69554
e6104b603d86
(STATIC_HEAP_SIZE): Enlarge STATIC_HEAP_SIZE to 12MB.
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
29 #define STATIC_HEAP_SIZE (12 * 1024 * 1024) |
| 54844 | 30 |
| 31 int debug_sheap = 0; | |
| 32 | |
| 33 #define BLOCKSIZE 4096 | |
| 34 | |
| 35 char bss_sbrk_buffer[STATIC_HEAP_SIZE]; | |
| 36 char *bss_sbrk_ptr; | |
| 37 int bss_sbrk_did_unexec; | |
| 38 | |
| 39 void * | |
| 40 bss_sbrk (ptrdiff_t request_size) | |
| 41 { | |
| 42 if (!bss_sbrk_ptr) | |
| 43 { | |
| 44 bss_sbrk_ptr = bss_sbrk_buffer; | |
| 45 #ifdef CYGWIN | |
| 46 sbrk (BLOCKSIZE); /* force space for fork to work */ | |
| 47 #endif | |
| 48 } | |
| 49 | |
| 50 if (!(int) request_size) | |
| 51 { | |
| 52 return (bss_sbrk_ptr); | |
| 53 } | |
| 54 else if (bss_sbrk_ptr + (int) request_size < bss_sbrk_buffer) | |
| 55 { | |
| 56 printf | |
| 57 ("attempt to free too much: avail %d used %d failed request %d\n", | |
| 58 STATIC_HEAP_SIZE, bss_sbrk_ptr - bss_sbrk_buffer, | |
| 59 (int) request_size); | |
| 60 exit (-1); | |
| 61 return 0; | |
| 62 } | |
| 63 else if (bss_sbrk_ptr + (int) request_size > | |
| 64 bss_sbrk_buffer + STATIC_HEAP_SIZE) | |
| 65 { | |
| 66 printf ("static heap exhausted: avail %d used %d failed request %d\n", | |
| 67 STATIC_HEAP_SIZE, | |
| 68 bss_sbrk_ptr - bss_sbrk_buffer, (int) request_size); | |
| 69 exit (-1); | |
| 70 return 0; | |
| 71 } | |
| 72 else if ((int) request_size < 0) | |
| 73 { | |
| 74 bss_sbrk_ptr += (int) request_size; | |
| 75 if (debug_sheap) | |
| 76 printf ("freed size %d\n", request_size); | |
| 77 return bss_sbrk_ptr; | |
| 78 } | |
| 79 else | |
| 80 { | |
| 81 char *ret = bss_sbrk_ptr; | |
| 82 if (debug_sheap) | |
| 83 printf ("allocated 0x%08x size %d\n", ret, request_size); | |
| 84 bss_sbrk_ptr += (int) request_size; | |
| 85 return ret; | |
| 86 } | |
| 87 } | |
| 88 | |
| 89 void | |
| 90 report_sheap_usage (int die_if_pure_storage_exceeded) | |
| 91 { | |
| 92 char buf[200]; | |
| 93 sprintf (buf, "Static heap usage: %d of %d bytes", | |
| 94 bss_sbrk_ptr - bss_sbrk_buffer, STATIC_HEAP_SIZE); | |
| 95 message ("%s", buf); | |
| 96 } | |
|
54858
44a3fff23885
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
54844
diff
changeset
|
97 |
|
44a3fff23885
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
54844
diff
changeset
|
98 /* arch-tag: 1bc386e8-71c2-4da4-b8b5-c1674a9cf926 |
|
44a3fff23885
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
54844
diff
changeset
|
99 (do not change this comment) */ |
