Lines Matching refs:pstate

160 	u64 pstate = regs->pstate;  in print_pstate()  local
164 pstate, in print_pstate()
165 pstate & PSR_AA32_N_BIT ? 'N' : 'n', in print_pstate()
166 pstate & PSR_AA32_Z_BIT ? 'Z' : 'z', in print_pstate()
167 pstate & PSR_AA32_C_BIT ? 'C' : 'c', in print_pstate()
168 pstate & PSR_AA32_V_BIT ? 'V' : 'v', in print_pstate()
169 pstate & PSR_AA32_Q_BIT ? 'Q' : 'q', in print_pstate()
170 pstate & PSR_AA32_T_BIT ? "T32" : "A32", in print_pstate()
171 pstate & PSR_AA32_E_BIT ? "BE" : "LE", in print_pstate()
172 pstate & PSR_AA32_A_BIT ? 'A' : 'a', in print_pstate()
173 pstate & PSR_AA32_I_BIT ? 'I' : 'i', in print_pstate()
174 pstate & PSR_AA32_F_BIT ? 'F' : 'f', in print_pstate()
175 pstate & PSR_AA32_DIT_BIT ? '+' : '-', in print_pstate()
176 pstate & PSR_AA32_SSBS_BIT ? '+' : '-'); in print_pstate()
178 const char *btype_str = btypes[(pstate & PSR_BTYPE_MASK) >> in print_pstate()
182 pstate, in print_pstate()
183 pstate & PSR_N_BIT ? 'N' : 'n', in print_pstate()
184 pstate & PSR_Z_BIT ? 'Z' : 'z', in print_pstate()
185 pstate & PSR_C_BIT ? 'C' : 'c', in print_pstate()
186 pstate & PSR_V_BIT ? 'V' : 'v', in print_pstate()
187 pstate & PSR_D_BIT ? 'D' : 'd', in print_pstate()
188 pstate & PSR_A_BIT ? 'A' : 'a', in print_pstate()
189 pstate & PSR_I_BIT ? 'I' : 'i', in print_pstate()
190 pstate & PSR_F_BIT ? 'F' : 'f', in print_pstate()
191 pstate & PSR_PAN_BIT ? '+' : '-', in print_pstate()
192 pstate & PSR_UAO_BIT ? '+' : '-', in print_pstate()
193 pstate & PSR_TCO_BIT ? '+' : '-', in print_pstate()
194 pstate & PSR_DIT_BIT ? '+' : '-', in print_pstate()
195 pstate & PSR_SSBS_BIT ? '+' : '-', in print_pstate()
401 childregs->pstate = PSR_MODE_EL1h | PSR_IL_BIT; in copy_thread()