Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
rdtsc 在汇编文件中使用时会停止吗?有标记加注吗?我该如何重置它?我已将第一个时钟标记读入 rdx 寄存器。但是当我等待几秒钟后再次尝试打印时钟周期时,它仍然是相同的数字。
正如 Hans 所暗示的,rdtsc将当前周期计数器作为 32 位寄存器对中的 64 位值返回,edx:eax其中最重要的部分位于edx.
rdtsc
edx:eax
edx
据我所知,除了重新启动计算机之外,没有其他方法可以重置此计数器。