annotate src/free-hook.c @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 6719134a07c2
children 697ef44129c6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 /* Synched up with: Not in FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 /* Debugging hooks for malloc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* These hooks work with gmalloc to catch allocation errors.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 In particular, the following is trapped:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 * Freeing the same pointer twice.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 * Trying to free a pointer not returned by malloc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 * Trying to realloc a pointer not returned by malloc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 In addition, every word of every block freed is set to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 0xdeadbeef. This causes many uses of freed storage to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 trapped or recognized.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 When you use this, the storage used by the last FREE_QUEUE_LIMIT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 calls to free() is not recycled. When you call free for the Nth
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 time, the (N - FREE_QUEUE_LIMIT)'th block is actually recycled.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 For these last FREE_QUEUE_LIMIT calls to free() a backtrace is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 saved showing where it was called from. The function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 find_backtrace() is provided here to be called from GDB with a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 pointer (such as would be passed to free()) as argument, e.g.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (gdb) p/a *find_backtrace (0x234000). If SAVE_ARGS is defined,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 the first three arguments to each function are saved as well as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 return addresses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 If UNMAPPED_FREE is defined, instead of setting every word of freed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 storage to 0xdeadbeef, every call to malloc goes on its own page(s).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 When free() is called, the block is read and write protected. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 is very useful when debugging, since it usually generates a bus error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 when the deadbeef hack might only cause some garbage to be printed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 However, this is too slow for everyday use, since it takes an enormous
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 number of pages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 Some other features that would be useful are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 * Checking for storage leaks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 This could be done by a GC-like facility that would scan the data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 segment looking for pointers to allocated storage and tell you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 about those that are no longer referenced. This could be invoked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 at any time. Another possibility is to report on what allocated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 storage is still in use when the process is exited. Typically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 there will be a large amount, so this might not be very useful.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 #else
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
69 void *malloc (size_t);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
72 #if !defined(HAVE_LIBMCHECK)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 #include <stdio.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 #include "hash.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 #ifdef UNMAPPED_FREE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #include <sys/mman.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 #include <sys/param.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 #define ROUND_UP_TO_PAGE(i) (((i) + PAGEOFFSET) & PAGEMASK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 #include <sys/types.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 /* System function prototypes don't belong in C source files */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 /* extern void free (void *); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
88 static struct hash_table *pointer_table;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 extern void (*__free_hook) (void *);
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
91 extern void *(*__malloc_hook) (size_t);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
93 static void *check_malloc (size_t);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
95 typedef void (*fun_ptr) (void);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 /* free_queue is not too useful without backtrace logging */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 #define FREE_QUEUE_LIMIT 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 #define TRACE_LIMIT 20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 typedef struct {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 fun_ptr return_pc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 #ifdef SAVE_ARGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 void *arg[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 } fun_entry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 typedef struct {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 void *address;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 unsigned long length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 } free_queue_entry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
113 static free_queue_entry free_queue[FREE_QUEUE_LIMIT];
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
115 static int current_free;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
117 static int strict_free_check;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 check_free (void *ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 __free_hook = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 __malloc_hook = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 if (!pointer_table)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
125 pointer_table = make_hash_table (max (100, FREE_QUEUE_LIMIT * 2));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 if (ptr != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 long size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 #ifdef UNMAPPED_FREE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 unsigned long rounded_up_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 20
diff changeset
133 EMACS_INT present = (EMACS_INT) gethash (ptr, pointer_table,
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
134 (const void **) &size);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 if (!present)
233
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 185
diff changeset
137 {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 /* This can only happen if you try to free something that didn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 come from malloc */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
140 #if !defined(__linux__)
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
141 /* I originally wrote: "There's really no need to drop core."
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
142 I have seen the error of my ways. -slb */
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
143 if (strict_free_check)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
144 abort ();
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
145 #endif
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
146 printf("Freeing unmalloc'ed memory at %p\n", ptr);
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
147 __free_hook = check_free;
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
148 __malloc_hook = check_malloc;
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
149 goto end;
233
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 185
diff changeset
150 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 if (size < 0)
233
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 185
diff changeset
153 {
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
154 /* This happens when you free twice */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
155 #if !defined(__linux__)
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
156 /* See above comment. */
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
157 if (strict_free_check)
272
c5d627a313b1 Import from CVS: tag r21-0b34
cvs
parents: 269
diff changeset
158 abort ();
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
159 #endif
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
160 printf("Freeing %p twice\n", ptr);
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
161 __free_hook = check_free;
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
162 __malloc_hook = check_malloc;
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
163 goto end;
233
52952cbfc5b5 Import from CVS: tag r20-5b15
cvs
parents: 185
diff changeset
164 }
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
165
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 puthash (ptr, (void *)-size, pointer_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #ifdef UNMAPPED_FREE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 /* Round up size to an even number of pages. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 rounded_up_size = ROUND_UP_TO_PAGE (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 /* Protect the pages freed from all access */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 if (strict_free_check)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 mprotect (ptr, rounded_up_size, PROT_NONE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 /* Set every word in the block to 0xdeadbeef */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 if (strict_free_check)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 unsigned long long_length = (size + (sizeof (long) - 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 / sizeof (long);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 unsigned long i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 for (i = 0; i < long_length; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 ((unsigned long *) ptr)[i] = 0xdeadbeef;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 free_queue[current_free].address = ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 free_queue[current_free].length = size;
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
187
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 current_free++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 if (current_free >= FREE_QUEUE_LIMIT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 current_free = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 /* Really free this if there's something there */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 void *old = free_queue[current_free].address;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 if (old)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 #ifdef UNMAPPED_FREE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 unsigned long old_len = free_queue[current_free].length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 mprotect (old, old_len, PROT_READ | PROT_WRITE | PROT_EXEC);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 free (old);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 remhash (old, pointer_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 __free_hook = check_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 __malloc_hook = check_malloc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 end:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 return;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 20
diff changeset
212 }
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 static void *
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
215 check_malloc (size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 {
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
217 size_t rounded_up_size;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 void *result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 __free_hook = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 __malloc_hook = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 if (size == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 result = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 goto end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 #ifdef UNMAPPED_FREE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 /* Round up to an even number of pages. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 rounded_up_size = ROUND_UP_TO_PAGE (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 rounded_up_size = size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 result = malloc (rounded_up_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 if (!pointer_table)
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 371
diff changeset
235 pointer_table = make_hash_table (FREE_QUEUE_LIMIT * 2);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 puthash (result, (void *)size, pointer_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 __free_hook = check_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 __malloc_hook = check_malloc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 end:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
243 extern void *(*__realloc_hook) (void *, size_t);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 #ifdef MIN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 #undef MIN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 #define MIN(A, B) ((A) < (B) ? (A) : (B))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 /* Don't optimize realloc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 static void *
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
253 check_realloc (void * ptr, size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 EMACS_INT present;
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
256 size_t old_size;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 void *result = malloc (size);
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 20
diff changeset
258
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
259 if (!ptr) return result;
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 396
diff changeset
260 present = (EMACS_INT) gethash (ptr, pointer_table, (const void **) &old_size);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 if (!present)
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
262 {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 /* This can only happen by reallocing a pointer that didn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 come from malloc. */
269
b2472a1930f2 Import from CVS: tag r20-5b33
cvs
parents: 267
diff changeset
265 #if !defined(__linux__)
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
266 /* see comment in check_free(). */
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
267 abort ();
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
268 #endif
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
269 printf("Realloc'ing unmalloc'ed pointer at %p\n", ptr);
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
270 }
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
271
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 if (result == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 goto end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 memcpy (result, ptr, MIN (size, old_size));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 end:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 20
diff changeset
280 void enable_strict_free_check (void);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 enable_strict_free_check (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 strict_free_check = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 20
diff changeset
287 void disable_strict_free_check (void);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 disable_strict_free_check (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 strict_free_check = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 /* Note: All BLOCK_INPUT stuff removed from this file because it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 completely gone in XEmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 static void *
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
298 block_input_malloc (size_t size);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 block_input_free (void* ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 __free_hook = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 __malloc_hook = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 free (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 __free_hook = block_input_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 __malloc_hook = block_input_malloc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 static void *
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
311 block_input_malloc (size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 void* result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 __free_hook = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 __malloc_hook = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 result = malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 __free_hook = block_input_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 __malloc_hook = block_input_malloc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 static void *
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
324 block_input_realloc (void* ptr, size_t size)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 void* result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 __free_hook = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 __malloc_hook = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 __realloc_hook = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 result = realloc (ptr, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 __free_hook = block_input_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 __malloc_hook = block_input_malloc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 __realloc_hook = block_input_realloc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 return result;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 void disable_free_hook (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 disable_free_hook (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 __free_hook = block_input_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 __malloc_hook = block_input_malloc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 __realloc_hook = block_input_realloc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 init_free_hook (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 __free_hook = check_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 __malloc_hook = check_malloc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 __realloc_hook = check_realloc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 current_free = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 strict_free_check = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 void really_free_one_entry (void *, int, int *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
360 DEFUN ("really-free", Freally_free, 0, 1, "P", /*
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 Actually free the storage held by the free() debug hook.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 A no-op if the free hook is disabled.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
363 */
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
364 (arg))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 int count[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 Lisp_Object lisp_count[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 if ((__free_hook != 0) && pointer_table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 count[0] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 count[1] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 __free_hook = 0;
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 20
diff changeset
374 maphash ((maphash_function)really_free_one_entry,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 pointer_table, (void *)&count);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 memset (free_queue, 0, sizeof (free_queue_entry) * FREE_QUEUE_LIMIT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 current_free = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 __free_hook = check_free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 XSETINT (lisp_count[0], count[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 XSETINT (lisp_count[1], count[1]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 return Fcons (lisp_count[0], lisp_count[1]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 return Fcons (make_int (0), make_int (0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 really_free_one_entry (void *key, int contents, int *countp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 if (contents < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 free (key);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 #ifdef UNMAPPED_FREE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 mprotect (key, -contents, PROT_READ | PROT_WRITE | PROT_EXEC);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 remhash (key, pointer_table);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 countp[0]++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 countp[1] += -contents;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 syms_of_free_hook (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 {
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 0
diff changeset
405 DEFSUBR (Freally_free);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 #else
384
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
409 void (*__free_hook)(void *) = check_free;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
410 void *(*__malloc_hook)(size_t) = check_malloc;
bbff43aa5eb7 Import from CVS: tag r21-2-7
cvs
parents: 380
diff changeset
411 void *(*__realloc_hook)(void *, size_t) = check_realloc;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
267
966663fcf606 Import from CVS: tag r20-5b32
cvs
parents: 233
diff changeset
414 #endif /* !defined(HAVE_LIBMCHECK) */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 #if defined(DEBUG_INPUT_BLOCKING) || defined (DEBUG_GCPRO)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 /* Note: There is no more input blocking in XEmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 typedef enum {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 block_type, unblock_type, totally_type,
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 384
diff changeset
421 gcpro1_type, gcpro2_type, gcpro3_type, gcpro4_type, gcpro5_type,
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 384
diff changeset
422 ungcpro_type
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 } blocktype;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
185
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 20
diff changeset
425 struct block_input_history_struct
3d6bfa290dbd Import from CVS: tag r20-3b19
cvs
parents: 20
diff changeset
426 {
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 char *file;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 int line;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 blocktype type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 int value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 typedef struct block_input_history_struct block_input_history;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 384
diff changeset
435 #endif /* DEBUG_INPUT_BLOCKING || DEBUG_GCPRO */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 #ifdef DEBUG_INPUT_BLOCKING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 int blhistptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 #define BLHISTLIMIT 1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 block_input_history blhist[BLHISTLIMIT];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 note_block_input (char *file, int line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 note_block (file, line, block_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 if (interrupt_input_blocked > 2) abort();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 note_unblock_input (char* file, int line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 note_block (file, line, unblock_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 note_totally_unblocked (char* file, int line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 note_block (file, line, totally_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 note_block (char *file, int line, blocktype type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 blhist[blhistptr].file = file;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 blhist[blhistptr].line = line;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 blhist[blhistptr].type = type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 blhist[blhistptr].value = interrupt_input_blocked;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 blhistptr++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 if (blhistptr >= BLHISTLIMIT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 blhistptr = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 384
diff changeset
473 #endif /* DEBUG_INPUT_BLOCKING */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 #ifdef DEBUG_GCPRO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 int gcprohistptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 #define GCPROHISTLIMIT 1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 block_input_history gcprohist[GCPROHISTLIMIT];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 log_gcpro (char *file, int line, struct gcpro *value, blocktype type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 if (type == ungcpro_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 if (value == gcprolist) goto OK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 if (! gcprolist) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 if (value == gcprolist->next) goto OK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 if (! gcprolist->next) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 if (value == gcprolist->next->next) goto OK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 if (! gcprolist->next->next) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 if (value == gcprolist->next->next->next) goto OK;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 OK:;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 gcprohist[gcprohistptr].file = file;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 gcprohist[gcprohistptr].line = line;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 gcprohist[gcprohistptr].type = type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 gcprohist[gcprohistptr].value = (int) value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 gcprohistptr++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 if (gcprohistptr >= GCPROHISTLIMIT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 gcprohistptr = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 debug_gcpro1 (char *file, int line, struct gcpro *gcpro1, Lisp_Object *var)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 gcpro1->next = gcprolist; gcpro1->var = var; gcpro1->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 gcprolist = gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 log_gcpro (file, line, gcpro1, gcpro1_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 debug_gcpro2 (char *file, int line, struct gcpro *gcpro1, struct gcpro *gcpro2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 Lisp_Object *var1, Lisp_Object *var2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 gcpro1->next = gcprolist; gcpro1->var = var1; gcpro1->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 gcpro2->next = gcpro1; gcpro2->var = var2; gcpro2->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 gcprolist = gcpro2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 log_gcpro (file, line, gcpro2, gcpro2_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 debug_gcpro3 (char *file, int line, struct gcpro *gcpro1, struct gcpro *gcpro2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 struct gcpro *gcpro3, Lisp_Object *var1, Lisp_Object *var2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 Lisp_Object *var3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 gcpro1->next = gcprolist; gcpro1->var = var1; gcpro1->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 gcpro2->next = gcpro1; gcpro2->var = var2; gcpro2->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 gcpro3->next = gcpro2; gcpro3->var = var3; gcpro3->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 gcprolist = gcpro3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 log_gcpro (file, line, gcpro3, gcpro3_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 debug_gcpro4 (char *file, int line, struct gcpro *gcpro1, struct gcpro *gcpro2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 struct gcpro *gcpro3, struct gcpro *gcpro4, Lisp_Object *var1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 Lisp_Object *var2, Lisp_Object *var3, Lisp_Object *var4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 log_gcpro (file, line, gcpro4, gcpro4_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 gcpro1->next = gcprolist; gcpro1->var = var1; gcpro1->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 gcpro2->next = gcpro1; gcpro2->var = var2; gcpro2->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 gcpro3->next = gcpro2; gcpro3->var = var3; gcpro3->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 gcpro4->next = gcpro3; gcpro4->var = var4; gcpro4->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 gcprolist = gcpro4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 debug_gcpro5 (char *file, int line, struct gcpro *gcpro1, struct gcpro *gcpro2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 struct gcpro *gcpro3, struct gcpro *gcpro4, struct gcpro *gcpro5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 Lisp_Object *var1, Lisp_Object *var2, Lisp_Object *var3,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 Lisp_Object *var4, Lisp_Object *var5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 log_gcpro (file, line, gcpro5, gcpro5_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 gcpro1->next = gcprolist; gcpro1->var = var1; gcpro1->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 gcpro2->next = gcpro1; gcpro2->var = var2; gcpro2->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 gcpro3->next = gcpro2; gcpro3->var = var3; gcpro3->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 gcpro4->next = gcpro3; gcpro4->var = var4; gcpro4->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 gcpro5->next = gcpro4; gcpro5->var = var5; gcpro5->nvars = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 gcprolist = gcpro5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 debug_ungcpro (char *file, int line, struct gcpro *gcpro1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 log_gcpro (file, line, gcpro1, ungcpro_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 gcprolist = gcpro1->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 384
diff changeset
571
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 384
diff changeset
572 /* To be called from the debugger */
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 384
diff changeset
573 void show_gcprohist (void);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 show_gcprohist (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 int i, j;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 for (i = 0, j = gcprohistptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 i < GCPROHISTLIMIT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 i++, j++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 if (j >= GCPROHISTLIMIT)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 j = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 printf ("%3d %s %d %s 0x%x\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 j, gcprohist[j].file, gcprohist[j].line,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (gcprohist[j].type == gcpro1_type ? "GCPRO1" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 gcprohist[j].type == gcpro2_type ? "GCPRO2" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 gcprohist[j].type == gcpro3_type ? "GCPRO3" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 gcprohist[j].type == gcpro4_type ? "GCPRO4" :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 gcprohist[j].type == ungcpro_type ? "UNGCPRO" : "???"),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 gcprohist[j].value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 fflush (stdout);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595
396
6719134a07c2 Import from CVS: tag r21-2-13
cvs
parents: 384
diff changeset
596 #endif /* DEBUG_GCPRO */