开发者

Hardware Performance counter on Intel Core Duo

I have read that there are AMD processors out there that allow you to measure the number of cache hits and misses. I am wondering if also such a feature is available on Intel Core Duo machines or if they d开发者_运维百科o not support this yet.


Yes, there are a lot of hardware performance counters since ancient Pentium Pro.

Oprofile and perf in Linux, Vtune in Linux/Windows, Shark in MacOSX can use them.

All counters are listed in intel architecture documentation (Volume 3B, chapter 30; list in Appendix A): http://www.intel.com/products/processor/manuals/

Even Atom have some performance registers.

One of good list for different CPUs is here http://oprofile.sourceforge.net/docs/


If you're working on Linux, there's an interesting library called LiMiT being developed at Columbia University that can read the performance counters quickly and also virtualizes them to avoid problems with processes being started and stopped, moved between processors, etc. I'm taking a class with the developer at the moment, though I don't have anything to do with the project myself.


This document certainly suggests that Intel Core Duo processors can provide the information you seek. I guess that googling around the Intel web-site would be useful too.


I personally use the Time Stamp Counter via an assembly wrapper that executes the instruction rdtsc. I then get an unsigned 64 bit integer containing the number of internal clock cycles that have passed since the processor was powered up. The difference between two read-outs is the number of code cycles required to execute the piece of code inbetween. Access to the instructions for cache hit readouts may be implemented in the same manner.

I find it difficult to understand what conclusions to draw from reading the cache counters without having a time frame to relate to. This time frame should not be too long or a task switch or interrupt might affect the value.

According to Microsoft the rdtsc instruyction may not be accurate if down-throttling functionality is enabled on the processor (to lower energy consumption) which should be kept in mind (or switched off!).

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