码迷,mamicode.com
首页 > 编程语言 > 详细

C语言计算代码执行所耗CPU时钟周期

时间:2016-06-05 22:51:46      阅读:453      评论:0      收藏:0      [点我收藏+]

标签:

#include "windows.h"

LARGE_INTEGER _start = { 0 }, _end = { 0 }; __asm{ rdtsc mov dword ptr [_start.LowPart], eax mov dword ptr[_start.HighPart], edx } //your code here __asm{ rdtsc mov dword ptr [_end.LowPart], eax mov dword ptr[_end.HighPart], edx } long interval = static_cast<long>(_end.QuadPart - _start.QuadPart);

 

C语言计算代码执行所耗CPU时钟周期

标签:

原文地址:http://www.cnblogs.com/felixr/p/5561974.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!