Searched refs:PSR_T_bit (Results 1 – 9 of 9) sorted by relevance
166 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()
131 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()
131 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()
170 tf->tf_spsr |= PSR_T_bit; in sendsig_sigcontext()172 tf->tf_spsr &= ~PSR_T_bit; in sendsig_sigcontext()
147 tf->tf_spsr |= PSR_T_bit; in sendsig_siginfo()149 tf->tf_spsr &= ~PSR_T_bit; in sendsig_siginfo()
190 tf->tf_spsr |= PSR_T_bit; in setregs()
206 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()
477 if (DDB_REGS->tf_spsr & PSR_T_bit) { in db_switch_cpu_cmd()
82 #define PSR_T_bit (1 << 5) /* Thumb state */ macro