Intel® ISA Extensions
Use hardware-based isolation and memory encryption to provide more code protection in your solutions.
1093 Discussions

Excuting time of the instruction "rdtsc" on X86

dhbellwyc
Beginner
874 Views

I made an experiment on testing one "mov to/from registers" instructions, key souce code listsbelow:

int i;

_asm{

rdtsc;
movebx,eax;
rdtsc;
subeax,ebx;
movi,eax;

}

finally, prints the value of i, on my machine i is 80.

now add one more rdtsc between two rdtscs', run, i is 160. so the excuting time of rdtsc on my computer is 80.

Who can tell me how to test the time of instruction "mov ebx,eax", why does rdtsc spend such long time. and the precision of rdtsc. I couldn't find anyting of that in IA-32 manual.

Thank you very much.

0 Kudos
4 Replies
Steven_T_Intel
Employee
874 Views
Are you attempting rdtsc in virtualized mode? If so, what VMM are you using? Also, what is the physical CPU you are using (speed and type)?
0 Kudos
dhbellwyc
Beginner
874 Views

No VM, rdtsc running on the real machine. CPU is Pentieum 4 without HT and VT, 1.7 GHz.

0 Kudos
TimP
Honored Contributor III
874 Views
There's part of your answer. rdtsc is much slower and behaves much different on early P4 than on CPUs of the last 3 years. In any case, rdtsc can't give you precision of less than 1 FSB clock cycle.
0 Kudos
dhbellwyc
Beginner
874 Views
Thank you very much. But is there any instructions which is faster than rdtsc. even RDMSR. How long will it take, Is it same as rdtsc?
0 Kudos
Reply