Lines Matching refs:intop

854     xtensa_operand_internal *intop;  in xtensa_operand_name()  local
856 intop = get_operand(intisa, opc, opnd); in xtensa_operand_name()
857 if (!intop) { in xtensa_operand_name()
860 return intop->name; in xtensa_operand_name()
869 xtensa_operand_internal *intop; in xtensa_operand_is_visible() local
882 intop = &intisa->operands[operand_id]; in xtensa_operand_is_visible()
884 if ((intop->flags & XTENSA_OPERAND_IS_INVISIBLE) == 0) { in xtensa_operand_is_visible()
920 xtensa_operand_internal *intop; in xtensa_operand_get_field() local
924 intop = get_operand(intisa, opc, opnd); in xtensa_operand_get_field()
925 if (!intop) { in xtensa_operand_get_field()
933 if (intop->field_id == XTENSA_UNDEFINED) { in xtensa_operand_get_field()
938 get_fn = intisa->slots[slot_id].get_field_fns[intop->field_id]; in xtensa_operand_get_field()
943 intop->name, slot, intisa->formats[fmt].name); in xtensa_operand_get_field()
956 xtensa_operand_internal *intop; in xtensa_operand_set_field() local
960 intop = get_operand(intisa, opc, opnd); in xtensa_operand_set_field()
961 if (!intop) { in xtensa_operand_set_field()
969 if (intop->field_id == XTENSA_UNDEFINED) { in xtensa_operand_set_field()
974 set_fn = intisa->slots[slot_id].set_field_fns[intop->field_id]; in xtensa_operand_set_field()
979 intop->name, slot, intisa->formats[fmt].name); in xtensa_operand_set_field()
991 xtensa_operand_internal *intop; in xtensa_operand_encode() local
994 intop = get_operand(intisa, opc, opnd); in xtensa_operand_encode()
995 if (!intop) { in xtensa_operand_encode()
999 if (!intop->encode) { in xtensa_operand_encode()
1017 if (intop->field_id == XTENSA_UNDEFINED) { in xtensa_operand_encode()
1026 intisa->slots[slot_id].get_field_fns[intop->field_id]; in xtensa_operand_encode()
1028 intisa->slots[slot_id].set_field_fns[intop->field_id]; in xtensa_operand_encode()
1049 if ((*intop->encode)(valp) || in xtensa_operand_encode()
1050 (test_val = *valp, (*intop->decode)(&test_val)) || in xtensa_operand_encode()
1065 xtensa_operand_internal *intop; in xtensa_operand_decode() local
1067 intop = get_operand(intisa, opc, opnd); in xtensa_operand_decode()
1068 if (!intop) { in xtensa_operand_decode()
1073 if (!intop->decode) { in xtensa_operand_decode()
1077 if ((*intop->decode)(valp)) { in xtensa_operand_decode()
1089 xtensa_operand_internal *intop; in xtensa_operand_is_register() local
1091 intop = get_operand(intisa, opc, opnd); in xtensa_operand_is_register()
1092 if (!intop) { in xtensa_operand_is_register()
1096 if ((intop->flags & XTENSA_OPERAND_IS_REGISTER) != 0) { in xtensa_operand_is_register()
1107 xtensa_operand_internal *intop; in xtensa_operand_regfile() local
1109 intop = get_operand(intisa, opc, opnd); in xtensa_operand_regfile()
1110 if (!intop) { in xtensa_operand_regfile()
1114 return intop->regfile; in xtensa_operand_regfile()
1121 xtensa_operand_internal *intop; in xtensa_operand_num_regs() local
1123 intop = get_operand(intisa, opc, opnd); in xtensa_operand_num_regs()
1124 if (!intop) { in xtensa_operand_num_regs()
1128 return intop->num_regs; in xtensa_operand_num_regs()
1135 xtensa_operand_internal *intop; in xtensa_operand_is_known_reg() local
1137 intop = get_operand(intisa, opc, opnd); in xtensa_operand_is_known_reg()
1138 if (!intop) { in xtensa_operand_is_known_reg()
1142 if ((intop->flags & XTENSA_OPERAND_IS_UNKNOWN) == 0) { in xtensa_operand_is_known_reg()
1152 xtensa_operand_internal *intop; in xtensa_operand_is_PCrelative() local
1154 intop = get_operand(intisa, opc, opnd); in xtensa_operand_is_PCrelative()
1155 if (!intop) { in xtensa_operand_is_PCrelative()
1159 if ((intop->flags & XTENSA_OPERAND_IS_PCRELATIVE) != 0) { in xtensa_operand_is_PCrelative()
1170 xtensa_operand_internal *intop; in xtensa_operand_do_reloc() local
1172 intop = get_operand(intisa, opc, opnd); in xtensa_operand_do_reloc()
1173 if (!intop) { in xtensa_operand_do_reloc()
1177 if ((intop->flags & XTENSA_OPERAND_IS_PCRELATIVE) == 0) { in xtensa_operand_do_reloc()
1181 if (!intop->do_reloc) { in xtensa_operand_do_reloc()
1187 if ((*intop->do_reloc)(valp, pc)) { in xtensa_operand_do_reloc()
1202 xtensa_operand_internal *intop; in xtensa_operand_undo_reloc() local
1204 intop = get_operand(intisa, opc, opnd); in xtensa_operand_undo_reloc()
1205 if (!intop) { in xtensa_operand_undo_reloc()
1209 if ((intop->flags & XTENSA_OPERAND_IS_PCRELATIVE) == 0) { in xtensa_operand_undo_reloc()
1213 if (!intop->undo_reloc) { in xtensa_operand_undo_reloc()
1219 if ((*intop->undo_reloc)(valp, pc)) { in xtensa_operand_undo_reloc()