61 lines
No EOL
685 B
C++
61 lines
No EOL
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
|