Searched refs:T_USER (Results 1 - 25 of 27) sorted by relevance

12

/netbsd-6-1-5-RELEASE/sys/arch/mips/mips/
H A Dkgdb_machdep.c150 case T_TLB_MOD+T_USER:
153 case T_TLB_LD_MISS+T_USER:
154 case T_TLB_ST_MISS+T_USER:
158 case T_ADDR_ERR_LD+T_USER: /* misaligned or kseg access */
159 case T_ADDR_ERR_ST+T_USER: /* misaligned or kseg access */
160 case T_BUS_ERR_IFETCH+T_USER: /* BERR asserted to CPU */
161 case T_BUS_ERR_LD_ST+T_USER: /* BERR asserted to CPU */
165 case T_BREAK+T_USER:
168 case T_RES_INST+T_USER:
169 case T_COP_UNUSABLE+T_USER
[all...]
H A Dtrap.c175 type |= T_USER;
294 case T_TLB_MOD+T_USER: {
334 if (type & T_USER)
356 case T_TLB_LD_MISS+T_USER:
359 case T_TLB_ST_MISS+T_USER:
384 if (type & T_USER) {
457 if (type & T_USER) {
462 if ((type & T_USER) == 0)
480 ksi.ksi_trap = type & ~T_USER;
507 case T_ADDR_ERR_LD+T_USER
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/x86/include/
H A Dtrap.h65 #define T_USER 0x100 macro
/netbsd-6-1-5-RELEASE/sys/arch/m68k/include/
H A Dtrap.h64 #define T_USER 0x80 /* user-mode flag or'ed with type */ macro
/netbsd-6-1-5-RELEASE/sys/arch/mips/include/
H A Dtrap.h72 #define T_USER 0x20 /* user-mode flag or'ed with type */ macro
/netbsd-6-1-5-RELEASE/sys/arch/sun2/sun2/
H A Dtrap.c264 ksi.ksi_trap = type & ~T_USER;
269 type |= T_USER;
309 type &= ~T_USER;
333 case T_BUSERR|T_USER: /* bus error */
334 case T_ADDRERR|T_USER: /* address error */
337 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
342 case T_FMTERR|T_USER: /* do all RTE errors come in as T_USER? */
350 type |= T_USER;
365 case T_COPERR|T_USER
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/sun3/sun3/
H A Dtrap.c272 ksi.ksi_trap = type & ~T_USER;
275 type |= T_USER;
315 type &= ~T_USER;
339 case T_BUSERR|T_USER: /* bus error */
340 case T_ADDRERR|T_USER: /* address error */
343 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
348 case T_FMTERR|T_USER: /* do all RTE errors come in as T_USER? */
356 type |= T_USER;
371 case T_COPERR|T_USER
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/i386/i386/
H A Dtrap.c273 printf(" in %s mode\n", (type & T_USER) ? "user" : "supervisor");
344 type |= T_USER;
496 case T_PROTFLT|T_USER: /* protection fault */
497 case T_TSSFLT|T_USER:
498 case T_SEGNPFLT|T_USER:
499 case T_STKFLT|T_USER:
500 case T_ALIGNFLT|T_USER:
505 case T_SEGNPFLT|T_USER:
506 case T_STKFLT|T_USER:
510 case T_TSSFLT|T_USER
[all...]
H A Ddb_interface.c175 db_printf("kernel: %s trap ", (type & T_USER) ? "user" : "supervisor");
176 type &= ~T_USER;
/netbsd-6-1-5-RELEASE/sys/arch/amd64/amd64/
H A Dtrap.c241 type |= T_USER;
275 printf(" in %s mode\n", (type & T_USER) ? "user" : "supervisor");
384 case T_PROTFLT|T_USER: /* protection fault */
385 case T_TSSFLT|T_USER:
386 case T_SEGNPFLT|T_USER:
387 case T_STKFLT|T_USER:
388 case T_ALIGNFLT|T_USER:
395 ksi.ksi_trap = type & ~T_USER;
398 case T_SEGNPFLT|T_USER:
399 case T_STKFLT|T_USER
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/vax/vax/
H A Dtrap.c114 type |= T_USER;
145 case T_TRANSFLT|T_USER:
161 case T_PTELEN|T_USER: /* Page table length exceeded */
162 case T_ACCFLT|T_USER:
278 case T_BPTFLT|T_USER:
282 case T_TRCTRAP|T_USER:
288 case T_PRIVINFLT|T_USER:
292 case T_RESADFLT|T_USER:
296 case T_RESOPFLT|T_USER:
301 case T_XFCFLT|T_USER
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/amiga/amiga/
H A Dtrap.c238 type &= ~T_USER;
292 ksi.ksi_trap = type & ~T_USER;
296 * 1. (type & T_USER) == 0 and
498 if ((type & T_USER) == 0)
526 ksi.ksi_trap = type & ~T_USER;
529 type |= T_USER;
561 case T_BUSERR|T_USER:
562 case T_ADDRERR|T_USER:
565 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
571 case T_ILLINST|T_USER
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/hppa/hppa/
H A Dtrap.c364 p->p_pid, p->p_comm, type & ~T_USER);
448 if ((type & ~T_USER) == T_INTERRUPT)
504 trapnum = type & ~T_USER;
522 if ((type & T_USER) != 0)
597 case T_NONEXIST|T_USER:
605 case T_RECOVERY|T_USER:
636 case T_EMULATION | T_USER:
672 case T_HPMC | T_USER:
679 if (type & T_USER) {
699 case T_IBREAK | T_USER
[all...]
H A Ddb_trace.c178 ktf, (tf.tf_flags & T_USER)? " from user" :
/netbsd-6-1-5-RELEASE/sys/arch/x68k/x68k/
H A Dtrap.c276 ksi.ksi_trap = type & ~T_USER;
279 type |= T_USER;
290 (type & T_USER) ? "user" : "kernel", fp->f_pc);
317 type &= ~T_USER;
342 case T_BUSERR|T_USER: /* bus error */
343 case T_ADDRERR|T_USER: /* address error */
346 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
351 case T_FMTERR|T_USER: /* do all RTE errors come in as T_USER? */
359 type |= T_USER;
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/next68k/next68k/
H A Dtrap.c283 ksi.ksi_trap = type & ~T_USER;
286 type |= T_USER;
304 (type & T_USER) ? "user" : "kernel", fp->f_pc);
325 type &= ~T_USER;
350 case T_BUSERR|T_USER: /* bus error */
351 case T_ADDRERR|T_USER: /* address error */
354 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
359 case T_FMTERR|T_USER: /* do all RTE errors come in as T_USER? */
367 type |= T_USER;
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/luna68k/luna68k/
H A Dtrap.c243 ksi.ksi_trap = type & ~T_USER;
246 type |= T_USER;
257 (type & T_USER) ? "user" : "kernel", fp->f_pc);
284 type &= ~T_USER;
308 case T_BUSERR|T_USER: /* bus error */
309 case T_ADDRERR|T_USER: /* address error */
312 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
317 case T_FMTERR|T_USER: /* do all RTE errors come in as T_USER? */
325 type |= T_USER;
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/cesfic/cesfic/
H A Dtrap.c277 ksi.ksi_trap = type & ~T_USER;
280 type |= T_USER;
291 (type & T_USER) ? "user" : "kernel", fp->f_pc);
318 type &= ~T_USER;
343 case T_BUSERR|T_USER: /* bus error */
344 case T_ADDRERR|T_USER: /* address error */
347 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
352 case T_FMTERR|T_USER: /* do all RTE errors come in as T_USER? */
360 type |= T_USER;
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/hp300/hp300/
H A Dtrap.c269 ksi.ksi_trap = type & ~T_USER;
272 type |= T_USER;
283 (type & T_USER) ? "user" : "kernel", fp->f_pc);
310 type &= ~T_USER;
335 case T_BUSERR|T_USER: /* bus error */
336 case T_ADDRERR|T_USER: /* address error */
339 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
344 case T_FMTERR|T_USER: /* do all RTE errors come in as T_USER? */
352 type |= T_USER;
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/mac68k/mac68k/
H A Dtrap.c262 ksi.ksi_trap = type & ~T_USER;
265 type |= T_USER;
277 (type & T_USER) ? "user" : "kernel", fp->f_pc);
304 type &= ~T_USER;
327 case T_BUSERR|T_USER: /* Bus error */
328 case T_ADDRERR|T_USER: /* Address error */
331 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
335 case T_ILLINST|T_USER: /* Illegal instruction fault */
336 case T_PRIVINST|T_USER: /* Privileged instruction fault */
340 ksi.ksi_code = (type == (T_PRIVINST|T_USER))
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/atari/atari/
H A Dtrap.c260 (type & T_USER) ? "user" : "kernel", fp->f_pc);
292 type &= ~T_USER;
341 ksi.ksi_trap = type & ~T_USER;
348 type |= T_USER;
367 case T_BUSERR|T_USER:
368 case T_ADDRERR|T_USER:
371 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
383 case T_FMTERR|T_USER: /* do all RTE errors come in as T_USER? */
389 type |= T_USER;
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/news68k/news68k/
H A Dtrap.c266 ksi.ksi_trap = type & ~T_USER;
269 type |= T_USER;
280 (type & T_USER) ? "user" : "kernel", fp->f_pc);
307 type &= ~T_USER;
332 case T_BUSERR|T_USER: /* bus error */
333 case T_ADDRERR|T_USER: /* address error */
336 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
341 case T_FMTERR|T_USER: /* do all RTE errors come in as T_USER? */
349 type |= T_USER;
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/mvme68k/mvme68k/
H A Dtrap.c296 ksi.ksi_trap = type & ~T_USER;
299 type |= T_USER;
317 (type & T_USER) ? "user" : "kernel", fp->f_pc);
338 type &= ~T_USER;
362 case T_BUSERR|T_USER: /* bus error */
363 case T_ADDRERR|T_USER: /* address error */
366 ksi.ksi_code = (type == (T_BUSERR|T_USER)) ?
371 case T_FMTERR|T_USER: /* do all RTE errors come in as T_USER? */
379 type |= T_USER;
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/vax/include/
H A Dtrap.h80 #define T_USER 0x100 macro
/netbsd-6-1-5-RELEASE/sys/arch/hppa/include/
H A Dtrap.h74 #define T_USER (1 << (31 - T_USER_POS)) macro

Completed in 392 milliseconds

12