MIPS support for Dump-Syms
Chris , As Abdu discussed, please review dump-syms and stackwalker patches.
Jim, can you take a look at this patch?
http://breakpad.appspot.com/463003/diff/1/src/common/dwarf_cfi_to_module.cc File src/common/dwarf_cfi_to_module.cc (right): http://breakpad.appspot.com/463003/diff/1/src/common/dwarf_cfi_to_module.cc#n... src/common/dwarf_cfi_to_module.cc:118: "$f28", "$f29", "$f30", "$f31", "$fcsr", "$fir" nit: the other architectures seem to have the registers on each line vertically aligned into columns. http://breakpad.appspot.com/463003/diff/1/src/common/linux/elfutils-inl.h File src/common/linux/elfutils-inl.h (right): http://breakpad.appspot.com/463003/diff/1/src/common/linux/elfutils-inl.h#new... src/common/linux/elfutils-inl.h:66: (sections[i].sh_type == SHT_MIPS_DWARF)) && This isn't right, FindElfSectionByName is a generic function. You'll want to modify the caller instead. Probably this one: http://code.google.com/p/google-breakpad/source/browse/trunk/src/common/linux... The simple fix would probably be something like ElfClass::Word section_type = elf_header->e_machine == EM_MIPS ? SHT_MIPS_DWARF : SHT_PROGBITS;