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.

155 lines
3.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 mem.c
  23. * default memory allocator for libavutil.
  24. */
  25. #include "common.h"
  26. /* here we can use OS dependent allocation functions */
  27. #undef malloc
  28. #undef free
  29. #undef realloc
  30. #include <stdlib.h>
  31. #ifdef HAVE_MALLOC_H
  32. #include <malloc.h>
  33. #endif
  34. /* you can redefine av_malloc and av_free in your project to use your
  35. memory allocator. You do not need to suppress this file because the
  36. linker will do it automatically */
  37. void *av_malloc(unsigned int size)
  38. {
  39. void *ptr = NULL;
  40. #ifdef CONFIG_MEMALIGN_HACK
  41. long diff;
  42. #endif
  43. /* let's disallow possible ambiguous cases */
  44. if(size > (INT_MAX-16) )
  45. return NULL;
  46. #ifdef CONFIG_MEMALIGN_HACK
  47. ptr = malloc(size+16);
  48. if(!ptr)
  49. return ptr;
  50. diff= ((-(long)ptr - 1)&15) + 1;
  51. ptr = (char*)ptr + diff;
  52. ((char*)ptr)[-1]= diff;
  53. #elif defined (HAVE_POSIX_MEMALIGN)
  54. posix_memalign(&ptr,16,size);
  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 did not 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. void *av_realloc(void *ptr, unsigned int size)
  88. {
  89. #ifdef CONFIG_MEMALIGN_HACK
  90. int diff;
  91. #endif
  92. /* let's disallow possible ambiguous cases */
  93. if(size > (INT_MAX-16) )
  94. return NULL;
  95. #ifdef CONFIG_MEMALIGN_HACK
  96. //FIXME this isn't aligned correctly, though it probably isn't needed
  97. if(!ptr) return av_malloc(size);
  98. diff= ((char*)ptr)[-1];
  99. return (char*)realloc((char*)ptr - diff, size + diff) + diff;
  100. #else
  101. return realloc(ptr, size);
  102. #endif
  103. }
  104. void av_free(void *ptr)
  105. {
  106. /* XXX: this test should not be needed on most libcs */
  107. if (ptr)
  108. #ifdef CONFIG_MEMALIGN_HACK
  109. free((char*)ptr - ((char*)ptr)[-1]);
  110. #else
  111. free(ptr);
  112. #endif
  113. }
  114. void av_freep(void *arg)
  115. {
  116. void **ptr= (void**)arg;
  117. av_free(*ptr);
  118. *ptr = NULL;
  119. }
  120. void *av_mallocz(unsigned int size)
  121. {
  122. void *ptr = av_malloc(size);
  123. if (ptr)
  124. memset(ptr, 0, size);
  125. return ptr;
  126. }
  127. char *av_strdup(const char *s)
  128. {
  129. char *ptr= NULL;
  130. if(s){
  131. int len = strlen(s) + 1;
  132. ptr = av_malloc(len);
  133. if (ptr)
  134. memcpy(ptr, s, len);
  135. }
  136. return ptr;
  137. }