Lines Matching refs:operand_error_report

3656 operand_errors operand_error_report;  variable
3666 if (operand_error_report.head != NULL) in init_operand_error_report()
3668 gas_assert (operand_error_report.tail != NULL); in init_operand_error_report()
3669 operand_error_report.tail->next = free_opnd_error_record_nodes; in init_operand_error_report()
3670 free_opnd_error_record_nodes = operand_error_report.head; in init_operand_error_report()
3671 operand_error_report.head = NULL; in init_operand_error_report()
3672 operand_error_report.tail = NULL; in init_operand_error_report()
3675 gas_assert (operand_error_report.tail == NULL); in init_operand_error_report()
3684 operand_error_record *record = operand_error_report.head; in opcode_has_operand_error_p()
3697 operand_error_record* record = operand_error_report.head; in add_operand_error_record()
3717 record->next = operand_error_report.head; in add_operand_error_record()
3718 operand_error_report.head = record; in add_operand_error_record()
3719 if (operand_error_report.tail == NULL) in add_operand_error_record()
3720 operand_error_report.tail = record; in add_operand_error_record()
3799 operand_error_record* record = operand_error_report.head; in remove_operand_error_record()
3800 gas_assert (record != NULL && operand_error_report.tail != NULL); in remove_operand_error_record()
3801 operand_error_report.head = record->next; in remove_operand_error_record()
3804 if (operand_error_report.head == NULL) in remove_operand_error_record()
3806 gas_assert (operand_error_report.tail == record); in remove_operand_error_record()
3807 operand_error_report.tail = NULL; in remove_operand_error_record()
4122 operand_error_record *head = operand_error_report.head; in output_operand_error_report()
4129 gas_assert (head != NULL && operand_error_report.tail != NULL); in output_operand_error_report()
4132 if (head == operand_error_report.tail) in output_operand_error_report()