#define OPTION_DEBUG_INSN (OPTION_START + 0)
#define OPTION_DEBUG_FILE (OPTION_START + 1)
+#define OPTION_DO_COMMAND (OPTION_START + 2)
static const OPTION standard_options[] =
{
standard_option_handler },
#endif
+ { {"do-command", required_argument, NULL, OPTION_DO_COMMAND},
+ '\0', "COMMAND", "Perform a builtin command",
+ standard_option_handler },
+
{ {"help", no_argument, NULL, 'H'},
'H', NULL, "Print help information",
standard_option_handler },
char *arg;
{
int i,n;
- unsigned long ul;
switch (opt)
{
#ifdef SIM_HAVE_FLATMEM
case 'm':
- ul = strtol (arg, NULL, 0);
- /* 16384: some minimal amount */
- if (! isdigit (arg[0]) || ul < 16384)
- {
- sim_io_eprintf (sd, "Invalid memory size `%s'", arg);
- return SIM_RC_FAIL;
- }
- STATE_MEM_SIZE (sd) = ul;
+ {
+ unsigned long ul = strtol (arg, NULL, 0);
+ /* 16384: some minimal amount */
+ if (! isdigit (arg[0]) || ul < 16384)
+ {
+ sim_io_eprintf (sd, "Invalid memory size `%s'", arg);
+ return SIM_RC_FAIL;
+ }
+ STATE_MEM_SIZE (sd) = ul;
+ }
break;
#endif
+ case OPTION_DO_COMMAND:
+ sim_do_command (sd, arg);
+ break;
+
case 'H':
sim_print_help (sd);
if (STATE_OPEN_KIND (sd) == SIM_OPEN_STANDALONE)
len += (comma ? 2 : 0) + 2;
if (o->arg != NULL)
{
- if (o->opt.has_arg != optional_argument)
+ if (o->opt.has_arg == optional_argument)
{
- sim_io_printf (sd, " ");
- ++len;
+ sim_io_printf (sd, "[%s]", o->arg);
+ len += 1 + strlen (o->arg) + 1;
+ }
+ else
+ {
+ sim_io_printf (sd, " %s", o->arg);
+ len += 1 + strlen (o->arg);
}
- sim_io_printf (sd, "%s", o->arg);
- len += strlen (o->arg);
}
comma = 1;
}
+ strlen (o->opt.name));
if (o->arg != NULL)
{
- sim_io_printf (sd, " %s", o->arg);
- len += 1 + strlen (o->arg);
+ if (o->opt.has_arg == optional_argument)
+ {
+ sim_io_printf (sd, " [%s]", o->arg);
+ len += 2 + strlen (o->arg) + 1;
+ }
+ else
+ {
+ sim_io_printf (sd, " %s", o->arg);
+ len += 1 + strlen (o->arg);
+ }
}
comma = 1;
}
sim_io_printf (sd, " Note: Very few simulators support this.\n");
}
}
+
+
+
+
+SIM_RC
+sim_args_command (sd, cmd)
+ SIM_DESC sd;
+ char *cmd;
+{
+ /* something to do? */
+ if (cmd == NULL)
+ return SIM_RC_OK; /* FIXME - perhaphs help would be better */
+
+ if (cmd [0] == '-')
+ {
+ /* user specified -<opt> ... form? */
+ char **argv = buildargv (cmd);
+ SIM_RC rc = sim_parse_args (sd, argv);
+ freeargv (argv);
+ return rc;
+ }
+ else
+ {
+ /* user specified <opt> form? */
+ const struct option_list *ol;
+ const OPTION *opt;
+ char **argv = buildargv (cmd);
+ for (ol = STATE_OPTIONS (sd); ol != NULL; ol = ol->next)
+ for (opt = ol->options; opt->opt.name != NULL; ++opt)
+ {
+ if (strcmp (argv[0], opt->opt.name) == 0)
+ {
+ switch (opt->opt.has_arg)
+ {
+ case no_argument:
+ if (argv[1] == NULL)
+ opt->handler (sd, opt->opt.val, NULL);
+ else
+ sim_io_eprintf (sd, "Command `%s' takes no arguments\n", opt->opt.name);
+ break;
+ case optional_argument:
+ if (argv[1] == NULL)
+ opt->handler (sd, opt->opt.val, NULL);
+ else if (argv[2] == NULL)
+ opt->handler (sd, opt->opt.val, argv[1]);
+ else
+ sim_io_eprintf (sd, "Command `%s' requires no more than one argument\n", opt->opt.name);
+ break;
+ case required_argument:
+ if (argv[1] == NULL)
+ sim_io_eprintf (sd, "Command `%s' requires an argument\n", opt->opt.name);
+ else if (argv[2] == NULL)
+ opt->handler (sd, opt->opt.val, argv[1]);
+ else
+ sim_io_eprintf (sd, "Command `%s' requires only one argument\n", opt->opt.name);
+ }
+ return SIM_RC_OK;
+ }
+ }
+ }
+
+ /* didn't find anything that matched */
+ return SIM_RC_FAIL;
+}
Options for the standalone simulator are parsed by sim_open since
sim_open handles the large majority of them and it also parses the
- options when invoked by gdb [or any external program]. */
+ options when invoked by gdb [or any external program].
+
+ Per getopt: arg#2 is the option index; arg#3 is the option's
+ argument, NULL if optional and missing. */
typedef SIM_RC (OPTION_HANDLER) PARAMS ((SIM_DESC, int, char *));
TABLE is an array of OPTIONS terminated by a NULL `opt.name' entry. */
SIM_RC sim_add_option_table PARAMS ((SIM_DESC sd, const OPTION *table));
-/* Initialize common parts before argument processing.
- Called by sim_open. */
-SIM_RC sim_pre_argv_init PARAMS ((SIM_DESC sd, const char *myname));
+/* Install handler for the standard options. */
+MODULE_INSTALL_FN standard_install;
/* Called by sim_open to parse the arguments. */
SIM_RC sim_parse_args PARAMS ((SIM_DESC sd, char **argv));
/* Print help messages for the options. */
void sim_print_help PARAMS ((SIM_DESC sd));
+/* Try to parse the command as if it is an option, Only fail when
+ totally unsuccessful */
+SIM_RC sim_args_command PARAMS ((SIM_DESC sd, char *cmd));
+
#endif /* SIM_OPTIONS_H */