dongtanxi5676756 2018-06-04 08:10
浏览 89
已采纳

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

I success install gdb 8.0.1 and make it run in mac os x. When debug this program I don't see the address of key.

package main

func main(){
    m := map[string]int{
        "abc":123,
    }

    key := []byte("abc")
    x, ok := m[string(key)]
    println(x, ok)
}

Here is what I have done with 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'}

I give a look at lldb. (lldb need b on main.main then b on line)

(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) 

And my question is how can show the address of key in gdb?

  • 写回答

1条回答 默认 最新

  • duanmeng9336 2018-06-30 06:47
    关注

    You can either disable the Python pretty-printers for Go, then you will get this:

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

    Or you can temporarily switch to the C language, like this:

    (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) 
    

    This assumes that Go arrays are interpreted by GDB in a certain way in C mode, but it seems to be to work in this case.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 前置放大电路与功率放大电路相连放大倍数出现问题
  • ¥30 关于<main>标签页面跳转的问题
  • ¥80 部署运行web自动化项目
  • ¥15 腾讯云如何建立同一个项目中物模型之间的联系
  • ¥30 VMware 云桌面水印如何添加
  • ¥15 用ns3仿真出5G核心网网元
  • ¥15 matlab答疑 关于海上风电的爬坡事件检测
  • ¥88 python部署量化回测异常问题
  • ¥30 酬劳2w元求合作写文章
  • ¥15 在现有系统基础上增加功能