On Sat, Apr 04, 2020 at 12:08:08PM +0900, Masami Hiramatsu wrote: > From c609be0b6403245612503fca1087628655bab96c Mon Sep 17 00:00:00 2001 > From: Masami Hiramatsu <mhiramat@xxxxxxxxxx> > Date: Fri, 3 Apr 2020 16:58:22 +0900 > Subject: [PATCH] x86: insn: Add insn_is_fpu() > > Add insn_is_fpu(insn) which tells that the insn is > whether touch the MMX/XMM/YMM register or the instruction > of FP coprocessor. Looks good, although I changed it a little like so: --- a/arch/x86/include/asm/insn.h +++ b/arch/x86/include/asm/insn.h @@ -133,11 +133,12 @@ static inline int insn_is_fpu(struct ins { if (!insn->opcode.got) insn_get_opcode(insn); - if (inat_is_fpu(insn->attr)) { + if (inat_is_fpu(insn->attr)) { if (insn->attr & INAT_FPUIFVEX) return insn_is_avx(insn); return 1; } + return 0; } static inline int insn_has_emulate_prefix(struct insn *insn) --- a/arch/x86/lib/x86-opcode-map.txt +++ b/arch/x86/lib/x86-opcode-map.txt @@ -269,14 +269,14 @@ d4: AAM Ib (i64) d5: AAD Ib (i64) d6: d7: XLAT/XLATB -d8: ESC -d9: ESC -da: ESC -db: ESC -dc: ESC -dd: ESC -de: ESC -df: ESC +d8: FPU +d9: FPU +da: FPU +db: FPU +dc: FPU +dd: FPU +de: FPU +df: FPU # 0xe0 - 0xef # Note: "forced64" is Intel CPU behavior: they ignore 0x66 prefix # in 64-bit mode. AMD CPUs accept 0x66 prefix, it causes RIP truncation --- a/arch/x86/tools/gen-insn-attr-x86.awk +++ b/arch/x86/tools/gen-insn-attr-x86.awk @@ -65,10 +65,11 @@ BEGIN { modrm_expr = "^([CDEGMNPQRSUVW/][a-z]+|NTA|T[012])" force64_expr = "\\([df]64\\)" rex_expr = "^REX(\\.[XRWB]+)*" - mmxreg_expr = "^[HLNPQUVW][a-z]+" - mmx_expr = "^\\((emms|fxsave|fxrstor|ldmxcsr|stmxcsr)\\)" - mmxifvex_expr = "^CMOV" # CMOV is non-vex non-mmx - fpu_expr = "^ESC" + + mmxreg_expr = "^[HLNPQUVW][a-z]+" # MMX/SSE register operands + mmx_expr = "^\\(emms\\)" # MMX/SSE nmemonics lacking operands + mmxifvex_expr = "^CMOV" # nmemonics NOT an AVX + fpu_expr = "^FPU" lprefix1_expr = "\\((66|!F3)\\)" lprefix2_expr = "\\(F3\\)" _______________________________________________ amd-gfx mailing list amd-gfx@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/amd-gfx