Lines Matching refs:USER

105 #define	USER	0x10000		/* user-mode flag added to trap type */  macro
211 ti.trap_type = type & ~USER; in die()
556 type |= USER; in trap()
561 case T_PGFLT + USER: in trap()
580 case T_PGFLT + USER: in trap()
582 case T_SGLSTP + USER: in trap()
583 case T_BPTFLT + USER: in trap()
598 if (type & USER) { in trap()
602 type & ~USER); in trap()
606 siginfo.si_trapno = type & ~USER; in trap()
751 case T_PGFLT + USER: /* user page fault */ in trap()
930 case T_ILLINST + USER: /* invalid opcode fault */ in trap()
964 case T_ZERODIV + USER: /* integer divide by zero */ in trap()
973 case T_OVFLW + USER: /* integer overflow */ in trap()
982 case T_NOEXTFLT + USER: /* math coprocessor not available */ in trap()
1001 type |= USER; in trap()
1004 case T_EXTOVRFLT + USER: /* extension overrun fault */ in trap()
1023 type |= USER; in trap()
1027 case T_EXTERRFLT + USER: /* x87 floating point exception pending */ in trap()
1038 case T_SIMDFPE + USER: /* SSE and SSE2 exceptions */ in trap()
1051 siginfo.si_trapno = type & ~USER; in trap()
1141 case T_NMIFLT + USER: /* NMI interrupt */ in trap()
1240 case T_SEGFLT + USER: /* segment not present fault */ in trap()
1241 case T_GPFLT + USER: /* general protection violation */ in trap()
1246 if (type == T_SEGFLT + USER) in trap()
1249 if ((p->p_ldt == NULL && type == T_GPFLT + USER) || in trap()
1250 type == T_SEGFLT + USER) { in trap()
1297 case T_BOUNDFLT + USER: /* bound fault */ in trap()
1298 case T_STKFLT + USER: /* stack fault */ in trap()
1299 case T_TSSFLT + USER: /* invalid TSS fault */ in trap()
1308 case T_ALIGNMENT + USER: /* user alignment error (486) */ in trap()
1318 case T_SGLSTP + USER: /* single step/hw breakpoint exception */ in trap()
1345 case T_BPTFLT + USER: /* breakpoint trap */ in trap()
1373 case T_AST + USER: /* profiling, resched, h/w error pseudo trap */ in trap()
1406 ASSERT(type & USER); in trap()
1517 ASSERT(type & USER); in trap()
1551 ASSERT(!(type & USER)); in trap()
1675 type &= ~USER; in showregs()