Lines Matching refs:op_string

13342 check_VecOperations (char *op_string)  in check_VecOperations()  argument
13348 while (*op_string) in check_VecOperations()
13350 saved = op_string; in check_VecOperations()
13351 if (*op_string == '{') in check_VecOperations()
13353 op_string++; in check_VecOperations()
13356 if (startswith (op_string, "1to")) in check_VecOperations()
13363 op_string += 3; in check_VecOperations()
13364 if (*op_string == '8') in check_VecOperations()
13366 else if (*op_string == '4') in check_VecOperations()
13368 else if (*op_string == '2') in check_VecOperations()
13370 else if (*op_string == '1' in check_VecOperations()
13371 && *(op_string+1) == '6') in check_VecOperations()
13374 op_string++; in check_VecOperations()
13376 else if (*op_string == '3' in check_VecOperations()
13377 && *(op_string+1) == '2') in check_VecOperations()
13380 op_string++; in check_VecOperations()
13387 op_string++; in check_VecOperations()
13399 if (dot_insn () && *op_string == ':') in check_VecOperations()
13403 else if (dot_insn () && *op_string == ':') in check_VecOperations()
13406 switch (op_string[1]) in check_VecOperations()
13414 n = strtoul (op_string + 2, &end_op, 0); in check_VecOperations()
13419 op_string = end_op; in check_VecOperations()
13432 n = strtoul (op_string + 2, &end_op, 0); in check_VecOperations()
13436 if (op_string[1] == 's') in check_VecOperations()
13438 op_string = end_op; in check_VecOperations()
13444 else if ((mask = parse_register (op_string, &end_op)) != NULL) in check_VecOperations()
13477 op_string = end_op; in check_VecOperations()
13480 else if (*op_string == 'z') in check_VecOperations()
13509 op_string++; in check_VecOperations()
13512 && (op_string = RC_SAE_specifier (op_string)) != NULL) in check_VecOperations()
13517 if (*op_string != '}') in check_VecOperations()
13522 op_string++; in check_VecOperations()
13526 if (is_space_char (*op_string)) in check_VecOperations()
13527 ++op_string; in check_VecOperations()
13543 return op_string; in check_VecOperations()
14224 char *op_string = operand_string; in i386_att_operand() local
14226 if (is_space_char (*op_string)) in i386_att_operand()
14227 ++op_string; in i386_att_operand()
14231 if (*op_string == ABSOLUTE_PREFIX in i386_att_operand()
14234 ++op_string; in i386_att_operand()
14235 if (is_space_char (*op_string)) in i386_att_operand()
14236 ++op_string; in i386_att_operand()
14241 if ((r = parse_register (op_string, &end_op)) != NULL) in i386_att_operand()
14250 op_string = end_op; in i386_att_operand()
14251 if (is_space_char (*op_string)) in i386_att_operand()
14252 ++op_string; in i386_att_operand()
14253 if (*op_string == ':' && r->reg_type.bitfield.class == SReg) in i386_att_operand()
14258 ++op_string; in i386_att_operand()
14259 if (is_space_char (*op_string)) in i386_att_operand()
14260 ++op_string; in i386_att_operand()
14263 if (!i.jumpabsolute && *op_string == ABSOLUTE_PREFIX in i386_att_operand()
14266 ++op_string; in i386_att_operand()
14267 if (is_space_char (*op_string)) in i386_att_operand()
14268 ++op_string; in i386_att_operand()
14272 if (!starts_memory_operand (*op_string)) in i386_att_operand()
14274 as_bad (_("bad memory operand `%s'"), op_string); in i386_att_operand()
14281 if (*op_string == '{') in i386_att_operand()
14283 op_string = check_VecOperations (op_string); in i386_att_operand()
14284 if (op_string == NULL) in i386_att_operand()
14288 if (*op_string) in i386_att_operand()
14290 as_bad (_("junk `%s' after register"), op_string); in i386_att_operand()
14325 else if (*op_string == REGISTER_PREFIX) in i386_att_operand()
14327 as_bad (_("bad register name `%s'"), op_string); in i386_att_operand()
14330 else if (*op_string == IMMEDIATE_PREFIX) in i386_att_operand()
14332 ++op_string; in i386_att_operand()
14338 if (!i386_immediate (op_string)) in i386_att_operand()
14360 else if (starts_memory_operand (*op_string)) in i386_att_operand()
14374 base_string = op_string + strlen (op_string); in i386_att_operand()
14385 while (base_string-- > op_string) in i386_att_operand()
14415 displacement_string_start = op_string; in i386_att_operand()
14427 for (temp_string = op_string; temp_string < end_op; temp_string++) in i386_att_operand()
14585 output_invalid (*op_string), in i386_att_operand()
14587 op_string); in i386_att_operand()