breakpad/src/google_breakpad/common
jimblandy c609f474a9 Breakpad: Support DWARF CFI-driven stack walking on ARM.
This patch allows the Breakpad minidump processor to use data from
STACK CFI records to generate stack traces for the ARM processor.

In the symbol dumper, we need a table mapping DWARF CFI register
numbers to their names: STACK CFI records refer to registers by name.

In the processor, we expand StackwalkerARM::GetCallerFrame to see if
there are STACK CFI records covering the callee, and then use those to
recover the caller's register values.

There's no good reason the ARM walker couldn't use the SimpleCFIWalker
interface declared in cfi_frame_info.h. Unfortunately, that interface
assumes that one can map register names to member pointers of the raw
context type, while MDRawContextARM uses an array to hold the
registers' values: C++ pointer-to-member types can't refer to elements
of member arrays. So we have to write out SimpleCFIWalker::FindCallerRegisters
in StackwalkerARM::GetCallerFrame.

We define enum MDARMRegisterNumbers in minidump_cpu_arm.h, for
convenience in referring to certain ARM registers with dedicated
purposes, like the stack pointer and the PC.

We define validity flags in StackFrameARM for all the registers, since
CFI could theoretically recover any of them. In the same vein, we
expand minidump_stackwalk.cc to print the values of all valid
callee-saves registers in the context --- and use the proper names for
special-purpose registers.

We provide unit tests that give full code and branch coverage (with
minor exceptions). We add a testing interface to StackwalkerARM that
allows us to create context frames that lack some register values.

a=jimblandy, r=mmentovai


git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@553 4c0a9323-5329-0410-9bdc-e9ce6186880e
2010-03-16 16:46:22 +00:00
..
breakpad_types.h Don't redefine __STDC_FORMAT_MACROS if it's already defined. r=mmentovai. 2008-03-04 17:33:25 +00:00
minidump_cpu_amd64.h Issue 245: refactoring minidump_format.h into architecture & platform specific files 2008-03-17 05:24:12 +00:00
minidump_cpu_arm.h Breakpad: Support DWARF CFI-driven stack walking on ARM. 2010-03-16 16:46:22 +00:00
minidump_cpu_ppc.h Fix build breaks on Solaris using Sun Studio. 2009-02-23 09:28:29 +00:00
minidump_cpu_ppc64.h Issue 245: refactoring minidump_format.h into architecture & platform specific files 2008-03-17 05:24:12 +00:00
minidump_cpu_sparc.h Issue 245: refactoring minidump_format.h into architecture & platform specific files 2008-03-17 05:24:12 +00:00
minidump_cpu_x86.h Issue 245: refactoring minidump_format.h into architecture & platform specific files 2008-03-17 05:24:12 +00:00
minidump_exception_linux.h Issue 245: refactoring minidump_format.h into architecture & platform specific files 2008-03-17 05:24:12 +00:00
minidump_exception_mac.h Issue 245: refactoring minidump_format.h into architecture & platform specific files 2008-03-17 05:24:12 +00:00
minidump_exception_solaris.h Issue 245: refactoring minidump_format.h into architecture & platform specific files 2008-03-17 05:24:12 +00:00
minidump_exception_win32.h Issue 328 - should have constant for VC++ exceptions, and stringify in MinidumpProcessor::GetCrashReason 2009-09-04 20:00:33 +00:00
minidump_format.h Basic arm cpu support for processor. r=mark at http://breakpad.appspot.com/49011 2009-12-19 21:43:53 +00:00
minidump_size.h C++ file gets a C++ comment 2007-05-31 19:49:04 +00:00