]> git.saurik.com Git - apple/libc.git/blob - include/malloc/malloc.h
5db543d5f0c4b16ab0a847879cf98621f245fe40
[apple/libc.git] / include / malloc / malloc.h
1 /*
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
11 * file.
12 *
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
20 *
21 * @APPLE_LICENSE_HEADER_END@
22 */
23
24 #ifndef _MALLOC_MALLOC_H_
25 #define _MALLOC_MALLOC_H_
26
27 #include <stddef.h>
28 #include <mach/mach_types.h>
29 #include <sys/cdefs.h>
30
31 __BEGIN_DECLS
32 /********* Type definitions ************/
33
34 typedef struct _malloc_zone_t {
35 /* Only zone implementors should depend on the layout of this structure;
36 Regular callers should use the access functions below */
37 void *reserved1; /* RESERVED FOR CFAllocator DO NOT USE */
38 void *reserved2; /* RESERVED FOR CFAllocator DO NOT USE */
39 size_t (*size)(struct _malloc_zone_t *zone, const void *ptr); /* returns the size of a block or 0 if not in this zone; must be fast, especially for negative answers */
40 void *(*malloc)(struct _malloc_zone_t *zone, size_t size);
41 void *(*calloc)(struct _malloc_zone_t *zone, size_t num_items, size_t size); /* same as malloc, but block returned is set to zero */
42 void *(*valloc)(struct _malloc_zone_t *zone, size_t size); /* same as malloc, but block returned is set to zero and is guaranteed to be page aligned */
43 void (*free)(struct _malloc_zone_t *zone, void *ptr);
44 void *(*realloc)(struct _malloc_zone_t *zone, void *ptr, size_t size);
45 void (*destroy)(struct _malloc_zone_t *zone); /* zone is destroyed and all memory reclaimed */
46 const char *zone_name;
47
48 /* Optional batch callbacks; these may be NULL */
49 unsigned (*batch_malloc)(struct _malloc_zone_t *zone, size_t size, void **results, unsigned num_requested); /* given a size, returns pointers capable of holding that size; returns the number of pointers allocated (maybe 0 or less than num_requested) */
50 void (*batch_free)(struct _malloc_zone_t *zone, void **to_be_freed, unsigned num_to_be_freed); /* frees all the pointers in to_be_freed; note that to_be_freed may be overwritten during the process */
51
52 struct malloc_introspection_t *introspect;
53 unsigned version;
54 } malloc_zone_t;
55
56 /********* Creation and destruction ************/
57
58 extern malloc_zone_t *malloc_default_zone(void);
59 /* The initial zone */
60
61 extern malloc_zone_t *malloc_create_zone(vm_size_t start_size, unsigned flags);
62 /* Create a new zone */
63
64 extern void malloc_destroy_zone(malloc_zone_t *zone);
65 /* Destroys zone and everything it allocated */
66
67 /********* Block creation and manipulation ************/
68
69 extern void *malloc_zone_malloc(malloc_zone_t *zone, size_t size);
70 /* Allocates a new pointer of size size; zone must be non-NULL */
71
72 extern void *malloc_zone_calloc(malloc_zone_t *zone, size_t num_items, size_t size);
73 /* Allocates a new pointer of size num_items * size; block is cleared; zone must be non-NULL */
74
75 extern void *malloc_zone_valloc(malloc_zone_t *zone, size_t size);
76 /* Allocates a new pointer of size size; zone must be non-NULL; Pointer is guaranteed to be page-aligned and block is cleared */
77
78 extern void malloc_zone_free(malloc_zone_t *zone, void *ptr);
79 /* Frees pointer in zone; zone must be non-NULL */
80
81 extern void *malloc_zone_realloc(malloc_zone_t *zone, void *ptr, size_t size);
82 /* Enlarges block if necessary; zone must be non-NULL */
83
84 extern malloc_zone_t *malloc_zone_from_ptr(const void *ptr);
85 /* Returns the zone for a pointer, or NULL if not in any zone.
86 The ptr must have been returned from a malloc or realloc call. */
87
88 extern size_t malloc_size(const void *ptr);
89 /* Returns size of given ptr */
90
91 extern size_t malloc_good_size(size_t size);
92 /* Returns number of bytes greater than or equal to size that can be allocated without padding */
93
94 /********* Batch methods ************/
95
96 extern unsigned malloc_zone_batch_malloc(malloc_zone_t *zone, size_t size, void **results, unsigned num_requested);
97 /* Allocates num blocks of the same size; Returns the number truly allocated (may be 0) */
98
99 extern void malloc_zone_batch_free(malloc_zone_t *zone, void **to_be_freed, unsigned num);
100 /* frees all the pointers in to_be_freed; note that to_be_freed may be overwritten during the process; This function will always free even if the zone has no batch callback */
101
102 /********* Functions for zone implementors ************/
103
104 extern void malloc_zone_register(malloc_zone_t *zone);
105 /* Registers a freshly created zone;
106 Should typically be called after a zone has been created */
107
108 extern void malloc_zone_unregister(malloc_zone_t *zone);
109 /* De-registers a zone
110 Should typically be called before calling the zone destruction routine */
111
112 extern void malloc_set_zone_name(malloc_zone_t *zone, const char *name);
113 /* Sets the name of a zone */
114
115 extern const char *malloc_get_zone_name(malloc_zone_t *zone);
116 /* Returns the name of a zone */
117
118 typedef struct {
119 vm_address_t address;
120 vm_size_t size;
121 } vm_range_t;
122
123 typedef struct malloc_statistics_t {
124 unsigned blocks_in_use;
125 size_t size_in_use;
126 size_t max_size_in_use; /* high water mark of touched memory */
127 size_t size_allocated; /* reserved in memory */
128 } malloc_statistics_t;
129
130 typedef kern_return_t memory_reader_t(task_t remote_task, vm_address_t remote_address, vm_size_t size, void **local_memory);
131 /* given a task, "reads" the memory at the given address and size
132 local_memory: set to a contiguous chunk of memory; validity of local_memory is assumed to be limited (until next call) */
133
134 #define MALLOC_PTR_IN_USE_RANGE_TYPE 1 /* for allocated pointers */
135 #define MALLOC_PTR_REGION_RANGE_TYPE 2 /* for region containing pointers */
136 #define MALLOC_ADMIN_REGION_RANGE_TYPE 4 /* for region used internally */
137
138 typedef void vm_range_recorder_t(task_t, void *, unsigned type, vm_range_t *, unsigned);
139 /* given a task and context, "records" the specified addresses */
140
141 typedef struct malloc_introspection_t {
142 kern_return_t (*enumerator)(task_t task, void *, unsigned type_mask, vm_address_t zone_address, memory_reader_t reader, vm_range_recorder_t recorder); /* enumerates all the malloc pointers in use */
143 size_t (*good_size)(malloc_zone_t *zone, size_t size);
144 boolean_t (*check)(malloc_zone_t *zone); /* Consistency checker */
145 void (*print)(malloc_zone_t *zone, boolean_t verbose); /* Prints zone */
146 void (*log)(malloc_zone_t *zone, void *address); /* Enables logging of activity */
147 void (*force_lock)(malloc_zone_t *zone); /* Forces locking zone */
148 void (*force_unlock)(malloc_zone_t *zone); /* Forces unlocking zone */
149 void (*statistics)(malloc_zone_t *zone, malloc_statistics_t *stats); /* Fills statistics */
150 } malloc_introspection_t;
151
152 extern void malloc_printf(const char *format, ...);
153 /* Convenience for logging errors and warnings;
154 No allocation is performed during execution of this function;
155 Only understands usual %p %d %s formats, and %y that expresses a number of bytes (5b,10KB,1MB...)
156 */
157
158 /********* Functions for performance tools ************/
159
160 extern kern_return_t malloc_get_all_zones(task_t task, memory_reader_t reader, vm_address_t **addresses, unsigned *count);
161 /* Fills addresses and count with the addresses of the zones in task;
162 Note that the validity of the addresses returned correspond to the validity of the memory returned by reader */
163
164 /********* Debug helpers ************/
165
166 extern void malloc_zone_print_ptr_info(void *ptr);
167 /* print to stdout if this pointer is in the malloc heap, free status, and size */
168
169 extern boolean_t malloc_zone_check(malloc_zone_t *zone);
170 /* Checks zone is well formed; if !zone, checks all zones */
171
172 extern void malloc_zone_print(malloc_zone_t *zone, boolean_t verbose);
173 /* Prints summary on zone; if !zone, prints all zones */
174
175 extern void malloc_zone_statistics(malloc_zone_t *zone, malloc_statistics_t *stats);
176 /* Fills statistics for zone; if !zone, sums up all zones */
177
178 extern void malloc_zone_log(malloc_zone_t *zone, void *address);
179 /* Controls logging of all activity; if !zone, for all zones;
180 If address==0 nothing is logged;
181 If address==-1 all activity is logged;
182 Else only the activity regarding address is logged */
183
184 struct mstats {
185 size_t bytes_total;
186 size_t chunks_used;
187 size_t bytes_used;
188 size_t chunks_free;
189 size_t bytes_free;
190 };
191
192 extern struct mstats mstats(void);
193
194 __END_DECLS
195
196 #endif /* _MALLOC_MALLOC_H_ */