* ppc-opc.c (powerpc_opcodes) <"lswx">: Use RAX for the second and
[binutils-gdb.git] / gdb / cli / cli-interp.c
blob70b6c2854a4034a5b59ca7a4acf1dc6b4485ef43
1 /* CLI Definitions for GDB, the GNU debugger.
3 Copyright (c) 2002-2003, 2007-2012 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "defs.h"
21 #include "interps.h"
22 #include "event-top.h"
23 #include "ui-out.h"
24 #include "cli-out.h"
25 #include "top.h" /* for "execute_command" */
26 #include "gdb_string.h"
27 #include "exceptions.h"
29 struct ui_out *cli_uiout;
31 /* These are the ui_out and the interpreter for the console
32 interpreter. */
34 /* Longjmp-safe wrapper for "execute_command". */
35 static struct gdb_exception safe_execute_command (struct ui_out *uiout,
36 char *command,
37 int from_tty);
38 /* These implement the cli out interpreter: */
40 static void *
41 cli_interpreter_init (struct interp *self, int top_level)
43 return NULL;
46 static int
47 cli_interpreter_resume (void *data)
49 struct ui_file *stream;
51 /*sync_execution = 1; */
53 /* gdb_setup_readline will change gdb_stdout. If the CLI was
54 previously writing to gdb_stdout, then set it to the new
55 gdb_stdout afterwards. */
57 stream = cli_out_set_stream (cli_uiout, gdb_stdout);
58 if (stream != gdb_stdout)
60 cli_out_set_stream (cli_uiout, stream);
61 stream = NULL;
64 gdb_setup_readline ();
66 if (stream != NULL)
67 cli_out_set_stream (cli_uiout, gdb_stdout);
69 return 1;
72 static int
73 cli_interpreter_suspend (void *data)
75 gdb_disable_readline ();
76 return 1;
79 /* Don't display the prompt if we are set quiet. */
80 static int
81 cli_interpreter_display_prompt_p (void *data)
83 if (interp_quiet_p (NULL))
84 return 0;
85 else
86 return 1;
89 static struct gdb_exception
90 cli_interpreter_exec (void *data, const char *command_str)
92 struct ui_file *old_stream;
93 struct gdb_exception result;
95 /* FIXME: cagney/2003-02-01: Need to const char *propogate
96 safe_execute_command. */
97 char *str = strcpy (alloca (strlen (command_str) + 1), command_str);
99 /* gdb_stdout could change between the time cli_uiout was
100 initialized and now. Since we're probably using a different
101 interpreter which has a new ui_file for gdb_stdout, use that one
102 instead of the default.
104 It is important that it gets reset everytime, since the user
105 could set gdb to use a different interpreter. */
106 old_stream = cli_out_set_stream (cli_uiout, gdb_stdout);
107 result = safe_execute_command (cli_uiout, str, 1);
108 cli_out_set_stream (cli_uiout, old_stream);
109 return result;
112 static struct gdb_exception
113 safe_execute_command (struct ui_out *command_uiout, char *command, int from_tty)
115 volatile struct gdb_exception e;
116 struct ui_out *saved_uiout;
118 /* Save and override the global ``struct ui_out'' builder. */
119 saved_uiout = current_uiout;
120 current_uiout = command_uiout;
122 TRY_CATCH (e, RETURN_MASK_ALL)
124 execute_command (command, from_tty);
127 /* Restore the global builder. */
128 current_uiout = saved_uiout;
130 /* FIXME: cagney/2005-01-13: This shouldn't be needed. Instead the
131 caller should print the exception. */
132 exception_print (gdb_stderr, e);
133 return e;
136 static struct ui_out *
137 cli_ui_out (struct interp *self)
139 return cli_uiout;
142 /* Standard gdb initialization hook. */
143 extern initialize_file_ftype _initialize_cli_interp; /* -Wmissing-prototypes */
145 void
146 _initialize_cli_interp (void)
148 static const struct interp_procs procs = {
149 cli_interpreter_init, /* init_proc */
150 cli_interpreter_resume, /* resume_proc */
151 cli_interpreter_suspend, /* suspend_proc */
152 cli_interpreter_exec, /* exec_proc */
153 cli_interpreter_display_prompt_p, /* prompt_proc_p */
154 cli_ui_out /* ui_out_proc */
156 struct interp *cli_interp;
158 /* Create a default uiout builder for the CLI. */
159 cli_uiout = cli_out_new (gdb_stdout);
160 cli_interp = interp_new (INTERP_CONSOLE, &procs);
162 interp_add (cli_interp);