39 #include "as_config.h" 52 #if !defined(_MSC_VER) && (defined(__GNUC__) || defined(AS_MARMALADE)) 57 typedef signed char int8_t;
58 typedef unsigned char uint8_t;
59 typedef signed short int16_t;
60 typedef unsigned short uint16_t;
61 typedef signed int int32_t;
62 typedef unsigned int uint32_t;
63 typedef signed long long int64_t;
64 typedef unsigned long long uint64_t;
65 typedef float float32_t;
66 typedef double float64_t;
70 #include <sys/types.h> 71 #define _mkdir(dirname) mkdir(dirname, S_IRWXU) 81 #endif // !defined(AS_DEBUG) 85 #if defined(_MSC_VER) && defined(AS_PROFILE) 90 #include "as_string.h" 92 #include "as_string_util.h" 108 if (!QueryPerformanceFrequency((LARGE_INTEGER *)&tps))
109 usePerformance =
false;
111 usePerformance =
true;
112 ticksPerSecond = double(tps);
115 timeOffset = GetTime();
123 if (usePerformance) {
125 QueryPerformanceCounter((LARGE_INTEGER *)&ticks);
127 return double(ticks) / ticksPerSecond - timeOffset;
130 return double(timeGetTime()) / 1000.0 - timeOffset;
133 double Begin(
const char *name) {
134 double time = GetTime();
142 timeOffset += GetTime() - time;
147 void End(
const char * ,
double beginTime) {
148 double time = GetTime();
150 double elapsed = time - beginTime;
154 if (map.MoveTo(&cursor, key)) {
155 cursor->value.time += elapsed;
156 cursor->value.count++;
157 if (cursor->value.max < elapsed)
158 cursor->value.max = elapsed;
159 if (cursor->value.min > elapsed)
160 cursor->value.min = elapsed;
162 TimeCount tc = {elapsed, 1, elapsed, elapsed};
167 int n = key.FindLast(
"|");
174 timeOffset += GetTime() - time;
178 void WriteSummary() {
182 #if _MSC_VER >= 1500 && !defined(AS_MARMALADE) 183 fopen_s(&fp,
"AS_DEBUG/profiling_summary.txt",
"wt");
185 fp = fopen(
"AS_DEBUG/profiling_summary.txt",
"wt");
190 fprintf(fp,
"%-60s %10s %15s %15s %15s %15s\n\n",
"Scope",
"Count",
"Tot time",
"Avg time",
"Max time",
"Min time");
193 map.MoveLast(&cursor);
197 int n = key.FindLast(
"|", &count);
199 key =
asCString(
" ", count) + key.SubString(n + 1);
202 fprintf(fp,
"%-60s %10d %15.6f %15.6f %15.6f %15.6f\n", key.AddressOf(), cursor->value.count, cursor->value.time, cursor->value.time / cursor->value.count, cursor->value.max, cursor->value.min);
204 map.MovePrev(&cursor, cursor);
211 double ticksPerSecond;
218 extern CProfiler g_profiler;
220 class CProfilerScope {
222 CProfilerScope(
const char *name) {
224 beginTime = g_profiler.Begin(name);
228 g_profiler.End(name, beginTime);
236 #define TimeIt(x) CProfilerScope profilescope(x) 240 #else // !(_MSC_VER && AS_PROFILE) 245 #endif // !(_MSC_VER && AS_PROFILE) 250 #endif // defined(AS_DEBUG_H)
Definition: as_string.h:41