Lines Matching refs:asmspec
850 decode_reg_name_and_count (const char *asmspec, int *pnregs) in decode_reg_name_and_count() argument
855 if (asmspec != 0) in decode_reg_name_and_count()
860 asmspec = strip_reg_name (asmspec); in decode_reg_name_and_count()
863 for (i = strlen (asmspec) - 1; i >= 0; i--) in decode_reg_name_and_count()
864 if (! ISDIGIT (asmspec[i])) in decode_reg_name_and_count()
866 if (asmspec[0] != 0 && i < 0) in decode_reg_name_and_count()
868 i = atoi (asmspec); in decode_reg_name_and_count()
877 && ! strcmp (asmspec, strip_reg_name (reg_names[i]))) in decode_reg_name_and_count()
891 && ! strcmp (asmspec, table[i].name)) in decode_reg_name_and_count()
906 && ! strcmp (asmspec, table[i].name)) in decode_reg_name_and_count()
911 if (!strcmp (asmspec, "memory")) in decode_reg_name_and_count()
914 if (!strcmp (asmspec, "cc")) in decode_reg_name_and_count()
1206 const char *asmspec = name+1; in make_decl_rtl() local
1208 reg_number = decode_reg_name (asmspec); in make_decl_rtl()