我正在使用 BugSense 来跟踪 iOS 应用程序的崩溃。最近我注意到在实时使用中表示堆栈跟踪的问题。
问题是 Apple 在 iOS 4.3 中引入了地址空间随机化,因此感兴趣的堆栈地址不能单独用于检索导致崩溃的正确方法。
目前我正在尝试通过计算来获得正确的地址
symbol address = slide + stack address - load address
我已经有了幻灯片和堆栈地址,但据我了解,加载地址只能在我无法通过 BugSense 获得的崩溃报告中找到。堆栈跟踪看起来像
0 CoreFoundation 0x342723e7 + 162
1 libobjc.A.dylib 0x3bf63963 objc_exception_throw + 30
2 CoreFoundation 0x3427229d + 0
3 Foundation 0x34b48fa3 + 90
4 UIKit 0x360b5bd9 + 7640
5 MyApp 0x000c6e99 0xb3000 + 81561
6 UIKit 0x3623c2ff 0x3607e000 + 1827583
7 UIKit 0x361b8737 0x3607e000 + 1287991
8 UIKit 0x361a9869 0x3607e000 + 1226857
9 UIKit 0x361a97ad 0x3607e000 + 1226669
10 CoreFoundation 0x34247941 0x341b0000 + 620865
11 CoreFoundation 0x34245c39 0x341b0000 + 613433
12 CoreFoundation 0x34245f1d 0x341b0000 + 614173
13 CoreFoundation 0x341b923d CFRunLoopRunSpecific + 356
14 CoreFoundation 0x341b90c9 CFRunLoopRunInMode + 104
15 GraphicsServices 0x37d9733b GSEventRunModal + 74
16 UIKit 0x360d52b9 UIApplicationMain + 1120
17 MyApp 0x000b61bf 0xb3000 + 12735
18 MyApp 0x000b4a08 0xb3000 + 6664
有没有另一种方法来象征这个地址或获得各自的加载地址?