iOS常用调试方法:LLDB命令( 三 )

thread backtrace命令可以方便地供开发者查看线程堆栈信息,简写为bt 。比如,当程序崩溃的时候,开发者可以查看堆栈调用列表 。示例如下:

iOS常用调试方法:LLDB命令

文章插图
  1. (lldb) thread backtrace 
  2. * thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 2.1 
  3.     frame #0: 0x0000000104cc2705 libobjc.A.dylib`objc_exception_throw 
  4.     frame #1: 0x00000001056704ec CoreFoundation`_CFThrowFormattedException + 194 
  5.     frame #2: 0x00000001057a6b00 CoreFoundation`-[__NSArrayI objectAtIndexedSubscript:] + 96 
  6.   * frame #3: 0x00000001043a1df7 QiDebugDemo`-[QiConsoleViewController testLLDBCommands](self=0x00007fadc7c50400, _cmd="testLLDBCommands") at QiConsoleViewController.m:33 
  7.     frame #4: 0x00000001043a1d5a QiDebugDemo`-[QiConsoleViewController viewDidLoad](self=0x00007fadc7c50400, _cmd="viewDidLoad") at QiConsoleViewController.m:26 
  8. ... 
  9.     frame #18: 0x00000001056830be CoreFoundation`__CFRunLoopDoObservers + 430 
  10.     frame #19: 0x0000000105683751 CoreFoundation`__CFRunLoopRun + 1537 
  11.     frame #20: 0x0000000105682e11 CoreFoundation`CFRunLoopRunSpecific + 625 
  12.     frame #21: 0x000000010ddd51dd Graphicsservices`GSEventRunModal + 62 
  13.     frame #22: 0x000000010a1db81d UIKitCore`UIApplicationMain + 140 
  14.     frame #23: 0x00000001043a2450 QiDebugDemo`main(argc=1, argv=0x00007ffeeb85df90) at main.m:7 
  15.     frame #24: 0x0000000107858575 libdyld.dylib`start + 1 
在调试过程中,开发者可以使用thread return命令终端某个方法并返回一个想要的值 。示例如下:
  1. (lldb) thread return string 
  2. (lldb) continue 
  3. 2019-02-27 17:22:47.323225+0800 QiDebugDemo[5071:222700] resultString: Qi_Share 

6. 断点
作者在iOS 调试方法:断点这篇文章中介绍过断点的用法 。其实,可视化的断点都可以使用LLDB语法来实现 。比如下图中的1、2、3、4、5都能用LLDB命令表达 。
iOS常用调试方法:LLDB命令

文章插图
  • 启用/禁用断点(breakpoint enable/disable)
  • 继续执行程序(continue)
  • 执行下一步(next)
  • 进入方法(step)
  • 跳出方法(finish)
在断点相关操作中,因为Xcode已经集成了可视化的断点操作工具,所以breakpoint命令并不被常用 。但是,breakpoint命令拥有着十分强大的功能,语法为:breakpoint [],主要命令示例如下:
  1. //! 查看所有断点 
  2. (lldb) breakpoint list 
  3. //! 为所有类中的viewDidAppear:设置断点 
  4. (lldb) breakpoint set -n viewDidAppear: 
  5. //! 为QiConsoleViewController.m文件中的testLLDBCommands方法设定断点 
  6. (lldb) breakpoint set -f QiConsoleViewController.m -n testLLDBCommands 
  7. //! 为QiConsoleViewController.m文件中的第32行代码设定断点 
  8. (lldb) breakpoint set -f QiConsoleViewController.m -l 32 
  9. //! 为handleString:方法设定条件断点,条件为string != nil 
  10. (lldb) breakpoint set - handleString: -c string != nil 
7. 观察点
想比较于breakpoint是对方法生效的断点,watchpoint则是对地址生效的断点 。watchpoint类似于KVO的工作原理,当观察到属性地址里面的东西改变时,就让程序中断,其语法为:watchpoint [] 。其应用场景示例如下:
iOS常用调试方法:LLDB命令

文章插图
 
  1. (lldb) watchpoint set variable string 
  2. Watchpoint created: Watchpoint 1: addr = 0x7ffeef497360 size = 8 state = enabled type = w 
  3.     declare @ '/Users/huangxianshuai/Desktop/Products/QiShare/QiDebugDemo/QiDebugDemo/QiConsoleViewController.m:33' 


    推荐阅读