Home
last modified time | relevance | path

Searched defs:rex (Results 1 – 14 of 14) sorted by relevance

/freebsd-12.1/contrib/processor-trace/libipt/src/
H A Dpt_ild.c582 static int prefix_osz(struct pt_ild *ild, uint8_t length, uint8_t rex) in prefix_osz()
594 static int prefix_asz(struct pt_ild *ild, uint8_t length, uint8_t rex) in prefix_asz()
606 static int prefix_lock(struct pt_ild *ild, uint8_t length, uint8_t rex) in prefix_lock()
618 static int prefix_f2(struct pt_ild *ild, uint8_t length, uint8_t rex) in prefix_f2()
631 static int prefix_f3(struct pt_ild *ild, uint8_t length, uint8_t rex) in prefix_f3()
644 static int prefix_ignore(struct pt_ild *ild, uint8_t length, uint8_t rex) in prefix_ignore()
651 static int prefix_done(struct pt_ild *ild, uint8_t length, uint8_t rex) in prefix_done()
664 static int prefix_rex(struct pt_ild *ild, uint8_t length, uint8_t rex) in prefix_rex()
687 static int prefix_vex_c5(struct pt_ild *ild, uint8_t length, uint8_t rex) in prefix_vex_c5()
727 static int prefix_vex_c4(struct pt_ild *ild, uint8_t length, uint8_t rex) in prefix_vex_c4()
[all …]
/freebsd-12.1/sys/amd64/amd64/
H A Ddb_disasm.c958 #define f_mod(rex, byte) ((byte)>>6) argument
959 #define f_reg(rex, byte) ((((byte)>>3)&0x7) | (rex & REX_R ? 0x8 : 0x0)) argument
960 #define f_rm(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0)) argument
962 #define sib_ss(rex, byte) ((byte)>>6) argument
963 #define sib_index(rex, byte) ((((byte)>>3)&0x7) | (rex & REX_X ? 0x8 : 0x0)) argument
964 #define sib_base(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0)) argument
1029 db_read_address(loc, short_addr, rex, regmodrm, addrp) in db_read_address() argument
1097 db_print_address(seg, size, rex, addrp) in db_print_address() argument
1129 db_disasm_esc(loc, inst, rex, short_addr, size, seg) in db_disasm_esc() argument
1236 int rex = 0; in db_disasm() local
/freebsd-12.1/crypto/openssl/crypto/aes/asm/
H A Daesni-mb-x86_64.pl1420 sub rex { subroutine
H A Daesni-x86_64.pl5080 sub rex { subroutine
H A Daesni-sha256-x86_64.pl1736 sub rex { subroutine
H A Daesni-sha1-x86_64.pl2072 sub rex { subroutine
/freebsd-12.1/crypto/openssl/crypto/sha/asm/
H A Dsha256-mb-x86_64.pl1571 sub rex { subroutine
H A Dsha1-mb-x86_64.pl1571 sub rex { subroutine
/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/intel/dtrace/
H A Dfasttrap_isa.c95 #define FASTTRAP_REX_W(rex) (((rex) >> 3) & 1) argument
96 #define FASTTRAP_REX_R(rex) (((rex) >> 2) & 1) argument
97 #define FASTTRAP_REX_X(rex) (((rex) >> 1) & 1) argument
98 #define FASTTRAP_REX_B(rex) ((rex) & 1) argument
266 uint8_t seg, rex = 0; in fasttrap_tracepoint_init() local
/freebsd-12.1/crypto/openssl/crypto/perlasm/
H A Dx86_64-xlate.pl952 sub rex { subroutine
/freebsd-12.1/contrib/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.h32 #define wFromREX(rex) (((rex) & 0x8) >> 3) argument
33 #define rFromREX(rex) (((rex) & 0x4) >> 2) argument
34 #define xFromREX(rex) (((rex) & 0x2) >> 1) argument
35 #define bFromREX(rex) ((rex) & 0x1) argument
/freebsd-12.1/contrib/processor-trace/libipt/internal/include/
H A Dpt_ild.h74 uint8_t rex; /* 0b0100wrxb */ member
/freebsd-12.1/contrib/binutils/opcodes/
H A Di386-dis.c129 static int rex; variable
/freebsd-12.1/contrib/binutils/gas/config/
H A Dtc-i386.c166 rex_byte rex; member