Is it possible to read CPU cache hit/miss rate in Android?

link|improve this question

72% accept rate
3  
For some extra +1's, answers could explain what this is and why it is important. Maybe I live in a cave, but I haven't heard about this until now. – user432209 Mar 11 '11 at 17:56
2  
@user432209 en.wikipedia.org/wiki/CPU_cache This explains the problem far better than I personally can. Section 4 deals with cache misses. – scriptocalypse Mar 11 '11 at 18:07
1  
If you're looking for an in-depth read on CPU caches, take a look at chapter 3 of this: akkadia.org/drepper/cpumemory.pdf ... if you just want something short (that focuses specifically on ARM, as a bonus) see: arunkumarv.blogspot.com/2010/08/arm-memory-organisation.html – jrtayloriv Mar 14 '11 at 5:16
I found the solution here: infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.faqs/… infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.faqs/… still don't know how to read the performance counters of L2 cache. – Mohammad Moghimi Mar 31 '11 at 5:07
feedback

1 Answer

up vote 3 down vote accepted

According to the developer docs, you can use android.os.Debug.startNativeTracing() to get information about cache misses, if you are running the kernel in qemu.

This page is not very organized, but there is an excellent section on using startNativeTracing() that you should take a look at if you're having trouble figuring it out: http://www.seangri-la.com/cgi-bin/moin.cgi/Android_Development

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.