Lines Matching refs:asmspec
912 decode_reg_name_and_count (const char *asmspec, int *pnregs) in decode_reg_name_and_count() argument
917 if (asmspec != 0) in decode_reg_name_and_count()
922 asmspec = strip_reg_name (asmspec); in decode_reg_name_and_count()
925 for (i = strlen (asmspec) - 1; i >= 0; i--) in decode_reg_name_and_count()
926 if (! ISDIGIT (asmspec[i])) in decode_reg_name_and_count()
928 if (asmspec[0] != 0 && i < 0) in decode_reg_name_and_count()
930 i = atoi (asmspec); in decode_reg_name_and_count()
939 && ! strcmp (asmspec, strip_reg_name (reg_names[i]))) in decode_reg_name_and_count()
953 && ! strcmp (asmspec, table[i].name)) in decode_reg_name_and_count()
968 && ! strcmp (asmspec, table[i].name) in decode_reg_name_and_count()
974 if (!strcmp (asmspec, "memory")) in decode_reg_name_and_count()
977 if (!strcmp (asmspec, "cc")) in decode_reg_name_and_count()
1393 const char *asmspec = name+1; in make_decl_rtl() local
1395 reg_number = decode_reg_name (asmspec); in make_decl_rtl()