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.

198 lines
4.9KB

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