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

其他游戏

开发平台:

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 HK_FREE_LIST_MEMORY_SERVER_H
  9. #define HK_FREE_LIST_MEMORY_SERVER_H
  10. // Defines the interface that the hkFreeList uses to access underlying memory
  11. // The hkLargeBlockAllocator implements this interface
  12. class hkFreeListMemoryServer
  13. {
  14.     public:
  15.         virtual ~hkFreeListMemoryServer() {}
  16.             /// Allocate some memory
  17.         virtual void* alloc(hk_size_t size) = 0;
  18.             /// Free some memory
  19.         virtual void free(void* data)=0;
  20.             /// Returns true if this appears to be a valid allocation.
  21.             /// Does some fairly comprehesive tests, so will be slow in general.
  22.         virtual hkBool isValidAlloc(void* data) = 0;
  23.             /// Returns the total amount of memory available in an allocated block
  24.             /// This extra memory can be used if needs be. The value returned will always be greater
  25.             /// than or equal to the size passed in. The size is the size that the client believes the block
  26.             /// to be. It must be either the size requested when the block was allocated, or a size returned
  27.             /// by this method, otherwise the result is undefined.
  28.             ///
  29.             /// NOTE an implementation that does not implement this functionality - can always just return the
  30.             /// size passed in.
  31.         virtual hk_size_t getAllocSize(void* p,hk_size_t size) = 0;
  32.             /// Returns the total amount of bytes taken up by an allocation
  33.             /// The size passed in is the size of the block - it can be either the size passed in the original
  34.             /// allocation or the size returned from getAllocSize.
  35.         virtual hk_size_t getAllocTotalSize(void* p,hk_size_t size) = 0;
  36.             /// Allocate memory, if can't find memory internally will fallback to the servers critical memory system
  37.             /// Memory must be freed in the opposite order to allocation. Allocations should only be used for the
  38.             /// shortest possible time, as the underlying memory may have severe restrictions
  39.         virtual void* criticalAlloc(hk_size_t size) = 0;
  40.             /// To free a critical memory allocation
  41.         virtual void criticalFree(void* ptr,hk_size_t size) = 0;
  42. };
  43. /// Implementation of the hkFreeListAllocator interface that just uses the hkThreadMemory for its
  44. /// implementation. Allows you to use freelists as a fast memory allocation system separately from the
  45. /// the hkFreeListMemory system.
  46. ///
  47. /// Performance improvements come from not having to lookup the appropriate freelist from the size of
  48. /// an allocation as, well as not having to have the freelist allocate from inside of a critical section
  49. /// as is the case inside of the hkFreeListMemory implementation
  50. class hkDefaultFreeListMemoryServer: public hkReferencedObject, public hkSingleton<hkDefaultFreeListMemoryServer>,public hkFreeListMemoryServer
  51. {
  52.     public:
  53.         HK_DECLARE_SYSTEM_ALLOCATOR();
  54.         hkDefaultFreeListMemoryServer(HK_MEMORY_CLASS cls = HK_MEMORY_CLASS_ROOT)
  55.         : m_memoryClass(cls)
  56.         {
  57.         }
  58.         /// implementing hkFreeListMemoryServer
  59.         virtual void* alloc(hk_size_t size);
  60.         virtual void free(void* data);
  61.         virtual hkBool isValidAlloc(void* data) { return true; }
  62.         virtual hk_size_t getAllocSize(void* p,hk_size_t size) { return size; }
  63.         virtual hk_size_t getAllocTotalSize(void* p, hk_size_t size) { return size; }
  64.         virtual void* criticalAlloc(hk_size_t size) { return alloc(size); }
  65.         virtual void criticalFree(void* ptr,hk_size_t size) { free(ptr); }
  66.         HK_MEMORY_CLASS m_memoryClass;
  67. };
  68. #endif // HK_FREE_LIST_MEMORY_SERVER_H
  69. /*
  70. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  71. * Confidential Information of Havok.  (C) Copyright 1999-2009
  72. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  73. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  74. * rights, and intellectual property rights in the Havok software remain in
  75. * Havok and/or its suppliers.
  76. * Use of this software for evaluation purposes is subject to and indicates
  77. * acceptance of the End User licence Agreement for this product. A copy of
  78. * the license is included with this software and is also available at www.havok.com/tryhavok.
  79. */