Measuring CPU clocks consumed by a process

hasanatkazmi picture hasanatkazmi · Apr 6, 2010 · Viewed 7.7k times · Source

I have written a program in C. Its a program created as result of a research. I want to compute exact CPU cycles which program consumes. Exact number of cycles. Any idea how can I find that?

Answer

caf picture caf · Apr 7, 2010

The valgrind tool cachegrind (valgrind --tool=cachegrind) will give you a detailed output including the number of instructions executed, cache misses and branch prediction misses. These can be accounted down to individual lines of assembler, so in principle (with knowledge of your exact architecture) you could derive precise cycle counts from this output.

Know that it will change from execution to execution, due to cache effects.

The documentation for the cachegrind tool is here.