Home
last modified time | relevance | path

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

/openbmc/linux/arch/x86/math-emu/
H A Derrors.c40 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 …]
H A Dget_address.c137 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 …]
H A Dfpu_entry.c104 u_char FPU_modrm, byte1; in math_emulate() local
218 code = (FPU_modrm << 8) | byte1; in math_emulate()
244 FPU_rm = FPU_modrm & 7; in math_emulate()
246 if (FPU_modrm < 0300) { in math_emulate()
324 if ((FPU_modrm & 0x30) == 0x10) { in math_emulate()
328 if ((FPU_modrm & 0x08) in math_emulate()
340 if ((FPU_modrm & 0x28) == 0x20) in math_emulate()
359 if ((FPU_modrm & 0x38) == 0x38) { in math_emulate()
393 switch ((FPU_modrm >> 3) & 7) { in math_emulate()
443 if ((FPU_modrm & 0x30) == 0x10) { in math_emulate()
[all …]
H A Dfpu_proto.h86 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,