Lines Matching refs:arg
88 set_option (char *arg) in set_option() argument
92 if (strcmp (arg, "all-extensions") == 0 in set_option()
93 || strcmp (arg, "all") == 0) in set_option()
99 else if (strcmp (arg, "no-extensions") == 0) in set_option()
106 if (strncmp (arg, "no-", 3) == 0) in set_option()
109 arg += 3; in set_option()
113 if (strcmp (arg, "cis") == 0) in set_option()
116 else if (strcmp (arg, "csm") == 0) in set_option()
119 else if (strcmp (arg, "eis") == 0) in set_option()
122 else if (strcmp (arg, "fis") == 0 in set_option()
123 || strcmp (arg, "kev11") == 0 in set_option()
124 || strcmp (arg, "kev-11") == 0) in set_option()
127 else if (strcmp (arg, "fpp") == 0 in set_option()
128 || strcmp (arg, "fpu") == 0 in set_option()
129 || strcmp (arg, "fp11") == 0 in set_option()
130 || strcmp (arg, "fp-11") == 0 in set_option()
131 || strcmp (arg, "fpj11") == 0 in set_option()
132 || strcmp (arg, "fp-j11") == 0 in set_option()
133 || strcmp (arg, "fpj-11") == 0) in set_option()
136 else if (strcmp (arg, "limited-eis") == 0) in set_option()
143 else if (strcmp (arg, "mfpt") == 0) in set_option()
146 else if (strncmp (arg, "mproc", 5) == 0 in set_option()
148 || strncmp (arg, "multiproc", 9) == 0) in set_option()
151 else if (strcmp (arg, "mxps") == 0) in set_option()
154 else if (strcmp (arg, "pic") == 0) in set_option()
157 else if (strcmp (arg, "spl") == 0) in set_option()
160 else if (strcmp (arg, "ucode") == 0 in set_option()
162 || strcmp (arg, "microcode") == 0) in set_option()
1048 set_cpu_model (char *arg) in set_cpu_model() argument
1053 if (arg[0] == 'k') in set_cpu_model()
1054 arg++; in set_cpu_model()
1056 *model++ = *arg++; in set_cpu_model()
1063 if (arg[0] == 'f' || arg[0] == 'j') in set_cpu_model()
1064 model[-1] = *arg++; in set_cpu_model()
1068 if (arg[0] == 't') in set_cpu_model()
1069 model[-1] = *arg++; in set_cpu_model()
1072 if (arg[0] == '-') in set_cpu_model()
1073 arg++; in set_cpu_model()
1075 if (strncmp (arg, "11", 2) != 0) in set_cpu_model()
1077 arg += 2; in set_cpu_model()
1079 if (arg[0] == '-') in set_cpu_model()
1081 if (*++arg == 0) in set_cpu_model()
1086 if (arg[0] != 0) in set_cpu_model()
1087 *model++ = *arg++; in set_cpu_model()
1088 if (arg[0] != 0) in set_cpu_model()
1089 *model++ = *arg++; in set_cpu_model()
1164 set_machine_model (char *arg) in set_machine_model() argument
1166 if (strncmp (arg, "pdp-11/", 7) != 0 in set_machine_model()
1167 && strncmp (arg, "pdp11/", 6) != 0 in set_machine_model()
1168 && strncmp (arg, "11/", 3) != 0) in set_machine_model()
1171 if (strncmp (arg, "pdp", 3) == 0) in set_machine_model()
1172 arg += 3; in set_machine_model()
1173 if (arg[0] == '-') in set_machine_model()
1174 arg++; in set_machine_model()
1175 if (strncmp (arg, "11/", 3) == 0) in set_machine_model()
1176 arg += 3; in set_machine_model()
1178 if (strcmp (arg, "03") == 0) in set_machine_model()
1181 else if (strcmp (arg, "04") == 0) in set_machine_model()
1184 else if (strcmp (arg, "05") == 0 in set_machine_model()
1185 || strcmp (arg, "10") == 0) in set_machine_model()
1188 else if (strcmp (arg, "15") == 0 in set_machine_model()
1189 || strcmp (arg, "20") == 0) in set_machine_model()
1192 else if (strcmp (arg, "21") == 0) in set_machine_model()
1195 else if (strcmp (arg, "23") == 0 in set_machine_model()
1196 || strcmp (arg, "24") == 0) in set_machine_model()
1199 else if (strcmp (arg, "34") == 0 in set_machine_model()
1200 || strcmp (arg, "34a") == 0) in set_machine_model()
1203 else if (strcmp (arg, "35") == 0 in set_machine_model()
1204 || strcmp (arg, "40") == 0) in set_machine_model()
1207 else if (strcmp (arg, "44") == 0) in set_machine_model()
1210 else if (strcmp (arg, "45") == 0 in set_machine_model()
1211 || strcmp (arg, "50") == 0 in set_machine_model()
1212 || strcmp (arg, "55") == 0 in set_machine_model()
1213 || strcmp (arg, "70") == 0) in set_machine_model()
1216 else if (strcmp (arg, "60") == 0) in set_machine_model()
1219 else if (strcmp (arg, "53") == 0 in set_machine_model()
1220 || strcmp (arg, "73") == 0 in set_machine_model()
1221 || strcmp (arg, "83") == 0 in set_machine_model()
1222 || strcmp (arg, "84") == 0 in set_machine_model()
1223 || strcmp (arg, "93") == 0 in set_machine_model()
1224 || strcmp (arg, "94") == 0) in set_machine_model()
1251 md_parse_option (int c, char *arg) in md_parse_option() argument
1258 if (set_option (arg)) in md_parse_option()
1260 if (set_cpu_model (arg)) in md_parse_option()
1262 if (set_machine_model (arg)) in md_parse_option()
1267 if (set_cpu_model (arg)) in md_parse_option()
1272 if (set_machine_model (arg)) in md_parse_option()