Lines Matching defs:option

11    (at your option) any later version.
3793 /* Parse an option for a preload instruction. Returns the encoding for the
3794 option, or PARSE_FAIL. */
3814 /* Parse an option for a barrier instruction. Returns the encoding for the
3815 option, or PARSE_FAIL. */
3835 /* Parse an operand for a PSB barrier. Set *HINT_OPT to the hint-option record
3853 ( _("unknown or missing option to PSB"));
3859 /* PSB only accepts option name 'CSYNC'. */
3861 (_("the specified option is not accepted for PSB"));
3871 Returns the encoding for the option, or PARSE_FAIL.
3934 for the option, or NULL. */
6281 (_("the specified option is not accepted in ISB"));
8257 /* Skip xx00 - the unallocated values of option. */
8321 struct option md_longopts[] = {
8335 const char *option; /* Option name to match. */
8468 const char *option; /* Substring to match. */
8470 int (*func) (const char *subopt); /* Function to decode sub-option. */
8732 /* Listing option. Just ignore these, we don't support additional
8737 for (opt = aarch64_opts; opt->option != NULL; opt++)
8739 if (c == opt->option[0]
8740 && ((arg == NULL && opt->option[1] == 0)
8741 || streq (arg, opt->option + 1)))
8743 /* If the option is deprecated, tell the user. */
8745 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c,
8755 for (lopt = aarch64_long_opts; lopt->option != NULL; lopt++)
8758 if (c == lopt->option[0]
8760 && strncmp (arg, lopt->option + 1,
8761 strlen (lopt->option + 1)) == 0)
8763 /* If the option is deprecated, tell the user. */
8765 as_tsktsk (_("option `-%c%s' is deprecated: %s"), c, arg,
8768 /* Call the sup-option parser. */
8769 return lopt->func (arg + strlen (lopt->option) - 1);
8787 for (opt = aarch64_opts; opt->option != NULL; opt++)
8789 fprintf (fp, " -%-23s%s\n", opt->option, _(opt->help));
8791 for (lopt = aarch64_long_opts; lopt->option != NULL; lopt++)
8793 fprintf (fp, " -%s%s\n", lopt->option, _(lopt->help));