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

Side by Side Diff: common/android/include/sys/user.h

Issue 9714003: Fix breakpad on mips and x86_64 for the NDK r10c update. Base URL: https://chromium.googlesource.com/external/google-breakpad/src.git@master
Patch Set: Review comment Created 10 years, 5 months ago
Left:
Right:
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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012, Google Inc. 1 // Copyright (c) 2012, 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 12 matching lines...) Expand all
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 29
30 #ifndef GOOGLE_BREAKPAD_COMMON_ANDROID_INCLUDE_SYS_USER_H 30 #ifndef GOOGLE_BREAKPAD_COMMON_ANDROID_INCLUDE_SYS_USER_H
31 #define GOOGLE_BREAKPAD_COMMON_ANDROID_INCLUDE_SYS_USER_H 31 #define GOOGLE_BREAKPAD_COMMON_ANDROID_INCLUDE_SYS_USER_H
32 32
33 // The purpose of this file is to glue the mismatching headers (Android NDK vs
34 // glibc) and therefore avoid doing otherwise awkward #ifdefs in the code.
35 // The following quirks are currently handled by this file:
36 // - MIPS: Keep using forked definitions of user.h structs. The definition in
37 // the NDK is completely different.
38 // Internal bug b/18097715
39 // - i386: Use the Android NDK but alias user_fxsr_struct > user_fpxregs_struct.
40 // - Other platforms: Just use the Android NDK unchanged.
41
42 #ifdef __mips__
43 #ifdef __cplusplus
44 extern "C" {
45 #endif // __cplusplus
46
47 #define EF_REG0 6
48 #define EF_REG1 7
49 #define EF_REG2 8
50 #define EF_REG3 9
51 #define EF_REG4 10
52 #define EF_REG5 11
53 #define EF_REG6 12
54 #define EF_REG7 13
55 #define EF_REG8 14
56 #define EF_REG9 15
57 #define EF_REG10 16
58 #define EF_REG11 17
59 #define EF_REG12 18
60 #define EF_REG13 19
61 #define EF_REG14 20
62 #define EF_REG15 21
63 #define EF_REG16 22
64 #define EF_REG17 23
65 #define EF_REG18 24
66 #define EF_REG19 25
67 #define EF_REG20 26
68 #define EF_REG21 27
69 #define EF_REG22 28
70 #define EF_REG23 29
71 #define EF_REG24 30
72 #define EF_REG25 31
73
74 /*
75 * k0/k1 unsaved
76 */
77 #define EF_REG26 32
78 #define EF_REG27 33
79 #define EF_REG28 34
80 #define EF_REG29 35
81 #define EF_REG30 36
82 #define EF_REG31 37
83
84 /*
85 * Saved special registers
86 */
87 #define EF_LO 38
88 #define EF_HI 39
89 #define EF_CP0_EPC 40
90 #define EF_CP0_BADVADDR 41
91 #define EF_CP0_STATUS 42
92 #define EF_CP0_CAUSE 43
93
94 struct user_regs_struct {
95 unsigned long long regs[32];
96 unsigned long long lo;
97 unsigned long long hi;
98 unsigned long long epc;
99 unsigned long long badvaddr;
100 unsigned long long status;
101 unsigned long long cause;
102 };
103
104 struct user_fpregs_struct {
anton 2014/10/23 15:39:12 incorrect indentation
fdegans 2014/10/23 15:43:54 Done.
105 unsigned long long regs[32];
106 unsigned int fpcsr;
107 unsigned int fir;
108 };
109
110 #ifdef __cplusplus
111 } // extern "C"
112 #endif // __cplusplus
113
114 #else // __mips__
115
33 #include_next <sys/user.h> 116 #include_next <sys/user.h>
34 117
35 // This struct is defined under a different name in the Android NDK.
36 #ifdef __i386__ 118 #ifdef __i386__
37 #ifdef __cplusplus 119 #ifdef __cplusplus
38 extern "C" { 120 extern "C" {
39 #endif // __cplusplus 121 #endif // __cplusplus
40 typedef struct user_fxsr_struct user_fpxregs_struct; 122 typedef struct user_fxsr_struct user_fpxregs_struct;
41 #ifdef __cplusplus 123 #ifdef __cplusplus
42 } // extern "C" 124 } // extern "C"
43 #endif // __cplusplus 125 #endif // __cplusplus
44 #endif // __i386__ 126 #endif // __i386__
127
128 #endif // __mips__
45 129
46 #endif // GOOGLE_BREAKPAD_COMMON_ANDROID_INCLUDE_SYS_USER_H 130 #endif // GOOGLE_BREAKPAD_COMMON_ANDROID_INCLUDE_SYS_USER_H
OLDNEW

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