美文网首页iOS Developer自己看的文章实用工具
断点远比你想象中的强大 -- LLDB BreakPoint 设

断点远比你想象中的强大 -- LLDB BreakPoint 设

作者: sqatm | 来源:发表于2018-05-31 22:14 被阅读104次

这里介绍一下LLDB中关于断点的强大功能的冰山一角,有兴趣的话直接在LLDB中输入help就会有详细的说明文档。这里只举例一些经常用到的。

根据函数名称
  • breakpoint set -n 函数名称

OC方法

给ViewController类中的 -touchesBegan:withEven: 方法添加断点


image

输入后回车,如果添加成功则会出现下面的提示:


image

然后如果真的成功了,你会发现即使把断点的标志置灰仍然会断主:


image

C方法


image
根据行数
  • breakpoint set -l 行数 -f 文件名


    image
根据物理地址(反汇编用到,有时候调整BAD_EXC用到)
  • breakpoint set -a 16位的物理地址


    image
根据函数全名设置断点(非常有用,这个是一般打断点无法比拟的)
  • breakpoint set -F 函数全名


    image
    OtherFile.m

*注:这里因为一次性打了两个端点,所以显示的 Breakpint 1:2 locations。意思是添加了组号为1的断点组,这组里包含两个断点。

根据局部函数全名设置断点
  • breakpoint set -r 函数局部名称


    image

    可以看到我这里给整个项目中包含 touchTest 的方法都打了断点(touchTest1 和 touchTest2)

常用的配置项
  • -i 设置断点忽略次数

-i <count> ( --ignore-count <count> )
Set the number of times this breakpoint is skipped before stopping.

image

这里设置了跳跃2次,可以看出前两次是没有断住的。

  • -o 只断住一次

-o <boolean> ( --one-shot <boolean> )
The breakpoint is deleted the first time it stop causes a stop.

image
  • -o 设置断点条件

-c <expr> ( --condition <expr> )
The breakpoint stops only if this condition expression evaluates to
true.

断点条件是简单语句:


image

断点条件是OC语句:


image
多条件断点:
image
  • -N 给断点添加别名

-N <breakpoint-name> ( --breakpoint-name <breakpoint-name> )
Adds this to the list of names for this breakpoint.

image

相关文章

网友评论

    本文标题:断点远比你想象中的强大 -- LLDB BreakPoint 设

    本文链接:https://www.haomeiwen.com/subject/chlwjftx.html