mem.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. /*
  2. * default memory allocator for libavutil
  3. * Copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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. /* You can redefine av_malloc and av_free in your project to use your
  51. memory allocator. You do not need to suppress this file because the
  52. linker will do it automatically. */
  53. void *av_malloc(FF_INTERNAL_MEM_TYPE size)
  54. {
  55. void *ptr = NULL;
  56. #if CONFIG_MEMALIGN_HACK
  57. long diff;
  58. #endif
  59. /* let's disallow possible ambiguous cases */
  60. if(size > (INT_MAX-16) )
  61. return NULL;
  62. #if CONFIG_MEMALIGN_HACK
  63. ptr = malloc(size+16);
  64. if(!ptr)
  65. return ptr;
  66. diff= ((-(long)ptr - 1)&15) + 1;
  67. ptr = (char*)ptr + diff;
  68. ((char*)ptr)[-1]= diff;
  69. #elif HAVE_POSIX_MEMALIGN
  70. if (posix_memalign(&ptr,16,size))
  71. ptr = NULL;
  72. #elif HAVE_MEMALIGN
  73. ptr = memalign(16,size);
  74. /* Why 64?
  75. Indeed, we should align it:
  76. on 4 for 386
  77. on 16 for 486
  78. on 32 for 586, PPro - K6-III
  79. on 64 for K7 (maybe for P3 too).
  80. Because L1 and L2 caches are aligned on those values.
  81. But I don't want to code such logic here!
  82. */
  83. /* Why 16?
  84. Because some CPUs need alignment, for example SSE2 on P4, & most RISC CPUs
  85. it will just trigger an exception and the unaligned load will be done in the
  86. exception handler or it will just segfault (SSE2 on P4).
  87. Why not larger? Because I did not see a difference in benchmarks ...
  88. */
  89. /* benchmarks with P3
  90. memalign(64)+1 3071,3051,3032
  91. memalign(64)+2 3051,3032,3041
  92. memalign(64)+4 2911,2896,2915
  93. memalign(64)+8 2545,2554,2550
  94. memalign(64)+16 2543,2572,2563
  95. memalign(64)+32 2546,2545,2571
  96. memalign(64)+64 2570,2533,2558
  97. BTW, malloc seems to do 8-byte alignment by default here.
  98. */
  99. #else
  100. ptr = malloc(size);
  101. #endif
  102. return ptr;
  103. }
  104. void *av_realloc(void *ptr, FF_INTERNAL_MEM_TYPE size)
  105. {
  106. #if CONFIG_MEMALIGN_HACK
  107. int diff;
  108. #endif
  109. /* let's disallow possible ambiguous cases */
  110. if(size > (INT_MAX-16) )
  111. return NULL;
  112. #if CONFIG_MEMALIGN_HACK
  113. //FIXME this isn't aligned correctly, though it probably isn't needed
  114. if(!ptr) return av_malloc(size);
  115. diff= ((char*)ptr)[-1];
  116. return (char*)realloc((char*)ptr - diff, size + diff) + diff;
  117. #else
  118. return realloc(ptr, size);
  119. #endif
  120. }
  121. void av_free(void *ptr)
  122. {
  123. #if CONFIG_MEMALIGN_HACK
  124. if (ptr)
  125. free((char*)ptr - ((char*)ptr)[-1]);
  126. #else
  127. free(ptr);
  128. #endif
  129. }
  130. void av_freep(void *arg)
  131. {
  132. void **ptr= (void**)arg;
  133. av_free(*ptr);
  134. *ptr = NULL;
  135. }
  136. void *av_mallocz(FF_INTERNAL_MEM_TYPE size)
  137. {
  138. void *ptr = av_malloc(size);
  139. if (ptr)
  140. memset(ptr, 0, size);
  141. return ptr;
  142. }
  143. char *av_strdup(const char *s)
  144. {
  145. char *ptr= NULL;
  146. if(s){
  147. int len = strlen(s) + 1;
  148. ptr = av_malloc(len);
  149. if (ptr)
  150. memcpy(ptr, s, len);
  151. }
  152. return ptr;
  153. }