Lines Matching refs:op_string

9615 check_VecOperations (char *op_string, char *op_end)  in check_VecOperations()  argument
9621 while (*op_string in check_VecOperations()
9622 && (op_end == NULL || op_string < op_end)) in check_VecOperations()
9624 saved = op_string; in check_VecOperations()
9625 if (*op_string == '{') in check_VecOperations()
9627 op_string++; in check_VecOperations()
9630 if (strncmp (op_string, "1to", 3) == 0) in check_VecOperations()
9637 op_string += 3; in check_VecOperations()
9638 if (*op_string == '8') in check_VecOperations()
9640 else if (*op_string == '4') in check_VecOperations()
9642 else if (*op_string == '2') in check_VecOperations()
9644 else if (*op_string == '1' in check_VecOperations()
9645 && *(op_string+1) == '6') in check_VecOperations()
9648 op_string++; in check_VecOperations()
9655 op_string++; in check_VecOperations()
9663 else if ((mask = parse_register (op_string, &end_op)) != NULL) in check_VecOperations()
9696 op_string = end_op; in check_VecOperations()
9699 else if (*op_string == 'z') in check_VecOperations()
9729 op_string++; in check_VecOperations()
9734 if (*op_string != '}') in check_VecOperations()
9739 op_string++; in check_VecOperations()
9743 if (is_space_char (*op_string)) in check_VecOperations()
9744 ++op_string; in check_VecOperations()
9760 return op_string; in check_VecOperations()
10489 char *op_string = operand_string; in i386_att_operand() local
10491 if (is_space_char (*op_string)) in i386_att_operand()
10492 ++op_string; in i386_att_operand()
10496 if (*op_string == ABSOLUTE_PREFIX) in i386_att_operand()
10498 ++op_string; in i386_att_operand()
10499 if (is_space_char (*op_string)) in i386_att_operand()
10500 ++op_string; in i386_att_operand()
10505 if ((r = parse_register (op_string, &end_op)) != NULL) in i386_att_operand()
10511 op_string = end_op; in i386_att_operand()
10512 if (is_space_char (*op_string)) in i386_att_operand()
10513 ++op_string; in i386_att_operand()
10514 if (*op_string == ':' && r->reg_type.bitfield.class == SReg) in i386_att_operand()
10539 ++op_string; in i386_att_operand()
10540 if (is_space_char (*op_string)) in i386_att_operand()
10541 ++op_string; in i386_att_operand()
10543 if (!is_digit_char (*op_string) in i386_att_operand()
10544 && !is_identifier_char (*op_string) in i386_att_operand()
10545 && *op_string != '(' in i386_att_operand()
10546 && *op_string != ABSOLUTE_PREFIX) in i386_att_operand()
10548 as_bad (_("bad memory operand `%s'"), op_string); in i386_att_operand()
10552 if (*op_string == ABSOLUTE_PREFIX) in i386_att_operand()
10554 ++op_string; in i386_att_operand()
10555 if (is_space_char (*op_string)) in i386_att_operand()
10556 ++op_string; in i386_att_operand()
10563 if (*op_string == '{') in i386_att_operand()
10565 op_string = check_VecOperations (op_string, NULL); in i386_att_operand()
10566 if (op_string == NULL) in i386_att_operand()
10570 if (*op_string) in i386_att_operand()
10572 as_bad (_("junk `%s' after register"), op_string); in i386_att_operand()
10583 else if (*op_string == REGISTER_PREFIX) in i386_att_operand()
10585 as_bad (_("bad register name `%s'"), op_string); in i386_att_operand()
10588 else if (*op_string == IMMEDIATE_PREFIX) in i386_att_operand()
10590 ++op_string; in i386_att_operand()
10596 if (!i386_immediate (op_string)) in i386_att_operand()
10604 else if (is_digit_char (*op_string) in i386_att_operand()
10605 || is_identifier_char (*op_string) in i386_att_operand()
10606 || *op_string == '"' in i386_att_operand()
10607 || *op_string == '(') in i386_att_operand()
10633 base_string = op_string + strlen (op_string); in i386_att_operand()
10636 vop_start = strchr (op_string, '{'); in i386_att_operand()
10649 displacement_string_start = op_string; in i386_att_operand()
10805 output_invalid (*op_string), in i386_att_operand()
10807 op_string); in i386_att_operand()