182 righe
4.4 KiB

  1. /*
  2. Bullet Continuous Collision Detection and Physics Library
  3. Copyright (c) 2003-2013 Erwin Coumans http://bulletphysics.org
  4. This software is provided 'as-is', without any express or implied warranty.
  5. In no event will the authors be held liable for any damages arising from the use of this software.
  6. Permission is granted to anyone to use this software for any purpose,
  7. including commercial applications, and to alter it and redistribute it freely,
  8. subject to the following restrictions:
  9. 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
  10. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
  11. 3. This notice may not be removed or altered from any source distribution.
  12. */
  13. #include "b3AlignedAllocator.h"
  14. int b3g_numAlignedAllocs = 0;
  15. int b3g_numAlignedFree = 0;
  16. int b3g_totalBytesAlignedAllocs = 0;//detect memory leaks
  17. static void *b3AllocDefault(size_t size)
  18. {
  19. return malloc(size);
  20. }
  21. static void b3FreeDefault(void *ptr)
  22. {
  23. free(ptr);
  24. }
  25. static b3AllocFunc* b3s_allocFunc = b3AllocDefault;
  26. static b3FreeFunc* b3s_freeFunc = b3FreeDefault;
  27. #if defined (B3_HAS_ALIGNED_ALLOCATOR)
  28. #include <malloc.h>
  29. static void *b3AlignedAllocDefault(size_t size, int alignment)
  30. {
  31. return _aligned_malloc(size, (size_t)alignment);
  32. }
  33. static void b3AlignedFreeDefault(void *ptr)
  34. {
  35. _aligned_free(ptr);
  36. }
  37. #elif defined(__CELLOS_LV2__)
  38. #include <stdlib.h>
  39. static inline void *b3AlignedAllocDefault(size_t size, int alignment)
  40. {
  41. return memalign(alignment, size);
  42. }
  43. static inline void b3AlignedFreeDefault(void *ptr)
  44. {
  45. free(ptr);
  46. }
  47. #else
  48. static inline void *b3AlignedAllocDefault(size_t size, int alignment)
  49. {
  50. void *ret;
  51. char *real;
  52. real = (char *)b3s_allocFunc(size + sizeof(void *) + (alignment-1));
  53. if (real) {
  54. ret = b3AlignPointer(real + sizeof(void *),alignment);
  55. *((void **)(ret)-1) = (void *)(real);
  56. } else {
  57. ret = (void *)(real);
  58. }
  59. return (ret);
  60. }
  61. static inline void b3AlignedFreeDefault(void *ptr)
  62. {
  63. void* real;
  64. if (ptr) {
  65. real = *((void **)(ptr)-1);
  66. b3s_freeFunc(real);
  67. }
  68. }
  69. #endif
  70. static b3AlignedAllocFunc* b3s_alignedAllocFunc = b3AlignedAllocDefault;
  71. static b3AlignedFreeFunc* b3s_alignedFreeFunc = b3AlignedFreeDefault;
  72. void b3AlignedAllocSetCustomAligned(b3AlignedAllocFunc *allocFunc, b3AlignedFreeFunc *freeFunc)
  73. {
  74. b3s_alignedAllocFunc = allocFunc ? allocFunc : b3AlignedAllocDefault;
  75. b3s_alignedFreeFunc = freeFunc ? freeFunc : b3AlignedFreeDefault;
  76. }
  77. void b3AlignedAllocSetCustom(b3AllocFunc *allocFunc, b3FreeFunc *freeFunc)
  78. {
  79. b3s_allocFunc = allocFunc ? allocFunc : b3AllocDefault;
  80. b3s_freeFunc = freeFunc ? freeFunc : b3FreeDefault;
  81. }
  82. #ifdef B3_DEBUG_MEMORY_ALLOCATIONS
  83. //this generic allocator provides the total allocated number of bytes
  84. #include <stdio.h>
  85. void* b3AlignedAllocInternal (size_t size, int alignment,int line,char* filename)
  86. {
  87. void *ret;
  88. char *real;
  89. b3g_totalBytesAlignedAllocs += size;
  90. b3g_numAlignedAllocs++;
  91. real = (char *)b3s_allocFunc(size + 2*sizeof(void *) + (alignment-1));
  92. if (real) {
  93. ret = (void*) b3AlignPointer(real + 2*sizeof(void *), alignment);
  94. *((void **)(ret)-1) = (void *)(real);
  95. *((int*)(ret)-2) = size;
  96. } else {
  97. ret = (void *)(real);//??
  98. }
  99. b3Printf("allocation#%d at address %x, from %s,line %d, size %d\n",b3g_numAlignedAllocs,real, filename,line,size);
  100. int* ptr = (int*)ret;
  101. *ptr = 12;
  102. return (ret);
  103. }
  104. void b3AlignedFreeInternal (void* ptr,int line,char* filename)
  105. {
  106. void* real;
  107. b3g_numAlignedFree++;
  108. if (ptr) {
  109. real = *((void **)(ptr)-1);
  110. int size = *((int*)(ptr)-2);
  111. b3g_totalBytesAlignedAllocs -= size;
  112. b3Printf("free #%d at address %x, from %s,line %d, size %d\n",b3g_numAlignedFree,real, filename,line,size);
  113. b3s_freeFunc(real);
  114. } else
  115. {
  116. b3Printf("NULL ptr\n");
  117. }
  118. }
  119. #else //B3_DEBUG_MEMORY_ALLOCATIONS
  120. void* b3AlignedAllocInternal (size_t size, int alignment)
  121. {
  122. b3g_numAlignedAllocs++;
  123. void* ptr;
  124. ptr = b3s_alignedAllocFunc(size, alignment);
  125. // b3Printf("b3AlignedAllocInternal %d, %x\n",size,ptr);
  126. return ptr;
  127. }
  128. void b3AlignedFreeInternal (void* ptr)
  129. {
  130. if (!ptr)
  131. {
  132. return;
  133. }
  134. b3g_numAlignedFree++;
  135. // b3Printf("b3AlignedFreeInternal %x\n",ptr);
  136. b3s_alignedFreeFunc(ptr);
  137. }
  138. #endif //B3_DEBUG_MEMORY_ALLOCATIONS