]> git.sesse.net Git - ffmpeg/blob - libavutil/mem.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavutil / mem.c
1 /*
2  * default memory allocator for libavutil
3  * Copyright (c) 2002 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * default memory allocator for libavutil
25  */
26
27 #define _XOPEN_SOURCE 600
28
29 #include "config.h"
30
31 #include <limits.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #if HAVE_MALLOC_H
35 #include <malloc.h>
36 #endif
37
38 #include "avutil.h"
39 #include "mem.h"
40
41 /* here we can use OS-dependent allocation functions */
42 #undef free
43 #undef malloc
44 #undef realloc
45
46 #ifdef MALLOC_PREFIX
47
48 #define malloc         AV_JOIN(MALLOC_PREFIX, malloc)
49 #define memalign       AV_JOIN(MALLOC_PREFIX, memalign)
50 #define posix_memalign AV_JOIN(MALLOC_PREFIX, posix_memalign)
51 #define realloc        AV_JOIN(MALLOC_PREFIX, realloc)
52 #define free           AV_JOIN(MALLOC_PREFIX, free)
53
54 void *malloc(size_t size);
55 void *memalign(size_t align, size_t size);
56 int   posix_memalign(void **ptr, size_t align, size_t size);
57 void *realloc(void *ptr, size_t size);
58 void  free(void *ptr);
59
60 #endif /* MALLOC_PREFIX */
61
62 #define ALIGN (HAVE_AVX ? 32 : 16)
63
64 /* NOTE: if you want to override these functions with your own
65  * implementations (not recommended) you have to link libav* as
66  * dynamic libraries and remove -Wl,-Bsymbolic from the linker flags.
67  * Note that this will cost performance. */
68
69 static size_t max_alloc_size= INT_MAX;
70
71 void av_max_alloc(size_t max){
72     max_alloc_size = max;
73 }
74
75 void *av_malloc(size_t size)
76 {
77     void *ptr = NULL;
78 #if CONFIG_MEMALIGN_HACK
79     long diff;
80 #endif
81
82     /* let's disallow possible ambiguous cases */
83     if (size > (max_alloc_size-32))
84         return NULL;
85
86 #if CONFIG_MEMALIGN_HACK
87     ptr = malloc(size+ALIGN);
88     if(!ptr)
89         return ptr;
90     diff= ((-(long)ptr - 1)&(ALIGN-1)) + 1;
91     ptr = (char*)ptr + diff;
92     ((char*)ptr)[-1]= diff;
93 #elif HAVE_POSIX_MEMALIGN
94     if (size) //OS X on SDK 10.6 has a broken posix_memalign implementation
95     if (posix_memalign(&ptr,ALIGN,size))
96         ptr = NULL;
97 #elif HAVE_ALIGNED_MALLOC
98     ptr = _aligned_malloc(size, ALIGN);
99 #elif HAVE_MEMALIGN
100     ptr = memalign(ALIGN,size);
101     /* Why 64?
102        Indeed, we should align it:
103          on 4 for 386
104          on 16 for 486
105          on 32 for 586, PPro - K6-III
106          on 64 for K7 (maybe for P3 too).
107        Because L1 and L2 caches are aligned on those values.
108        But I don't want to code such logic here!
109      */
110      /* Why 32?
111         For AVX ASM. SSE / NEON needs only 16.
112         Why not larger? Because I did not see a difference in benchmarks ...
113      */
114      /* benchmarks with P3
115         memalign(64)+1          3071,3051,3032
116         memalign(64)+2          3051,3032,3041
117         memalign(64)+4          2911,2896,2915
118         memalign(64)+8          2545,2554,2550
119         memalign(64)+16         2543,2572,2563
120         memalign(64)+32         2546,2545,2571
121         memalign(64)+64         2570,2533,2558
122
123         BTW, malloc seems to do 8-byte alignment by default here.
124      */
125 #else
126     ptr = malloc(size);
127 #endif
128     if(!ptr && !size)
129         ptr= av_malloc(1);
130     return ptr;
131 }
132
133 void *av_realloc(void *ptr, size_t size)
134 {
135 #if CONFIG_MEMALIGN_HACK
136     int diff;
137 #endif
138
139     /* let's disallow possible ambiguous cases */
140     if (size > (max_alloc_size-32))
141         return NULL;
142
143 #if CONFIG_MEMALIGN_HACK
144     //FIXME this isn't aligned correctly, though it probably isn't needed
145     if(!ptr) return av_malloc(size);
146     diff= ((char*)ptr)[-1];
147     ptr= realloc((char*)ptr - diff, size + diff);
148     if(ptr) ptr = (char*)ptr + diff;
149     return ptr;
150 #elif HAVE_ALIGNED_MALLOC
151     return _aligned_realloc(ptr, size + !size, ALIGN);
152 #else
153     return realloc(ptr, size + !size);
154 #endif
155 }
156
157 void *av_realloc_f(void *ptr, size_t nelem, size_t elsize)
158 {
159     size_t size;
160     void *r;
161
162     if (av_size_mult(elsize, nelem, &size)) {
163         av_free(ptr);
164         return NULL;
165     }
166     r = av_realloc(ptr, size);
167     if (!r && size)
168         av_free(ptr);
169     return r;
170 }
171
172 void av_free(void *ptr)
173 {
174 #if CONFIG_MEMALIGN_HACK
175     if (ptr)
176         free((char*)ptr - ((char*)ptr)[-1]);
177 #elif HAVE_ALIGNED_MALLOC
178     _aligned_free(ptr);
179 #else
180     free(ptr);
181 #endif
182 }
183
184 void av_freep(void *arg)
185 {
186     void **ptr= (void**)arg;
187     av_free(*ptr);
188     *ptr = NULL;
189 }
190
191 void *av_mallocz(size_t size)
192 {
193     void *ptr = av_malloc(size);
194     if (ptr)
195         memset(ptr, 0, size);
196     return ptr;
197 }
198
199 void *av_calloc(size_t nmemb, size_t size)
200 {
201     if (size <= 0 || nmemb >= INT_MAX / size)
202         return NULL;
203     return av_mallocz(nmemb * size);
204 }
205
206 char *av_strdup(const char *s)
207 {
208     char *ptr= NULL;
209     if(s){
210         int len = strlen(s) + 1;
211         ptr = av_malloc(len);
212         if (ptr)
213             memcpy(ptr, s, len);
214     }
215     return ptr;
216 }
217
218 /* add one element to a dynamic array */
219 void av_dynarray_add(void *tab_ptr, int *nb_ptr, void *elem)
220 {
221     /* see similar ffmpeg.c:grow_array() */
222     int nb, nb_alloc;
223     intptr_t *tab;
224
225     nb = *nb_ptr;
226     tab = *(intptr_t**)tab_ptr;
227     if ((nb & (nb - 1)) == 0) {
228         if (nb == 0)
229             nb_alloc = 1;
230         else
231             nb_alloc = nb * 2;
232         tab = av_realloc(tab, nb_alloc * sizeof(intptr_t));
233         *(intptr_t**)tab_ptr = tab;
234     }
235     tab[nb++] = (intptr_t)elem;
236     *nb_ptr = nb;
237 }
238