Home | History | Annotate | Download | only in config

Lines Matching full:detail

149    non-user errors in detail.
3988 aarch64_operand_error detail;
4073 else if (record->detail.kind != AARCH64_OPDE_NIL
4074 && record->detail.index <= new_record->detail.index
4075 && operand_error_higher_severity_p (record->detail.kind,
4076 new_record->detail.kind))
4083 operand_mismatch_kind_names[new_record->detail.kind],
4084 new_record->detail.index,
4085 operand_mismatch_kind_names[record->detail.kind],
4086 record->detail.index);
4090 record->detail = new_record->detail;
4099 record.detail = *error_info;
4292 const aarch64_operand_error *detail = &record->detail;
4293 int idx = detail->index;
4298 switch (detail->kind)
4310 if (detail->error != NULL)
4313 as_bad (_("%s -- `%s'"), detail->error, str);
4316 detail->error, idx + 1, str);
4424 if (detail->data[0] != detail->data[1])
4426 detail->error ? detail->error : _("immediate value"),
4427 detail->data[0], detail->data[1], idx + 1, str);
4430 detail->error ? detail->error : _("immediate value"),
4431 detail->data[0], idx + 1, str);
4435 if (detail->data[0] == 1)
4442 detail->data[0], idx + 1, str);
4448 detail->data[0], idx + 1, str);
4484 operand_mismatch_kind_names[head->detail.kind]);
4494 gas_assert (curr->detail.kind != AARCH64_OPDE_NIL);
4495 DEBUG_TRACE ("\t%s", operand_mismatch_kind_names[curr->detail.kind]);
4496 if (operand_error_higher_severity_p (curr->detail.kind, kind))
4497 kind = curr->detail.kind;
4505 if (curr->detail.kind != kind)
4511 if (curr->detail.index > largest_error_pos
4512 || (curr->detail.index == largest_error_pos && msg == NULL
4513 && curr->detail.error != NULL))
4515 largest_error_pos = curr->detail.index;
4517 msg = record->detail.error;
4523 operand_mismatch_kind_names[record->detail.kind]);