Lines Matching refs:__SI_FAULT
152 #define __SI_FAULT 0 macro
180 #define ILL_ILLOPC (__SI_FAULT|1) /* illegal opcode */
181 #define ILL_ILLOPN (__SI_FAULT|2) /* illegal operand */
182 #define ILL_ILLADR (__SI_FAULT|3) /* illegal addressing mode */
183 #define ILL_ILLTRP (__SI_FAULT|4) /* illegal trap */
184 #define ILL_PRVOPC (__SI_FAULT|5) /* privileged opcode */
185 #define ILL_PRVREG (__SI_FAULT|6) /* privileged register */
186 #define ILL_COPROC (__SI_FAULT|7) /* coprocessor error */
187 #define ILL_BADSTK (__SI_FAULT|8) /* internal stack error */
193 #define FPE_INTDIV (__SI_FAULT|1) /* integer divide by zero */
194 #define FPE_INTOVF (__SI_FAULT|2) /* integer overflow */
195 #define FPE_FLTDIV (__SI_FAULT|3) /* floating point divide by zero */
196 #define FPE_FLTOVF (__SI_FAULT|4) /* floating point overflow */
197 #define FPE_FLTUND (__SI_FAULT|5) /* floating point underflow */
198 #define FPE_FLTRES (__SI_FAULT|6) /* floating point inexact result */
199 #define FPE_FLTINV (__SI_FAULT|7) /* floating point invalid operation */
200 #define FPE_FLTSUB (__SI_FAULT|8) /* subscript out of range */
206 #define SEGV_MAPERR (__SI_FAULT|1) /* address not mapped to object */
207 #define SEGV_ACCERR (__SI_FAULT|2) /* invalid permissions for mapped object */
208 #define SEGV_BNDERR (__SI_FAULT|3) /* failed address bound checks */
214 #define BUS_ADRALN (__SI_FAULT|1) /* invalid address alignment */
215 #define BUS_ADRERR (__SI_FAULT|2) /* non-existent physical address */
216 #define BUS_OBJERR (__SI_FAULT|3) /* object specific hardware error */
218 #define BUS_MCEERR_AR (__SI_FAULT|4)
220 #define BUS_MCEERR_AO (__SI_FAULT|5)
226 #define TRAP_BRKPT (__SI_FAULT|1) /* process breakpoint */
227 #define TRAP_TRACE (__SI_FAULT|2) /* process trace trap */
228 #define TRAP_BRANCH (__SI_FAULT|3) /* process taken branch trap */
229 #define TRAP_HWBKPT (__SI_FAULT|4) /* hardware breakpoint/watchpoint */