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

其他游戏

开发平台:

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. #include <Common/Base/hkBase.h>
  9. #include <Common/Base/Memory/StackTracer/hkStackTracer.h>
  10. hkStackTracer::hkStackTracer()
  11. {
  12. }
  13. hkStackTracer::~hkStackTracer()
  14. {
  15. }
  16. void hkStackTracer::dumpStackTrace( const hkUlong* trace, int numtrace, printFunc pfunc, void* context )
  17. {
  18. for( int i = 0; i < numtrace; ++i )
  19. {
  20. char buf[256];
  21. hkString::snprintf(buf, sizeof(buf), "0x%xn", trace[i] );
  22. pfunc(buf, context);
  23. }
  24. }
  25. int hkStackTracer::getStackTrace( hkUlong* trace, int maxtrace )
  26. {
  27. struct frame
  28. {
  29. frame* next;
  30. hkUlong retaddr;
  31. };
  32. frame* stackPtr;
  33. frame* framePtr;
  34. __asm
  35. {
  36. mov stackPtr, esp
  37. mov framePtr, ebp
  38. }
  39. int count = 0;
  40. if( stackPtr && framePtr )
  41. {
  42. frame* current = framePtr;
  43. while( (count < maxtrace)
  44. && (stackPtr < current)
  45. && (current != 0)
  46. && (current->retaddr != 0) )
  47. {
  48. trace[count++] = current->retaddr;
  49. current = current->next;
  50. }
  51. }
  52. return count;
  53. }
  54. /*
  55. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  56. * Confidential Information of Havok.  (C) Copyright 1999-2009
  57. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  58. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  59. * rights, and intellectual property rights in the Havok software remain in
  60. * Havok and/or its suppliers.
  61. * Use of this software for evaluation purposes is subject to and indicates
  62. * acceptance of the End User licence Agreement for this product. A copy of
  63. * the license is included with this software and is also available at www.havok.com/tryhavok.
  64. */