Lines Matching refs:ucode
222 int pf, signo, ucode; in trap() local
319 ucode = ILL_PRVOPC; in trap()
330 ucode = TRAP_BRKPT; in trap()
337 ucode = TRAP_TRACE; in trap()
350 ucode = npxtrap_x87(); in trap()
351 if (ucode == -1) in trap()
364 ucode = 0; /* XXXKIB: better code ? */ in trap()
374 ucode = (type == T_PROTFLT) ? BUS_OBJERR : BUS_ADRERR; in trap()
378 ucode = BUS_ADRERR; in trap()
382 ucode = BUS_OBJERR; in trap()
386 ucode = BUS_ADRALN; in trap()
391 ucode = BUS_OBJERR; in trap()
396 pf = trap_pfault(frame, true, eva, &signo, &ucode); in trap()
415 ucode = FPE_INTDIV; in trap()
436 ucode = FPE_INTOVF; in trap()
441 ucode = FPE_FLTSUB; in trap()
454 ucode = 0; in trap()
458 ucode = ILL_COPROC; in trap()
463 ucode = npxtrap_sse(); in trap()
464 if (ucode == -1) in trap()
699 ksi.ksi_code = ucode; in trap()
706 p->p_pid, p->p_comm, signo, frame->tf_err, ucode, type, in trap()
742 int *signo, int *ucode) in trap_pfault() argument
750 MPASS(!usermode || (signo != NULL && ucode != NULL)); in trap_pfault()
810 *ucode = ILL_PRVOPC; in trap_pfault()
817 *ucode = SEGV_MAPERR; in trap_pfault()
856 rv = vm_fault_trap(map, eva, ftype, VM_FAULT_NORMAL, signo, ucode); in trap_pfault()