Lines Matching refs:op_string
10566 check_VecOperations (char *op_string) in check_VecOperations() argument
10572 while (*op_string) in check_VecOperations()
10574 saved = op_string; in check_VecOperations()
10575 if (*op_string == '{') in check_VecOperations()
10577 op_string++; in check_VecOperations()
10580 if (startswith (op_string, "1to")) in check_VecOperations()
10587 op_string += 3; in check_VecOperations()
10588 if (*op_string == '8') in check_VecOperations()
10590 else if (*op_string == '4') in check_VecOperations()
10592 else if (*op_string == '2') in check_VecOperations()
10594 else if (*op_string == '1' in check_VecOperations()
10595 && *(op_string+1) == '6') in check_VecOperations()
10598 op_string++; in check_VecOperations()
10600 else if (*op_string == '3' in check_VecOperations()
10601 && *(op_string+1) == '2') in check_VecOperations()
10604 op_string++; in check_VecOperations()
10611 op_string++; in check_VecOperations()
10617 else if ((mask = parse_register (op_string, &end_op)) != NULL) in check_VecOperations()
10650 op_string = end_op; in check_VecOperations()
10653 else if (*op_string == 'z') in check_VecOperations()
10682 op_string++; in check_VecOperations()
10685 && (op_string = RC_SAE_specifier (op_string)) != NULL) in check_VecOperations()
10690 if (*op_string != '}') in check_VecOperations()
10695 op_string++; in check_VecOperations()
10699 if (is_space_char (*op_string)) in check_VecOperations()
10700 ++op_string; in check_VecOperations()
10716 return op_string; in check_VecOperations()
11428 char *op_string = operand_string; in i386_att_operand() local
11430 if (is_space_char (*op_string)) in i386_att_operand()
11431 ++op_string; in i386_att_operand()
11435 if (*op_string == ABSOLUTE_PREFIX) in i386_att_operand()
11437 ++op_string; in i386_att_operand()
11438 if (is_space_char (*op_string)) in i386_att_operand()
11439 ++op_string; in i386_att_operand()
11444 if ((r = parse_register (op_string, &end_op)) != NULL) in i386_att_operand()
11453 op_string = end_op; in i386_att_operand()
11454 if (is_space_char (*op_string)) in i386_att_operand()
11455 ++op_string; in i386_att_operand()
11456 if (*op_string == ':' && r->reg_type.bitfield.class == SReg) in i386_att_operand()
11461 ++op_string; in i386_att_operand()
11462 if (is_space_char (*op_string)) in i386_att_operand()
11463 ++op_string; in i386_att_operand()
11466 if (!i.jumpabsolute && *op_string == ABSOLUTE_PREFIX) in i386_att_operand()
11468 ++op_string; in i386_att_operand()
11469 if (is_space_char (*op_string)) in i386_att_operand()
11470 ++op_string; in i386_att_operand()
11474 if (!starts_memory_operand (*op_string)) in i386_att_operand()
11476 as_bad (_("bad memory operand `%s'"), op_string); in i386_att_operand()
11483 if (*op_string == '{') in i386_att_operand()
11485 op_string = check_VecOperations (op_string); in i386_att_operand()
11486 if (op_string == NULL) in i386_att_operand()
11490 if (*op_string) in i386_att_operand()
11492 as_bad (_("junk `%s' after register"), op_string); in i386_att_operand()
11518 else if (*op_string == REGISTER_PREFIX) in i386_att_operand()
11520 as_bad (_("bad register name `%s'"), op_string); in i386_att_operand()
11523 else if (*op_string == IMMEDIATE_PREFIX) in i386_att_operand()
11525 ++op_string; in i386_att_operand()
11531 if (!i386_immediate (op_string)) in i386_att_operand()
11553 else if (starts_memory_operand (*op_string)) in i386_att_operand()
11578 base_string = op_string + strlen (op_string); in i386_att_operand()
11589 while (base_string-- > op_string) in i386_att_operand()
11619 displacement_string_start = op_string; in i386_att_operand()
11781 output_invalid (*op_string), in i386_att_operand()
11783 op_string); in i386_att_operand()