Swift 代码调试核武-LLDB调试基础

原创Blog,转载请注明出处
http://blog.csdn.net/hello_hwc?viewmode=list
我的stackoverflow

前言:LLDB是个开源的调试器,与XCode绑定的

LLDB的使用中,Swift与Objective C还是有一些差别的

本文主要侧重LLDB的常用命令

资料(目前状态XCode 7.2 Swift 2.1.1),非XCode 7.2+本文代码可能不能运行

对了,Swift到现在也不过一岁半,所以LLDB对于Swift的支持肯定不如OC那么好。

如何打开LLDB如何使用?

通常的方式就是断点,另外,关于利用XCode图形化调试,在我这篇文章里有详细讲解

本文适合XCode 7.2 +
不管是在程序中加断点

还是手动的暂停程序

让代码停在Swift Error 或者Objective C异常

停在Objective C异常

(lldb) br s -E  objc
Breakpoint 6: where = libobjc.A.dylib`objc_exception_throw,address = 0x000000010dededbb

停在Swift Error

(lldb) br s -E swift
Breakpoint 7: where = libswiftCore.dylib`swift_willThrow,address = 0x000000010e55ccc0

停在某一种类型的Swift Error

(lldb) br s -E swift -O EnumError
Breakpoint 8: where = libswiftCore.dylib`swift_willThrow,address = 0x000000010e55ccc0

以此作为开端,希望读者能耐心看完,本文很长

准备工作

为了方便,我们先写好这样的一个Model类,定义个ErrorType,并且定义个实例方法抛出异常

enum CustomError:ErrorType{
    case LeoError1
    case LeoError2
}
class Person:NSObject{
    var name:String
    var age:UInt32
    init(name:String,age:UInt32){
        self.name = name
        self.age = age
    }
    //重写description是为了方便调试
    override var description:String{
        return "name:\(name) age:\(age)"
    }
    func PersonException() throws{
        throw CustomError.LeoError1
    }
}

然后在viewDidLoad中初始化一个对象,并打一个断点

let person = Person(name: "Leo",age: 23)

打印命令 p/po

p

(lldb) p person
(SwiftLLDBDemo.Person) $R0 = 0x00007f99b8d30b40 {
  ObjectiveC.NSObject = {
    isa = SwiftLLDBDemo.Person
  }
  name = "Leo"
  age = 23
}

po

(lldb) po person
name:Leo age:23

p命令会打印出对象的类型,如果是Objective C对象,会打印出isa,以及属性的值
po 命令 对于继承自NSObject得对象,指示会打印出description中的内容

再举个例子

(lldb) po ["123","345"]
▿ 2 elements
  - [0] : "123"
  - [1] : "345"

(lldb) p ["123","345"]
([String]) $R2 = 2 values {
  [0] = "123"
  [1] = "345"
}

也可以,调用一段代码

(lldb) p for i in 1...3{ print(i) }
1
2
3

执行代码 e

expression命令可以帮助我们执行代码,

(lldb) e person.name = "Jack"
(lldb) p person
(SwiftLLDBDemo.Person) $R1 = 0x00007f9bf1424c20 {
  ObjectiveC.NSObject = {
    isa = SwiftLLDBDemo.Person
  }
  name = "Jack"
  age = 23
}

在这我们深入的研究所有命令

(lldb) help

内容太多,不拷贝进来了,自己在XCode里敲敲试试吧。

可以看到,有一部分是alias部分,有linux经验的同学应该知道,alias就是将一个简单的命令设置为复杂命令的别名。我们上面讲到的两个命令p/po就是两个alias命令

p         -- ('expression --')  Evaluate an expression (ObjC++ or Swift) in
               the current program context,using user defined variables and
               variables currently in scope.
  po        -- ('expression -O -- ')  Evaluate an expression (ObjC++ or Swift)
               in the current program context,using user defined variables and
               variables currently in scope.

所以,p命令,本质是expression -- ;po命令,本质是expression -O --

(lldb) expression -- person
(SwiftLLDBDemo.Person) $R0 = 0x00007f96a3f792d0 {
  ObjectiveC.NSObject = {
    isa = SwiftLLDBDemo.Person
  }
  name = "Leo"
  age = 23
}
(lldb) expression -O -- person
name:Leo age:23

更加复杂的执行

例如,动态的修改view的背景色

e self.view.backgroundColor = UIColor.blueColor

Expression命令很灵活

格式化打印 -f (format)

(lldb) expr -f bin -- person.age 
(UInt32) $R2 = 0b00000000000000000000000000010111
(lldb) expr -f oct -- person.age
(UInt32) $R3 = 027
(lldb) expr -f hex -- person.age
(UInt32) $R4 = 0x00000017

格式化打印可以更简单

(lldb) p/x person.age
(UInt32) $R5 = 0x00000017

打印Raw value expr -R -- 变量

(lldb) expr -R -- person
(SwiftLLDBDemo.Person) $R6 = 0x00007f96a3f792d0 { ObjectiveC.NSObject = {}
  name = { _core = { _baseAddress = { _rawValue = 0x0000000101041298 "Leo" }
      _countAndFlags = { value = 3 }
      _owner = None { Some = { instance_type = 0x0000000000000000 }
      }
    }
  }
  age = { value = 23 }
}

显示变量类型expr -T -- 变量

(lldb) expr -T -- person
(SwiftLLDBDemo.Person) $R7 = 0x00007f96a3f792d0 {
  (NSObject) ObjectiveC.NSObject = {
    (Class) isa = SwiftLLDBDemo.Person
  }
  (String) name = "Leo"
  (UInt32) age = 23
}

当然也可以结合多个使用expr -RRT -- person

帮助命令,可以再深入看看其他执行选项,不过不是很常用

help expression

LLDB变量

LLDB的变量和脚本语言类似,以美元符号开头,使用的时候也要带着美元符号,调用的时候和Swift的语法一致
例如

(lldb) e var $a = 10
(lldb) p $a
(Int) $a = 10

(lldb) e var $b = Person(name: "Jack",age: 25)
(lldb) p $b
(SWTest.Person) $b = 0x00007f8909539080 {
  ObjectiveC.NSObject = {
    isa = SWTest.Person
  }
  name = "Jack"
  age = 25
}

断点

断点采用这个命令breakpoint,缩写br
断点命令的文档较少,这里先列出文档

(lldb) help breakpoint
The following subcommands are supported:

      clear   -- Clears a breakpoint or set of breakpoints in the executable.
      command -- A set of commands for adding,removing and examining bits of
                 code to be executed when the breakpoint is hit (breakpoint
                 'commands').
      delete -- Delete the specified breakpoint(s). If no breakpoints are specified,delete them all. disable -- Disable the specified breakpoint(s) without removing them. If none are specified,disable all breakpoints. enable -- Enable the specified disabled breakpoint(s). If no breakpoints are specified,enable all of them. list -- List some or all breakpoints at configurable levels of detail. modify -- Modify the options on a breakpoint or set of breakpoints in the executable. If no breakpoint is specified,acts on the last created breakpoint. With the exception of -e,-d and -i,passing an empty argument clears the modification. name -- A set of commands to manage name tags for breakpoints set -- Sets a breakpoint or set of breakpoints in the executable.

breakpoint set -E language
breakpoint s -E swift -O ErrorType

列出断点

(lldb) br li
Current breakpoints:
1: file = '/Users/huangwenchen/Desktop/SWTest/SWTest/ViewController.swift',line = 27,locations = 1,resolved = 1,hit count = 1

  1.1: where = SWTest`SWTest.ViewController.viewDidLoad (SWTest.ViewController)() -> () + 75 at ViewController.swift:27,address = 0x000000010ef8556b,resolved,hit count = 1

