Home
last modified time | relevance | path

Searched refs:TRAPF_USERMODE (Results 1 – 15 of 15) sorted by relevance

/f-stack/freebsd/mips/include/
H A Dcpu.h69 #define TRAPF_USERMODE(framep) (((framep)->sr & MIPS_SR_KSU_USER) != 0) macro
/f-stack/freebsd/i386/include/
H A Dcpu.h54 #define TRAPF_USERMODE(framep) \ macro
/f-stack/freebsd/amd64/include/
H A Dcpu.h54 #define TRAPF_USERMODE(framep) \ macro
/f-stack/freebsd/arm/arm/
H A Dtrap-v6.c308 usermode = TRAPF_USERMODE(tf); /* Abort came from user mode? */ in abort_handler()
569 usermode = TRAPF_USERMODE(tf); in abort_fatal()
640 usermode = TRAPF_USERMODE(tf); in abort_align()
/f-stack/freebsd/x86/include/
H A Dframe.h111 #define TF_HAS_STACKREGS(tf) TRAPF_USERMODE(tf)
/f-stack/freebsd/arm/include/
H A Dcpu.h53 #define TRAPF_USERMODE(frame) ((frame->tf_spsr & PSR_MODE) == PSR_USR32_MODE) macro
/f-stack/freebsd/amd64/amd64/
H A Dtrap.c239 if (TRAPF_USERMODE(frame)) in trap()
261 if (TRAPF_USERMODE(frame)) { in trap()
865 TRAPF_USERMODE(frame) ? "user" : "kernel");
1151 if (!TRAPF_USERMODE(td->td_frame)) { in amd64_syscall()
/f-stack/freebsd/arm64/include/
H A Dcpu.h49 #define TRAPF_USERMODE(tfp) (((tfp)->tf_spsr & PSR_M_MASK) == PSR_M_EL0t) macro
/f-stack/freebsd/i386/i386/
H A Dtrap.c284 if ((frame->tf_eflags & PSL_I) == 0 && TRAPF_USERMODE(frame) && in trap()
298 if (TRAPF_USERMODE(frame) && (curpcb->pcb_flags & PCB_VM86CALL) == 0) { in trap()
1116 if (!(TRAPF_USERMODE(frame) && in syscall()
H A Ddb_trace.c422 if (!TRAPF_USERMODE(tf)) in db_nextframe()
/f-stack/freebsd/kern/
H A Dsubr_trap.c214 KASSERT(TRAPF_USERMODE(framep), ("ast in kernel mode")); in ast()
H A Dkern_clocksource.c172 usermode = TRAPF_USERMODE(frame); in handleevents()
H A Dsubr_intr.c331 if (pmc_hook && TRAPF_USERMODE(tf) && in intr_irq_handler()
/f-stack/freebsd/vm/
H A Dvm_glue.c506 if (TRAPF_USERMODE(frame)) in intr_prof_stack_use()
/f-stack/freebsd/mips/mips/
H A Dtrap.c539 if (TRAPF_USERMODE(trapframe)) { in trap()