Home
last modified time | relevance | path

Searched refs:framep (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/i386/include/
H A Dcpu.h54 #define TRAPF_USERMODE(framep) \ argument
55 ((ISPL((framep)->tf_cs) == SEL_UPL) || ((framep)->tf_eflags & PSL_VM))
56 #define TRAPF_PC(framep) ((framep)->tf_eip) argument
/f-stack/freebsd/mips/include/
H A Dcpu.h69 #define TRAPF_USERMODE(framep) (((framep)->sr & MIPS_SR_KSU_USER) != 0) argument
70 #define TRAPF_PC(framep) ((framep)->pc) argument
/f-stack/freebsd/amd64/include/
H A Dcpu.h54 #define TRAPF_USERMODE(framep) \ argument
55 (ISPL((framep)->tf_cs) == SEL_UPL)
56 #define TRAPF_PC(framep) ((framep)->tf_rip) argument
/f-stack/freebsd/kern/
H A Dsubr_trap.c202 ast(struct trapframe *framep) in ast() argument
214 KASSERT(TRAPF_USERMODE(framep), ("ast in kernel mode")); in ast()
218 td->td_frame = framep; in ast()
245 PMC_CALL_HOOK_UNLOCKED(td, PMC_FN_USER_CALLCHAIN_SOFT, (void *) framep); in ast()
363 userret(td, framep); in ast()
/f-stack/freebsd/sys/
H A Dproc.h1063 void ast(struct trapframe *framep);