1 /* Simulator option handling.
2 Copyright (C) 1996, 1997, 2004, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
4 Contributed by Cygnus Support.
6 This file is part of GDB, the GNU debugger.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
33 #include "libiberty.h"
34 #include "sim-options.h"
36 #include "sim-assert.h"
40 /* Add a set of options to the simulator.
41 TABLE is an array of OPTIONS terminated by a NULL `opt.name' entry.
42 This is intended to be called by modules in their `install' handler. */
45 sim_add_option_table (SIM_DESC sd, sim_cpu *cpu, const OPTION *table)
47 struct option_list *ol = ((struct option_list *)
48 xmalloc (sizeof (struct option_list)));
50 /* Note: The list is constructed in the reverse order we're called so
51 later calls will override earlier ones (in case that ever happens).
52 This is the intended behaviour. */
56 ol->next = CPU_OPTIONS (cpu);
58 CPU_OPTIONS (cpu) = ol;
62 ol->next = STATE_OPTIONS (sd);
64 STATE_OPTIONS (sd) = ol;
70 /* Standard option table.
71 Modules may specify additional ones.
72 The caller of sim_parse_args may also specify additional options
73 by calling sim_add_option_table first. */
75 static DECLARE_OPTION_HANDLER (standard_option_handler);
77 /* FIXME: We shouldn't print in --help output options that aren't usable.
78 Some fine tuning will be necessary. One can either move less general
79 options to another table or use a HAVE_FOO macro to ifdef out unavailable
82 /* ??? One might want to conditionally compile out the entries that
83 aren't enabled. There's a distinction, however, between options a
84 simulator can't support and options that haven't been configured in.
85 Certainly options a simulator can't support shouldn't appear in the
86 output of --help. Whether the same thing applies to options that haven't
87 been configured in or not isn't something I can get worked up over.
88 [Note that conditionally compiling them out might simply involve moving
89 the option to another table.]
90 If you decide to conditionally compile them out as well, delete this
91 comment and add a comment saying that that is the rule. */
94 OPTION_DEBUG_INSN = OPTION_START,
99 OPTION_ARCHITECTURE_INFO,
105 #ifdef SIM_HAVE_FLATMEM
109 #ifdef SIM_H8300 /* FIXME: Should be movable to h8300 dir. */
119 static const OPTION standard_options[] =
121 { {"verbose", no_argument, NULL, OPTION_VERBOSE},
122 'v', NULL, "Verbose output",
123 standard_option_handler },
125 { {"endian", required_argument, NULL, OPTION_ENDIAN},
126 'E', "big|little", "Set endianness",
127 standard_option_handler },
129 #ifdef SIM_HAVE_ENVIRONMENT
130 /* This option isn't supported unless all choices are supported in keeping
131 with the goal of not printing in --help output things the simulator can't
132 do [as opposed to things that just haven't been configured in]. */
133 { {"environment", required_argument, NULL, OPTION_ENVIRONMENT},
134 '\0', "user|virtual|operating", "Set running environment",
135 standard_option_handler },
138 { {"alignment", required_argument, NULL, OPTION_ALIGNMENT},
139 '\0', "strict|nonstrict|forced", "Set memory access alignment",
140 standard_option_handler },
142 { {"debug", no_argument, NULL, OPTION_DEBUG},
143 'D', NULL, "Print debugging messages",
144 standard_option_handler },
145 { {"debug-insn", no_argument, NULL, OPTION_DEBUG_INSN},
146 '\0', NULL, "Print instruction debugging messages",
147 standard_option_handler },
148 { {"debug-file", required_argument, NULL, OPTION_DEBUG_FILE},
149 '\0', "FILE NAME", "Specify debugging output file",
150 standard_option_handler },
152 #ifdef SIM_H8300 /* FIXME: Should be movable to h8300 dir. */
153 { {"h8300h", no_argument, NULL, OPTION_H8300H},
154 'h', NULL, "Indicate the CPU is H8/300H",
155 standard_option_handler },
156 { {"h8300s", no_argument, NULL, OPTION_H8300S},
157 'S', NULL, "Indicate the CPU is H8S",
158 standard_option_handler },
159 { {"h8300sx", no_argument, NULL, OPTION_H8300SX},
160 'x', NULL, "Indicate the CPU is H8SX",
161 standard_option_handler },
164 #ifdef SIM_HAVE_FLATMEM
165 { {"mem-size", required_argument, NULL, OPTION_MEM_SIZE},
166 'm', "<size>[in bytes, Kb (k suffix), Mb (m suffix) or Gb (g suffix)]",
167 "Specify memory size", standard_option_handler },
170 { {"do-command", required_argument, NULL, OPTION_DO_COMMAND},
171 '\0', "COMMAND", ""/*undocumented*/,
172 standard_option_handler },
174 { {"help", no_argument, NULL, OPTION_HELP},
175 'H', NULL, "Print help information",
176 standard_option_handler },
178 { {"architecture", required_argument, NULL, OPTION_ARCHITECTURE},
179 '\0', "MACHINE", "Specify the architecture to use",
180 standard_option_handler },
181 { {"architecture-info", no_argument, NULL, OPTION_ARCHITECTURE_INFO},
182 '\0', NULL, "List supported architectures",
183 standard_option_handler },
184 { {"info-architecture", no_argument, NULL, OPTION_ARCHITECTURE_INFO},
186 standard_option_handler },
188 { {"target", required_argument, NULL, OPTION_TARGET},
189 '\0', "BFDNAME", "Specify the object-code format for the object files",
190 standard_option_handler },
192 #ifdef SIM_HANDLES_LMA
193 { {"load-lma", no_argument, NULL, OPTION_LOAD_LMA},
196 "Use VMA or LMA addresses when loading image (default LMA)",
198 "Use VMA or LMA addresses when loading image (default VMA)",
200 standard_option_handler, "load-{lma,vma}" },
201 { {"load-vma", no_argument, NULL, OPTION_LOAD_VMA},
202 '\0', NULL, "", standard_option_handler, "" },
205 { {"sysroot", required_argument, NULL, OPTION_SYSROOT},
207 "Root for system calls with absolute file-names and cwd at start",
208 standard_option_handler },
210 { {NULL, no_argument, NULL, 0}, '\0', NULL, NULL, NULL }
214 standard_option_handler (SIM_DESC sd, sim_cpu *cpu, int opt,
215 char *arg, int is_command)
219 switch ((STANDARD_OPTIONS) opt)
222 STATE_VERBOSE_P (sd) = 1;
226 if (strcmp (arg, "big") == 0)
228 if (WITH_TARGET_BYTE_ORDER == LITTLE_ENDIAN)
230 sim_io_eprintf (sd, "Simulator compiled for little endian only.\n");
233 /* FIXME:wip: Need to set something in STATE_CONFIG. */
234 current_target_byte_order = BIG_ENDIAN;
236 else if (strcmp (arg, "little") == 0)
238 if (WITH_TARGET_BYTE_ORDER == BIG_ENDIAN)
240 sim_io_eprintf (sd, "Simulator compiled for big endian only.\n");
243 /* FIXME:wip: Need to set something in STATE_CONFIG. */
244 current_target_byte_order = LITTLE_ENDIAN;
248 sim_io_eprintf (sd, "Invalid endian specification `%s'\n", arg);
253 case OPTION_ENVIRONMENT:
254 if (strcmp (arg, "user") == 0)
255 STATE_ENVIRONMENT (sd) = USER_ENVIRONMENT;
256 else if (strcmp (arg, "virtual") == 0)
257 STATE_ENVIRONMENT (sd) = VIRTUAL_ENVIRONMENT;
258 else if (strcmp (arg, "operating") == 0)
259 STATE_ENVIRONMENT (sd) = OPERATING_ENVIRONMENT;
262 sim_io_eprintf (sd, "Invalid environment specification `%s'\n", arg);
265 if (WITH_ENVIRONMENT != ALL_ENVIRONMENT
266 && WITH_ENVIRONMENT != STATE_ENVIRONMENT (sd))
269 switch (WITH_ENVIRONMENT)
271 case USER_ENVIRONMENT: type = "user"; break;
272 case VIRTUAL_ENVIRONMENT: type = "virtual"; break;
273 case OPERATING_ENVIRONMENT: type = "operating"; break;
275 sim_io_eprintf (sd, "Simulator compiled for the %s environment only.\n",
281 case OPTION_ALIGNMENT:
282 if (strcmp (arg, "strict") == 0)
284 if (WITH_ALIGNMENT == 0 || WITH_ALIGNMENT == STRICT_ALIGNMENT)
286 current_alignment = STRICT_ALIGNMENT;
290 else if (strcmp (arg, "nonstrict") == 0)
292 if (WITH_ALIGNMENT == 0 || WITH_ALIGNMENT == NONSTRICT_ALIGNMENT)
294 current_alignment = NONSTRICT_ALIGNMENT;
298 else if (strcmp (arg, "forced") == 0)
300 if (WITH_ALIGNMENT == 0 || WITH_ALIGNMENT == FORCED_ALIGNMENT)
302 current_alignment = FORCED_ALIGNMENT;
308 sim_io_eprintf (sd, "Invalid alignment specification `%s'\n", arg);
311 switch (WITH_ALIGNMENT)
313 case STRICT_ALIGNMENT:
314 sim_io_eprintf (sd, "Simulator compiled for strict alignment only.\n");
316 case NONSTRICT_ALIGNMENT:
317 sim_io_eprintf (sd, "Simulator compiled for nonstrict alignment only.\n");
319 case FORCED_ALIGNMENT:
320 sim_io_eprintf (sd, "Simulator compiled for forced alignment only.\n");
327 sim_io_eprintf (sd, "Debugging not compiled in, `-D' ignored\n");
330 for (n = 0; n < MAX_NR_PROCESSORS; ++n)
331 for (i = 0; i < MAX_DEBUG_VALUES; ++i)
332 CPU_DEBUG_FLAGS (STATE_CPU (sd, n))[i] = 1;
336 case OPTION_DEBUG_INSN :
338 sim_io_eprintf (sd, "Debugging not compiled in, `--debug-insn' ignored\n");
341 for (n = 0; n < MAX_NR_PROCESSORS; ++n)
342 CPU_DEBUG_FLAGS (STATE_CPU (sd, n))[DEBUG_INSN_IDX] = 1;
346 case OPTION_DEBUG_FILE :
348 sim_io_eprintf (sd, "Debugging not compiled in, `--debug-file' ignored\n");
351 FILE *f = fopen (arg, "w");
355 sim_io_eprintf (sd, "Unable to open debug output file `%s'\n", arg);
358 for (n = 0; n < MAX_NR_PROCESSORS; ++n)
359 CPU_DEBUG_FILE (STATE_CPU (sd, n)) = f;
363 #ifdef SIM_H8300 /* FIXME: Can be moved to h8300 dir. */
365 set_h8300h (bfd_mach_h8300h);
368 set_h8300h (bfd_mach_h8300s);
371 set_h8300h (bfd_mach_h8300sx);
375 #ifdef SIM_HAVE_FLATMEM
376 case OPTION_MEM_SIZE:
379 unsigned long ul = strtol (arg, &endp, 0);
383 case 'k': case 'K': size <<= 10; break;
384 case 'm': case 'M': size <<= 20; break;
385 case 'g': case 'G': size <<= 30; break;
386 case ' ': case '\0': case '\t': break;
389 sim_io_eprintf (sd, "Ignoring strange character at end of memory size: %c\n", * endp);
393 /* 16384: some minimal amount */
394 if (! isdigit (arg[0]) || ul < 16384)
396 sim_io_eprintf (sd, "Invalid memory size `%s'", arg);
399 STATE_MEM_SIZE (sd) = ul;
404 case OPTION_DO_COMMAND:
405 sim_do_command (sd, arg);
408 case OPTION_ARCHITECTURE:
410 const struct bfd_arch_info *ap = bfd_scan_arch (arg);
413 sim_io_eprintf (sd, "Architecture `%s' unknown\n", arg);
416 STATE_ARCHITECTURE (sd) = ap;
420 case OPTION_ARCHITECTURE_INFO:
422 const char **list = bfd_arch_list();
426 sim_io_printf (sd, "Possible architectures:");
427 for (lp = list; *lp != NULL; lp++)
428 sim_io_printf (sd, " %s", *lp);
429 sim_io_printf (sd, "\n");
436 STATE_TARGET (sd) = xstrdup (arg);
440 case OPTION_LOAD_LMA:
442 STATE_LOAD_AT_LMA_P (sd) = 1;
446 case OPTION_LOAD_VMA:
448 STATE_LOAD_AT_LMA_P (sd) = 0;
453 sim_print_help (sd, is_command);
454 if (STATE_OPEN_KIND (sd) == SIM_OPEN_STANDALONE)
456 /* FIXME: 'twould be nice to do something similar if gdb. */
460 /* Don't leak memory in the odd event that there's lots of
461 --sysroot=... options. */
462 if (simulator_sysroot[0] != '\0' && arg[0] != '\0')
463 free (simulator_sysroot);
464 simulator_sysroot = xstrdup (arg);
471 /* Add the standard option list to the simulator. */
474 standard_install (SIM_DESC sd)
476 SIM_ASSERT (STATE_MAGIC (sd) == SIM_MAGIC_NUMBER);
477 if (sim_add_option_table (sd, NULL, standard_options) != SIM_RC_OK)
479 #ifdef SIM_HANDLES_LMA
480 STATE_LOAD_AT_LMA_P (sd) = SIM_HANDLES_LMA;
485 /* Return non-zero if arg is a duplicate argument.
486 If ARG is NULL, initialize. */
488 #define ARG_HASH_SIZE 97
489 #define ARG_HASH(a) ((256 * (unsigned char) a[0] + (unsigned char) a[1]) % ARG_HASH_SIZE)
492 dup_arg_p (const char *arg)
495 static const char **arg_table = NULL;
499 if (arg_table == NULL)
500 arg_table = (const char **) xmalloc (ARG_HASH_SIZE * sizeof (char *));
501 memset (arg_table, 0, ARG_HASH_SIZE * sizeof (char *));
505 hash = ARG_HASH (arg);
506 while (arg_table[hash] != NULL)
508 if (strcmp (arg, arg_table[hash]) == 0)
510 /* We assume there won't be more than ARG_HASH_SIZE arguments so we
511 don't check if the table is full. */
512 if (++hash == ARG_HASH_SIZE)
515 arg_table[hash] = arg;
519 /* Called by sim_open to parse the arguments. */
522 sim_parse_args (SIM_DESC sd, char **argv)
524 int c, i, argc, num_opts;
525 char *p, *short_options;
526 /* The `val' option struct entry is dynamically assigned for options that
527 only come in the long form. ORIG_VAL is used to get the original value
530 struct option *lp, *long_options;
531 const struct option_list *ol;
533 OPTION_HANDLER **handlers;
535 SIM_RC result = SIM_RC_OK;
537 /* Count the number of arguments. */
538 for (argc = 0; argv[argc] != NULL; ++argc)
541 /* Count the number of options. */
543 for (ol = STATE_OPTIONS (sd); ol != NULL; ol = ol->next)
544 for (opt = ol->options; OPTION_VALID_P (opt); ++opt)
546 for (i = 0; i < MAX_NR_PROCESSORS; ++i)
547 for (ol = CPU_OPTIONS (STATE_CPU (sd, i)); ol != NULL; ol = ol->next)
548 for (opt = ol->options; OPTION_VALID_P (opt); ++opt)
551 /* Initialize duplicate argument checker. */
552 (void) dup_arg_p (NULL);
554 /* Build the option table for getopt. */
556 long_options = NZALLOC (struct option, num_opts + 1);
558 short_options = NZALLOC (char, num_opts * 3 + 1);
560 handlers = NZALLOC (OPTION_HANDLER *, OPTION_START + num_opts);
561 orig_val = NZALLOC (int, OPTION_START + num_opts);
562 opt_cpu = NZALLOC (sim_cpu *, OPTION_START + num_opts);
564 /* Set '+' as first char so argument permutation isn't done. This
565 is done to stop getopt_long returning options that appear after
566 the target program. Such options should be passed unchanged into
567 the program image. */
570 for (i = OPTION_START, ol = STATE_OPTIONS (sd); ol != NULL; ol = ol->next)
571 for (opt = ol->options; OPTION_VALID_P (opt); ++opt)
573 if (dup_arg_p (opt->opt.name))
575 if (opt->shortopt != 0)
577 *p++ = opt->shortopt;
578 if (opt->opt.has_arg == required_argument)
580 else if (opt->opt.has_arg == optional_argument)
581 { *p++ = ':'; *p++ = ':'; }
582 handlers[(unsigned char) opt->shortopt] = opt->handler;
583 if (opt->opt.val != 0)
584 orig_val[(unsigned char) opt->shortopt] = opt->opt.val;
586 orig_val[(unsigned char) opt->shortopt] = opt->shortopt;
588 if (opt->opt.name != NULL)
591 /* Dynamically assign `val' numbers for long options. */
593 handlers[lp->val] = opt->handler;
594 orig_val[lp->val] = opt->opt.val;
595 opt_cpu[lp->val] = NULL;
600 for (c = 0; c < MAX_NR_PROCESSORS; ++c)
602 sim_cpu *cpu = STATE_CPU (sd, c);
603 for (ol = CPU_OPTIONS (cpu); ol != NULL; ol = ol->next)
604 for (opt = ol->options; OPTION_VALID_P (opt); ++opt)
606 #if 0 /* Each option is prepended with --<cpuname>- so this greatly cuts down
607 on the need for dup_arg_p checking. Maybe in the future it'll be
608 needed so this is just commented out, and not deleted. */
609 if (dup_arg_p (opt->opt.name))
612 /* Don't allow short versions of cpu specific options for now. */
613 if (opt->shortopt != 0)
615 sim_io_eprintf (sd, "internal error, short cpu specific option");
616 result = SIM_RC_FAIL;
619 if (opt->opt.name != NULL)
623 /* Prepend --<cpuname>- to the option. */
624 asprintf (&name, "%s-%s", CPU_NAME (cpu), lp->name);
626 /* Dynamically assign `val' numbers for long options. */
628 handlers[lp->val] = opt->handler;
629 orig_val[lp->val] = opt->opt.val;
630 opt_cpu[lp->val] = cpu;
636 /* Terminate the short and long option lists. */
640 /* Ensure getopt is initialized. */
647 optc = getopt_long (argc, argv, short_options, long_options, &longind);
650 if (STATE_OPEN_KIND (sd) == SIM_OPEN_STANDALONE)
651 STATE_PROG_ARGV (sd) = dupargv (argv + optind);
656 result = SIM_RC_FAIL;
660 if ((*handlers[optc]) (sd, opt_cpu[optc], orig_val[optc], optarg, 0/*!is_command*/) == SIM_RC_FAIL)
662 result = SIM_RC_FAIL;
667 zfree (long_options);
668 zfree (short_options);
675 /* Utility of sim_print_help to print a list of option tables. */
678 print_help (SIM_DESC sd, sim_cpu *cpu, const struct option_list *ol, int is_command)
682 for ( ; ol != NULL; ol = ol->next)
683 for (opt = ol->options; OPTION_VALID_P (opt); ++opt)
685 const int indent = 30;
689 if (dup_arg_p (opt->opt.name))
692 if (opt->doc == NULL)
695 if (opt->doc_name != NULL && opt->doc_name [0] == '\0')
698 sim_io_printf (sd, " ");
703 /* list any short options (aliases) for the current OPT */
709 if (o->shortopt != '\0')
711 sim_io_printf (sd, "%s-%c", comma ? ", " : "", o->shortopt);
712 len += (comma ? 2 : 0) + 2;
715 if (o->opt.has_arg == optional_argument)
717 sim_io_printf (sd, "[%s]", o->arg);
718 len += 1 + strlen (o->arg) + 1;
722 sim_io_printf (sd, " %s", o->arg);
723 len += 1 + strlen (o->arg);
730 while (OPTION_VALID_P (o) && o->doc == NULL);
733 /* list any long options (aliases) for the current OPT */
738 const char *cpu_prefix = cpu ? CPU_NAME (cpu) : NULL;
739 if (o->doc_name != NULL)
745 sim_io_printf (sd, "%s%s%s%s%s",
747 is_command ? "" : "--",
748 cpu ? cpu_prefix : "",
751 len += ((comma ? 2 : 0)
752 + (is_command ? 0 : 2)
756 if (o->opt.has_arg == optional_argument)
758 sim_io_printf (sd, "[=%s]", o->arg);
759 len += 2 + strlen (o->arg) + 1;
763 sim_io_printf (sd, " %s", o->arg);
764 len += 1 + strlen (o->arg);
771 while (OPTION_VALID_P (o) && o->doc == NULL);
775 sim_io_printf (sd, "\n%*s", indent, "");
778 sim_io_printf (sd, "%*s", indent - len, "");
780 /* print the description, word wrap long lines */
782 const char *chp = opt->doc;
783 unsigned doc_width = 80 - indent;
784 while (strlen (chp) >= doc_width) /* some slack */
786 const char *end = chp + doc_width - 1;
787 while (end > chp && !isspace (*end))
790 end = chp + doc_width - 1;
791 /* The cast should be ok - its distances between to
792 points in a string. */
793 sim_io_printf (sd, "%.*s\n%*s", (int) (end - chp), chp, indent,
796 while (isspace (*chp) && *chp != '\0')
799 sim_io_printf (sd, "%s\n", chp);
804 /* Print help messages for the options. */
807 sim_print_help (SIM_DESC sd, int is_command)
809 if (STATE_OPEN_KIND (sd) == SIM_OPEN_STANDALONE)
810 sim_io_printf (sd, "Usage: %s [options] program [program args]\n",
813 /* Initialize duplicate argument checker. */
814 (void) dup_arg_p (NULL);
816 if (STATE_OPEN_KIND (sd) == SIM_OPEN_STANDALONE)
817 sim_io_printf (sd, "Options:\n");
819 sim_io_printf (sd, "Commands:\n");
821 print_help (sd, NULL, STATE_OPTIONS (sd), is_command);
822 sim_io_printf (sd, "\n");
824 /* Print cpu-specific options. */
828 for (i = 0; i < MAX_NR_PROCESSORS; ++i)
830 sim_cpu *cpu = STATE_CPU (sd, i);
831 if (CPU_OPTIONS (cpu) == NULL)
833 sim_io_printf (sd, "CPU %s specific options:\n", CPU_NAME (cpu));
834 print_help (sd, cpu, CPU_OPTIONS (cpu), is_command);
835 sim_io_printf (sd, "\n");
839 sim_io_printf (sd, "Note: Depending on the simulator configuration some %ss\n",
840 STATE_OPEN_KIND (sd) == SIM_OPEN_STANDALONE ? "option" : "command");
841 sim_io_printf (sd, " may not be applicable\n");
843 if (STATE_OPEN_KIND (sd) == SIM_OPEN_STANDALONE)
845 sim_io_printf (sd, "\n");
846 sim_io_printf (sd, "program args Arguments to pass to simulated program.\n");
847 sim_io_printf (sd, " Note: Very few simulators support this.\n");
851 /* Utility of sim_args_command to find the closest match for a command.
852 Commands that have "-" in them can be specified as separate words.
853 e.g. sim memory-region 0x800000,0x4000
854 or sim memory region 0x800000,0x4000
855 If CPU is non-null, use its option table list, otherwise use the main one.
856 *PARGI is where to start looking in ARGV. It is updated to point past
859 static const OPTION *
860 find_match (SIM_DESC sd, sim_cpu *cpu, char *argv[], int *pargi)
862 const struct option_list *ol;
864 /* most recent option match */
865 const OPTION *matching_opt = NULL;
866 int matching_argi = -1;
869 ol = CPU_OPTIONS (cpu);
871 ol = STATE_OPTIONS (sd);
873 /* Skip passed elements specified by *PARGI. */
876 for ( ; ol != NULL; ol = ol->next)
877 for (opt = ol->options; OPTION_VALID_P (opt); ++opt)
880 const char *name = opt->opt.name;
883 while (argv [argi] != NULL
884 && strncmp (name, argv [argi], strlen (argv [argi])) == 0)
886 name = &name [strlen (argv[argi])];
889 /* leading match ...<a-b-c>-d-e-f - continue search */
890 name ++; /* skip `-' */
894 else if (name [0] == '\0')
896 /* exact match ...<a-b-c-d-e-f> - better than before? */
897 if (argi > matching_argi)
899 matching_argi = argi;
909 *pargi = matching_argi;
914 sim_args_command (SIM_DESC sd, char *cmd)
916 /* something to do? */
918 return SIM_RC_OK; /* FIXME - perhaps help would be better */
922 /* user specified -<opt> ... form? */
923 char **argv = buildargv (cmd);
924 SIM_RC rc = sim_parse_args (sd, argv);
930 char **argv = buildargv (cmd);
931 const OPTION *matching_opt = NULL;
935 if (argv [0] == NULL)
936 return SIM_RC_OK; /* FIXME - perhaps help would be better */
938 /* First check for a cpu selector. */
940 char *cpu_name = xstrdup (argv[0]);
941 char *hyphen = strchr (cpu_name, '-');
944 cpu = sim_cpu_lookup (sd, cpu_name);
947 /* If <cpuname>-<command>, point argv[0] at <command>. */
951 argv[0] += hyphen - cpu_name + 1;
955 matching_opt = find_match (sd, cpu, argv, &matching_argi);
956 /* If hyphen found restore argv[0]. */
958 argv[0] -= hyphen - cpu_name + 1;
963 /* If that failed, try the main table. */
964 if (matching_opt == NULL)
967 matching_opt = find_match (sd, NULL, argv, &matching_argi);
970 if (matching_opt != NULL)
972 switch (matching_opt->opt.has_arg)
975 if (argv [matching_argi + 1] == NULL)
976 matching_opt->handler (sd, cpu, matching_opt->opt.val,
977 NULL, 1/*is_command*/);
979 sim_io_eprintf (sd, "Command `%s' takes no arguments\n",
980 matching_opt->opt.name);
982 case optional_argument:
983 if (argv [matching_argi + 1] == NULL)
984 matching_opt->handler (sd, cpu, matching_opt->opt.val,
985 NULL, 1/*is_command*/);
986 else if (argv [matching_argi + 2] == NULL)
987 matching_opt->handler (sd, cpu, matching_opt->opt.val,
988 argv [matching_argi + 1], 1/*is_command*/);
990 sim_io_eprintf (sd, "Command `%s' requires no more than one argument\n",
991 matching_opt->opt.name);
993 case required_argument:
994 if (argv [matching_argi + 1] == NULL)
995 sim_io_eprintf (sd, "Command `%s' requires an argument\n",
996 matching_opt->opt.name);
997 else if (argv [matching_argi + 2] == NULL)
998 matching_opt->handler (sd, cpu, matching_opt->opt.val,
999 argv [matching_argi + 1], 1/*is_command*/);
1001 sim_io_eprintf (sd, "Command `%s' requires only one argument\n",
1002 matching_opt->opt.name);
1011 /* didn't find anything that remotly matched */