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.

159 lines
4.0KB

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