hctFilterMemoryTracker.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:3k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* 
  2.  * 
  3.  * Confidential Information of Telekinesys Research Limited (t/a Havok). Not for disclosure or distribution without Havok's
  4.  * prior written consent. This software contains code, techniques and know-how which is confidential and proprietary to Havok.
  5.  * Level 2 and Level 3 source code contains trade secrets of Havok. Havok Software (C) Copyright 1999-2009 Telekinesys Research Limited t/a Havok. All Rights Reserved. Use of this software is subject to the terms of an end user license agreement.
  6.  * 
  7.  */
  8. #ifndef HAVOK_FILTER_MEMORY_TRACKER__H
  9. #define HAVOK_FILTER_MEMORY_TRACKER__H
  10. #include <Common/Base/Memory/Memory/Pool/hkPoolMemory.h>
  11. /// This memory implementation tracks all allocations and 
  12. /// will automatically deallocate them - it is used during filter processing
  13. /// to make memory management easier. When a modal filter is executed (through its hctFilterInterface::process() method),
  14. /// this memory manager is usually in operation (has previously been set by hctFilterDll::pushMemoryManager() ), so 
  15. /// calls to new and delete will be processed by this memory manager.
  16. class hctFilterMemoryTracker : public hkPoolMemory
  17. {
  18. public:
  19. /// Constructor
  20. hctFilterMemoryTracker();
  21. /// Destructor - deallocates all memory previously allocated
  22. ~hctFilterMemoryTracker();
  23. /// Deallocates memory previously allocated with this memory manager
  24. inline virtual void deallocate(void* p);
  25. /// Allocates memory with the given alignment
  26. inline virtual void* alignedAllocate(int alignment, int nbytes, HK_MEMORY_CLASS cl);
  27. /// Deallocates memory previously allocated with alignedAllocate()
  28. inline virtual void alignedDeallocate(void* p);
  29. /// Allocates an individual chunk of memory
  30. inline virtual void* allocateChunk(int nbytes, HK_MEMORY_CLASS cl);
  31. /// Deallocates a chunk of memory previously allocated with allocateChunk()
  32. inline virtual void deallocateChunk(void* p, int nbytes, HK_MEMORY_CLASS cl);
  33. /// Allocates n bytes of memory
  34. inline virtual void* allocate(int nbytes, HK_MEMORY_CLASS cl);
  35. /// Deallocates all memory allocated by this memory manager
  36. void deallocateAll();
  37. protected:
  38. // So that we can track hkAllocateChunk calls too
  39.     struct MemoryChunk
  40. {
  41. HK_MEMORY_CLASS m_memClass;
  42. unsigned int m_memSize;
  43. unsigned char* m_mem;
  44. MemoryChunk* m_next;
  45. };
  46. struct MemoryAlloc
  47. {
  48. unsigned char* m_mem;
  49. MemoryAlloc* m_next;
  50. };
  51. MemoryChunk* m_chunkAllocs;
  52. MemoryAlloc* m_allocs;
  53. MemoryAlloc* m_alignedAllocs;
  54. };
  55. #include <ContentTools/Common/Filters/Common/Memory/hctFilterMemoryTracker.inl>
  56. #endif // HAVOK_FILTER_MANAGER_INTERFACE__H
  57. /*
  58. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  59. * Confidential Information of Havok.  (C) Copyright 1999-2009
  60. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  61. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  62. * rights, and intellectual property rights in the Havok software remain in
  63. * Havok and/or its suppliers.
  64. * Use of this software for evaluation purposes is subject to and indicates
  65. * acceptance of the End User licence Agreement for this product. A copy of
  66. * the license is included with this software and is also available at www.havok.com/tryhavok.
  67. */