aboutsummaryrefslogtreecommitdiff
path: root/src/google_breakpad/processor
diff options
context:
space:
mode:
authorVeljko Mihailovic <veljko.mihailovic@imgtec.com>2016-04-01 18:49:03 -0400
committerMike Frysinger <vapier@chromium.org>2016-04-01 18:50:46 -0400
commit6ce752d741a50d58253749df49118f8857d7e60d (patch)
tree1788788ad76fe50e4d915d307df68b13481651e0 /src/google_breakpad/processor
parentAdd the TID to the CallStack. (diff)
downloadbreakpad-6ce752d741a50d58253749df49118f8857d7e60d.tar.xz
Support processing microdump for mips architecture
Based on changes for ARM, ARM64 and X86, the support for MIPS and MIPS64 is added in microdump. TEST=microdump_stackwalk ~/microdump-mips32.dmp symbols/ BUG=microdump_stackwalk failing for mips architectures Review URL: https://codereview.chromium.org/1731923002/
Diffstat (limited to 'src/google_breakpad/processor')
-rw-r--r--src/google_breakpad/processor/microdump.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/google_breakpad/processor/microdump.h b/src/google_breakpad/processor/microdump.h
index 051dacda..a2d5a3a6 100644
--- a/src/google_breakpad/processor/microdump.h
+++ b/src/google_breakpad/processor/microdump.h
@@ -67,6 +67,8 @@ class MicrodumpContext : public DumpContext {
virtual void SetContextARM(MDRawContextARM* arm);
virtual void SetContextARM64(MDRawContextARM64* arm64);
virtual void SetContextX86(MDRawContextX86* x86);
+ virtual void SetContextMIPS(MDRawContextMIPS* mips);
+ virtual void SetContextMIPS64(MDRawContextMIPS* mips64);
};
// This class provides access to microdump memory regions.