GSPerfMon.cpp
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2005 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. #include "StdAfx.h"
  22. #include "GSPerfMon.h"
  23. #if _MSC_VER >= 1400
  24. extern "C" unsigned __int64 __rdtsc();
  25. #else
  26. __declspec(naked) unsigned __int64 __rdtsc() {__asm rdtsc __asm ret}
  27. #endif
  28. GSPerfMon::GSPerfMon()
  29. : m_total(0), m_begin(0)
  30. , m_frame(0), m_lastframe(0)
  31. {
  32. }
  33. void GSPerfMon::IncCounter(counter_t c, double val)
  34. {
  35. if(c == c_frame)
  36. {
  37. clock_t now = clock();
  38. if(m_lastframe != 0) 
  39. m_counters[c].AddTail(now - m_lastframe);
  40. m_lastframe = now;
  41. m_frame++;
  42. }
  43. else
  44. {
  45. m_counters[c].AddTail(val);
  46. }
  47. }
  48. void GSPerfMon::StartTimer()
  49. {
  50. m_start = __rdtsc();
  51. if(m_begin == 0) m_begin = m_start;
  52. }
  53. void GSPerfMon::StopTimer()
  54. {
  55. if(m_start > 0)
  56. {
  57. m_total += __rdtsc() - m_start;
  58. m_start = 0;
  59. }
  60. }
  61. CString GSPerfMon::ToString(double expected_fps)
  62. {
  63. if(m_counters[c_frame].IsEmpty())
  64. return _T("");
  65. double stats[c_last];
  66. for(int i = 0; i < countof(m_counters); i++)
  67. {
  68. double sum = 0;
  69. POSITION pos = m_counters[i].GetHeadPosition();
  70. while(pos) sum += m_counters[i].GetNext(pos);
  71. stats[i] = sum / m_counters[c_frame].GetCount();
  72. }
  73. UINT64 start = m_start;
  74. if(start > 0) StopTimer();
  75. double fps = 1000.0 / stats[c_frame];
  76. double cpu = 100.0 * m_total / (__rdtsc() - m_begin);
  77. CString str;
  78. str.Format(_T("frame: %I64d | cpu: %d%% | %.2f fps (%d%%) | %d ppf | %.2f kbpf | %.2f kbpf | %.2f kbpf"), 
  79. m_frame,
  80. (int)(cpu),
  81. (float)(fps),
  82. (int)(100.0 * fps / expected_fps),
  83. (int)(stats[c_prim]),
  84. (float)(stats[c_swizzle] / 1024),
  85. (float)(stats[c_unswizzle] / 1024),
  86. (float)(stats[c_texture] / 1024)); 
  87. for(int i = 0; i < countof(m_counters); i++)
  88. m_counters[i].RemoveAll();
  89. m_total = m_begin = 0;
  90. if(start > 0) StartTimer();
  91. return str;
  92. }