LLDB調(diào)試

常用指令

continue /? c? ? 執(zhí)行到下一個斷點

next / n? ? ? ? ? ?單步運行 把子函數(shù)當(dāng)作整體

step / s???????????單步運行 遇到函數(shù)會進去

memory read / x? ?讀取內(nèi)存地址中的值


增加斷點的方法

@implementation?ViewController

- (void)lldbDemo:(id)parame {}

void test() {}

breakpoint set -n?

$breakpoint set -n test

breakpoint set -n?

$breakpoint set -n "-[ViewController lldbDemo:]"

b -n??

$b -n? "-[ViewController?lldbDemo:]"

b -[ViewController touchesBegan:withEvent:]

$b -[ViewController lldbDemo:]

breakpoint set --selector? /? b? ? ?

將所有的同名方法都加斷點

$breakpoint set --selector?lldbDemo

$b?lldbDemo

breakpoint set --file ?--selector?

$breakpoint set --file??ViewController.m?--selector?lldbDemo:

breakpoint list? ?/? ?break list

$break list

Current breakpoints:1: file = '~/ViewController.m', line = 27, exact_match = 0, locations = 1, resolved = 1, hit count = 1?

1.1: where = lldbDemo`-[ViewController touchesBegan:withEvent:] + 80 at ViewController.m:28, address = 0x00000001087b1730, resolved, hit count = 1?2: name = '-[ViewController lldbDemo:]', locations = 1, resolved = 1, hit count = 0?

2.1: where = lldbDemo`-[ViewController lldbDemo:] + 47 at ViewController.m:24, address = 0x00000001087b16cf, resolved, hit count = 0?

breakpoint disable? /? ?break dis? ? ?breakpoint enable? /??break en

$break dis 1.1

$break en 2.1

Current breakpoints:1: file = '~/ViewController.m', line = 27, exact_match = 0, locations = 1 ??

1.1: where = lldbDemo`-[ViewController touchesBegan:withEvent:] + 80 at ViewController.m:28, address = 0x00000001087b1730, unresolved, hit count = 1?2: name = '-[ViewController lldbDemo:]', locations = 1, resolved = 1, hit count = 0? Options:?disabled

2.1: where = lldbDemo`-[ViewController lldbDemo:] + 47 at ViewController.m:24, address = 0x00000001087b16cf, resolved, hit count = 0? Options: enabled

breakpoint delete

只能刪除整個大類袜香,刪除分類時只是將分類設(shè)為disable

$breakpoint delete

About to delete all breakpoints, do you want to do that?: [Y/n]

$breakpoint delete 1.1??

1.1: where = lldbDemo`-[ViewController touchesBegan:withEvent:] + 80 at ViewController.m:28, address = 0x00000001087b1730, unresolved, hit count = 1?2: name = '-[ViewController lldbDemo:]', locations = 1, resolved = 1, hit count = 0??Options:?disabled

breakpoint set -r? ?

遍歷滿足項目中所有方法的關(guān)鍵字

?$breakpoint set -r touches

Breakpoint 5: 359 locations.



修改參數(shù)值

expression /? p

#import "Person.h"

@implementation ViewController

- (void)viewDidLoad {

? ? Person *p = [[Person alloc] init];

? ? [self.personModels addObject:p];

}

$p (Person *)self.personModels.firstObject? ? //獲取參數(shù)內(nèi)存地址

(Person *) $1 = 0x000060000002fe20

$p $1 .name = @""? ?//修改屬性

$p &person->_name? //查看屬性



斷點軌跡調(diào)試

backTrack? ?/? ?bt

查看斷點歷史軌跡

$bt

* thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 ? * frame #0: 0x000000010b43e730 lldbDemo`-[ViewController touchesBegan:withEvent:](self=0x00007fdc3f60d7c0, _cmd="touchesBegan:withEvent:", touches=1 element, event=0x000060800011c170) at ViewController.m:28?

frame #1: 0x000000010c8077c7 UIKit`forwardTouchMethod + 340? ??

frame #2: 0x000000010c807662 UIKit`-[UIResponder touchesBegan:withEvent:] + 49 ? ?

frame #3: 0x000000010c64fe7a UIKit`-[UIWindow _sendTouchesForEvent:] + 2052 ? ?

