IOS: what do these addresses mean in the iOS log stack trace?

This is the line of the stack track from my iOS application crash log:

MyAPPName 0x001f642e 0xd2000 + 1197102

I know how to symbolize the crash log, but what does 0x001f642e 0xd2000 + 1197102 mean in each line of the stack trace?

+2
source share
2 answers

Another form of recording these values: 0x001f642e = 0xd2000 + 1197102.

So 0x001f642eis the actual address of the executable code, and 0xd2000is the starting address of the binary file where the code is executed, and 1197102is the offset inside the binary.

+1
source

It refers to an instruction located at 1197102 bytes from location 0xd2000.

: objective-c

+1

Source: https://habr.com/ru/post/1650665/


All Articles