I'm trying to debug a SIGSEGV crash in Chrome. Running through GDB, and single stepping (using the gdb command n), I see that the crash occurs when calling -[NSApplication run] (). Here is the stack trace just before the crash:
#0 0x95706cb1 in -[NSApplication run] ()
#1 0x037255ee in ChromeMain ()
#2 0x03723fd4 in ChromeMain ()
#3 0x037b39f4 in ChromeMain ()
#4 0x03806aa9 in ChromeMain ()
#5 0x054375c3 in ChromeMain ()
#6 0x04aabd0b in ChromeMain ()
#7 0x04aaf6e7 in ChromeMain ()
#8 0x04aa9ec4 in ChromeMain ()
#9 0x073c8c35 in ChromeMain ()
#10 0x073ca242 in ChromeMain ()
#11 0x073c822a in ChromeMain ()
#12 0x01041ce4 in ChromeMain ()
#13 0x00001dd9 in _mh_execute_header ()
#14 0x00001d85 in _mh_execute_header ()
Now it seems that -[NSApplication run] () is a very generic function, giving me no information. I've also tried stepping one instruction at a time (using the gdb command si), but subroutines names are not given.
How can I gain further insight in this crash? I have also run Chrome with AddressSanitizer and here is what I get:
ASAN:SIGSEGV
==5087== ERROR: AddressSanitizer crashed on unknown address 0x00000008 (pc 0x081ac88a sp 0xbfff21e0 bp 0xbfff21f8 T0)
AddressSanitizer can not provide additional info. ABORTING
What strategy should I adopt to understand this crash further?
disass 0x95706cb1, and see what instructions were being executed around that instruction pointer. – user315052 Aug 30 '12 at 1:20