Searched refs:F_SF (Results 1 – 4 of 4) sorted by relevance
139 CONDITIONAL_SET_FLAG(res & 0x80, F_SF); in set_szp_flags_8()146 CONDITIONAL_SET_FLAG(res & 0x8000, F_SF); in set_szp_flags_16()153 CONDITIONAL_SET_FLAG(res & 0x80000000, F_SF); in set_szp_flags_32()1216 CLEAR_FLAG(F_SF); in shl_byte()1254 CLEAR_FLAG(F_SF); in shl_word()1289 CLEAR_FLAG(F_SF); in shl_long()1324 CLEAR_FLAG(F_SF); in shr_byte()1360 CLEAR_FLAG(F_SF); in shr_word()1394 CLEAR_FLAG(F_SF); in shr_long()1425 SET_FLAG(F_SF); in sar_byte()[all …]
111 return ACCESS_FLAG(F_SF); in x86emu_check_jump_condition()115 return !ACCESS_FLAG(F_SF); in x86emu_check_jump_condition()127 return xorl(ACCESS_FLAG(F_SF), ACCESS_FLAG(F_OF)); in x86emu_check_jump_condition()131 return !xorl(ACCESS_FLAG(F_SF), ACCESS_FLAG(F_OF)); in x86emu_check_jump_condition()135 return (xorl(ACCESS_FLAG(F_SF), ACCESS_FLAG(F_OF)) || in x86emu_check_jump_condition()140 return !(xorl(ACCESS_FLAG(F_SF), ACCESS_FLAG(F_OF)) || in x86emu_check_jump_condition()211 cond = ACCESS_FLAG(F_SF); in x86emuOp2_set_byte()215 cond = !ACCESS_FLAG(F_SF); in x86emuOp2_set_byte()227 cond = xorl(ACCESS_FLAG(F_SF), ACCESS_FLAG(F_OF)); in x86emuOp2_set_byte()231 cond = !xorl(ACCESS_FLAG(F_SF), ACCESS_FLAG(F_OF)); in x86emuOp2_set_byte()[all …]
390 if (ACCESS_FLAG(F_SF)) in x86emu_dump_regs()440 if (ACCESS_FLAG(F_SF)) in x86emu_dump_xregs()
204 #define F_SF 0x0080 /* SIGN flag */ macro