Lines Matching refs:pstate
221 u64 pstate = regs->pstate; in print_pstate() local
225 pstate, in print_pstate()
226 pstate & PSR_AA32_N_BIT ? 'N' : 'n', in print_pstate()
227 pstate & PSR_AA32_Z_BIT ? 'Z' : 'z', in print_pstate()
228 pstate & PSR_AA32_C_BIT ? 'C' : 'c', in print_pstate()
229 pstate & PSR_AA32_V_BIT ? 'V' : 'v', in print_pstate()
230 pstate & PSR_AA32_Q_BIT ? 'Q' : 'q', in print_pstate()
231 pstate & PSR_AA32_T_BIT ? "T32" : "A32", in print_pstate()
232 pstate & PSR_AA32_E_BIT ? "BE" : "LE", in print_pstate()
233 pstate & PSR_AA32_A_BIT ? 'A' : 'a', in print_pstate()
234 pstate & PSR_AA32_I_BIT ? 'I' : 'i', in print_pstate()
235 pstate & PSR_AA32_F_BIT ? 'F' : 'f'); in print_pstate()
237 const char *btype_str = btypes[(pstate & PSR_BTYPE_MASK) >> in print_pstate()
241 pstate, in print_pstate()
242 pstate & PSR_N_BIT ? 'N' : 'n', in print_pstate()
243 pstate & PSR_Z_BIT ? 'Z' : 'z', in print_pstate()
244 pstate & PSR_C_BIT ? 'C' : 'c', in print_pstate()
245 pstate & PSR_V_BIT ? 'V' : 'v', in print_pstate()
246 pstate & PSR_D_BIT ? 'D' : 'd', in print_pstate()
247 pstate & PSR_A_BIT ? 'A' : 'a', in print_pstate()
248 pstate & PSR_I_BIT ? 'I' : 'i', in print_pstate()
249 pstate & PSR_F_BIT ? 'F' : 'f', in print_pstate()
250 pstate & PSR_PAN_BIT ? '+' : '-', in print_pstate()
251 pstate & PSR_UAO_BIT ? '+' : '-', in print_pstate()
252 pstate & PSR_TCO_BIT ? '+' : '-', in print_pstate()
429 childregs->pstate = PSR_MODE_EL1h | PSR_IL_BIT; in copy_thread()