libFirm
xmalloc.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19 
27 #ifndef FIRM_ADT_XMALLOC_H
28 #define FIRM_ADT_XMALLOC_H
29 
30 #include <stddef.h>
31 #include <stdlib.h>
32 #include <string.h>
33 
34 /* Includes for alloca() */
35 #ifdef _WIN32
36 #include <malloc.h>
37 #endif
38 #if defined(__linux__) || defined(__APPLE__)
39 #include <alloca.h>
40 #endif
41 
42 #include "../begin.h"
43 
55 FIRM_API void *xmalloc(size_t size);
61 FIRM_API void *xrealloc(void *ptr, size_t size);
67 FIRM_API char *xstrdup(const char *str);
72 #define xfree(ptr) free(ptr)
73 
77 #define XMALLOCN(type, n) ((type*)xmalloc(sizeof(type) * (n)))
78 
82 #define XMALLOCNZ(type, n) ((type*)memset(xmalloc(sizeof(type) * (n)), 0, sizeof(type) * (n)))
83 
87 #define XMALLOC(type) XMALLOCN(type, 1)
88 
92 #define XMALLOCZ(type) XMALLOCNZ(type, 1)
93 
97 #define XREALLOC(ptr, type, n) ((type*)xrealloc(ptr, sizeof(type) * (n)))
98 
102 #define XMALLOCF(type, member, n) ((type*)xmalloc(offsetof(type, member) + sizeof(*((type*)0)->member) * (n)))
103 
108 #define XMALLOCFZ(type, member, n) ((type*)memset(XMALLOCF(type, member, (n)), 0, offsetof(type, member) + sizeof(*((type*)0)->member) * (n)))
109 
113 #define ALLOCAN(type, n) ((type*)alloca(sizeof(type) * (n)))
114 
118 #define ALLOCANZ(type, n) ((type*)memset((type*)alloca(sizeof(type) * (n)), 0, sizeof(type) * (n)))
119 
123 #define OALLOCN(obst, type, n) ((type*)obstack_alloc((obst), sizeof(type) * (n)))
124 
128 #define OALLOCNZ(obst, type, n) ((type*)memset(OALLOCN((obst), type, (n)), 0, sizeof(type) * (n)))
129 
133 #define OALLOC(obst, type) OALLOCN(obst, type, 1)
134 
138 #define OALLOCZ(obst, type) OALLOCNZ(obst, type, 1)
139 
144 #define OALLOCF(obst, type, member, n) ((type*)obstack_alloc((obst), offsetof(type, member) + sizeof(*((type*)0)->member) * (n)))
145 
150 #define OALLOCFZ(obst, type, member, n) ((type*)memset(OALLOCF((obst), type, member, (n)), 0, offsetof(type, member) + sizeof(*((type*)0)->member) * (n)))
151 
154 #include "../end.h"
155 
156 #endif