禁用断点

(lldb) br dis 1
1 breakpoints disabled.

删除断点

(lldb) br del 1
1 breakpoints deleted; 0 breakpoint locations disabled.
(lldb) br li
No breakpoints currently set.

添加断点

(lldb) br set -f ViewController.swift -l 28
Breakpoint 2: where = SWTest`SWTest.ViewController.viewDidLoad (SWTest.ViewController)() -> () + 139 at ViewController.swift:29,address = 0x000000010ef855ab

也可以简写为

(lldb) b ViewController.swift:28
Breakpoint 3: where = SWTest`SWTest.ViewController.viewDidLoad (SWTest.ViewController)() -> () + 139 at ViewController.swift:29,address = 0x000000010ef855ab
(lldb) br li
Current breakpoints:
2: file = 'ViewController.swift',line = 28,hit count = 0
  2.1: where = SWTest`SWTest.ViewController.viewDidLoad (SWTest.ViewController)() -> () + 139 at ViewController.swift:29,address = 0x000000010ef855ab,hit count = 0 

3: file = 'ViewController.swift',hit count = 0
  3.1: where = SWTest`SWTest.ViewController.viewDidLoad (SWTest.ViewController)() -> () + 139 at ViewController.swift:29,hit count = 0

断点Name

断点名称是用来管理一组断点的,通过name可以启用或者禁用一组断点,一个断点可以有多个name,很像tag。

