Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(397)

Side by Side Diff: src/google_breakpad/common/minidump_cpu_mips.h

Issue 1418453011: [mips64] Support for mips n64 (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: Fix accidentally removed lines from Makefile.am Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/common/android/include/sys/procfs.h ('k') | src/google_breakpad/common/minidump_format.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2013, Google Inc. 1 /* Copyright (c) 2013, Google Inc.
2 * All rights reserved. 2 * All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 #define MD_CONTEXT_MIPS_DSP (MD_CONTEXT_MIPS | 0x00000008) 150 #define MD_CONTEXT_MIPS_DSP (MD_CONTEXT_MIPS | 0x00000008)
151 151
152 #define MD_CONTEXT_MIPS_FULL (MD_CONTEXT_MIPS_INTEGER | \ 152 #define MD_CONTEXT_MIPS_FULL (MD_CONTEXT_MIPS_INTEGER | \
153 MD_CONTEXT_MIPS_FLOATING_POINT | \ 153 MD_CONTEXT_MIPS_FLOATING_POINT | \
154 MD_CONTEXT_MIPS_DSP) 154 MD_CONTEXT_MIPS_DSP)
155 155
156 #define MD_CONTEXT_MIPS_ALL (MD_CONTEXT_MIPS_INTEGER | \ 156 #define MD_CONTEXT_MIPS_ALL (MD_CONTEXT_MIPS_INTEGER | \
157 MD_CONTEXT_MIPS_FLOATING_POINT \ 157 MD_CONTEXT_MIPS_FLOATING_POINT \
158 MD_CONTEXT_MIPS_DSP) 158 MD_CONTEXT_MIPS_DSP)
159 159
160 /**
161 * Breakpad defines for MIPS64
162 */
163 #define MD_CONTEXT_MIPS64 0x00080000
164 #define MD_CONTEXT_MIPS64_INTEGER (MD_CONTEXT_MIPS64 | 0x00000002)
165 #define MD_CONTEXT_MIPS64_FLOATING_POINT (MD_CONTEXT_MIPS64 | 0x00000004)
166 #define MD_CONTEXT_MIPS64_DSP (MD_CONTEXT_MIPS64 | 0x00000008)
167
168 #define MD_CONTEXT_MIPS64_FULL (MD_CONTEXT_MIPS64_INTEGER | \
169 MD_CONTEXT_MIPS64_FLOATING_POINT | \
170 MD_CONTEXT_MIPS64_DSP)
171
172 #define MD_CONTEXT_MIPS64_ALL (MD_CONTEXT_MIPS64_INTEGER | \
173 MD_CONTEXT_MIPS64_FLOATING_POINT \
174 MD_CONTEXT_MIPS64_DSP)
175
160 #endif // GOOGLE_BREAKPAD_COMMON_MINIDUMP_CPU_MIPS_H__ 176 #endif // GOOGLE_BREAKPAD_COMMON_MINIDUMP_CPU_MIPS_H__
OLDNEW
« no previous file with comments | « src/common/android/include/sys/procfs.h ('k') | src/google_breakpad/common/minidump_format.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698