你用 Python 来做。
下面定义了一个忽略列表和一个可以作为命令附加到断点的函数。
该函数在回溯中获取函数的名称,并将这些名称与忽略列表设置相交。如果有任何名称匹配,它会继续运行该进程。这有效地跳过了进入调试器的不需要的堆栈。
(lldb) b objc_exception_throw
Breakpoint 1: where = libobjc.A.dylib`objc_exception_throw, address = 0x00000000000113c5
(lldb) script
Python Interactive Interpreter. To exit, type 'quit()', 'exit()' or Ctrl-D.
>>> ignored_functions = ['recurse_then_throw_and_catch']
def continue_ignored(frame, bp_loc, dict):
global ignored_functions
names = set([frame.GetFunctionName() for frame in frame.GetThread()])
all_ignored = set(ignored_functions)
ignored_here = all_ignored.intersection(names)
if len(ignored_here) > 0:
frame.GetThread().GetProcess().Continue()
quit()
(lldb) br comm add -F continue_ignored 1
(lldb) r
我对以下文件进行了尝试,它成功地跳过了第一个 throw insiderecurse_then_throw_and_catch
并在 throw inside 期间掉入调试器throw_for_real
。
#import <Foundation/Foundation.h>
void
f(int n)
{
if (n <= 0) @throw [NSException exceptionWithName:@"plugh" reason:@"foo" userInfo:nil];
f(n - 1);
}
void
recurse_then_throw_and_catch(void)
{
@try {
f(5);
} @catch (NSException *e) {
NSLog(@"Don't care: %@", e);
}
}
void
throw_for_real(void)
{
f(2);
}
int
main(void)
{
recurse_then_throw_and_catch();
throw_for_real();
}
我想您可以将此功能添加到您的功能中.lldbinit
,然后根据需要从控制台将其连接到断点。(我认为您不能在 Xcode 中设置脚本命令。)