br set -f ViewController.swift -l 28 -N leo
(lldb) br set -f ViewController.swift -l 28 -N leo
Breakpoint 2: 3 locations.
(lldb) br li
Current breakpoints:
1: file = '/Users/huangwenchen/Desktop/SWTest/SWTest/ViewController.swift',line = 34,hit count = 1

  1.1: where = SWTest`SWTest.ViewController.viewDidLoad (SWTest.ViewController)() -> () + 75 at ViewController.swift:34,address = 0x00000001070d51fb,hit count = 1 

2: file = 'ViewController.swift',locations = 3,resolved = 3,hit count = 0
  Names:
    leo

  2.1: where = SWTest`SWTest.ViewController.__deallocating_deinit + 12 at ViewController.swift,address = 0x00000001070d538c,hit count = 0 
  2.2: where = SWTest`SWTest.ViewController.init (SWTest.ViewController.Type)(nibName : Swift.Optional<Swift.String>,bundle : Swift.Optional<__ObjC.NSBundle>) -> SWTest.ViewController + 57 at ViewController.swift,address = 0x00000001070d53f9,hit count = 0 
  2.3: where = SWTest`SWTest.ViewController.init (SWTest.ViewController.Type)(coder : __ObjC.NSCoder) -> Swift.Optional<SWTest.ViewController> + 16 at ViewController.swift,address = 0x00000001070d56d0,hit count = 0

在加上名字以后,我们就可以通过名字来操作断点了

(lldb) br disable -N leo
1 breakpoints disabled.

在某一个函数上加断点

例如,在准备Person的函数中personLoop添加断点

(lldb) br s -F personLoop
Breakpoint 2: 2 locations.
(lldb) br li
Current breakpoints:
1: file = '/Users/huangwenchen/Desktop/SWTest/SWTest/ViewController.swift',line = 40,hit count = 1

  1.1: where = SWTest`SWTest.ViewController.viewDidLoad (SWTest.ViewController)() -> () + 75 at ViewController.swift:40,address = 0x000000010f6d51bb,hit count = 1 

2: name = 'personLoop',locations = 2,resolved = 2,hit count = 0
  2.1: where = SWTest`SWTest.Person.personLoop (SWTest.Person)() -> () + 12 at ViewController.swift:25,address = 0x000000010f6d45cc,hit count = 0 
  2.2: where = SWTest`@objc SWTest.Person.personLoop (SWTest.Person)() -> () + 4 at ViewController.swift,address = 0x000000010f6d4664,hit count = 0

条件断点

先在这里加一个断点

当某种条件产生的时候触发的断点,例如停在1000次循环的第800次

然后添加条件,停在i == 80

(lldb) br li
Current breakpoints:
1: file = '/Users/huangwenchen/Desktop/SWTest/SWTest/ViewController.swift',address = 0x00000001094d81bb,hit count = 1 

2: file = '/Users/huangwenchen/Desktop/SWTest/SWTest/ViewController.swift',hit count = 1

  2.1: where = SWTest`SWTest.Person.personLoop (SWTest.Person)() -> () + 111 at ViewController.swift:27,address = 0x00000001094d762f,hit count = 1 

(lldb) br modify -c 'i == 80'
(lldb) po i
80

断点行为

当断点触发的时候,执行的LLDB代码

例如,当i==80的时候,输出sum

(lldb) br li
Current breakpoints:
1: file = '/Users/huangwenchen/Desktop/SWTest/SWTest/ViewController.swift',line = 40,hit count = 1

  1.1: where = SWTest`SWTest.ViewController.viewDidLoad (SWTest.ViewController)() -> () + 75 at ViewController.swift:40,address = 0x00000001057391bb,hit count = 1 

3: file = '/Users/huangwenchen/Desktop/SWTest/SWTest/ViewController.swift',line = 27,hit count = 0

  3.1: where = SWTest`SWTest.Person.personLoop (SWTest.Person)() -> () + 111 at ViewController.swift:27,address = 0x000000010573862f,hit count = 0 

