2

我一直试图找出一种方法来计算从崩溃报告中获得的堆栈地址的确切符号地址。我找到了以下公式:https ://stackoverflow.com/a/12464678/920407

并尝试使用我发现的为我计算地址的工具:https ://github.com/nob1984/natos

但是这些方法都不起作用,尽管误差范围相对较小 - 在发生错误的实际行之前大约 3-4 行。

我故意强迫应用程序因超出 NSArray 对象边界而崩溃。这是我的结果:

崩溃报告:

0   CoreFoundation                  0x36bf688f __exceptionPreprocess + 163
1   libobjc.A.dylib                 0x3300d259 objc_exception_throw + 33
2   CoreFoundation                  0x36b4e23d -[__NSArrayI objectAtIndex:] + 165
3   SomeApp                         0x0013cea3 -[DashboardTableViewController tableView:didSelectRowAtIndexPath:] (DashboardTableViewController.m:970)
4   UIKit                           0x34e7993d -[UITableView _selectRowAtIndexPath:animated:scrollPosition:notifyDelegate:] + 945
5   UIKit                           0x34ef3627 -[UITableView _userSelectRowAtPendingSelectionIndexPath:] + 159
6   Foundation                      0x32829933 __NSFireDelayedPerform + 415
7   CoreFoundation                  0x36bcaa33 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 15
8   CoreFoundation                  0x36bca699 __CFRunLoopDoTimer + 365
9   CoreFoundation                  0x36bc926f __CFRunLoopRun + 1207
10  CoreFoundation                  0x36b4c4a5 CFRunLoopRunSpecific + 301
11  CoreFoundation                  0x36b4c36d CFRunLoopRunInMode + 105
12  GraphicsServices                0x34d13439 GSEventRunModal + 137
13  UIKit                           0x34df5cd5 UIApplicationMain + 1081
14  SomeApp                         0x00146587 main (main.m:17)
15  SomeApp                         0x00102008 start + 40

北约输出:

Main Stack Address == 0x146587
Target Stack Address == 0x13cea3
Slide == 0x1000
Main Symbol Address == 0x4751c
Load Address == 0x10006b
Target Symbol Address == 0x3de38


dwarfdump output:
(null)


atos output:
-[DashboardTableViewController tableView:viewForHeaderInSection:] (in SomeApp) (DashboardTableViewController.m:966)

正如 Apple Crash 报告所述,代码行实际上是 970 而不是 966。我想知道是什么导致了这个错误,应该使用什么来正确计算地址。

4

0 回答 0