调试 Dalvik 虚拟机

发布于 2024-12-20 20:58:09 字数 282 浏览 1 评论 0原文

我正在调整和编译Android 2.1的源代码。

我希望调试对 Dalvik VM 所做的更改,特别是对文件的更改 dalvik/vm/interp/Stack.c。

我需要做什么才能启用调试?一旦启用,我该如何操作?

事实上,仅仅启用 dalvik 系统日志就足以满足我的需求。在虚拟机的(本机)代码中,使用了宏 LOGE、LOGD 等...但是当我使用它们时,它会导致分段错误。当在代码中使用时(不是由我使用),它仅在定义了 NDEBUG 时使用(#ifdef),因此我认为问题再次在于未启用调试。

I am tweaking and compiling the source code of Android 2.1.

I wish to debug changes I have made to the Dalvik VM, specifically to the file
dalvik/vm/interp/Stack.c.

What do I need to do to enable debugging? And once it is enabled, how do I do it?

In fact, just enabling the dalvik system logs would suffice for my needs. Throughout the (native) code of the virtual machine there is use of the macros LOGE, LOGD, etc... But when I use it them it causes a segmentation fault. When used in the code (not by me), it is only used if NDEBUG is defined (#ifdef), so I assume the problem is again that debugging is not enabled.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

云仙小弟 2024-12-27 20:58:09

调试 dalvik 虚拟机与 Android 上任何类型的本机调试没有什么不同。您使用设备上的 gdbserver 附加到要调试的进程,使用 adbforward 将端口从设备转发到本地计算机,然后使用本地计算机上的 gdb 连接到转发的端口。

有关更多信息,请参阅 AOSP 中的development/docs/porting/debugging_native.jd。但请注意,其中的某些信息可能已过时。

Debugging the dalvik vm is no different than any sort of native debugging on Android. You use gdbserver on the device to attach to the process you want to debug, forward the port from the device to your local machine with adb forward, and then use gdb on your local machine to connect to the forwarded port.

For more information, see development/docs/porting/debugging_native.jd in AOSP. Note however, that some of the information there might be out of date.

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