|
|
|
|
|
by wooosh
1534 days ago
|
|
Counting (userspace) instructions is relatively easy regardless of language with perf stat, though it does require the kernel module. Generally speaking it should just work if perf is installed through the package manager for your distribution. edit: valgrind's callgrind utility can also produce exact instruction execution counts for a given block of code |
|
Perf stat is very very high overhead. The perf API is available and can be tuned a bit more nicely but it's mostly a horrible mess. It uses bitfields too which makes it somewhat hard to get to from other languages unless you trust the shifts and masks.