summaryrefslogtreecommitdiff
path: root/tools/gslite/gslt_alloc.c
blob: f57ebf4aea8eb0bbf38a0314da4abfcdd109eaa4 (plain)
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/* A simple memory allocator, based on the the allocator for ghostpcl */

#include "malloc_.h"
#include "memory_.h"
#include "gdebug.h"
#include "gsmemret.h" /* for gs_memory_type_ptr_t */
#include "gsmalloc.h"
#include "gsstype.h"
#include "gslt_alloc.h"

static int num_alloc_called = 0;
static int num_resize_called = 0;
static int num_free_called = 0;

/* a screwed up mess, we try to make it manageable here */
extern const gs_memory_struct_type_t st_bytes;

/* assume doubles are the largest primitive types and malloc alignment
   is consistent.  Covers the machines we care about */
inline private uint
round_up_to_align(uint size)
{
    uint result = (size + (ARCH_ALIGN_MEMORY_MOD - 1)) & -ARCH_ALIGN_MEMORY_MOD;
    return result;
}

/* accessors to get size and type given the pointer returned to the
   client, *not* the pointer returned by malloc or realloc */
inline private uint
get_size(byte *bptr)
{
    /* unpack the unsigned int we stored 2 words behind the object at
       alloc time... back up 2 */
    int size_offset = -round_up_to_align(1) * 2;
    uint size;
    /* unpack */
    memcpy(&size, &bptr[size_offset], sizeof(uint));
    return size;
}

inline private gs_memory_type_ptr_t
get_type(byte *bptr)
{
    /* unpack the pointer we stored 1 word behind the object at
       alloc time... back up 1 */
    gs_memory_type_ptr_t type;
    int type_offset = -round_up_to_align(1);
    /* unpack */
    memcpy(&type, &bptr[type_offset], sizeof(gs_memory_type_ptr_t));
    return type;
}

/* accessors to set size and typen give the pointer that was returned
   by malloc or realloc, *not* the pointer returned to the client */
inline private void
set_size(byte *bptr, uint size)
{
    memcpy(bptr, &size, sizeof(size));
}

inline private void
set_type(byte *bptr, gs_memory_type_ptr_t type)
{
    memcpy(&bptr[round_up_to_align(1)], &type, sizeof(type));
    return;
}

/* all of the allocation routines modulo realloc reduce to the this
   function */
private byte *
gslt_alloc(gs_memory_t *mem, uint size, gs_memory_type_ptr_t type, client_name_t cname)
{

    uint minsize, newsize;
    /* NB apparently there is code floating around that does 0 size
       mallocs.  sigh. */
    if ( size == 0 )
	return NULL;

    /* use 2 starting machine words for size and type - assumes
       malloc() returns on max boundary and first 2 words will hold
       two longs.  Doesn't check for overflow - malloc will fail for
       us.  Update size. */
    minsize = round_up_to_align(1);
    newsize = size + minsize + minsize;
    {

	byte *ptr = (byte *)malloc(newsize);
	if ( !ptr )
	    return NULL;
	num_alloc_called ++;
#ifdef DEBUG
	if_debug2('A', "[da]:malloc:%p:%s\n", &ptr[minsize * 2], cname );
#endif
	/* set the type and size */
	set_type(ptr, type);
	set_size(ptr, size);
	/* initialize for debugging */
#ifdef DEBUG
	if ( gs_debug_c('@') )
	    memset(&ptr[minsize * 2], 0xff, get_size(&ptr[minsize * 2]));
#endif
	/* return the memory after the size and type words. */
	return &ptr[minsize * 2];
    }
}

private byte *
gslt_alloc_bytes_immovable(gs_memory_t * mem, uint size, client_name_t cname)
{
    return gslt_alloc(mem, size, &st_bytes, cname);
}

private byte *
gslt_alloc_bytes(gs_memory_t * mem, uint size, client_name_t cname)
{
    return gslt_alloc(mem, size, &st_bytes, cname);
}

private void *
gslt_alloc_struct_immovable(gs_memory_t * mem, gs_memory_type_ptr_t pstype,
			 client_name_t cname)
{
    return gslt_alloc(mem, pstype->ssize, pstype, cname);
}

private void *
gslt_alloc_struct(gs_memory_t * mem, gs_memory_type_ptr_t pstype,
	       client_name_t cname)
{
    return gslt_alloc(mem, pstype->ssize, pstype, cname);
}