(lldb) br modify -c 'i == 80' 3
(lldb) br command add 3
Enter your debugger command(s). Type 'DONE' to end.
> po sum
> DONE
 po sum
3160

其他断点相关

lldb中输入

(lldb) help br set

篇幅限制,不列出help的结果了

类型查找Type

抛出一个异常,不知道是啥的时候怎么办?

(lldb) type lookup CustomError
enum CustomError : ErrorType {
  case LeoError1
  case LeoError2
  var hashValue: Swift.Int {
    get {}
  }
  var _code: Swift.Int {
    get {}
  }
}

可以简写

(lldb) ty l CustomError
enum CustomError : ErrorType {
  case LeoError1
  case LeoError2
  var hashValue: Swift.Int {
    get {}
  }
  var _code: Swift.Int {
    get {}
  }
}

LLDB中的异常处理

执行一个抛出异常的方法

(lldb) e person.personException()
(SWTest.CustomError) $E0 = LeoError1

流程控制

frame info 查看当前所在的位置

(lldb) frame info
frame #0: 0x000000010573862f SWTest`SWTest.Person.personLoop (self=0x00007fbaf1d054d0)() -> () + 111 at ViewController.swift:27
  • c 继续运行
  • n next 下一行
  • s step in
  • finish step out

函数提前返回

thread return

通过这个命令,可以很好的隔离函数,通常用在函数的最开始位置,避免ARC引用计数问题

最后

欢饮关注我的CSDN博客,很长一段时间内,我会持续的更新iOS/Swift/Objective C相关的文章

