File: setjump.h

package info (click to toggle)
scm 5f2-2
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 4,736 kB
  • sloc: ansic: 41,043; lisp: 15,750; makefile: 662; sh: 561; asm: 288
file content (125 lines) | stat: -rwxr-xr-x 4,156 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* "setjump.h" memory and stack parameters.
 * Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1997 Free Software Foundation, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program.  If not, see
 * <http://www.gnu.org/licenses/>.
 */

/* Author: Aubrey Jaffer */

/* CELL_UP and CELL_DN are used by init_heap_seg to find cell aligned inner
   bounds for allocated storage */

#ifdef PROT386
/*in 386 protected mode we must only adjust the offset */
# define CELL_UP(p) MK_FP(FP_SEG(p), ~7&(FP_OFF(p)+7))
# define CELL_DN(p) MK_FP(FP_SEG(p), ~7&FP_OFF(p))
#else
# ifdef _UNICOS
#  define CELL_UP(p) (CELLPTR)(~1L & ((long)(p)+1L))
#  define CELL_DN(p) (CELLPTR)(~1L & (long)(p))
# else
#  define CELL_UP(p) (CELLPTR)(~(sizeof(cell)-1L) & ((long)(p)+sizeof(cell)-1L))
#  define CELL_DN(p) (CELLPTR)(~(sizeof(cell)-1L) & (long)(p))
# endif				/* UNICOS */
#endif				/* PROT386 */

/* These are parameters for controlling memory allocation.  The heap
   is the area out of which cons and object headers is allocated.
   Each heap object is 8 bytes on a 32 bit machine and 16 bytes on a
   64 bit machine.  The units of the _SIZE parameters are bytes.

   INIT_HEAP_SIZE is the initial size of heap.  If this much heap is
   allocated initially the heap will grow by half its current size
   each subsequent time more heap is needed.

   If INIT_HEAP_SIZE heap cannot be allocated initially, HEAP_SEG_SIZE
   will be used, and the heap will grow by HEAP_SEG_SIZE when more
   heap is needed.  HEAP_SEG_SIZE must fit into type sizet.  This code
   is in init_storage() and alloc_some_heap() in sys.c

   If INIT_HEAP_SIZE can be allocated initially, the heap will grow by
   EXPHEAP(heap_cells) when more heap is needed.

   MIN_HEAP_SEG_SIZE is minimum size of heap to accept when more heap
   is needed.

   INIT_MALLOC_LIMIT is the initial amount of malloc usage which will
   trigger a GC. */

#define INIT_HEAP_SIZE (25000L*sizeof(cell))
#define MIN_HEAP_SEG_SIZE (2000L*sizeof(cell))
#ifdef _QC
# define HEAP_SEG_SIZE 32400L
#else
# ifdef sequent
#  define HEAP_SEG_SIZE (7000L*sizeof(cell))
# else
#  define HEAP_SEG_SIZE (8100L*sizeof(cell))
# endif
#endif
#define EXPHEAP(heap_cells) (heap_cells*2)
#define INIT_MALLOC_LIMIT 100000

/* ECACHE_SIZE is the number of cells in the copy-collected environment
   cache used for environment frames */
#define ECACHE_SIZE 2000

/* If fewer than MIN_GC_YIELD cells are recovered during a
   cell-requested garbage collection (GC), then another heap segment
   is allocated. */

#define MIN_GC_YIELD (heap_cells / 4)

/* If fewer than MIN_MALLOC_YIELD cells are free after a
   malloc-requested garbage collection (GC), then the mtrigger limit
   is raised. */

#define MIN_MALLOC_YIELD (mtrigger / 8)

/* NUM_HASH_BUCKETS is the number of symbol hash table buckets.  */

#define NUM_HASH_BUCKETS 137

#ifdef IN_CONTINUE_C
# include "scm.h"
# define malloc(size) must_malloc((long)(size), s_cont)
# define free(obj) must_free((char *)(obj), 0)
#endif

/* other.dynenv and other.parent get GCed just by being there.  */
struct scm_other {SCM dynenv;
		  SCM parent;
#ifdef RECKLESS
		  SCM stkframe[2];
#else
		  SCM stkframe[4];
#endif
                  SCM estk;
		  SCM *estk_ptr;
		};
#define CONTINUATION_OTHER struct scm_other
#define CONT(x) ((CONTINUATION *)CDR(x))
#define SETCONT SETCDR
void dowinds P((SCM to));

#include "continue.h"

typedef struct safeport {
  SCM port;
  jmp_buf jmpbuf;		/* The usual C jmp_buf, not SCM's jump_buf */
  int ccnt;
} safeport;

#define SAFEP_JMPBUF(sfp) (((safeport *)STREAM(sfp))->jmpbuf)