Lines Matching refs:pstate
1341 static bool __kprobes __check_eq(unsigned long pstate) in __check_eq() argument
1343 return (pstate & PSR_Z_BIT) != 0; in __check_eq()
1346 static bool __kprobes __check_ne(unsigned long pstate) in __check_ne() argument
1348 return (pstate & PSR_Z_BIT) == 0; in __check_ne()
1351 static bool __kprobes __check_cs(unsigned long pstate) in __check_cs() argument
1353 return (pstate & PSR_C_BIT) != 0; in __check_cs()
1356 static bool __kprobes __check_cc(unsigned long pstate) in __check_cc() argument
1358 return (pstate & PSR_C_BIT) == 0; in __check_cc()
1361 static bool __kprobes __check_mi(unsigned long pstate) in __check_mi() argument
1363 return (pstate & PSR_N_BIT) != 0; in __check_mi()
1366 static bool __kprobes __check_pl(unsigned long pstate) in __check_pl() argument
1368 return (pstate & PSR_N_BIT) == 0; in __check_pl()
1371 static bool __kprobes __check_vs(unsigned long pstate) in __check_vs() argument
1373 return (pstate & PSR_V_BIT) != 0; in __check_vs()
1376 static bool __kprobes __check_vc(unsigned long pstate) in __check_vc() argument
1378 return (pstate & PSR_V_BIT) == 0; in __check_vc()
1381 static bool __kprobes __check_hi(unsigned long pstate) in __check_hi() argument
1383 pstate &= ~(pstate >> 1); /* PSR_C_BIT &= ~PSR_Z_BIT */ in __check_hi()
1384 return (pstate & PSR_C_BIT) != 0; in __check_hi()
1387 static bool __kprobes __check_ls(unsigned long pstate) in __check_ls() argument
1389 pstate &= ~(pstate >> 1); /* PSR_C_BIT &= ~PSR_Z_BIT */ in __check_ls()
1390 return (pstate & PSR_C_BIT) == 0; in __check_ls()
1393 static bool __kprobes __check_ge(unsigned long pstate) in __check_ge() argument
1395 pstate ^= (pstate << 3); /* PSR_N_BIT ^= PSR_V_BIT */ in __check_ge()
1396 return (pstate & PSR_N_BIT) == 0; in __check_ge()
1399 static bool __kprobes __check_lt(unsigned long pstate) in __check_lt() argument
1401 pstate ^= (pstate << 3); /* PSR_N_BIT ^= PSR_V_BIT */ in __check_lt()
1402 return (pstate & PSR_N_BIT) != 0; in __check_lt()
1405 static bool __kprobes __check_gt(unsigned long pstate) in __check_gt() argument
1408 unsigned long temp = pstate ^ (pstate << 3); in __check_gt()
1410 temp |= (pstate << 1); /*PSR_N_BIT |= PSR_Z_BIT */ in __check_gt()
1414 static bool __kprobes __check_le(unsigned long pstate) in __check_le() argument
1417 unsigned long temp = pstate ^ (pstate << 3); in __check_le()
1419 temp |= (pstate << 1); /*PSR_N_BIT |= PSR_Z_BIT */ in __check_le()
1423 static bool __kprobes __check_al(unsigned long pstate) in __check_al() argument