Lines Matching refs:table
43 const insn_attr_t *table; in inat_get_escape_attribute() local
48 table = inat_escape_tables[n][0]; in inat_get_escape_attribute()
49 if (!table) in inat_get_escape_attribute()
51 if (inat_has_variant(table[opcode]) && lpfx_id) { in inat_get_escape_attribute()
52 table = inat_escape_tables[n][lpfx_id]; in inat_get_escape_attribute()
53 if (!table) in inat_get_escape_attribute()
56 return table[opcode]; in inat_get_escape_attribute()
62 const insn_attr_t *table; in inat_get_group_attribute() local
67 table = inat_group_tables[n][0]; in inat_get_group_attribute()
68 if (!table) in inat_get_group_attribute()
70 if (inat_has_variant(table[X86_MODRM_REG(modrm)]) && lpfx_id) { in inat_get_group_attribute()
71 table = inat_group_tables[n][lpfx_id]; in inat_get_group_attribute()
72 if (!table) in inat_get_group_attribute()
75 return table[X86_MODRM_REG(modrm)] | in inat_get_group_attribute()
82 const insn_attr_t *table; in inat_get_avx_attribute() local
86 table = inat_avx_tables[vex_m][0]; in inat_get_avx_attribute()
87 if (!table) in inat_get_avx_attribute()
89 if (!inat_is_group(table[opcode]) && vex_p) { in inat_get_avx_attribute()
91 table = inat_avx_tables[vex_m][vex_p]; in inat_get_avx_attribute()
92 if (!table) in inat_get_avx_attribute()
95 return table[opcode]; in inat_get_avx_attribute()