LLDB调试的文章应该还有一篇进阶使用的,近期会更新

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘贴.待开发的功能:1.支持自动生成约束2.开发设置页面3.做一个浏览器插件,支持不需要下载整个工程,可即时操作当前蓝湖浏览页面4.支持Flutter语言模板生成5.支持更多平台,如Sketch等6.支持用户自定义语言模板
现实生活中,我们听到的声音都是时间连续的,我们称为这种信号叫模拟信号。模拟信号需要进行数字化以后才能在计算机中使用。目前我们在计算机上进行音频播放都需要依赖于音频文件。那么音频文件如何生成的呢?音频文件的生成过程是将声音信息采样、量化和编码产生的数字信号的过程,我们人耳所能听到的声音频率范围为(20Hz~20KHz),因此音频文件格式的最大带宽是20KHZ。根据奈奎斯特的理论,音频文件的采样率一般在40~50KHZ之间。奈奎斯特采样定律,又称香农采样定律。...............
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿遍又亿遍,久久不能离开!看着小仙紫姐姐的蹦迪视频,除了一键三连还能做什么?突发奇想,能不能把舞蹈视频转成代码舞呢?说干就干,今天就手把手教大家如何把跳舞视频转成代码舞,跟着仙女姐姐一起蹦起来~视频来源:【紫颜】见过仙女蹦迪吗 【千盏】一、核心功能设计总体来说,我们需要分为以下几步完成:从B站上把小姐姐的视频下载下来对视频进行截取GIF,把截取的GIF通过ASCII Animator进行ASCII字符转换把转换的字符gif根据每
【Android App】实战项目之仿抖音的短视频分享App(附源码和演示视频 超详细必看)
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至2022年4月底。我已经将这篇博客的内容写为论文,上传至arxiv:https://arxiv.org/pdf/2204.10160.pdf欢迎大家指出我论文中的问题,特别是语法与用词问题在github上,我也上传了完整的项目:https://github.com/Whiffe/Custom-ava-dataset_Custom-Spatio-Temporally-Action-Video-Dataset关于自定义ava数据集,也是后台
因为我既对接过session、cookie,也对接过JWT,今年因为工作需要也对接了gtoken的2个版本,对这方面的理解还算深入。尤其是看到官方文档评论区又小伙伴表示看不懂,所以做了这期视频内容出来:视频在这里:本期内容对应B站的开源视频因为涉及的知识点比较多,视频内容比较长。如果你觉得看视频浪费时间,可以直接阅读源码:goframe v2版本集成gtokengoframe v1版本集成gtokengoframe v2版本集成jwtgoframe v2版本session登录官方调用示例文档jwt和sess
【Android App】实战项目之仿微信的私信和群聊App(附源码和演示视频 超详细必看)
用Android Studio的VideoView组件实现简单的本地视频播放器。本文将讲解如何使用Android视频播放器VideoView组件来播放本地视频和网络视频,实现起来还是比较简单的。VideoView组件的作用与ImageView类似,只是ImageView用于显示图片,VideoView用于播放视频。...
采用MATLAB对正弦信号,语音信号进行生成、采样和内插恢复,利用MATLAB工具箱对混杂噪声的音频信号进行滤波
随着移动互联网、云端存储等技术的快速发展,包含丰富信息的音频数据呈现几何级速率增长。这些海量数据在为人工分析带来困难的同时,也为音频认知、创新学习研究提供了数据基础。在本节中,我们通过构建生成模型来生成音频序列文件,从而进一步加深对序列数据处理问题的了解。
基于yolov5+deepsort+slowfast算法的视频实时行为检测。1. yolov5实现目标检测,确定目标坐标 2. deepsort实现目标跟踪,持续标注目标坐标 3. slowfast实现动作识别,并给出置信率 4. 用框持续框住目标,并将动作类别以及置信度显示在框上
数字电子钟设计本文主要完成数字电子钟的以下功能1、计时功能(24小时)2、秒表功能(一个按键实现开始暂停,另一个按键实现清零功能)3、闹钟功能(设置闹钟以及到时响10秒)4、校时功能5、其他功能(清零、加速、星期、八位数码管显示等)前排提示:前面几篇文章介绍过的内容就不详细介绍了,可以看我专栏的前几篇文章。PS.工程文件放在最后面总体设计本次设计主要是在前一篇文章 数字电子钟基本功能的实现 的基础上改编而成的,主要结构不变,分频器将50MHz分为较低的频率备用;dig_select
1.进入官网下载OBS stdioOpen Broadcaster Software | OBS (obsproject.com)2.下载一个插件,拓展OBS的虚拟摄像头功能链接:OBS 虚拟摄像头插件.zip_免费高速下载|百度网盘-分享无限制 (baidu.com)提取码:6656--来自百度网盘超级会员V1的分享**注意**该插件必须下载但OBS的根目录(应该是自动匹配了的)3.打开OBS,选中虚拟摄像头选择启用在底部添加一段视频录制选择下面,进行录制.
Meta公司在9月29日首次推出一款人工智能系统模型:Make-A-Video,可以从给定的文字提示生成短视频。基于**文本到图像生成技术的最新进展**,该技术旨在实现文本到视频的生成,可以仅用几个单词或几行文本生成异想天开、独一无二的视频,将无限的想象力带入生活
音频信号叠加噪声及滤波一、前言二、信号分析及加噪三、滤波去噪四、总结一、前言之前一直对硬件上的内容比较关注,但是可能是因为硬件方面的东西可能真的是比较杂,而且需要渗透的东西太多了,所以学习进展比较缓慢。因为也很少有单纯的硬件学习研究,总是会伴随着各种理论需要硬件做支撑,所以还是想要慢慢接触理论学习。但是之前总找不到切入点,不知道从哪里开始,就一直拖着。最近稍微接触了一点信号处理,就用这个当作切入点,开始接触理论学习。二、信号分析及加噪信号处理选用了matlab做工具,选了一个最简单的语音信号处理方
腾讯云 TRTC 实时音视频服务体验,从认识 TRTC 到 TRTC 的开发实践,Demo 演示& IM 服务搭建。
音乐音频分类技术能够基于音乐内容为音乐添加类别标签,在音乐资源的高效组织、检索和推荐等相关方面的研究和应用具有重要意义。传统的音乐分类方法大量使用了人工设计的声学特征,特征的设计需要音乐领域的知识,不同分类任务的特征往往并不通用。深度学习的出现给更好地解决音乐分类问题提供了新的思路,本文对基于深度学习的音乐音频分类方法进行了研究。首先将音乐的音频信号转换成声谱作为统一表示,避免了手工选取特征存在的问题,然后基于一维卷积构建了一种音乐分类模型。
C++知识精讲16 | 井字棋游戏(配资源+视频)【赋源码,双人对战】
本文主要讲解如何在Java中,使用FFmpeg进行视频的帧读取,并最终合并成Gif动态图。
在本篇博文中,我们谈及了 Swift 中 some、any 关键字以及主关联类型(primary associated types)的前世今生,并由浅及深用简明的示例向大家讲解了它们之间的奥秘玄机。