Lines Matching refs:pstate
214 u64 pstate = regs->pstate; in print_pstate() local
218 pstate, in print_pstate()
219 pstate & PSR_AA32_N_BIT ? 'N' : 'n', in print_pstate()
220 pstate & PSR_AA32_Z_BIT ? 'Z' : 'z', in print_pstate()
221 pstate & PSR_AA32_C_BIT ? 'C' : 'c', in print_pstate()
222 pstate & PSR_AA32_V_BIT ? 'V' : 'v', in print_pstate()
223 pstate & PSR_AA32_Q_BIT ? 'Q' : 'q', in print_pstate()
224 pstate & PSR_AA32_T_BIT ? "T32" : "A32", in print_pstate()
225 pstate & PSR_AA32_E_BIT ? "BE" : "LE", in print_pstate()
226 pstate & PSR_AA32_A_BIT ? 'A' : 'a', in print_pstate()
227 pstate & PSR_AA32_I_BIT ? 'I' : 'i', in print_pstate()
228 pstate & PSR_AA32_F_BIT ? 'F' : 'f'); in print_pstate()
231 pstate, in print_pstate()
232 pstate & PSR_N_BIT ? 'N' : 'n', in print_pstate()
233 pstate & PSR_Z_BIT ? 'Z' : 'z', in print_pstate()
234 pstate & PSR_C_BIT ? 'C' : 'c', in print_pstate()
235 pstate & PSR_V_BIT ? 'V' : 'v', in print_pstate()
236 pstate & PSR_D_BIT ? 'D' : 'd', in print_pstate()
237 pstate & PSR_A_BIT ? 'A' : 'a', in print_pstate()
238 pstate & PSR_I_BIT ? 'I' : 'i', in print_pstate()
239 pstate & PSR_F_BIT ? 'F' : 'f', in print_pstate()
240 pstate & PSR_PAN_BIT ? '+' : '-', in print_pstate()
241 pstate & PSR_UAO_BIT ? '+' : '-'); in print_pstate()
404 childregs->pstate = PSR_MODE_EL1h; in copy_thread()
407 childregs->pstate |= PSR_UAO_BIT; in copy_thread()