Home | History | Annotate | Download | only in asm-generic

Lines Matching defs:__SI_FAULT

132 #define __SI_FAULT 0
149 #define ILL_ILLOPC (__SI_FAULT | 1)
150 #define ILL_ILLOPN (__SI_FAULT | 2)
151 #define ILL_ILLADR (__SI_FAULT | 3)
152 #define ILL_ILLTRP (__SI_FAULT | 4)
153 #define ILL_PRVOPC (__SI_FAULT | 5)
154 #define ILL_PRVREG (__SI_FAULT | 6)
155 #define ILL_COPROC (__SI_FAULT | 7)
156 #define ILL_BADSTK (__SI_FAULT | 8)
158 #define FPE_INTDIV (__SI_FAULT | 1)
159 #define FPE_INTOVF (__SI_FAULT | 2)
160 #define FPE_FLTDIV (__SI_FAULT | 3)
161 #define FPE_FLTOVF (__SI_FAULT | 4)
162 #define FPE_FLTUND (__SI_FAULT | 5)
163 #define FPE_FLTRES (__SI_FAULT | 6)
164 #define FPE_FLTINV (__SI_FAULT | 7)
165 #define FPE_FLTSUB (__SI_FAULT | 8)
167 #define SEGV_MAPERR (__SI_FAULT | 1)
168 #define SEGV_ACCERR (__SI_FAULT | 2)
169 #define SEGV_BNDERR (__SI_FAULT | 3)
170 #define SEGV_PKUERR (__SI_FAULT | 4)
172 #define BUS_ADRALN (__SI_FAULT | 1)
173 #define BUS_ADRERR (__SI_FAULT | 2)
174 #define BUS_OBJERR (__SI_FAULT | 3)
175 #define BUS_MCEERR_AR (__SI_FAULT | 4)
176 #define BUS_MCEERR_AO (__SI_FAULT | 5)
178 #define TRAP_BRKPT (__SI_FAULT | 1)
179 #define TRAP_TRACE (__SI_FAULT | 2)
180 #define TRAP_BRANCH (__SI_FAULT | 3)
181 #define TRAP_HWBKPT (__SI_FAULT | 4)