Lines Matching refs:pstate
175 u64 pstate = regs->pstate; in print_pstate() local
179 pstate, in print_pstate()
180 pstate & PSR_AA32_N_BIT ? 'N' : 'n', in print_pstate()
181 pstate & PSR_AA32_Z_BIT ? 'Z' : 'z', in print_pstate()
182 pstate & PSR_AA32_C_BIT ? 'C' : 'c', in print_pstate()
183 pstate & PSR_AA32_V_BIT ? 'V' : 'v', in print_pstate()
184 pstate & PSR_AA32_Q_BIT ? 'Q' : 'q', in print_pstate()
185 pstate & PSR_AA32_T_BIT ? "T32" : "A32", in print_pstate()
186 pstate & PSR_AA32_E_BIT ? "BE" : "LE", in print_pstate()
187 pstate & PSR_AA32_A_BIT ? 'A' : 'a', in print_pstate()
188 pstate & PSR_AA32_I_BIT ? 'I' : 'i', in print_pstate()
189 pstate & PSR_AA32_F_BIT ? 'F' : 'f'); in print_pstate()
192 pstate, in print_pstate()
193 pstate & PSR_N_BIT ? 'N' : 'n', in print_pstate()
194 pstate & PSR_Z_BIT ? 'Z' : 'z', in print_pstate()
195 pstate & PSR_C_BIT ? 'C' : 'c', in print_pstate()
196 pstate & PSR_V_BIT ? 'V' : 'v', in print_pstate()
197 pstate & PSR_D_BIT ? 'D' : 'd', in print_pstate()
198 pstate & PSR_A_BIT ? 'A' : 'a', in print_pstate()
199 pstate & PSR_I_BIT ? 'I' : 'i', in print_pstate()
200 pstate & PSR_F_BIT ? 'F' : 'f', in print_pstate()
201 pstate & PSR_PAN_BIT ? '+' : '-', in print_pstate()
202 pstate & PSR_UAO_BIT ? '+' : '-'); in print_pstate()
357 childregs->pstate = PSR_MODE_EL1h; in copy_thread()
360 childregs->pstate |= PSR_UAO_BIT; in copy_thread()