private byte *
gslt_alloc_byte_array_immovable(gs_memory_t * mem, uint num_elements,
			     uint elt_size, client_name_t cname)
{
    return gslt_alloc_bytes(mem, num_elements * elt_size, cname);
}

private byte *
gslt_alloc_byte_array(gs_memory_t * mem, uint num_elements, uint elt_size,
		   client_name_t cname)
{
    return gslt_alloc_bytes(mem, num_elements * elt_size, cname);
}

private void *
gslt_alloc_struct_array_immovable(gs_memory_t * mem, uint num_elements,
			   gs_memory_type_ptr_t pstype, client_name_t cname)
{
    return gslt_alloc(mem, num_elements * pstype->ssize, pstype, cname);
}

private void *
gslt_alloc_struct_array(gs_memory_t * mem, uint num_elements,
		     gs_memory_type_ptr_t pstype, client_name_t cname)
{
    return gslt_alloc(mem, num_elements * pstype->ssize, pstype, cname);
}


private void *
gslt_resize_object(gs_memory_t * mem, void *obj, uint new_num_elements, client_name_t cname)
{
    byte *ptr;
    byte *bptr = (byte *)obj;
    /* get the type from the old object */
    gs_memory_type_ptr_t objs_type = get_type(obj);
    /* type-and-size header size */
    ulong header_size = round_up_to_align(1) + round_up_to_align(1);
    /* get new object's size */
    ulong new_size = (objs_type->ssize * new_num_elements) + header_size;
    /* replace the size field */
    ptr = (byte *)realloc(&bptr[-header_size], new_size);
    if ( !ptr ) 
	return NULL;

    num_resize_called ++;

    /* da for debug allocator - so scripts can parse the trace */
    if_debug2('A', "[da]:realloc:%p:%s\n", ptr, cname );
    /* we reset size and type - the type in case realloc moved us */
    set_size(ptr, new_size - header_size);
    set_type(ptr, objs_type);
    return &ptr[round_up_to_align(1) * 2];
}

	
private void
gslt_free_object(gs_memory_t * mem, void *ptr, client_name_t cname)
{
    if ( ptr != NULL ) {
	byte *bptr = (byte *)ptr;
	uint header_size = round_up_to_align(1) * 2;
#ifdef DEBUG
	if ( gs_debug_c('@') )
	    memset(bptr-header_size, 0xee, header_size + get_size(ptr));
#endif
	free(bptr-header_size);

	num_free_called ++;
	
#ifdef DEBUG
	    /* da for debug allocator - so scripts can parse the trace */
	if_debug2('A', "[da]:free:%p:%s\n", ptr, cname );
#endif
    }
}

private byte *
gslt_alloc_string_immovable(gs_memory_t * mem, uint nbytes, client_name_t cname)
{
    /* we just alloc bytes here */
    return gslt_alloc_bytes(mem, nbytes, cname);
}

private byte *
gslt_alloc_string(gs_memory_t * mem, uint nbytes, client_name_t cname)
{
    /* we just alloc bytes here */
    return gslt_alloc_bytes(mem, nbytes, cname);
}

private byte *
gslt_resize_string(gs_memory_t * mem, byte * data, uint old_num, uint new_num,
		client_name_t cname)
{
    /* just resize object - ignores old_num */
    return gslt_resize_object(mem, data, new_num, cname);
}

private void
gslt_free_string(gs_memory_t * mem, byte * data, uint nbytes,
	      client_name_t cname)
{
    gslt_free_object(mem, data, cname);
    return;
}


private void
gslt_status(gs_memory_t * mem, gs_memory_status_t * pstat)
{
    return;
}

private void
gslt_enable_free(gs_memory_t * mem, bool enable)
{
    return;
}

private void
gslt_free_all(gs_memory_t * mem, uint free_mask, client_name_t cname)
{
    return;
}

private void
gslt_consolidate_free(gs_memory_t *mem)
{
    return;
}


private uint
gslt_object_size(gs_memory_t * mem, const void /*obj_header_t */ *obj)
{
    return get_size((byte *)obj);
}

private gs_memory_type_ptr_t
gslt_object_type(gs_memory_t * mem, const void /*obj_header_t */ *obj)
{
    return get_type((byte *)obj);
}

private int
gslt_register_root(gs_memory_t * mem, gs_gc_root_t * rp, gs_ptr_type_t ptype,
		 void **up, client_name_t cname)
{
    return 0;
}

private void
gslt_unregister_root(gs_memory_t * mem, gs_gc_root_t * rp, client_name_t cname)
{
    return;
}

