The question is mainly regarding the profiling tools
available for ARM
processors - Specifically ARM v7
; I'm using a Linux
I played around with Intel and AMD processors and I know that they have various profiling tools like Perf
, perfmon
and valgrind
which will allow me to monitor various counters like retired instructions, cache misses, floating point unit, integral units, etc.
However, I don't know if ARM
also supports these kind of profiling tools. Do you know any tools that can be used on ARM processors.
I searched through the ARM reference manual but I failed to find the performance counters list. For example, in Intel
processors you can find them in the ref. manual
and OProfile
webpage. Is there a manual or a webpage which lists the list of performance monitoring counters
for ARM
.
Thanks.