Lines Matching refs:detail
3635 aarch64_operand_error detail; member
3722 else if (record->detail.kind != AARCH64_OPDE_NIL in add_operand_error_record()
3723 && record->detail.index <= new_record->detail.index in add_operand_error_record()
3724 && operand_error_higher_severity_p (record->detail.kind, in add_operand_error_record()
3725 new_record->detail.kind)) in add_operand_error_record()
3732 operand_mismatch_kind_names[new_record->detail.kind], in add_operand_error_record()
3733 new_record->detail.index, in add_operand_error_record()
3734 operand_mismatch_kind_names[record->detail.kind], in add_operand_error_record()
3735 record->detail.index); in add_operand_error_record()
3739 record->detail = new_record->detail; in add_operand_error_record()
3748 record.detail = *error_info; in record_operand_error_info()
3942 const aarch64_operand_error *detail = &record->detail; in output_operand_error_record() local
3943 int idx = detail->index; in output_operand_error_record()
3948 switch (detail->kind) in output_operand_error_record()
3960 if (detail->error != NULL) in output_operand_error_record()
3963 as_bad (_("%s -- `%s'"), detail->error, str); in output_operand_error_record()
3966 detail->error, idx + 1, str); in output_operand_error_record()
4075 if (detail->data[0] != detail->data[1]) in output_operand_error_record()
4077 detail->error ? detail->error : _("immediate value"), in output_operand_error_record()
4078 detail->data[0], detail->data[1], idx + 1, str); in output_operand_error_record()
4081 detail->error ? detail->error : _("immediate value"), in output_operand_error_record()
4082 detail->data[0], idx + 1, str); in output_operand_error_record()
4086 if (detail->data[0] == 1) in output_operand_error_record()
4093 detail->data[0], idx + 1, str); in output_operand_error_record()
4099 detail->data[0], idx + 1, str); in output_operand_error_record()
4135 operand_mismatch_kind_names[head->detail.kind]); in output_operand_error_report()
4145 gas_assert (curr->detail.kind != AARCH64_OPDE_NIL); in output_operand_error_report()
4146 DEBUG_TRACE ("\t%s", operand_mismatch_kind_names[curr->detail.kind]); in output_operand_error_report()
4147 if (operand_error_higher_severity_p (curr->detail.kind, kind)) in output_operand_error_report()
4148 kind = curr->detail.kind; in output_operand_error_report()
4156 if (curr->detail.kind != kind) in output_operand_error_report()
4162 if (curr->detail.index > largest_error_pos in output_operand_error_report()
4163 || (curr->detail.index == largest_error_pos && msg == NULL in output_operand_error_report()
4164 && curr->detail.error != NULL)) in output_operand_error_report()
4166 largest_error_pos = curr->detail.index; in output_operand_error_report()
4168 msg = record->detail.error; in output_operand_error_report()
4174 operand_mismatch_kind_names[record->detail.kind]); in output_operand_error_report()