Home
last modified time | relevance | path

Searched refs:PSR_T_bit (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/sys/arch/arm/arm/
H A Dprocess_machdep.c166 if (tf->tf_spsr & PSR_T_bit) in process_read_regs()
199 tf->tf_spsr &= ~(PSR_FLAGS | PSR_T_bit); in process_write_regs()
202 if ((regs->r_pc & 1) || (regs->r_cpsr & PSR_T_bit)) in process_write_regs()
203 tf->tf_spsr |= PSR_T_bit; in process_write_regs()
234 tf->tf_spsr |= PSR_T_bit; in process_set_pc()
236 tf->tf_spsr &= ~PSR_T_bit; in process_set_pc()
H A Dundefined.c131 if (tf->tf_spsr & PSR_T_bit) in cp15_trapper()
182 if (tf->tf_spsr & PSR_T_bit) { in gdb_trapper()
328 if (tf->tf_spsr & PSR_T_bit) in undefinedinstruction()
348 if (tf->tf_spsr & PSR_T_bit) { in undefinedinstruction()
387 if ((tf->tf_spsr & PSR_T_bit) && !CPU_IS_ARMV7_P()) { in undefinedinstruction()
409 } else if ((tf->tf_spsr & PSR_T_bit) && !CPU_IS_ARMV7_P()) { in undefinedinstruction()
H A Dsyscall.c131 if (tf->tf_spsr & PSR_T_bit) { in swi_handler()
212 if (tf->tf_spsr & PSR_T_bit) in syscall()
264 if (tf->tf_spsr & PSR_T_bit) in syscall()
H A Dcompat_16_machdep.c170 tf->tf_spsr |= PSR_T_bit; in sendsig_sigcontext()
172 tf->tf_spsr &= ~PSR_T_bit; in sendsig_sigcontext()
H A Dsig_machdep.c147 tf->tf_spsr |= PSR_T_bit; in sendsig_siginfo()
149 tf->tf_spsr &= ~PSR_T_bit; in sendsig_siginfo()
H A Darm_machdep.c190 tf->tf_spsr |= PSR_T_bit; in setregs()
/netbsd-src/sys/arch/arm/arm32/
H A Dfault.c206 if (tf->tf_spsr & PSR_T_bit) { in data_abort_fixup()
415 if (__predict_false(tf->tf_spsr & PSR_T_bit)) { in data_abort_handler()
713 tf->tf_spsr &= ~PSR_T_bit; in dab_buserr()
715 tf->tf_spsr |= PSR_T_bit; in dab_buserr()
770 if (tf->tf_spsr & PSR_T_bit) { in prefetch_abort_fixup()
932 if ((tf->tf_spsr & PSR_T_bit) && in prefetch_abort_handler()
H A Ddb_machdep.c477 if (DDB_REGS->tf_spsr & PSR_T_bit) { in db_switch_cpu_cmd()
/netbsd-src/sys/arch/arm/include/
H A Darmreg.h82 #define PSR_T_bit (1 << 5) /* Thumb state */ macro