Advance GDB
more than breakpoint + frame + bt + as
主要关注一下他人的调试经验,以及一些高级调试技巧,比如使用ebpf进行性能分析,使用gdb进行内存分析等等。
另外xxdb调试,一个很关键的技巧,我个人觉得是要掌握data point和watch point的使用,这个可以参考这里, 另外ref的第5篇文章也有提到。
另外经常使用lldb,需要参考lldb到gdb的map
另外还有一个apple官方的tutorial
lldb稍微有作用点的方法
watchpoint
内存断点 watchpoint set expression 地址
watchpoint set variable 变量名
- 设置内存断点
1
(lldb) watchpoint set expression <address>
- 内存访问断点
1
2
3
watchpoint set expression -w read -- 内存地址
(lldb) watchpoint set expression -w read -- 内存地址
- 内存写入断点
1
2
3
watchpoint set expression -w write -- 内存地址
(lldb) watchpoint set expression -w read -- 内存地址
- 条件断点
1
2
watchpoint modify -c 表达式
(lldb) watchpoint modify -c '*(int *)内存地址 == 20'
coredump堆栈丢失和noexcept
一剑破万法:noexcept与C++异常导致的coredump, 这个可以看下,复杂的回调函数里面,如果有异常,会导致coredump,这个时候bt不一定很清晰,虽然代码可以看出来,但是工程大了的花,一行行看代码其实有点耗时. 因为在函数没有声明noexcept的时候,异常会继续向调用函数抛出,直到遇到noexcept的函数,或者一直抛给main函数,然后触发coredump。
这个时候可以用noexcept,标注这个回调函数(lambda也可以用这个标注)。这样在coredump里,调用栈会稍微清晰一点。
原理:当你声明一个函数为 noexcept 时,你正在向编译器保证该函数不会抛出任何异常。如果在 noexcept 函数中发生了异常,程序会立即调用 std::terminate() 来进行异常的快速失败处理,通常这会导致程序的退出。
Ref
This post is licensed under CC BY 4.0 by the author.