vote up 0 vote down star
2

I am trying to debug an intermittent error on the iPhone, a crash with a trace that looks like:

objc_message_send
__invoking__
[NSInvocation invoke]
HandleDelegateSource
MainRunLoop
....

When GDB stops, I'd like to be able to determine details about what selector the system is attempting to be invoked - I've set a break point now around [NSInvocation Invoke], but from that point cannot figure out how to examine details of the NSInvocation object I am stopped in.

I did find on the web a gdb printf for the PPC mac that's supposed to dump just what is trying to be called:

printf "%c[%s %s]\n", $r3&&((id)$r3)->isa->info&2?'+':'-', $r3?((id)$r3)->isa->name:"nil", $r4

But that doesn't seem to work for the ARM code (and from what limited understanding of ARM code I have, it seems like those are not quite the right registers to be looking in since the arguments go into r0-r4).

I'm also going to try using the ZombiesEnabled debugging technique, but I'd really like to be able to better understand how to examine the objects or arguments in memory from just the assembly when working with ARM. I did find this very excellent guide to ARM:

http://liebela.net/arm.doc

That helps, but not enough to quite interpret what is happening from the assembly.

The actual assembly from the crash logs go something like (>>>> to indicate where GDB had the current execution line at, waiting for return from the call), if anyone has any insight into what else could be examined I'd be grateful:

objc_message_send:
0x300c8c04  <+0000>  teq    r0, #0	; 0x0
0x300c8c08  <+0004>  moveq  r1, #0	; 0x0
0x300c8c0c  <+0008>  bxeq   lr
0x300c8c10  <+0012>  stmdb  sp!, {r3, r4, r5, r6}
0x300c8c14  <+0016>  ldr    r4, [r0]
>>>0x300c8c18  <+0020>  ldr r5, [r4, #8]

__invoking__
0x3026d69c  <+0028>  ldr    r0, [r2]
0x3026d6a0  <+0032>  sub    r3, r3, #1	; 0x1
0x3026d6a4  <+0036>  str    r0, [r1]
0x3026d6a8  <+0040>  cmp    r3, #0	; 0x0
0x3026d6ac  <+0044>  add    r2, r2, #4	; 0x4
0x3026d6b0  <+0048>  add    r1, r1, #4	; 0x4
0x3026d6b4  <+0052>  bne    0x3026d69c <__invoking___+28>
0x3026d6b8  <+0056>  ldmia  sp!, {r0, r1, r2, r3}
0x3026d6bc  <+0060>  mov    lr, pc
0x3026d6c0  <+0064>  bx ip
>>>>>>0x3026d6c4  <+0068>  ldr  ip, [r7, #-4]


[NSInvocation invoke]:
....
0x3026d558  <+0096>  movs   r2, #28
0x3026d55a  <+0098>  ldrsb  r2, [r5, r2]
0x3026d55c  <+0100>  mov    r1, fp
0x3026d55e  <+0102>  str    r2, [sp, #0]
0x3026d560  <+0104>  mov    r2, r8
0x3026d562  <+0106>  adds   r3, r0, #0
0x3026d564  <+0108>  ldr    r0, [sp, #4]
0x3026d566  <+0110>  blx    0x3026d680 <__invoking___>
>>>>>0x3026d56a  <+0114>  ldr   r3, [pc, #108]	(0x3026d5d8 <-[NSInvocation invoke]+224>)
0x3026d56c  <+0116>  add    r3, pc

HandleDelegateSource:
.....
0x32bb3300  <+0064>  ldr    r0, [pc, #84]	; 0x32bb335c <HandleDelegateSource+156>
0x32bb3304  <+0068>  ldr    r1, [pc, #84]	; 0x32bb3360 <HandleDelegateSource+160>
0x32bb3308  <+0072>  ldr    r4, [pc, r0]
0x32bb330c  <+0076>  ldr    r1, [pc, r1]
0x32bb3310  <+0080>  mov    r0, r4
0x32bb3314  <+0084>  bl 0x32c019b0 <dyld_stub_objc_msgSend>
>>>>>0x32bb3318  <+0088>  mov   r0, r4
0x32bb331c  <+0092>  bl 0x32bb1dd4 <MainThreadAdoptAndRelease>

.

flag

75% accept rate

1 Answer

vote up 0 vote down

If you look at the reference information for objc_msgSend you will see that the selector is the second argument. Now it should be easier to decipher the debugger output.

objc_msgSend
Sends a message with a simple return value to an instance of a class.
id objc_msgSend(id theReceiver, SEL theSelector, ...)

Parameters
theReceiver
A pointer that points to the instance of the class that is to receive the message.
theSelector
The selector of the method that handles the message.
...
A variable argument list containing the arguments to the method.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.