(mi_cmd_stack_list_frames, mi_cmd_stack_info_depth):
[deliverable/binutils-gdb.git] / gdb / mi / mi-cmd-stack.c
1 /* MI Command Set - stack commands.
2 Copyright 2000, 2002, 2003, 2004 Free Software Foundation, Inc.
3 Contributed by Cygnus Solutions (a Red Hat company).
4
5 This file is part of GDB.
6
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 2 of the License, or
10 (at your option) any later version.
11
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.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
21
22 #include "defs.h"
23 #include "target.h"
24 #include "frame.h"
25 #include "value.h"
26 #include "mi-cmds.h"
27 #include "ui-out.h"
28 #include "symtab.h"
29 #include "block.h"
30 #include "stack.h"
31 #include "dictionary.h"
32 #include "gdb_string.h"
33
34 static void list_args_or_locals (int locals, int values, struct frame_info *fi);
35
36 /* Print a list of the stack frames. Args can be none, in which case
37 we want to print the whole backtrace, or a pair of numbers
38 specifying the frame numbers at which to start and stop the
39 display. If the two numbers are equal, a single frame will be
40 displayed. */
41 enum mi_cmd_result
42 mi_cmd_stack_list_frames (char *command, char **argv, int argc)
43 {
44 int frame_low;
45 int frame_high;
46 int i;
47 struct cleanup *cleanup_stack;
48 struct frame_info *fi;
49
50 if (argc > 2 || argc == 1)
51 error (_("mi_cmd_stack_list_frames: Usage: [FRAME_LOW FRAME_HIGH]"));
52
53 if (argc == 2)
54 {
55 frame_low = atoi (argv[0]);
56 frame_high = atoi (argv[1]);
57 }
58 else
59 {
60 /* Called with no arguments, it means we want the whole
61 backtrace. */
62 frame_low = -1;
63 frame_high = -1;
64 }
65
66 /* Let's position fi on the frame at which to start the
67 display. Could be the innermost frame if the whole stack needs
68 displaying, or if frame_low is 0. */
69 for (i = 0, fi = get_current_frame ();
70 fi && i < frame_low;
71 i++, fi = get_prev_frame (fi));
72
73 if (fi == NULL)
74 error (_("mi_cmd_stack_list_frames: Not enough frames in stack."));
75
76 cleanup_stack = make_cleanup_ui_out_list_begin_end (uiout, "stack");
77
78 /* Now let;s print the frames up to frame_high, or until there are
79 frames in the stack. */
80 for (;
81 fi && (i <= frame_high || frame_high == -1);
82 i++, fi = get_prev_frame (fi))
83 {
84 QUIT;
85 /* Print the location and the address always, even for level 0.
86 args == 0: don't print the arguments. */
87 print_frame_info (fi, 1, LOC_AND_ADDRESS, 0 /* args */ );
88 }
89
90 do_cleanups (cleanup_stack);
91 if (i < frame_high)
92 error (_("mi_cmd_stack_list_frames: Not enough frames in stack."));
93
94 return MI_CMD_DONE;
95 }
96
97 enum mi_cmd_result
98 mi_cmd_stack_info_depth (char *command, char **argv, int argc)
99 {
100 int frame_high;
101 int i;
102 struct frame_info *fi;
103
104 if (argc > 1)
105 error (_("mi_cmd_stack_info_depth: Usage: [MAX_DEPTH]"));
106
107 if (argc == 1)
108 frame_high = atoi (argv[0]);
109 else
110 /* Called with no arguments, it means we want the real depth of
111 the stack. */
112 frame_high = -1;
113
114 for (i = 0, fi = get_current_frame ();
115 fi && (i < frame_high || frame_high == -1);
116 i++, fi = get_prev_frame (fi))
117 QUIT;
118
119 ui_out_field_int (uiout, "depth", i);
120
121 return MI_CMD_DONE;
122 }
123
124 /* Print a list of the locals for the current frame. With argument of
125 0, print only the names, with argument of 1 print also the
126 values. */
127 enum mi_cmd_result
128 mi_cmd_stack_list_locals (char *command, char **argv, int argc)
129 {
130 struct frame_info *frame;
131 enum print_values print_values;
132
133 if (argc != 1)
134 error (_("mi_cmd_stack_list_locals: Usage: PRINT_VALUES"));
135
136 frame = get_selected_frame (NULL);
137
138 if (strcmp (argv[0], "0") == 0
139 || strcmp (argv[0], "--no-values") == 0)
140 print_values = PRINT_NO_VALUES;
141 else if (strcmp (argv[0], "1") == 0
142 || strcmp (argv[0], "--all-values") == 0)
143 print_values = PRINT_ALL_VALUES;
144 else if (strcmp (argv[0], "2") == 0
145 || strcmp (argv[0], "--simple-values") == 0)
146 print_values = PRINT_SIMPLE_VALUES;
147 else
148 error (_("Unknown value for PRINT_VALUES: must be: 0 or \"--no-values\", 1 or \"--all-values\", 2 or \"--simple-values\""));
149 list_args_or_locals (1, print_values, frame);
150 return MI_CMD_DONE;
151 }
152
153 /* Print a list of the arguments for the current frame. With argument
154 of 0, print only the names, with argument of 1 print also the
155 values. */
156 enum mi_cmd_result
157 mi_cmd_stack_list_args (char *command, char **argv, int argc)
158 {
159 int frame_low;
160 int frame_high;
161 int i;
162 struct frame_info *fi;
163 struct cleanup *cleanup_stack_args;
164
165 if (argc < 1 || argc > 3 || argc == 2)
166 error (_("mi_cmd_stack_list_args: Usage: PRINT_VALUES [FRAME_LOW FRAME_HIGH]"));
167
168 if (argc == 3)
169 {
170 frame_low = atoi (argv[1]);
171 frame_high = atoi (argv[2]);
172 }
173 else
174 {
175 /* Called with no arguments, it means we want args for the whole
176 backtrace. */
177 frame_low = -1;
178 frame_high = -1;
179 }
180
181 /* Let's position fi on the frame at which to start the
182 display. Could be the innermost frame if the whole stack needs
183 displaying, or if frame_low is 0. */
184 for (i = 0, fi = get_current_frame ();
185 fi && i < frame_low;
186 i++, fi = get_prev_frame (fi));
187
188 if (fi == NULL)
189 error (_("mi_cmd_stack_list_args: Not enough frames in stack."));
190
191 cleanup_stack_args = make_cleanup_ui_out_list_begin_end (uiout, "stack-args");
192
193 /* Now let's print the frames up to frame_high, or until there are
194 frames in the stack. */
195 for (;
196 fi && (i <= frame_high || frame_high == -1);
197 i++, fi = get_prev_frame (fi))
198 {
199 struct cleanup *cleanup_frame;
200 QUIT;
201 cleanup_frame = make_cleanup_ui_out_tuple_begin_end (uiout, "frame");
202 ui_out_field_int (uiout, "level", i);
203 list_args_or_locals (0, atoi (argv[0]), fi);
204 do_cleanups (cleanup_frame);
205 }
206
207 do_cleanups (cleanup_stack_args);
208 if (i < frame_high)
209 error (_("mi_cmd_stack_list_args: Not enough frames in stack."));
210
211 return MI_CMD_DONE;
212 }
213
214 /* Print a list of the locals or the arguments for the currently
215 selected frame. If the argument passed is 0, printonly the names
216 of the variables, if an argument of 1 is passed, print the values
217 as well. */
218 static void
219 list_args_or_locals (int locals, int values, struct frame_info *fi)
220 {
221 struct block *block;
222 struct symbol *sym;
223 struct dict_iterator iter;
224 int nsyms;
225 struct cleanup *cleanup_list;
226 static struct ui_stream *stb = NULL;
227 struct type *type;
228
229 stb = ui_out_stream_new (uiout);
230
231 block = get_frame_block (fi, 0);
232
233 cleanup_list = make_cleanup_ui_out_list_begin_end (uiout, locals ? "locals" : "args");
234
235 while (block != 0)
236 {
237 ALL_BLOCK_SYMBOLS (block, iter, sym)
238 {
239 int print_me = 0;
240
241 switch (SYMBOL_CLASS (sym))
242 {
243 default:
244 case LOC_UNDEF: /* catches errors */
245 case LOC_CONST: /* constant */
246 case LOC_TYPEDEF: /* local typedef */
247 case LOC_LABEL: /* local label */
248 case LOC_BLOCK: /* local function */
249 case LOC_CONST_BYTES: /* loc. byte seq. */
250 case LOC_UNRESOLVED: /* unresolved static */
251 case LOC_OPTIMIZED_OUT: /* optimized out */
252 print_me = 0;
253 break;
254
255 case LOC_ARG: /* argument */
256 case LOC_REF_ARG: /* reference arg */
257 case LOC_REGPARM: /* register arg */
258 case LOC_REGPARM_ADDR: /* indirect register arg */
259 case LOC_LOCAL_ARG: /* stack arg */
260 case LOC_BASEREG_ARG: /* basereg arg */
261 case LOC_COMPUTED_ARG: /* arg with computed location */
262 if (!locals)
263 print_me = 1;
264 break;
265
266 case LOC_LOCAL: /* stack local */
267 case LOC_BASEREG: /* basereg local */
268 case LOC_STATIC: /* static */
269 case LOC_REGISTER: /* register */
270 case LOC_COMPUTED: /* computed location */
271 if (locals)
272 print_me = 1;
273 break;
274 }
275 if (print_me)
276 {
277 struct cleanup *cleanup_tuple = NULL;
278 struct symbol *sym2;
279 if (values != PRINT_NO_VALUES)
280 cleanup_tuple =
281 make_cleanup_ui_out_tuple_begin_end (uiout, NULL);
282 ui_out_field_string (uiout, "name", SYMBOL_PRINT_NAME (sym));
283
284 if (!locals)
285 sym2 = lookup_symbol (SYMBOL_NATURAL_NAME (sym),
286 block, VAR_DOMAIN,
287 (int *) NULL,
288 (struct symtab **) NULL);
289 else
290 sym2 = sym;
291 switch (values)
292 {
293 case PRINT_SIMPLE_VALUES:
294 type = check_typedef (sym2->type);
295 type_print (sym2->type, "", stb->stream, -1);
296 ui_out_field_stream (uiout, "type", stb);
297 if (TYPE_CODE (type) != TYPE_CODE_ARRAY
298 && TYPE_CODE (type) != TYPE_CODE_STRUCT
299 && TYPE_CODE (type) != TYPE_CODE_UNION)
300 {
301 print_variable_value (sym2, fi, stb->stream);
302 ui_out_field_stream (uiout, "value", stb);
303 }
304 do_cleanups (cleanup_tuple);
305 break;
306 case PRINT_ALL_VALUES:
307 print_variable_value (sym2, fi, stb->stream);
308 ui_out_field_stream (uiout, "value", stb);
309 do_cleanups (cleanup_tuple);
310 break;
311 }
312 }
313 }
314 if (BLOCK_FUNCTION (block))
315 break;
316 else
317 block = BLOCK_SUPERBLOCK (block);
318 }
319 do_cleanups (cleanup_list);
320 ui_out_stream_delete (stb);
321 }
322
323 enum mi_cmd_result
324 mi_cmd_stack_select_frame (char *command, char **argv, int argc)
325 {
326 if (argc == 0 || argc > 1)
327 error (_("mi_cmd_stack_select_frame: Usage: FRAME_SPEC"));
328
329 select_frame_command (argv[0], 1 /* not used */ );
330 return MI_CMD_DONE;
331 }
This page took 0.04569 seconds and 5 git commands to generate.