Searched refs:FPU_modrm (Results 1 – 4 of 4) sorted by relevance
/linux-6.3-rc2/arch/x86/math-emu/ |
A D | errors.c | 40 u_char byte1, FPU_modrm; 57 if (FPU_modrm >= 0300) 58 printk("%02x (%02x+%d)\n", FPU_modrm, FPU_modrm & 0xf8, 59 FPU_modrm & 7); 61 printk("/%d\n", (FPU_modrm >> 3) & 7); 88 u_char byte1, FPU_modrm; in FPU_printall() local 110 if (FPU_modrm >= 0300) in FPU_printall() 111 printk(" %02x (%02x+%d)\n", FPU_modrm, in FPU_printall() 112 FPU_modrm & 0xf8, FPU_modrm & 7); in FPU_printall() 115 (FPU_modrm >> 3) & 7, in FPU_printall() [all …]
|
A D | fpu_entry.c | 103 u_char FPU_modrm, byte1; in math_emulate() local 217 code = (FPU_modrm << 8) | byte1; in math_emulate() 243 FPU_rm = FPU_modrm & 7; in math_emulate() 245 if (FPU_modrm < 0300) { in math_emulate() 323 if ((FPU_modrm & 0x30) == 0x10) { in math_emulate() 327 if ((FPU_modrm & 0x08) in math_emulate() 339 if ((FPU_modrm & 0x28) == 0x20) in math_emulate() 358 if ((FPU_modrm & 0x38) == 0x38) { in math_emulate() 392 switch ((FPU_modrm >> 3) & 7) { in math_emulate() 442 if ((FPU_modrm & 0x30) == 0x10) { in math_emulate() [all …]
|
A D | get_address.c | 137 static long pm_address(u_char FPU_modrm, u_char segment, in pm_address() argument 188 (!seg_writable(&descriptor) && (FPU_modrm & FPU_WRITE_BIT))) { in pm_address() 210 void __user *FPU_get_address(u_char FPU_modrm, unsigned long *fpu_eip, in FPU_get_address() argument 214 unsigned rm = FPU_modrm & 7; in FPU_get_address() 220 if (!addr_modes.default_mode && (FPU_modrm & FPU_WRITE_BIT) in FPU_get_address() 227 mod = (FPU_modrm >> 6) & 3; in FPU_get_address() 285 address = pm_address(FPU_modrm, addr_modes.override.segment, in FPU_get_address() 299 unsigned rm = FPU_modrm & 7; in FPU_get_address_16() 304 if (!addr_modes.default_mode && (FPU_modrm & FPU_WRITE_BIT) in FPU_get_address_16() 311 mod = (FPU_modrm >> 6) & 3; in FPU_get_address_16() [all …]
|
A D | fpu_proto.h | 86 extern void __user *FPU_get_address(u_char FPU_modrm, unsigned long *fpu_eip, 89 extern void __user *FPU_get_address_16(u_char FPU_modrm, unsigned long *fpu_eip,
|
Completed in 6 milliseconds