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

Excuting time of the instruction "rdtsc" on X86

dhbellwyc
初学者
1,577 次查看

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 项奖励
4 回复数
Steven_T_Intel
1,577 次查看
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 项奖励
dhbellwyc
初学者
1,577 次查看

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

0 项奖励
TimP
名誉分销商 III
1,577 次查看
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 项奖励
dhbellwyc
初学者
1,577 次查看
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 项奖励
回复