| OLD | NEW |
| 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 Loading... |
| 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__ |
| OLD | NEW |