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

Lines Matching defs:__SI_FAULT

147 #define __SI_FAULT 0
169 #define ILL_ILLOPC (__SI_FAULT | 1)
170 #define ILL_ILLOPN (__SI_FAULT | 2)
171 #define ILL_ILLADR (__SI_FAULT | 3)
172 #define ILL_ILLTRP (__SI_FAULT | 4)
174 #define ILL_PRVOPC (__SI_FAULT | 5)
175 #define ILL_PRVREG (__SI_FAULT | 6)
176 #define ILL_COPROC (__SI_FAULT | 7)
177 #define ILL_BADSTK (__SI_FAULT | 8)
180 #define FPE_INTDIV (__SI_FAULT | 1)
181 #define FPE_INTOVF (__SI_FAULT | 2)
182 #define FPE_FLTDIV (__SI_FAULT | 3)
184 #define FPE_FLTOVF (__SI_FAULT | 4)
185 #define FPE_FLTUND (__SI_FAULT | 5)
186 #define FPE_FLTRES (__SI_FAULT | 6)
187 #define FPE_FLTINV (__SI_FAULT | 7)
189 #define FPE_FLTSUB (__SI_FAULT | 8)
191 #define SEGV_MAPERR (__SI_FAULT | 1)
192 #define SEGV_ACCERR (__SI_FAULT | 2)
195 #define BUS_ADRALN (__SI_FAULT | 1)
196 #define BUS_ADRERR (__SI_FAULT | 2)
197 #define BUS_OBJERR (__SI_FAULT | 3)
199 #define BUS_MCEERR_AR (__SI_FAULT | 4)
200 #define BUS_MCEERR_AO (__SI_FAULT | 5)
202 #define TRAP_BRKPT (__SI_FAULT | 1)
204 #define TRAP_TRACE (__SI_FAULT | 2)
205 #define TRAP_BRANCH (__SI_FAULT | 3)
206 #define TRAP_HWBKPT (__SI_FAULT | 4)