gdb如何在go程序中打印var的地址?



我成功安装了gdb 8.0.1并使其在Mac OS X中运行。调试此程序时,我没有看到key的地址。

package main
func main(){
m := map[string]int{
"abc":123,
}
key := []byte("abc")
x, ok := m[string(key)]
println(x, ok)
}

这是我对 gdb 所做的:

go build -gcflags "-N" test_append.go
gdb test_append
(gdb) b 9
Breakpoint 1 at 0x104d4b4: file /Users/jiamo/go/src/test/test_append.go, line 9.
(gdb) c
The program is not being run.
(gdb) run
Starting program: /Users/jiamo/go/src/test/test_append
Thread 3 hit Breakpoint 1, main.main () at /Users/jiamo/go/src/test/test_append.go:9
9       x, ok := m[string(key)]
(gdb) info locals
key =  []uint8 = {97 'a', 98 'b', 99 'c'}
m = map[string]int = {["abc"] = 123}
ok = false
x = 17195648
(gdb) p key
$1 =  []uint8 * = {97 'a', 98 'b', 99 'c'}
(gdb) p &key
$2 =  []uint8 * = {97 'a', 98 'b', 99 'c'}

我看看lldb。(LLDB 需要 B 在main.main然后 B 在线(

(lldb) b main.main
Breakpoint 1: where = test_append`main.main + 50 at test_append.go:4, address = 0x000000000104d372
(lldb) run
(lldb) b 9
(lldb) c
(lldb) fr v
([]uint8) key = (len 3, cap 32) {
[0] = 97
[1] = 98
[2] = 99
}
# no address too
(lldb) p key
([]uint8) key = (len 3, cap 32) {
[0] = 97
[1] = 98
[2] = 99
}
(lldb) p &key
(*[]uint8)  = 0x000000c420055e10 (len 0, cap 0)   
# now it can show the address, 
# And I am not sure why it becomes (len 0, cap 0) 

我的问题是如何在 gdb 中显示key的地址?

你可以禁用 Go 的 Python 漂亮打印机,然后你会得到这个:

(gdb) print key
$1 = {array = 0xc42003de10 "abc", len = 3, cap = 32}

或者你可以暂时切换到 C 语言,像这样:

(gdb) set language c
Warning: the current language does not match this frame.
(gdb) print key
$1 =  []uint8 = {97 'a', 98 'b', 99 'c'}
(gdb) print (char *)key
$2 = 0xc420043e10 "abc"
(gdb) 

这假设 Go 数组在 C 模式下由 GDB 以某种方式解释,但在这种情况下它似乎有效。

最新更新