Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(2)

Unified Diff: src/client/linux/minidump_writer/linux_core_dumper.cc

Issue 614002: [MIPS] Add support for Breakpad for MIPS (Closed) Base URL: http://google-breakpad.googlecode.com/svn/trunk/src/
Patch Set: Added unittest for stackwalker_mips class and few more changes as per code review comments. Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/client/linux/minidump_writer/linux_core_dumper.cc
===================================================================
--- src/client/linux/minidump_writer/linux_core_dumper.cc (revision 1208)
+++ src/client/linux/minidump_writer/linux_core_dumper.cc (working copy)
@@ -99,6 +99,9 @@
memcpy(&stack_pointer, &info->regs.rsp, sizeof(info->regs.rsp));
#elif defined(__ARM_EABI__)
memcpy(&stack_pointer, &info->regs.ARM_sp, sizeof(info->regs.ARM_sp));
+#elif defined(__mips__)
+ stack_pointer =
+ reinterpret_cast<uint8_t*>(info->regs.regs[MD_CONTEXT_MIPS_REG_SP]);
#else
#error "This code hasn't been ported to your platform yet."
#endif
« no previous file with comments | « src/client/linux/handler/exception_handler_unittest.cc ('k') | src/client/linux/minidump_writer/linux_dumper.h » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld 1004:630ec63f810e-tainted