Searched refs:cp0_status (Results 1 – 11 of 11) sorted by relevance
/arch/mips/kernel/ |
D | kprobes.c | 178 kcb->kprobe_saved_SR = kcb->kprobe_old_SR = (regs->cp0_status & ST0_IE); in set_current_kprobe() 234 regs->cp0_status &= ~ST0_IE; in prepare_singlestep() 294 regs->cp0_status &= ~ST0_IE; in kprobe_handler() 295 regs->cp0_status |= kcb->kprobe_saved_SR; in kprobe_handler() 386 regs->cp0_status |= kcb->kprobe_saved_SR; in post_kprobe_handler() 407 regs->cp0_status |= kcb->kprobe_old_SR; in kprobe_fault_handler()
|
D | process.c | 57 status = regs->cp0_status & ~(ST0_CU0|ST0_CU1|ST0_CU2|ST0_FR|KU_MASK); in start_thread() 59 regs->cp0_status = status; in start_thread() 122 p->thread.cp0_status = (read_c0_status() & ~(ST0_CU2|ST0_CU1)) | ST0_KERNEL_CUMASK; in copy_thread() 125 unsigned long status = p->thread.cp0_status; in copy_thread() 137 childregs->cp0_status = status; in copy_thread() 155 childregs->cp0_status &= ~(ST0_CU2|ST0_CU1); in copy_thread() 887 uregs[MIPS32_EF_CP0_STATUS] = regs->cp0_status; in mips_dump_regs32() 909 uregs[MIPS64_EF_CP0_STATUS] = regs->cp0_status; in mips_dump_regs64()
|
D | kgdb.c | 88 { "sr", GDB_SIZEOF_REG, offsetof(struct pt_regs, cp0_status) }, 142 if (!(regs->cp0_status & ST0_CU1)) in dbg_set_reg() 176 if (!(regs->cp0_status & ST0_CU1)) in dbg_get_reg() 256 *(ptr++) = p->thread.cp0_status; in sleeping_thread_to_gdb_regs()
|
D | traps.c | 206 regs.cp0_status = KSU_KERNEL; in show_stack() 300 printk("Status: %08x ", (uint32_t) regs->cp0_status); in __show_regs() 303 if (regs->cp0_status & ST0_KUO) in __show_regs() 305 if (regs->cp0_status & ST0_IEO) in __show_regs() 307 if (regs->cp0_status & ST0_KUP) in __show_regs() 309 if (regs->cp0_status & ST0_IEP) in __show_regs() 311 if (regs->cp0_status & ST0_KUC) in __show_regs() 313 if (regs->cp0_status & ST0_IEC) in __show_regs() 316 if (regs->cp0_status & ST0_KX) in __show_regs() 318 if (regs->cp0_status & ST0_SX) in __show_regs() [all …]
|
D | asm-offsets.c | 68 OFFSET(PT_STATUS, pt_regs, cp0_status); in output_ptreg_defines() 123 thread.cp0_status); in output_thread_defines()
|
D | ptrace.c | 84 __put_user((long)regs->cp0_status, (__s64 __user *)&data->cp0_status); in ptrace_getregs() 889 REG_OFFSET_NAME(c0_status, cp0_status),
|
/arch/mips/include/asm/ |
D | processor.h | 244 unsigned long cp0_status; member 325 .cp0_status = 0, \ 379 #define KSTK_STATUS(tsk) (task_pt_regs(tsk)->cp0_status)
|
D | ptrace.h | 38 unsigned long cp0_status; member 141 #define user_mode(regs) (((regs)->cp0_status & KU_MASK) == KU_USER)
|
/arch/mips/include/uapi/asm/ |
D | ptrace.h | 46 __u64 cp0_status; member
|
/arch/mips/mti-malta/ |
D | malta-int.c | 95 regs->cp0_epc, regs->cp0_status, in corehi_irqdispatch()
|
/arch/mips/kvm/ |
D | entry.c | 234 UASM_i_SW(&p, V0, offsetof(struct pt_regs, cp0_status), K1); in kvm_mips_build_vcpu_run()
|