General
- Break on szone_error not working [permalink]
Sometimes when you have memory corruption issues, the malloc library happily informs you:Borkdoku(11062,0xcec0600) malloc: *** error for object 0xd109010: incorrect checksum for freed object - object was probably modified after being freed, break at szone_error to debug
Which is fine and dandy, but it lies. I've never gottenszone_errorto actually do anything. Try breaking onmalloc_printfinstead. - Breaking on exceptions [permalink]
It can be annoying tracking down the cause of thrown exceptions in Cocoa. you get a notice like2007-05-05 17:18:00.702 QueenStitcher[2804:117] *** Assertion failure in -[NSColorWell setColor:], NSColorWell.m:497, u suk l0s3r, and then the runloop happily runs again, giving you no clue where the problem is. I tellgdbto always break on Cocoa exceptions:fb -[NSException raise] fb objc_exception_throw()
For maximal enjoyment, add these two lines to your~/.gdbinitfile, so they'll get set no matter how you invokegdb(no need to add these to every single project, for instance).I've been told VoiceOver uses exceptions heavily, so if you're doing VoiceOver development, these breaks may cause you pain.
- Displaying four-character ints [permalink]
Old-school Mac programming (and Quicktime, and other places) use four-character ints, things like'bork'. You can have gdb print them out if you need to look at one or two of them:(gdb) print/T 1936746868 $4 = 'spit'
(thanks to Daniel Jalkut for the print/T trick) - Finding 'self' on Intel [permalink]
(gdb) po *(int*)($ebp+8) - Ignoring signals [permalink]
(gdb) handle SIGTRAP nostopThe signal still goes to your program. Another handy option is 'ignore' to prevent it coming to the program. Also there is 'print' to print a message go on.
- Printing method arguments [permalink]
If you've hit a breakpoint on a method that doesn't have debug symbols, you can sometimes get useful information by looking in the processor registers. Arguments start in$r3and go up from there. For Objective-C method sends,$r3has 'self', and$r4has the name of the method. Subsequent arguments are in$5and so on.(gdb) print (char*) $r4 $5 = 0x90874160 "drawRect:" (gdb) po $r5 <BWStitchView: 0x1a6670>
- Printing object retain count in gdb [permalink]
In the gdb console:(gdb) print (int)[theObject retainCount]If you're expecting to have an excessively high number of retains, you can use
(unsigned int)in the cast. I find(int)a skootch faster to type. - Printing wide character strings [permalink]
gdb won't by default let you print wide character strings. Here is a little bit of gdb code that'll let you print them. In case that page moves, here is the relevant stuff. Paste this into your.gdbinitand then you can usewchar_print:define wchar_print echo " set $i = 0 while (1 == 1) set $c = (char)(($arg0)[$i++]) if ($c == '/0') loop_break end printf "%c", $c end echo " end document wchar_print wchar_print <wstr> Print ASCII part of <wstr>, which is a wide character string of type wchar_t*. end - Seeing functions and selectors [permalink]
info selectorswill show you all of the selectors in the application's symbol table.info functionswill show you all of the functions. You can supply regular expressions to limit the output. - Using libgmalloc in gdb [permalink]
libgmallocputs guard pages at the end of malloc'd blocks of memory, letting you catch buffer overruns. (This will hugely inflate your program's working set, and may lead to swapping) To turn onlibgmallocin gdb, do this:(gdb) set env DYLD_INSERT_LIBRARIES /usr/lib/libgmalloc.dylib
- calling objective-C methods in gdb [permalink]
To call an Objective-C method in the gdb console, you have to cast the return type (since gdb doesn't really know what the return value is):(gdb) call (void)[textField setStringValue: @"Bork"]
Hacks
- Loading a bundle into a running program [permalink]
Sometimes it's handy to load a bundle into a running app to do some poseAsClass: for doing some debugging or reverse engineering. Make a Cocoa bundle which has the code you want to load, then do:(gdb) call (id) objc_getClass("NSBundle") $1 = (struct objc_object *) 0xa0a051d8 gdb) call (id)[$1 bundleWithPath:@"/blah/blah/PoseAsClassBundle.bundle"] $2 = (struct objc_object *) 0x51467e0 (gdb) call (BOOL)[$2 load] Reading symbols for shared libraries . done
一个挺好的网站:http://www.borkware.com/quickies/
本文汇总了使用GDB进行调试的各种技巧,包括处理内存错误、显示四字符整数、打印宽字符字符串等,并介绍了如何利用GDB进行更深入的调试工作,如调用Objective-C方法及加载动态库。
7293

被折叠的 条评论
为什么被折叠?



