Home
last modified time | relevance | path

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

/sys/amd64/
Ddisasm.c933 #define f_mod(rex, byte) ((byte)>>6) argument
934 #define f_reg(rex, byte) ((((byte)>>3)&0x7) | (rex & REX_R ? 0x8 : 0x0)) argument
935 #define f_rm(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0)) argument
937 #define sib_ss(rex, byte) ((byte)>>6) argument
938 #define sib_index(rex, byte) ((((byte)>>3)&0x7) | (rex & REX_X ? 0x8 : 0x0)) argument
939 #define sib_base(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0)) argument
992 db_disasm_esc(uintptr_t loc, int inst, int rex, int short_addr,
994 static void db_print_address(const char *seg, int size, int rex,
997 db_read_address(uintptr_t loc, int short_addr, int rex, int regmodrm,
1004 db_read_address(uintptr_t loc, int short_addr, int rex, int regmodrm, struct i_addr *addrp) in db_read_address() argument
[all …]