LLDB

1,设置断点

breakpoint set -n "name"

breakpoint list 查看当前point列表

breakpoint set -n --selector "func" 设置所有方法的断点
breakpoint set --file --selector "func"

breakpoint set -r Game 设置包含Game字符的方法断点

thread return 执行回滚

continue 继续执行 c
next 单步执行 n 会把子函数当做整体
step in 会进入子函数 s

breakpoint command add 1
breakpoint command delete
breakpoint command list

stop-hook
在你每次stop的时候都会执行一些命令,只对breakpoint,watchpoint有效

target stop-hook add -o
target stop-hook list

target stop-hook delete

image lookup
x= memory read

你可能感兴趣的:(LLDB)