frame #4: 0x000000010c651821 UIKit`-[UIWindow sendEvent:] + 4086 ? ?

frame #5: 0x000000010c5f5370 UIKit`-[UIApplication sendEvent:] + 352 ? ?

frame #6: 0x000000010cf3657f UIKit`__dispatchPreprocessedEventFromEventQueue + 2796 ? ?

frame #7: 0x000000010cf39194 UIKit`__handleEventQueueInternal + 5949 ? ?

frame #8: 0x000000010eec7bb1 CoreFoundation`__CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17 ? ?

frame #9: 0x000000010eeac4af CoreFoundation`__CFRunLoopDoSources0 + 271 ? ?

frame #10: 0x000000010eeaba6f CoreFoundation`__CFRunLoopRun + 1263 ? ?

frame #11: 0x000000010eeab30b CoreFoundation`CFRunLoopRunSpecific + 635 ? ?

frame #12: 0x0000000111813a73 GraphicsServices`GSEventRunModal + 62 ? ?

frame #13: 0x000000010c5da0b7 UIKit`UIApplicationMain + 159 ? ?

frame #14: 0x000000010b43e7bf lldbDemo`main(argc=1, argv=0x00007ffee47c1060) at main.m:14 ? ?

frame #15: 0x0000000110102955 libdyld.dylib`start + 1

up? down

更改斷點位置

frame select

直接跳到指定斷點

$frame select?2

frame variable

打印斷點所在位置的所有屬性

$frame variable

(ViewController *) self = 0x00007fdc3f60d7c0

(SEL) _cmd = "touchesBegan:withEvent:"

(__NSSetM *) touches = 0x000060400002b940 1 element

(UITouchesEvent *) event = 0x000060800011c170

thread return

斷點執(zhí)行到上一個胳赌,但是結(jié)束斷點之后不會在執(zhí)行之后的代碼



觀察內(nèi)存斷點

watchpoint set variable

$watchpoint set variable p->_name? ? ?//當(dāng)name屬性的值發(fā)生變化時,斷點自動執(zhí)行到當(dāng)前函數(shù)中

watchpoint set expression

通過內(nèi)存地址添加觀察斷點

$watchpoint set expression 0x000060400003c808?

watchpoint list

watchpoint delete

使用方法參考breakpoint



添加指令

break command add

$break list

1.1 ...

2.1...

$break command add 1.1

Enter your debugger command(s).? Type 'DONE' to end.

>? frame variable? ?// 輸入要執(zhí)行的代碼

break command list

break command delete?

$break command list 1.1

Breakpoint 1.1: ? ?

Breakpoint commands: ? ? ?

frame variable

target stop-hook add? ? /? ?target stop-hook add -o

將所有斷點都添加指令

$target stop-hook add -o "frame variable"

target stop-hook list

target stop-hook delete? ?/??undisplay

target stop-hook disable



查看異常指針

'NSRangeException', reason: '*** -[__NSArray0 objectAtIndex:]: index 0 beyond bounds for empty NSArray'

*** First throw call stack:

( 0 ? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x00000001068711e6 __exceptionPreprocess + 294

1 ? libobjc.A.dylib ? ? ? ? ? ? ? ? ? ? 0x0000000105f06031 objc_exception_throw + 48

2 ? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x0000000106889e3d -[__NSArray0 objectAtIndex:] + 93

3 ? lldbDemo? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x00000001056066d1 -[ViewController touchesBegan:withEvent:] + 129

4 ? UIKit ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0000000106f1b7c7 forwardTouchMethod + 340

5 ? UIKit ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0000000106f1b662 -[UIResponder touchesBegan:withEvent:] + 49

6 ? UIKit ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0000000106d63e7a -[UIWindow _sendTouchesForEvent:] + 2052

7 ? UIKit ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0000000106d65821 -[UIWindow sendEvent:] + 4086

8 ? UIKit ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0000000106d09370 -[UIApplication sendEvent:] + 352

9 ? UIKit ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x000000010764a57f __dispatchPreprocessedEventFromEventQueue + 2796

10? UIKit ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x000000010764d194 __handleEventQueueInternal + 5949

11? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x0000000106813bb1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17

12? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x00000001067f84af __CFRunLoopDoSources0 + 271

13? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x00000001067f7a6f __CFRunLoopRun + 1263

14? CoreFoundation? ? ? ? ? ? ? ? ? ? ? 0x00000001067f730b CFRunLoopRunSpecific + 635

15? GraphicsServices? ? ? ? ? ? ? ? ? ? 0x000000010b9dba73 GSEventRunModal + 62

16? UIKit ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0000000106cee0b7 UIApplicationMain + 159

17? lldbDemo? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x000000010560679f main + 111

18? libdyld.dylib ? ? ? ? ? ? ? ? ? ? ? 0x000000010a2ca955 start + 1

19? ??? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0x0000000000000001 0x0 + 1 )

