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

Unified Diff: src/processor/stackwalker.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
« no previous file with comments | « src/processor/minidump_unittest.cc ('k') | src/processor/stackwalker_mips.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/processor/stackwalker.cc
===================================================================
--- src/processor/stackwalker.cc (revision 1208)
+++ src/processor/stackwalker.cc (working copy)
@@ -53,6 +53,7 @@
#include "processor/stackwalker_x86.h"
#include "processor/stackwalker_amd64.h"
#include "processor/stackwalker_arm.h"
+#include "processor/stackwalker_mips.h"
namespace google_breakpad {
@@ -230,6 +231,12 @@
context->GetContextSPARC(),
memory, modules, frame_symbolizer);
break;
+
+ case MD_CONTEXT_MIPS:
+ cpu_stackwalker = new StackwalkerMIPS(system_info,
+ context->GetContextMIPS(),
+ memory, modules, frame_symbolizer);
+ break;
case MD_CONTEXT_ARM:
int fp_register = -1;
« no previous file with comments | « src/processor/minidump_unittest.cc ('k') | src/processor/stackwalker_mips.cc » ('j') | no next file with comments »

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