/src/sys/arch/alpha/alpha/ |
core_machdep.c | 58 struct md_coredump cpustate; local in function:cpu_coredump 65 chdr->c_cpusize = sizeof(cpustate); 71 cpustate.md_tf = *l->l_md.md_tf; 72 cpustate.md_tf.tf_regs[FRAME_SP] = alpha_pal_rdusp(); /* XXX */ 74 cpustate.md_fpstate = ((struct pcb *)lwp_getpcb(l))->pcb_fp; 76 memset(&cpustate.md_fpstate, 0, sizeof(cpustate.md_fpstate)); 88 &cpustate, sizeof(cpustate)), ENOSYS, error);
|
core_machdep.c | 58 struct md_coredump cpustate; local in function:cpu_coredump 65 chdr->c_cpusize = sizeof(cpustate); 71 cpustate.md_tf = *l->l_md.md_tf; 72 cpustate.md_tf.tf_regs[FRAME_SP] = alpha_pal_rdusp(); /* XXX */ 74 cpustate.md_fpstate = ((struct pcb *)lwp_getpcb(l))->pcb_fp; 76 memset(&cpustate.md_fpstate, 0, sizeof(cpustate.md_fpstate)); 88 &cpustate, sizeof(cpustate)), ENOSYS, error);
|
/src/sys/arch/mips/mips/ |
core_machdep.c | 72 struct cpustate { struct in function:cpu_coredump 75 } cpustate; local in function:cpu_coredump 81 chdr->c_cpusize = sizeof(struct cpustate); 87 cpustate.tf = *l->l_md.md_utf; 88 cpustate.fpregs = ((struct pcb *)lwp_getpcb(l))->pcb_fpregs; 100 &cpustate, chdr->c_cpusize), ENOSYS, error);
|
core_machdep.c | 72 struct cpustate { struct in function:cpu_coredump 75 } cpustate; local in function:cpu_coredump 81 chdr->c_cpusize = sizeof(struct cpustate); 87 cpustate.tf = *l->l_md.md_utf; 88 cpustate.fpregs = ((struct pcb *)lwp_getpcb(l))->pcb_fpregs; 100 &cpustate, chdr->c_cpusize), ENOSYS, error);
|
netbsd32_machdep.c | 273 struct cpustate { struct in function:cpu_coredump32 276 } cpustate; local in function:cpu_coredump32 282 chdr->c_cpusize = sizeof(struct cpustate); 290 cpustate.frame = *l->l_md.md_utf; 291 cpustate.fpregs = pcb->pcb_fpregs; 303 &cpustate, chdr->c_cpusize), ENOSYS, error);
|
netbsd32_machdep.c | 273 struct cpustate { struct in function:cpu_coredump32 276 } cpustate; local in function:cpu_coredump32 282 chdr->c_cpusize = sizeof(struct cpustate); 290 cpustate.frame = *l->l_md.md_utf; 291 cpustate.fpregs = pcb->pcb_fpregs; 303 &cpustate, chdr->c_cpusize), ENOSYS, error);
|
/src/sys/arch/riscv/riscv/ |
core_machdep.c | 65 struct cpustate { struct in function:CORENAME 68 } cpustate; local in function:CORENAME 74 chdr->c_cpusize = sizeof(struct cpustate); 84 cpustate.tf.tf_reg[i] = tf->tf_reg[i]; 86 cpustate.tf.tf_pc = tf->tf_pc; 87 cpustate.tf.tf_tval = tf->tf_tval; 88 cpustate.tf.tf_cause = tf->tf_cause; 89 cpustate.tf.tf_sr = tf->tf_sr; 91 cpustate.fpregs = ((struct pcb *)lwp_getpcb(l))->pcb_fpregs; 93 memset(&cpustate.fpregs, 0, sizeof(cpustate.fpregs)) [all...] |
core_machdep.c | 65 struct cpustate { struct in function:CORENAME 68 } cpustate; local in function:CORENAME 74 chdr->c_cpusize = sizeof(struct cpustate); 84 cpustate.tf.tf_reg[i] = tf->tf_reg[i]; 86 cpustate.tf.tf_pc = tf->tf_pc; 87 cpustate.tf.tf_tval = tf->tf_tval; 88 cpustate.tf.tf_cause = tf->tf_cause; 89 cpustate.tf.tf_sr = tf->tf_sr; 91 cpustate.fpregs = ((struct pcb *)lwp_getpcb(l))->pcb_fpregs; 93 memset(&cpustate.fpregs, 0, sizeof(cpustate.fpregs)) [all...] |
/src/sys/arch/arm/arm/ |
core_machdep.c | 79 } cpustate; local in function:cpu_coredump 86 chdr->c_cpusize = sizeof(cpustate); 92 error = process_read_regs(l, &cpustate.regs); 96 error = process_read_fpregs(l, &cpustate.fpregs, NULL); 110 &cpustate, sizeof(cpustate)), ENOSYS, error);
|
core_machdep.c | 79 } cpustate; local in function:cpu_coredump 86 chdr->c_cpusize = sizeof(cpustate); 92 error = process_read_regs(l, &cpustate.regs); 96 error = process_read_fpregs(l, &cpustate.fpregs, NULL); 110 &cpustate, sizeof(cpustate)), ENOSYS, error);
|
/src/sys/sys/ |
cpuio.h | 48 typedef struct cpustate { struct
|
cpuio.h | 48 typedef struct cpustate { struct
|