Home
last modified time | relevance | path

Searched refs:tf_code (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/sys/arch/vax/vax/
Dtrap.c118 tf->tf_trap, tf->tf_code, tf->tf_pc, tf->tf_psl); in trap()
128 (u_int)tf->tf_trap, (u_int)tf->tf_code, in trap()
155 if (tf->tf_code < 0) { /* Check for kernel space */ in trap()
171 if (tf->tf_code == CASMAGIC in trap()
184 tf->tf_trap, tf->tf_code, tf->tf_pc, tf->tf_psl); in trap()
189 tf->tf_pc, tf->tf_code); in trap()
201 addr = trunc_page(tf->tf_code); in trap()
202 if (!usermode && (tf->tf_code < 0)) { in trap()
239 tf->tf_pc, tf->tf_code); in trap()
301 switch (tf->tf_code) { in trap()
[all …]
Dsyscall.c74 syscallnames[tf->tf_code], tf->tf_pc, tf->tf_psl,tf->tf_sp, in syscall()
81 if ((unsigned long) tf->tf_code >= emul->e_nsysent) in syscall()
84 callp += tf->tf_code; in syscall()
99 error = sy_invoke(callp, curlwp, args, rval, tf->tf_code); in syscall()
102 "tf %p\n", syscallnames[tf->tf_code], tf->tf_pc, tf->tf_psl, in syscall()
117 tf->tf_pc -= (tf->tf_code > 63 ? 4 : 2); in syscall()
Ddb_machdep.c182 kdbprinttrap(tf->tf_trap, tf->tf_code); in kdb_trap()
207 db_trap(tf->tf_trap, tf->tf_code); in kdb_trap()
385 "psl=0x%lx\n", tf, tf->tf_trap, tf->tf_code, in db_dump_stack()
/netbsd/src/sys/arch/vax/include/
Dtrap.h100 long tf_code; /* Trap specific code */ member