Lines Matching refs:USER

103 #define	USER	0x10000		/* user-mode flag added to trap type */  macro
209 ti.trap_type = type & ~USER; in die()
529 type |= USER; in trap()
534 case T_PGFLT + USER: in trap()
550 case T_PGFLT + USER: in trap()
552 case T_SGLSTP + USER: in trap()
553 case T_BPTFLT + USER: in trap()
568 if (type & USER) { in trap()
572 type & ~USER); in trap()
576 siginfo.si_trapno = type & ~USER; in trap()
736 case T_PGFLT + USER: /* user page fault */ in trap()
893 case T_ILLINST + USER: /* invalid opcode fault */ in trap()
925 case T_ZERODIV + USER: /* integer divide by zero */ in trap()
934 case T_OVFLW + USER: /* integer overflow */ in trap()
949 case T_NOEXTFLT + USER: /* math coprocessor not available */ in trap()
963 case T_EXTERRFLT + USER: /* x87 floating point exception pending */ in trap()
974 case T_SIMDFPE + USER: /* SSE and SSE2 exceptions */ in trap()
987 siginfo.si_trapno = type & ~USER; in trap()
1054 case T_NMIFLT + USER: /* NMI interrupt */ in trap()
1153 case T_SEGFLT + USER: /* segment not present fault */ in trap()
1154 case T_GPFLT + USER: /* general protection violation */ in trap()
1159 if (type == T_SEGFLT + USER) in trap()
1162 if ((p->p_ldt == NULL && type == T_GPFLT + USER) || in trap()
1163 type == T_SEGFLT + USER) { in trap()
1210 case T_BOUNDFLT + USER: /* bound fault */ in trap()
1211 case T_STKFLT + USER: /* stack fault */ in trap()
1212 case T_TSSFLT + USER: /* invalid TSS fault */ in trap()
1221 case T_ALIGNMENT + USER: /* user alignment error (486) */ in trap()
1231 case T_SGLSTP + USER: /* single step/hw breakpoint exception */ in trap()
1258 case T_BPTFLT + USER: /* breakpoint trap */ in trap()
1286 case T_AST + USER: /* profiling, resched, h/w error pseudo trap */ in trap()
1319 ASSERT(type & USER); in trap()
1441 ASSERT(type & USER); in trap()
1471 ASSERT(!(type & USER)); in trap()
1595 type &= ~USER; in showregs()