我正在使用lldb Python API设置观察点并进行打印:
max-width
从源代码开始:
Watchpoint 1: addr = 0x700005451ff0 size = 8 state = enabled type = w
declare @ '/Users/stringer/test.c:945'
new value: 0x000000011a4b1000
hw_index = -1 hit_count = 0 ignore_count = 0
我可以看到性能也很慢。使用硬件断点是否可以做些什么?
编辑:
从source code看,似乎必须在将读写设置为With -1 representing an invalid hardware index.
的情况下创建观察点。