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.

79 lines
2.5KB

  1. /*
  2. * default memory allocator for libavcodec
  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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include "avcodec.h"
  20. #ifdef HAVE_MALLOC_H
  21. #include <malloc.h>
  22. #endif
  23. /* you can redefine av_malloc and av_free in your project to use your
  24. memory allocator. You do not need to suppress this file because the
  25. linker will do it automatically */
  26. /* memory alloc */
  27. void *av_malloc(unsigned int size)
  28. {
  29. void *ptr;
  30. #if defined (HAVE_MEMALIGN)
  31. ptr = memalign(16,size);
  32. /* Why 64?
  33. Indeed, we should align it:
  34. on 4 for 386
  35. on 16 for 486
  36. on 32 for 586, PPro - k6-III
  37. on 64 for K7 (maybe for P3 too).
  38. Because L1 and L2 caches are aligned on those values.
  39. But I don't want to code such logic here!
  40. */
  41. /* Why 16?
  42. because some cpus need alignment, for example SSE2 on P4, & most RISC cpus
  43. it will just trigger an exception and the unaligned load will be done in the
  44. exception handler or it will just segfault (SSE2 on P4)
  45. Why not larger? because i didnt see a difference in benchmarks ...
  46. */
  47. /* benchmarks with p3
  48. memalign(64)+1 3071,3051,3032
  49. memalign(64)+2 3051,3032,3041
  50. memalign(64)+4 2911,2896,2915
  51. memalign(64)+8 2545,2554,2550
  52. memalign(64)+16 2543,2572,2563
  53. memalign(64)+32 2546,2545,2571
  54. memalign(64)+64 2570,2533,2558
  55. btw, malloc seems to do 8 byte alignment by default here
  56. */
  57. #else
  58. ptr = malloc(size);
  59. #endif
  60. if (!ptr)
  61. return NULL;
  62. //fprintf(stderr, "%X %d\n", (int)ptr, size);
  63. /* NOTE: this memset should not be present */
  64. memset(ptr, 0, size);
  65. return ptr;
  66. }
  67. /* NOTE: ptr = NULL is explicetly allowed */
  68. void av_free(void *ptr)
  69. {
  70. /* XXX: this test should not be needed on most libcs */
  71. if (ptr)
  72. free(ptr);
  73. }