/* Define a vacuous recovery procedure. */
private gs_memory_recover_status_t
no_recover_proc(gs_memory_retrying_t *rmem, void *proc_data)
{
    return RECOVER_STATUS_NO_RETRY;
}


/* forward decl */
private gs_memory_t * gslt_stable(gs_memory_t *mem);


gs_memory_retrying_t gslt_mem = {
    (gs_memory_t *)&gslt_mem, /* also this is stable_memory since no save/restore */
    { gslt_alloc_bytes_immovable, /* alloc_bytes_immovable */
      gslt_resize_object, /* resize_object */
      gslt_free_object, /* free_object */
      gslt_stable, /* stable */
      gslt_status, /* status */
      gslt_free_all, /* free_all */
      gslt_consolidate_free, /* consolidate_free */
      gslt_alloc_bytes, /* alloc_bytes */ 
      gslt_alloc_struct, /* alloc_struct */
      gslt_alloc_struct_immovable, /* alloc_struct_immovable */
      gslt_alloc_byte_array, /* alloc_byte_array */
      gslt_alloc_byte_array_immovable, /* alloc_byte_array_immovable */
      gslt_alloc_struct_array, /* alloc_struct_array */
      gslt_alloc_struct_array_immovable, /* alloc_struct_array_immovable */
      gslt_object_size, /* object_size */
      gslt_object_type, /* object_type */
      gslt_alloc_string, /* alloc_string */
      gslt_alloc_string_immovable, /* alloc_string_immovable */
      gslt_resize_string, /* resize_string */
      gslt_free_string, /* free_string */
      gslt_register_root, /* register_root */ 
      gslt_unregister_root, /* unregister_root */
      gslt_enable_free /* enable_free */ 
    },
    NULL, /* gs_lib_ctx */
    NULL, /* head */
    NULL, /* non_gc_memory */
    NULL,            /* target */
    no_recover_proc, /* recovery procedure */
    NULL             /* recovery data */
};

private gs_memory_t *
gslt_stable(gs_memory_t *mem)
{
    return (gs_memory_t *)&gslt_mem;
}

const gs_malloc_memory_t gslt_malloc_memory = {
    0, /* stable */
    { gslt_alloc_bytes_immovable, /* alloc_bytes_immovable */
      gslt_resize_object, /* resize_object */
      gslt_free_object, /* free_object */
      gslt_stable, /* stable */
      gslt_status, /* status */
      gslt_free_all, /* free_all */
      gslt_consolidate_free, /* consolidate_free */
      gslt_alloc_bytes, /* alloc_bytes */ 
      gslt_alloc_struct, /* alloc_struct */
      gslt_alloc_struct_immovable, /* alloc_struct_immovable */
      gslt_alloc_byte_array, /* alloc_byte_array */
      gslt_alloc_byte_array_immovable, /* alloc_byte_array_immovable */
      gslt_alloc_struct_array, /* alloc_struct_array */
      gslt_alloc_struct_array_immovable, /* alloc_struct_array_immovable */
      gslt_object_size, /* object_size */
      gslt_object_type, /* object_type */
      gslt_alloc_string, /* alloc_string */
      gslt_alloc_string_immovable, /* alloc_string_immovable */
      gslt_resize_string, /* resize_string */
      gslt_free_string, /* free_string */
      gslt_register_root, /* register_root */ 
      gslt_unregister_root, /* unregister_root */
      gslt_enable_free /* enable_free */ 
    },    
    NULL, /* gs_lib_ctx */
    NULL, /* head */
    NULL, /* non_gc_memory */
    0, /* allocated */
    0, /* limit */ 
    0, /* used */ 
    0  /* max used */
};

/* retrun the c-heap manager set the global default as well. */
private gs_memory_t *
gslt_malloc_init(void)
{
    return (gs_memory_t *)&gslt_malloc_memory;
}

gs_memory_t *
gslt_alloc_init()
{
    if ( gslt_malloc_init() ==  NULL )
	return NULL;

    gs_lib_ctx_init((gs_memory_t *)&gslt_mem);

    gslt_mem.head = 0;
    gslt_mem.non_gc_memory = (gs_memory_t *)&gslt_mem;

    return (gs_memory_t *)&gslt_mem;
}

void
gslt_alloc_print_leaks(void)
{
    dprintf1("number of allocs: %d\n", num_alloc_called);
    dprintf1("number of frees: %d\n", num_free_called);
    dprintf1("number of resizes: %d\n", num_resize_called);
    dprintf1("number of leaked chunks: %d\n", num_alloc_called - num_free_called);
}