您需要的是类似于 GDB 的漂亮打印机的东西,它们最常用于打印 STL / 链表等。可能有一些解决方案可以满足您的需求,因此请在谷歌上搜索一下漂亮的打印机。
下面的脚本只是一个示例,说明如何使用 python 扩展编写自定义命令,这将适用于 GDB 7.3 版及更高版本,但我在 7.5 版中对其进行了测试。
import gdb
class ppbin(gdb.Command):
def __init__(self):
super(ppbin, self).__init__("ppbin", gdb.COMMAND_USER)
def invoke(self, arg, tty):
print arg
arg_list = gdb.string_to_argv(arg)
if len(arg_list) < 2:
print "usage: <address>, <byte-count>"
return
res = gdb.execute("x/%sxt %s" %(arg_list[1], arg_list[0]), False, True)
res = res.split("\t")
ii = 0
for bv in res:
if ii % 4:
print "%s-%s-%s-%s-%s-%s-%s-%s" %(bv[0:4], bv[4:8],
bv[8:12], bv[12:16], \
bv[16:20], bv[20:24], \
bv[24:28],bv[28:32])
ii += 1
ppbin()
调用新的 ppbin 命令
(gdb) source pp-bin.py
(gdb) ppbin 0x601040 10
0x601040 10
0000-0000-1010-1010-0011-0011-0101-0101
0000-0000-0000-0000-0000-0000-0000-0000
0000-0000-0000-0000-0000-0000-0000-0000
0000-0000-0000-0000-0000-0000-0000-0000
0000-0000-0000-0000-0000-0000-0000-0000
0000-0000-0000-0000-0000-0000-0000-0000
0000-0000-0000-0000-0000-0000-0000-0000
0000-0000-0000-0000-0000-0000-0000-0000
(gdb)
以上代码共享https://skamath@bitbucket.org/skamath/ppbin.git
PS - 我通常发现以十六进制(x 命令)调试内存比二进制更容易,所以我不会使用我的解决方案。