Android 有面向指令的分析工具吗?
我需要在 Android 的 java 代码中分析几个函数。
我确实知道traceview。我实际上找到了使用这个工具来研究哪些函数。但它没有提供任何有助于调查特定职能内部的信息。
那么,有什么方法可以获取 Android 上 Java 代码的每条指令分析信息吗?
I need to profile several functions in my java code for Android.
I do know about traceview. And I actually found which functions to investigate using this tool. But it gives no information that can help in investigations inside specific functions.
So, is there any way I can get per-instruction profiling information for Java code on Android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您可以在 Java 代码中尝试使用“hprof”将分析数据转储到文件中,然后您可以分析该文件以获取更多详细信息。
使用的API:
dumpHprofData(String fileName)
如果您对更精细的分析感兴趣,那么您可以尝试在内核级别工作的“readprofile”。不过,您需要“busybox”才能使用它。但是,我想您需要将指令与 Java 语句进行映射。
I would suggest you can try 'hprof' within your Java code to dump the profiled data to a file and you can analyse that file for more details.
API to use:
dumpHprofData(String fileName)
If you are interested in more granular level profiling then you can try 'readprofile' which works at Kernel level. You would need 'busybox' to use it though. However, I guess you need to map the instructions with your Java statements.