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

其他游戏

开发平台:

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. #if defined(HK_PLATFORM_UNIX)
  9. #include <Common/Base/hkBase.h>
  10. # include <Common/Base/Fwd/hkcmalloc.h>
  11. # include <Common/Base/Fwd/hkcstdio.h>
  12. # include <Common/Base/Fwd/hkcstring.h>
  13. # include <execinfo.h>
  14. # define backtrace_symbols_free(syms) free(syms)
  15. #elif defined(HK_PLATFORM_PS2) || defined( HK_PLATFORM_PSP )
  16. # include <Common/Base/Memory/StackTracer/Impl/hkBacktrace.cxx>
  17. #else
  18. # error "Dont know where to find 'backtrace'"
  19. #endif
  20. // 
  21. // Be careful not to call any havok functions which may
  22. // result in a memory allocation as these methods are
  23. // called from the debug memory destructor
  24. //
  25. hkStackTracer::hkStackTracer()
  26. {
  27. }
  28. hkStackTracer::~hkStackTracer()
  29. {
  30. }
  31. static const int IGNORE_FRAMES = 2;
  32. #if 0 // Slow backtrace from gdb
  33. extern char* program_invocation_name;
  34. // This is slow compared to simply calling backtrace_symbols, but gives it
  35. // gives the file:line information.
  36. void hkStackTracer::dumpStackTrace( const hkUlong* trace, int numtrace, printFunc pfunc, void* context )
  37. {
  38.     char cmd[1024];
  39.     int cur = snprintf( cmd, sizeof(cmd), "addr2line -C -f -e %s", program_invocation_name);
  40.     for( int i = IGNORE_FRAMES; i < numtrace; ++i )
  41.     {
  42.         cur += snprintf( cmd+cur, sizeof(cmd)-cur, " %p", (void*)trace[i] );
  43.         if( cur > (int)sizeof(cmd) ) return;
  44.     }
  45.     FILE* fin = popen(cmd, "r");
  46.     while( feof(fin) == 0 )
  47.     {
  48.         char func[1024];
  49.         char file[1024];
  50.         if( fgets(func, sizeof(func), fin) )
  51.         {
  52.             if( fgets(file, sizeof(file), fin) )
  53.             {
  54.                 int l = strlen(file);
  55.                 file[ l > 0 ? l-1 : 0 ] = 0;
  56.                 pfunc(file, context);
  57.                 pfunc(":", context);
  58.                 pfunc(func, context);
  59.             }
  60.         }
  61.     }
  62.     pclose(fin);
  63. }
  64. #else
  65. void hkStackTracer::dumpStackTrace( const hkUlong* trace, int numtrace, printFunc pfunc, void* context )
  66. {
  67.     char** strings = backtrace_symbols( (void* const*)trace, numtrace);
  68.     if(strings)
  69.     {
  70.         for( int i = IGNORE_FRAMES; i < numtrace; ++i )
  71.         {
  72.             const char* loc = hkString::strStr(strings[i], "(");
  73.             pfunc(loc ? loc : strings[i], context);
  74.             pfunc("n", context);
  75.         }
  76.         backtrace_symbols_free(strings);
  77.     }
  78.     else
  79.     {
  80.         char buf[100];
  81.         for( int i = IGNORE_FRAMES; i < numtrace; ++i )
  82.         {
  83.             hkString::snprintf(buf, 100, "%.8x (no symbols)n", trace[i]);
  84.             pfunc(buf, context);
  85.         }
  86.     }
  87. }
  88. #endif
  89. int hkStackTracer::getStackTrace( hkUlong* trace, int maxtrace )
  90. {
  91. int depth = backtrace( (void**)trace, maxtrace);
  92. #ifdef HK_PLATFORM_PSP
  93. extern char _etext[];
  94. for(int i = 0; i < depth; i++)
  95. {
  96. trace[i] = ((char*)trace[i] - _etext);
  97. }
  98. #endif
  99. return depth;  
  100. }
  101. /*
  102. * Havok SDK - NO SOURCE PC DOWNLOAD, BUILD(#20090216)
  103. * Confidential Information of Havok.  (C) Copyright 1999-2009
  104. * Telekinesys Research Limited t/a Havok. All Rights Reserved. The Havok
  105. * Logo, and the Havok buzzsaw logo are trademarks of Havok.  Title, ownership
  106. * rights, and intellectual property rights in the Havok software remain in
  107. * Havok and/or its suppliers.
  108. * Use of this software for evaluation purposes is subject to and indicates
  109. * acceptance of the End User licence Agreement for this product. A copy of
  110. * the license is included with this software and is also available at www.havok.com/tryhavok.
  111. */