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.

170 lines
4.4KB

  1. /*
  2. * default memory allocator for libavutil
  3. * Copyright (c) 2002 Fabrice Bellard.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. */
  19. /**
  20. * @file mem.c
  21. * default memory allocator for libavutil.
  22. */
  23. #include "common.h"
  24. /* here we can use OS dependant allocation functions */
  25. #undef malloc
  26. #undef free
  27. #undef realloc
  28. #ifdef HAVE_MALLOC_H
  29. #include <malloc.h>
  30. #endif
  31. /* you can redefine av_malloc and av_free in your project to use your
  32. memory allocator. You do not need to suppress this file because the
  33. linker will do it automatically */
  34. /**
  35. * Memory allocation of size byte with alignment suitable for all
  36. * memory accesses (including vectors if available on the
  37. * CPU). av_malloc(0) must return a non NULL pointer.
  38. */
  39. void *av_malloc(unsigned int size)
  40. {
  41. void *ptr;
  42. #ifdef MEMALIGN_HACK
  43. long diff;
  44. #endif
  45. /* let's disallow possible ambiguous cases */
  46. if(size > (INT_MAX-16) )
  47. return NULL;
  48. #ifdef MEMALIGN_HACK
  49. ptr = malloc(size+16);
  50. if(!ptr)
  51. return ptr;
  52. diff= ((-(long)ptr - 1)&15) + 1;
  53. ptr += diff;
  54. ((char*)ptr)[-1]= diff;
  55. #elif defined (HAVE_MEMALIGN)
  56. ptr = memalign(16,size);
  57. /* Why 64?
  58. Indeed, we should align it:
  59. on 4 for 386
  60. on 16 for 486
  61. on 32 for 586, PPro - k6-III
  62. on 64 for K7 (maybe for P3 too).
  63. Because L1 and L2 caches are aligned on those values.
  64. But I don't want to code such logic here!
  65. */
  66. /* Why 16?
  67. because some cpus need alignment, for example SSE2 on P4, & most RISC cpus
  68. it will just trigger an exception and the unaligned load will be done in the
  69. exception handler or it will just segfault (SSE2 on P4)
  70. Why not larger? because i didnt see a difference in benchmarks ...
  71. */
  72. /* benchmarks with p3
  73. memalign(64)+1 3071,3051,3032
  74. memalign(64)+2 3051,3032,3041
  75. memalign(64)+4 2911,2896,2915
  76. memalign(64)+8 2545,2554,2550
  77. memalign(64)+16 2543,2572,2563
  78. memalign(64)+32 2546,2545,2571
  79. memalign(64)+64 2570,2533,2558
  80. btw, malloc seems to do 8 byte alignment by default here
  81. */
  82. #else
  83. ptr = malloc(size);
  84. #endif
  85. return ptr;
  86. }
  87. /**
  88. * av_realloc semantics (same as glibc): if ptr is NULL and size > 0,
  89. * identical to malloc(size). If size is zero, it is identical to
  90. * free(ptr) and NULL is returned.
  91. */
  92. void *av_realloc(void *ptr, unsigned int size)
  93. {
  94. #ifdef MEMALIGN_HACK
  95. int diff;
  96. #endif
  97. /* let's disallow possible ambiguous cases */
  98. if(size > (INT_MAX-16) )
  99. return NULL;
  100. #ifdef MEMALIGN_HACK
  101. //FIXME this isn't aligned correctly, though it probably isn't needed
  102. if(!ptr) return av_malloc(size);
  103. diff= ((char*)ptr)[-1];
  104. return realloc(ptr - diff, size + diff) + diff;
  105. #else
  106. return realloc(ptr, size);
  107. #endif
  108. }
  109. /**
  110. * Free memory which has been allocated with av_malloc(z)() or av_realloc().
  111. * NOTE: ptr = NULL is explicetly allowed
  112. * Note2: it is recommended that you use av_freep() instead
  113. */
  114. void av_free(void *ptr)
  115. {
  116. /* XXX: this test should not be needed on most libcs */
  117. if (ptr)
  118. #ifdef MEMALIGN_HACK
  119. free(ptr - ((char*)ptr)[-1]);
  120. #else
  121. free(ptr);
  122. #endif
  123. }
  124. /**
  125. * Frees memory and sets the pointer to NULL.
  126. * @param arg pointer to the pointer which should be freed
  127. */
  128. void av_freep(void *arg)
  129. {
  130. void **ptr= (void**)arg;
  131. av_free(*ptr);
  132. *ptr = NULL;
  133. }
  134. void *av_mallocz(unsigned int size)
  135. {
  136. void *ptr;
  137. ptr = av_malloc(size);
  138. if (ptr)
  139. memset(ptr, 0, size);
  140. return ptr;
  141. }
  142. char *av_strdup(const char *s)
  143. {
  144. char *ptr;
  145. int len;
  146. len = strlen(s) + 1;
  147. ptr = av_malloc(len);
  148. if (ptr)
  149. memcpy(ptr, s, len);
  150. return ptr;
  151. }