Android 有面向指令的分析工具吗?

发布于 2024-10-01 07:22:11 字数 155 浏览 3 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

也只是曾经 2024-10-08 07:22:11

我建议您可以在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文