Lines Matching refs:op_string
7936 check_VecOperations (char *op_string, char *op_end) in check_VecOperations() argument
7942 while (*op_string in check_VecOperations()
7943 && (op_end == NULL || op_string < op_end)) in check_VecOperations()
7945 saved = op_string; in check_VecOperations()
7946 if (*op_string == '{') in check_VecOperations()
7948 op_string++; in check_VecOperations()
7951 if (strncmp (op_string, "1to", 3) == 0) in check_VecOperations()
7958 op_string += 3; in check_VecOperations()
7959 if (*op_string == '8') in check_VecOperations()
7961 else if (*op_string == '4') in check_VecOperations()
7963 else if (*op_string == '2') in check_VecOperations()
7965 else if (*op_string == '1' in check_VecOperations()
7966 && *(op_string+1) == '6') in check_VecOperations()
7969 op_string++; in check_VecOperations()
7976 op_string++; in check_VecOperations()
7983 else if ((mask = parse_register (op_string, &end_op)) != NULL) in check_VecOperations()
7989 op_string); in check_VecOperations()
8016 op_string = end_op; in check_VecOperations()
8019 else if (*op_string == 'z') in check_VecOperations()
8049 op_string++; in check_VecOperations()
8054 if (*op_string != '}') in check_VecOperations()
8059 op_string++; in check_VecOperations()
8068 return op_string; in check_VecOperations()
8764 char *op_string = operand_string; in i386_att_operand() local
8766 if (is_space_char (*op_string)) in i386_att_operand()
8767 ++op_string; in i386_att_operand()
8771 if (*op_string == ABSOLUTE_PREFIX) in i386_att_operand()
8773 ++op_string; in i386_att_operand()
8774 if (is_space_char (*op_string)) in i386_att_operand()
8775 ++op_string; in i386_att_operand()
8780 if ((r = parse_register (op_string, &end_op)) != NULL) in i386_att_operand()
8786 op_string = end_op; in i386_att_operand()
8787 if (is_space_char (*op_string)) in i386_att_operand()
8788 ++op_string; in i386_att_operand()
8789 if (*op_string == ':' in i386_att_operand()
8816 ++op_string; in i386_att_operand()
8817 if (is_space_char (*op_string)) in i386_att_operand()
8818 ++op_string; in i386_att_operand()
8820 if (!is_digit_char (*op_string) in i386_att_operand()
8821 && !is_identifier_char (*op_string) in i386_att_operand()
8822 && *op_string != '(' in i386_att_operand()
8823 && *op_string != ABSOLUTE_PREFIX) in i386_att_operand()
8825 as_bad (_("bad memory operand `%s'"), op_string); in i386_att_operand()
8829 if (*op_string == ABSOLUTE_PREFIX) in i386_att_operand()
8831 ++op_string; in i386_att_operand()
8832 if (is_space_char (*op_string)) in i386_att_operand()
8833 ++op_string; in i386_att_operand()
8840 if (*op_string == '{') in i386_att_operand()
8842 op_string = check_VecOperations (op_string, NULL); in i386_att_operand()
8843 if (op_string == NULL) in i386_att_operand()
8847 if (*op_string) in i386_att_operand()
8849 as_bad (_("junk `%s' after register"), op_string); in i386_att_operand()
8860 else if (*op_string == REGISTER_PREFIX) in i386_att_operand()
8862 as_bad (_("bad register name `%s'"), op_string); in i386_att_operand()
8865 else if (*op_string == IMMEDIATE_PREFIX) in i386_att_operand()
8867 ++op_string; in i386_att_operand()
8873 if (!i386_immediate (op_string)) in i386_att_operand()
8881 else if (is_digit_char (*op_string) in i386_att_operand()
8882 || is_identifier_char (*op_string) in i386_att_operand()
8883 || *op_string == '"' in i386_att_operand()
8884 || *op_string == '(') in i386_att_operand()
8910 base_string = op_string + strlen (op_string); in i386_att_operand()
8913 vop_start = strchr (op_string, '{'); in i386_att_operand()
8926 displacement_string_start = op_string; in i386_att_operand()
9082 output_invalid (*op_string), in i386_att_operand()
9084 op_string); in i386_att_operand()