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

Lines Matching refs:__SI_FAULT

137 #define __SI_FAULT	0
164 #define ILL_ILLOPC (__SI_FAULT|1) /* illegal opcode */
165 #define ILL_ILLOPN (__SI_FAULT|2) /* illegal operand */
166 #define ILL_ILLADR (__SI_FAULT|3) /* illegal addressing mode */
167 #define ILL_ILLTRP (__SI_FAULT|4) /* illegal trap */
168 #define ILL_PRVOPC (__SI_FAULT|5) /* privileged opcode */
169 #define ILL_PRVREG (__SI_FAULT|6) /* privileged register */
170 #define ILL_COPROC (__SI_FAULT|7) /* coprocessor error */
171 #define ILL_BADSTK (__SI_FAULT|8) /* internal stack error */
177 #define FPE_INTDIV (__SI_FAULT|1) /* integer divide by zero */
178 #define FPE_INTOVF (__SI_FAULT|2) /* integer overflow */
179 #define FPE_FLTDIV (__SI_FAULT|3) /* floating point divide by zero */
180 #define FPE_FLTOVF (__SI_FAULT|4) /* floating point overflow */
181 #define FPE_FLTUND (__SI_FAULT|5) /* floating point underflow */
182 #define FPE_FLTRES (__SI_FAULT|6) /* floating point inexact result */
183 #define FPE_FLTINV (__SI_FAULT|7) /* floating point invalid operation */
184 #define FPE_FLTSUB (__SI_FAULT|8) /* subscript out of range */
190 #define SEGV_MAPERR (__SI_FAULT|1) /* address not mapped to object */
191 #define SEGV_ACCERR (__SI_FAULT|2) /* invalid permissions for mapped object */
197 #define BUS_ADRALN (__SI_FAULT|1) /* invalid address alignment */
198 #define BUS_ADRERR (__SI_FAULT|2) /* non-existent physical address */
199 #define BUS_OBJERR (__SI_FAULT|3) /* object specific hardware error */
201 #define BUS_MCEERR_AR (__SI_FAULT|4)
203 #define BUS_MCEERR_AO (__SI_FAULT|5)
209 #define TRAP_BRKPT (__SI_FAULT|1) /* process breakpoint */
210 #define TRAP_TRACE (__SI_FAULT|2) /* process trace trap */
211 #define TRAP_BRANCH (__SI_FAULT|3) /* process taken branch trap */
212 #define TRAP_HWBKPT (__SI_FAULT|4) /* hardware breakpoint/watchpoint */