hkSpuMonitorCache.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 HK_SPU_MONITOR_CACHE__H
  9. #define HK_SPU_MONITOR_CACHE__H
  10. #include <Common/Base/Thread/CriticalSection/hkCriticalSection.h>
  11. #include <Common/Base/Monitor/hkMonitorStream.h>
  12. #include <Common/Base/Thread/JobQueue/hkJobQueue.h>
  13. /// This monitor cache represents a cache in main memory that a single spu can
  14. /// use to write timers into.  The PPU and SPU calls are not locked, it is up to the
  15. /// user of this class to make sure that SPU and PPU do not call this class concurrently.
  16. class hkSpuMonitorCache
  17. {
  18. public:
  19. HK_DECLARE_NONVIRTUAL_CLASS_ALLOCATOR(HK_MEMORY_CLASS_BASE_CLASS, hkSpuMonitorCache);
  20. //
  21. // PPU functions
  22. //
  23. /// Initialize the cache with a buffer size. PPU only.
  24. hkSpuMonitorCache( int monitorBufSize );
  25. /// Deallocates the buffer.
  26. ~hkSpuMonitorCache();
  27. /// Fix up the timer stream in place. Strings in the stream are replaced with
  28. /// strings taken from the spurs elfs loaded in main memory.
  29. void fixUpStringsPpu( void** spursElfsInMainMemory );
  30. /// Clear the ppu buffer
  31. void clearTimersPpu();
  32. const char* getTimerDataStartPpu() { return m_start; }
  33. const char* getTimerDataEndPpu() { return m_current; }
  34. protected:
  35. enum
  36. {
  37. MIN_SIZE_TO_DMA = 512
  38. };
  39. hkPadSpu<char*> m_current; // so it can be dma'd by itself. Assumed to be at start of struct
  40. hkPadSpu<char*> m_start;  // points to the start of the cache. Setup only.
  41. hkPadSpu<char*> m_end;  // points to the end of the whole cache. Do not exceed.
  42. hkBool m_stringsFixedUp;
  43. };
  44. #include <Common/Base/Monitor/Spu/hkSpuMonitorCache.inl>
  45. #endif // HK_SPU_MONITOR_CACHE__H
  46. /*
  47. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  48. * Confidential Information of Havok.  (C) Copyright 1999-2009
  49. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  50. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  51. * rights, and intellectual property rights in the Havok software remain in
  52. * Havok and/or its suppliers.
  53. * Use of this software for evaluation purposes is subject to and indicates
  54. * acceptance of the End User licence Agreement for this product. A copy of
  55. * the license is included with this software and is also available at www.havok.com/tryhavok.
  56. */