/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | insn.h | 70 #define X86_REX_W(rex) ((rex) & 8) 71 #define X86_REX_R(rex) ((rex) & 4) 72 #define X86_REX_X(rex) ((rex) & 2) 73 #define X86_REX_B(rex) ((rex) & 1)
|
/kernel/linux/linux-5.10/tools/arch/x86/include/asm/ |
H A D | insn.h | 70 #define X86_REX_W(rex) ((rex) & 8) 71 #define X86_REX_R(rex) ((rex) & 4) 72 #define X86_REX_X(rex) ((rex) & 2) 73 #define X86_REX_B(rex) ((rex) & 1)
|
/kernel/linux/linux-6.6/arch/x86/include/asm/ |
H A D | insn.h | 115 #define X86_REX_W(rex) ((rex) & 8) 116 #define X86_REX_R(rex) ((rex) & 4) 117 #define X86_REX_X(rex) ((rex) & 2) 118 #define X86_REX_B(rex) ((rex) & 1)
|
/kernel/linux/linux-6.6/tools/arch/x86/include/asm/ |
H A D | insn.h | 115 #define X86_REX_W(rex) ((rex) & 8) 116 #define X86_REX_R(rex) ((rex) & 4) 117 #define X86_REX_X(rex) ((rex) & 2) 118 #define X86_REX_B(rex) ((rex) & 1)
|
/kernel/linux/linux-5.10/tools/objtool/arch/x86/ |
H A D | decode.c | 95 unsigned char op1, op2, rex = 0, rex_b = 0, rex_r = 0, rex_w = 0, in arch_decode_instruction() local 123 rex = insn.rex_prefix.bytes[0]; in arch_decode_instruction() 124 rex_w = X86_REX_W(rex) >> 3; in arch_decode_instruction() 125 rex_r = X86_REX_R(rex) >> 2; in arch_decode_instruction() 126 rex_x = X86_REX_X(rex) >> 1; in arch_decode_instruction() 127 rex_b = X86_REX_B(rex); in arch_decode_instruction() 193 if (rex != 0x48) in arch_decode_instruction() 322 } else if (rex == 0x48 && modrm == 0x65) { in arch_decode_instruction() 333 } else if (rex == 0x49 && modrm == 0x62 && in arch_decode_instruction() 350 } else if (rex in arch_decode_instruction() [all...] |
/kernel/linux/linux-5.10/include/video/ |
H A D | newport.h | 551 xmap9FIFOWait (struct newport_regs *rex) in xmap9FIFOWait() argument 553 rex->set.dcbmode = DCB_XMAP0 | XM9_CRS_FIFO_AVAIL | in xmap9FIFOWait() 555 newport_bfwait (rex); in xmap9FIFOWait() 557 while ((rex->set.dcbdata0.bybytes.b3 & 3) != XM9_FIFO_EMPTY) in xmap9FIFOWait() 562 xmap9SetModeReg (struct newport_regs *rex, unsigned int modereg, unsigned int data24, int cfreq) in xmap9SetModeReg() argument 565 rex->set.dcbmode = DCB_XMAP_ALL | XM9_CRS_MODE_REG_DATA | in xmap9SetModeReg() 568 rex->set.dcbmode = DCB_XMAP_ALL | XM9_CRS_MODE_REG_DATA | in xmap9SetModeReg() 571 rex->set.dcbmode = DCB_XMAP_ALL | XM9_CRS_MODE_REG_DATA | in xmap9SetModeReg() 573 rex->set.dcbdata0.byword = ((modereg) << 24) | (data24 & 0xffffff); in xmap9SetModeReg()
|
/kernel/linux/linux-6.6/include/video/ |
H A D | newport.h | 551 xmap9FIFOWait (struct newport_regs *rex) in xmap9FIFOWait() argument 553 rex->set.dcbmode = DCB_XMAP0 | XM9_CRS_FIFO_AVAIL | in xmap9FIFOWait() 555 newport_bfwait (rex); in xmap9FIFOWait() 557 while ((rex->set.dcbdata0.bybytes.b3 & 3) != XM9_FIFO_EMPTY) in xmap9FIFOWait() 562 xmap9SetModeReg (struct newport_regs *rex, unsigned int modereg, unsigned int data24, int cfreq) in xmap9SetModeReg() argument 565 rex->set.dcbmode = DCB_XMAP_ALL | XM9_CRS_MODE_REG_DATA | in xmap9SetModeReg() 568 rex->set.dcbmode = DCB_XMAP_ALL | XM9_CRS_MODE_REG_DATA | in xmap9SetModeReg() 571 rex->set.dcbmode = DCB_XMAP_ALL | XM9_CRS_MODE_REG_DATA | in xmap9SetModeReg() 573 rex->set.dcbdata0.byword = ((modereg) << 24) | (data24 & 0xffffff); in xmap9SetModeReg()
|
/kernel/linux/linux-5.10/arch/x86/mm/ |
H A D | pf_in.c | 70 unsigned rex:1; member 80 prf->rex = 0; in skip_prefix() 93 prf->rex = 1; in skip_prefix() 236 static unsigned char *get_reg_w8(int no, int rex, struct pt_regs *regs) in get_reg_w8() argument 286 if (rex) { in get_reg_w8() 427 return *get_reg_w8(reg, prf.rex, regs); in get_ins_reg_val()
|
/kernel/linux/linux-6.6/arch/x86/mm/ |
H A D | pf_in.c | 70 unsigned rex:1; member 80 prf->rex = 0; in skip_prefix() 93 prf->rex = 1; in skip_prefix() 236 static unsigned char *get_reg_w8(int no, int rex, struct pt_regs *regs) in get_reg_w8() argument 286 if (rex) { in get_reg_w8() 427 return *get_reg_w8(reg, prf.rex, regs); in get_ins_reg_val()
|
/kernel/linux/linux-6.6/tools/objtool/arch/x86/ |
H A D | decode.c | 156 rex = 0, rex_b = 0, rex_r = 0, rex_w = 0, rex_x = 0, in arch_decode_instruction() local 187 rex = ins.rex_prefix.bytes[0]; in arch_decode_instruction() 188 rex_w = X86_REX_W(rex) >> 3; in arch_decode_instruction() 189 rex_r = X86_REX_R(rex) >> 2; in arch_decode_instruction() 190 rex_x = X86_REX_X(rex) >> 1; in arch_decode_instruction() 191 rex_b = X86_REX_B(rex); in arch_decode_instruction()
|