Home
last modified time | relevance | path

Searched refs:REX_B (Results 1 – 8 of 8) sorted by relevance

/freebsd-12-stable/contrib/binutils/include/opcode/
Di386.h100 #define REX_B 1 macro
DChangeLog30 (REX_B): This.
/freebsd-12-stable/contrib/binutils/opcodes/
Di386-dis.c4899 USED_REX (REX_B); in OP_E()
4900 if (rex & REX_B) in OP_E()
5323 USED_REX (REX_B); in OP_REG()
5324 if (rex & REX_B) in OP_REG()
5893 USED_REX (REX_B); in OP_EM()
5894 if (rex & REX_B) in OP_EM()
5947 USED_REX (REX_B); in OP_EX()
5948 if (rex & REX_B) in OP_EX()
6636 USED_REX (REX_B); in CRC32_Fixup()
6637 add = (rex & REX_B) ? 8 : 0; in CRC32_Fixup()
DChangeLog420 REX_R, REX_X and REX_B respectively.
/freebsd-12-stable/contrib/binutils/gas/config/
Dtc-i386.c1003 || ((i.prefix[REX_PREFIX] & (REX_R | REX_X | REX_B)) in add_prefix()
1004 && (prefix & (REX_R | REX_X | REX_B)))) in add_prefix()
1368 (x->rex & REX_B) != 0); in pi()
3386 i.rex |= REX_B; in process_operands()
3395 i.rex |= REX_B; in process_operands()
3506 i.rex |= REX_B; in build_modrm_byte()
3513 i.rex |= REX_B; in build_modrm_byte()
3517 if (flag_code != CODE_64BIT && (i.rex & (REX_R | REX_B))) in build_modrm_byte()
3521 i.rex &= ~(REX_R | REX_B); in build_modrm_byte()
3636 i.rex |= REX_B; in build_modrm_byte()
[all …]
/freebsd-12-stable/sys/amd64/amd64/
Ddb_disasm.c58 #define REX_B 1 macro
960 #define f_rm(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0))
964 #define sib_base(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0))
/freebsd-12-stable/sys/cddl/dev/dtrace/x86/
Ddis_tables.c2275 #define REX_B 0x01 /* extends ModRM r_m, SIB base, or opcode reg */ macro
2474 if (rex_prefix & REX_B) in dtrace_rex_adjust()
2479 if (r_m != NULL && (REX_B & rex_prefix) != 0) in dtrace_rex_adjust()
2717 if (x->d86_rex_prefix & REX_B) in dtrace_get_operand()
3142 x->d86_rex_prefix |= REX_B; in dtrace_disx86()
/freebsd-12-stable/contrib/binutils/gas/
DChangeLog687 and REX_EXTZ with REX_W, REX_R, REX_X and REX_B respectively.