mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-10 15:22:14 +00:00
61 lines
685 B
C
61 lines
685 B
C
|
|
||
|
class timing_c
|
||
|
{
|
||
|
private:
|
||
|
__int64 start;
|
||
|
__int64 end;
|
||
|
|
||
|
int reset;
|
||
|
public:
|
||
|
timing_c(void)
|
||
|
{
|
||
|
}
|
||
|
void Start()
|
||
|
{
|
||
|
const __int64 *s = &start;
|
||
|
__asm
|
||
|
{
|
||
|
push eax
|
||
|
push ebx
|
||
|
push edx
|
||
|
|
||
|
rdtsc
|
||
|
mov ebx, s
|
||
|
mov [ebx], eax
|
||
|
mov [ebx + 4], edx
|
||
|
|
||
|
pop edx
|
||
|
pop ebx
|
||
|
pop eax
|
||
|
}
|
||
|
}
|
||
|
int End()
|
||
|
{
|
||
|
const __int64 *e = &end;
|
||
|
__int64 time;
|
||
|
#ifndef __linux__
|
||
|
__asm
|
||
|
{
|
||
|
push eax
|
||
|
push ebx
|
||
|
push edx
|
||
|
|
||
|
rdtsc
|
||
|
mov ebx, e
|
||
|
mov [ebx], eax
|
||
|
mov [ebx + 4], edx
|
||
|
|
||
|
pop edx
|
||
|
pop ebx
|
||
|
pop eax
|
||
|
}
|
||
|
#endif
|
||
|
time = end - start;
|
||
|
if (time < 0)
|
||
|
{
|
||
|
time = 0;
|
||
|
}
|
||
|
return((int)time);
|
||
|
}
|
||
|
};
|
||
|
// end
|