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