I\'d like to statistically profile my C code at the instruction level. I need to know how many additions, multiplications, divisions, etc I\'m performing.
This is no
The valgrind tool cachegrind can be used to get execution counts of each line in the compiled assembly (the Ir value in the first column).
Ir