Lines Matching defs:option

13    the Free Software Foundation; either version 3, or (at your option)
102 If you have a target that requires a default CPU option then the you
5476 [Rn], {option} .reg=Rn .imm=option .immisreg=0
5654 /* [Rn], {expr} - unindexed, with option */
5661 inst.error = _("'}' expected at end of 'option' field");
5666 inst.error = _("cannot combine index with option");
6137 /* Ensure the option is valid on the current architecture. */
6141 /* Add the appropriate architecture feature for the barrier option used.
6148 /* Parse an option for a barrier instruction. Returns the encoding for the
6149 option, or FAIL. */
6695 /* ISB can only take SY as an option. */ \
25206 See if it's a processor-specific option.
25282 struct option md_longopts[] =
25299 const char *option; /* Option name to match. */
25336 const char *option; /* Option name to match. */
25878 const char * option; /* Substring to match. */
25880 int (* func) (const char * subopt); /* Function to decode sub-option. */
26230 /* Listing option. Just ignore these, we don't support additional
26235 for (opt = arm_opts; opt->option != NULL; opt++)
26237 if (c == opt->option[0]
26238 && ((arg == NULL && opt->option[1] == 0)
26239 || streq (arg, opt->option + 1)))
26241 /* If the option is deprecated, tell the user. */
26243 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
26253 for (fopt = arm_legacy_opts; fopt->option != NULL; fopt++)
26255 if (c == fopt->option[0]
26256 && ((arg == NULL && fopt->option[1] == 0)
26257 || streq (arg, fopt->option + 1)))
26259 /* If the option is deprecated, tell the user. */
26261 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
26271 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
26274 if (c == lopt->option[0]
26276 && strncmp (arg, lopt->option + 1,
26277 strlen (lopt->option + 1)) == 0)
26279 /* If the option is deprecated, tell the user. */
26281 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
26284 /* Call the sup-option parser. */
26285 return lopt->func (arg + strlen (lopt->option) - 1);
26303 for (opt = arm_opts; opt->option != NULL; opt++)
26305 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
26307 for (lopt = arm_long_opts; lopt->option != NULL; lopt++)
26309 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));