Lines Matching refs:asmspec
930 decode_reg_name_and_count (const char *asmspec, int *pnregs) in decode_reg_name_and_count() argument
935 if (asmspec != 0) in decode_reg_name_and_count()
940 asmspec = strip_reg_name (asmspec); in decode_reg_name_and_count()
943 for (i = strlen (asmspec) - 1; i >= 0; i--) in decode_reg_name_and_count()
944 if (! ISDIGIT (asmspec[i])) in decode_reg_name_and_count()
946 if (asmspec[0] != 0 && i < 0) in decode_reg_name_and_count()
948 i = atoi (asmspec); in decode_reg_name_and_count()
957 && ! strcmp (asmspec, strip_reg_name (reg_names[i]))) in decode_reg_name_and_count()
971 && ! strcmp (asmspec, table[i].name)) in decode_reg_name_and_count()
986 && ! strcmp (asmspec, table[i].name) in decode_reg_name_and_count()
992 if (!strcmp (asmspec, "memory")) in decode_reg_name_and_count()
995 if (!strcmp (asmspec, "cc")) in decode_reg_name_and_count()
1407 const char *asmspec = name+1; in make_decl_rtl() local
1409 reg_number = decode_reg_name (asmspec); in make_decl_rtl()