Lines Matching defs:__SI_FAULT
123 #define __SI_FAULT (3 << 16)
132 #define __SI_FAULT 0
159 #define ILL_ILLOPC (__SI_FAULT|1) /* illegal opcode */
160 #define ILL_ILLOPN (__SI_FAULT|2) /* illegal operand */
161 #define ILL_ILLADR (__SI_FAULT|3) /* illegal addressing mode */
162 #define ILL_ILLTRP (__SI_FAULT|4) /* illegal trap */
163 #define ILL_PRVOPC (__SI_FAULT|5) /* privileged opcode */
164 #define ILL_PRVREG (__SI_FAULT|6) /* privileged register */
165 #define ILL_COPROC (__SI_FAULT|7) /* coprocessor error */
166 #define ILL_BADSTK (__SI_FAULT|8) /* internal stack error */
172 #define FPE_INTDIV (__SI_FAULT|1) /* integer divide by zero */
173 #define FPE_INTOVF (__SI_FAULT|2) /* integer overflow */
174 #define FPE_FLTDIV (__SI_FAULT|3) /* floating point divide by zero */
175 #define FPE_FLTOVF (__SI_FAULT|4) /* floating point overflow */
176 #define FPE_FLTUND (__SI_FAULT|5) /* floating point underflow */
177 #define FPE_FLTRES (__SI_FAULT|6) /* floating point inexact result */
178 #define FPE_FLTINV (__SI_FAULT|7) /* floating point invalid operation */
179 #define FPE_FLTSUB (__SI_FAULT|8) /* subscript out of range */
185 #define SEGV_MAPERR (__SI_FAULT|1) /* address not mapped to object */
186 #define SEGV_ACCERR (__SI_FAULT|2) /* invalid permissions for mapped object */
192 #define BUS_ADRALN (__SI_FAULT|1) /* invalid address alignment */
193 #define BUS_ADRERR (__SI_FAULT|2) /* non-existant physical address */
194 #define BUS_OBJERR (__SI_FAULT|3) /* object specific hardware error */
200 #define TRAP_BRKPT (__SI_FAULT|1) /* process breakpoint */
201 #define TRAP_TRACE (__SI_FAULT|2) /* process trace trap */