You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

225 lines
5.4KB

  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. * @file
  23. * default memory allocator for libavutil
  24. */
  25. #define _XOPEN_SOURCE 600
  26. #include "config.h"
  27. #include <limits.h>
  28. #include <stdlib.h>
  29. #include <string.h>
  30. #if HAVE_MALLOC_H
  31. #include <malloc.h>
  32. #endif
  33. #include "avutil.h"
  34. #include "mem.h"
  35. /* here we can use OS-dependent allocation functions */
  36. #undef free
  37. #undef malloc
  38. #undef realloc
  39. #ifdef MALLOC_PREFIX
  40. #define malloc AV_JOIN(MALLOC_PREFIX, malloc)
  41. #define memalign AV_JOIN(MALLOC_PREFIX, memalign)
  42. #define posix_memalign AV_JOIN(MALLOC_PREFIX, posix_memalign)
  43. #define realloc AV_JOIN(MALLOC_PREFIX, realloc)
  44. #define free AV_JOIN(MALLOC_PREFIX, free)
  45. void *malloc(size_t size);
  46. void *memalign(size_t align, size_t size);
  47. int posix_memalign(void **ptr, size_t align, size_t size);
  48. void *realloc(void *ptr, size_t size);
  49. void free(void *ptr);
  50. #endif /* MALLOC_PREFIX */
  51. #define ALIGN (HAVE_AVX ? 32 : 16)
  52. /* You can redefine av_malloc and av_free in your project to use your
  53. memory allocator. You do not need to suppress this file because the
  54. linker will do it automatically. */
  55. #define MAX_MALLOC_SIZE INT_MAX
  56. void *av_malloc(size_t size)
  57. {
  58. void *ptr = NULL;
  59. #if CONFIG_MEMALIGN_HACK
  60. long diff;
  61. #endif
  62. /* let's disallow possible ambiguous cases */
  63. if (size > (MAX_MALLOC_SIZE-32))
  64. return NULL;
  65. #if CONFIG_MEMALIGN_HACK
  66. ptr = malloc(size+ALIGN);
  67. if(!ptr)
  68. return ptr;
  69. diff= ((-(long)ptr - 1)&(ALIGN-1)) + 1;
  70. ptr = (char*)ptr + diff;
  71. ((char*)ptr)[-1]= diff;
  72. #elif HAVE_POSIX_MEMALIGN
  73. if (size) //OSX on SDK 10.6 has a broken posix_memalign implementation
  74. if (posix_memalign(&ptr,ALIGN,size))
  75. ptr = NULL;
  76. #elif HAVE_MEMALIGN
  77. ptr = memalign(ALIGN,size);
  78. /* Why 64?
  79. Indeed, we should align it:
  80. on 4 for 386
  81. on 16 for 486
  82. on 32 for 586, PPro - K6-III
  83. on 64 for K7 (maybe for P3 too).
  84. Because L1 and L2 caches are aligned on those values.
  85. But I don't want to code such logic here!
  86. */
  87. /* Why 32?
  88. For AVX ASM. SSE / NEON needs only 16.
  89. Why not larger? Because I did not see a difference in benchmarks ...
  90. */
  91. /* benchmarks with P3
  92. memalign(64)+1 3071,3051,3032
  93. memalign(64)+2 3051,3032,3041
  94. memalign(64)+4 2911,2896,2915
  95. memalign(64)+8 2545,2554,2550
  96. memalign(64)+16 2543,2572,2563
  97. memalign(64)+32 2546,2545,2571
  98. memalign(64)+64 2570,2533,2558
  99. BTW, malloc seems to do 8-byte alignment by default here.
  100. */
  101. #else
  102. ptr = malloc(size);
  103. #endif
  104. if(!ptr && !size)
  105. ptr= av_malloc(1);
  106. return ptr;
  107. }
  108. void *av_realloc(void *ptr, size_t size)
  109. {
  110. #if CONFIG_MEMALIGN_HACK
  111. int diff;
  112. #endif
  113. /* let's disallow possible ambiguous cases */
  114. if (size > (MAX_MALLOC_SIZE-16))
  115. return NULL;
  116. #if CONFIG_MEMALIGN_HACK
  117. //FIXME this isn't aligned correctly, though it probably isn't needed
  118. if(!ptr) return av_malloc(size);
  119. diff= ((char*)ptr)[-1];
  120. return (char*)realloc((char*)ptr - diff, size + diff) + diff;
  121. #else
  122. return realloc(ptr, size + !size);
  123. #endif
  124. }
  125. void *av_realloc_f(void *ptr, size_t nelem, size_t elsize)
  126. {
  127. size_t size;
  128. void *r;
  129. if (av_size_mult(elsize, nelem, &size)) {
  130. av_free(ptr);
  131. return NULL;
  132. }
  133. r = av_realloc(ptr, size);
  134. if (!r && size)
  135. av_free(ptr);
  136. return r;
  137. }
  138. void av_free(void *ptr)
  139. {
  140. #if CONFIG_MEMALIGN_HACK
  141. if (ptr)
  142. free((char*)ptr - ((char*)ptr)[-1]);
  143. #else
  144. free(ptr);
  145. #endif
  146. }
  147. void av_freep(void *arg)
  148. {
  149. void **ptr= (void**)arg;
  150. av_free(*ptr);
  151. *ptr = NULL;
  152. }
  153. void *av_mallocz(size_t size)
  154. {
  155. void *ptr = av_malloc(size);
  156. if (ptr)
  157. memset(ptr, 0, size);
  158. return ptr;
  159. }
  160. void *av_calloc(size_t nmemb, size_t size)
  161. {
  162. if (size <= 0 || nmemb >= INT_MAX / size)
  163. return NULL;
  164. return av_mallocz(nmemb * size);
  165. }
  166. char *av_strdup(const char *s)
  167. {
  168. char *ptr= NULL;
  169. if(s){
  170. int len = strlen(s) + 1;
  171. ptr = av_malloc(len);
  172. if (ptr)
  173. memcpy(ptr, s, len);
  174. }
  175. return ptr;
  176. }
  177. /* add one element to a dynamic array */
  178. void av_dynarray_add(void *tab_ptr, int *nb_ptr, void *elem)
  179. {
  180. /* see similar ffmpeg.c:grow_array() */
  181. int nb, nb_alloc;
  182. intptr_t *tab;
  183. nb = *nb_ptr;
  184. tab = *(intptr_t**)tab_ptr;
  185. if ((nb & (nb - 1)) == 0) {
  186. if (nb == 0)
  187. nb_alloc = 1;
  188. else
  189. nb_alloc = nb * 2;
  190. tab = av_realloc(tab, nb_alloc * sizeof(intptr_t));
  191. *(intptr_t**)tab_ptr = tab;
  192. }
  193. tab[nb++] = (intptr_t)elem;
  194. *nb_ptr = nb;
  195. }