]> 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_MEMALIGN
98     ptr = memalign(ALIGN,size);
99     /* Why 64?
100        Indeed, we should align it:
101          on 4 for 386
102          on 16 for 486
103          on 32 for 586, PPro - K6-III
104          on 64 for K7 (maybe for P3 too).
105        Because L1 and L2 caches are aligned on those values.
106        But I don't want to code such logic here!
107      */
108      /* Why 32?
109         For AVX ASM. SSE / NEON needs only 16.
110         Why not larger? Because I did not see a difference in benchmarks ...
111      */
112      /* benchmarks with P3
113         memalign(64)+1          3071,3051,3032
114         memalign(64)+2          3051,3032,3041
115         memalign(64)+4          2911,2896,2915
116         memalign(64)+8          2545,2554,2550
117         memalign(64)+16         2543,2572,2563
118         memalign(64)+32         2546,2545,2571
119         memalign(64)+64         2570,2533,2558
120
121         BTW, malloc seems to do 8-byte alignment by default here.
122      */
123 #else
124     ptr = malloc(size);
125 #endif
126     if(!ptr && !size)
127         ptr= av_malloc(1);
128     return ptr;
129 }
130
131 void *av_realloc(void *ptr, size_t size)
132 {
133 #if CONFIG_MEMALIGN_HACK
134     int diff;
135 #endif
136
137     /* let's disallow possible ambiguous cases */
138     if (size > (max_alloc_size-32))
139         return NULL;
140
141 #if CONFIG_MEMALIGN_HACK
142     //FIXME this isn't aligned correctly, though it probably isn't needed
143     if(!ptr) return av_malloc(size);
144     diff= ((char*)ptr)[-1];
145     ptr= realloc((char*)ptr - diff, size + diff);
146     if(ptr) ptr = (char*)ptr + diff;
147     return ptr;
148 #else
149     return realloc(ptr, size + !size);
150 #endif
151 }
152
153 void *av_realloc_f(void *ptr, size_t nelem, size_t elsize)
154 {
155     size_t size;
156     void *r;
157
158     if (av_size_mult(elsize, nelem, &size)) {
159         av_free(ptr);
160         return NULL;
161     }
162     r = av_realloc(ptr, size);
163     if (!r && size)
164         av_free(ptr);
165     return r;
166 }
167
168 void av_free(void *ptr)
169 {
170 #if CONFIG_MEMALIGN_HACK
171     if (ptr)
172         free((char*)ptr - ((char*)ptr)[-1]);
173 #else
174     free(ptr);
175 #endif
176 }
177
178 void av_freep(void *arg)
179 {
180     void **ptr= (void**)arg;
181     av_free(*ptr);
182     *ptr = NULL;
183 }
184
185 void *av_mallocz(size_t size)
186 {
187     void *ptr = av_malloc(size);
188     if (ptr)
189         memset(ptr, 0, size);
190     return ptr;
191 }
192
193 void *av_calloc(size_t nmemb, size_t size)
194 {
195     if (size <= 0 || nmemb >= INT_MAX / size)
196         return NULL;
197     return av_mallocz(nmemb * size);
198 }
199
200 char *av_strdup(const char *s)
201 {
202     char *ptr= NULL;
203     if(s){
204         int len = strlen(s) + 1;
205         ptr = av_malloc(len);
206         if (ptr)
207             memcpy(ptr, s, len);
208     }
209     return ptr;
210 }
211
212 /* add one element to a dynamic array */
213 void av_dynarray_add(void *tab_ptr, int *nb_ptr, void *elem)
214 {
215     /* see similar ffmpeg.c:grow_array() */
216     int nb, nb_alloc;
217     intptr_t *tab;
218
219     nb = *nb_ptr;
220     tab = *(intptr_t**)tab_ptr;
221     if ((nb & (nb - 1)) == 0) {
222         if (nb == 0)
223             nb_alloc = 1;
224         else
225             nb_alloc = nb * 2;
226         tab = av_realloc(tab, nb_alloc * sizeof(intptr_t));
227         *(intptr_t**)tab_ptr = tab;
228     }
229     tab[nb++] = (intptr_t)elem;
230     *nb_ptr = nb;
231 }
232