I've set up an Exception Breakpoint in XCode 4. Will it break for exceptions that originate within the Cocoa Touch framework AND are handled by the framework? I.E. Will the debugger stop for all exceptions, even if they are a natural part of the framework and handled by it internally?

My debugger keeps halting for a seemingly harmless exception from deep down in the framework and I need to know if I can safely ignore it.

link|improve this question

66% accept rate
feedback

3 Answers

The exception breakpoint is just that: a breakpoint for exceptions. This includes those within the framework. It doesn't matter whose exception it is - if it's raised, it should break.

link|improve this answer
So does the framework use exception handling? Are there places where the framework will use try/catch/finally? Are exceptions from within the framework necessarily problematic or are some of them part of the underlying flow? – 1ndivisible Aug 17 '11 at 22:05
1  
Framework will catch some of the exceptions, and sometimes you WANT to know when a silent catch has occurred. – Ivan Vučica Sep 22 '11 at 13:52
feedback

If you're like me, there are times you want to ignore particular exceptions (like Apple's intermittently buggy CMMThrowExceptionOnError, which Apple neglects to provide any feedback to my bug reports for months)

So, my not-very-efficient solution is to add the following breakpoint instead of 'Add C++ Exception Breakpoint...'

from gdb command line, enter break __cxa_throw

Then, in the XCode breakpoints editor, add the following 'Debugger Command' to this breakpoint. By substituting the offending address of $eip, you can exclude individual exceptions from your breakpoint.

silent
# go up one stack frame silently
up-silently
# in my particular app, address of CMMThrowExceptionOnError is 0x9704d22e
if ( $eip == 0x9704d22e )
   # echo gdb ignore exception\n
   #print $eip
   cont
end

If you can devise a better solution which doesn't incur the overhead of a debugger script, please let me know.

link|improve this answer
feedback

Just a short note on LLDB used by defat in Xcode 4.3 Commands have a different syntax.

set $eip = xxxx

is now

reg write tip 0x006373ec

a full map of commands is available at http://lldb.llvm.org/lldb-gdb.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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