image lookup -a?

查看異常指針

$image lookup -a 0x00000001056066d1

?Address: lldbDemo[0x00000001000016d1] (lldbDemo.__TEXT.__text + 257) ? ? ? Summary: lldbDemo`-[ViewController touchesBegan:withEvent:] + 129 at ViewController.m:28

image lookup -t

查看一個類信息

$image lookup -t?ViewController

Best match found in ~/lldbDemo.app/lldbDemo: id = {0x10000002b}, name = "ViewController", byte-size = 8, decl = ViewController.h:11, compiler_type = "@interface ViewController : UIViewController @end"

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末淮逻,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子阁簸,更是在濱河造成了極大的恐慌爬早,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件启妹,死亡現(xiàn)場離奇詭異筛严,居然都是意外死亡,警方通過查閱死者的電腦和手機饶米,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進店門桨啃,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人檬输,你說我怎么就攤上這事照瘾∥ǖ” “怎么了蜘渣?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵砌些,是天一觀的道長瞄沙。 經(jīng)常有香客問我畅厢,道長欲鹏,這世上最難降的妖魔是什么暴凑? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任如绸,我火速辦了婚禮笑旺,結(jié)果婚禮上昼浦,老公的妹妹穿的比我還像新娘。我一直安慰自己筒主,他們只是感情好关噪,可當(dāng)我...
    茶點故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布鸟蟹。 她就那樣靜靜地躺著,像睡著了一般使兔。 火紅的嫁衣襯著肌膚如雪建钥。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天虐沥,我揣著相機與錄音熊经,去河邊找鬼。 笑死欲险,一個胖子當(dāng)著我的面吹牛镐依,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播天试,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼槐壳,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了喜每?” 一聲冷哼從身側(cè)響起务唐,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎带兜,沒想到半個月后枫笛,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡刚照,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年刑巧,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片无畔。...
    茶點故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡海诲,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出檩互,到底是詐尸還是另有隱情,我是刑警寧澤咨演,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布闸昨,位于F島的核電站,受9級特大地震影響薄风,放射性物質(zhì)發(fā)生泄漏饵较。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一遭赂、第九天 我趴在偏房一處隱蔽的房頂上張望循诉。 院中可真熱鬧,春花似錦撇他、人聲如沸茄猫。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽划纽。三九已至脆侮,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間勇劣,已是汗流浹背靖避。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留比默,地道東北人幻捏。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像命咐,于是被迫代替她去往敵國和親篡九。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,724評論 2 351

推薦閱讀更多精彩內(nèi)容

  • [轉(zhuǎn)]淺談LLDB調(diào)試器文章來源于:http://www.cocoachina.com/ios/20150126/...
    loveobjc閱讀 2,487評論 2 6
  • LLDB的Xcode默認的調(diào)試器侈百,它與LLVM編譯器一起瓮下,帶給我們更豐富的流程控制和數(shù)據(jù)檢測的調(diào)試功能。平時用Xc...
    CoderSC閱讀 1,351評論 0 2
  • 對于LLDB調(diào)試相信很多開發(fā)者都不陌生但是也僅僅停留在下斷點看數(shù)據(jù)的階段钝域,使用最多的命令也就是po甚至包括我在內(nèi)的...
    初光夫閱讀 1,254評論 2 51
  • 一讽坏、斷點命令 1、設(shè)置斷點例证,現(xiàn)用斷點卡住程序路呜,然后在輸入 breakpoint set --file 文件名 --...
    海浪萌物閱讀 1,689評論 0 0
  • 不知不覺過了二十幾度春秋,恍惚間長大了织咧,失去稚嫩的臉龐和輕狂的年少胀葱。 歲月的行走,悄無聲息笙蒙,昨日的...
    舊渡頭閱讀 236評論 1 6