Lines Matching defs:table
29 const insn_attr_t *table;
34 table = inat_escape_tables[n][0];
35 if (!table)
37 if (inat_has_variant(table[opcode]) && lpfx_id) {
38 table = inat_escape_tables[n][lpfx_id];
39 if (!table)
42 return table[opcode];
48 const insn_attr_t *table;
53 table = inat_group_tables[n][0];
54 if (!table)
56 if (inat_has_variant(table[X86_MODRM_REG(modrm)]) && lpfx_id) {
57 table = inat_group_tables[n][lpfx_id];
58 if (!table)
61 return table[X86_MODRM_REG(modrm)] |
68 const insn_attr_t *table;
71 /* At first, this checks the master table */
72 table = inat_avx_tables[vex_m][0];
73 if (!table)
75 if (!inat_is_group(table[opcode]) && vex_p) {
77 table = inat_avx_tables[vex_m][vex_p];
78 if (!table)
81 return table[opcode];