mem.c 4.0 KB

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