Remove else clause to #if UI_OUT.
[external/binutils.git] / gdb / mi / mi-cmd-stack.c
1 /* MI Command Set - stack commands.
2    Copyright 2000, 2002 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
30 /* FIXME: these should go in some .h file but stack.c doesn't have a
31    corresponding .h file. These wrappers will be obsolete anyway, once
32    we pull the plug on the sanitization. */
33 extern void select_frame_command_wrapper (char *, int);
34
35 static void list_args_or_locals (int locals, int values, struct frame_info *fi);
36
37 /* Print a list of the stack frames. Args can be none, in which case
38    we want to print the whole backtrace, or a pair of numbers
39    specifying the frame numbers at which to start and stop the
40    display. If the two numbers are equal, a single frame will be
41    displayed. */
42 enum mi_cmd_result
43 mi_cmd_stack_list_frames (char *command, char **argv, int argc)
44 {
45   int frame_low;
46   int frame_high;
47   int i;
48   struct frame_info *fi;
49
50   if (!target_has_stack)
51     error ("mi_cmd_stack_list_frames: No stack.");
52
53   if (argc > 2 || argc == 1)
54     error ("mi_cmd_stack_list_frames: Usage: [FRAME_LOW FRAME_HIGH]");
55
56   if (argc == 2)
57     {
58       frame_low = atoi (argv[0]);
59       frame_high = atoi (argv[1]);
60     }
61   else
62     {
63       /* Called with no arguments, it means we want the whole
64          backtrace. */
65       frame_low = -1;
66       frame_high = -1;
67     }
68
69   /* Let's position fi on the frame at which to start the
70      display. Could be the innermost frame if the whole stack needs
71      displaying, or if frame_low is 0. */
72   for (i = 0, fi = get_current_frame ();
73        fi && i < frame_low;
74        i++, fi = get_prev_frame (fi));
75
76   if (fi == NULL)
77     error ("mi_cmd_stack_list_frames: Not enough frames in stack.");
78
79   ui_out_list_begin (uiout, "stack");
80
81   /* Now let;s print the frames up to frame_high, or until there are
82      frames in the stack. */
83   for (;
84        fi && (i <= frame_high || frame_high == -1);
85        i++, fi = get_prev_frame (fi))
86     {
87       QUIT;
88       /* level == i: always print the level 'i'
89          source == LOC_AND_ADDRESS: print the location and the address 
90          always, even for level 0.
91          args == 0: don't print the arguments. */
92       print_frame_info (fi /* frame info */ ,
93                         i /* level */ ,
94                         LOC_AND_ADDRESS /* source */ ,
95                         0 /* args */ );
96     }
97
98   ui_out_list_end (uiout);
99   if (i < frame_high)
100     error ("mi_cmd_stack_list_frames: Not enough frames in stack.");
101
102   return MI_CMD_DONE;
103 }
104
105 enum mi_cmd_result
106 mi_cmd_stack_info_depth (char *command, char **argv, int argc)
107 {
108   int frame_high;
109   int i;
110   struct frame_info *fi;
111
112   if (!target_has_stack)
113     error ("mi_cmd_stack_info_depth: No stack.");
114
115   if (argc > 1)
116     error ("mi_cmd_stack_info_depth: Usage: [MAX_DEPTH]");
117
118   if (argc == 1)
119     frame_high = atoi (argv[0]);
120   else
121     /* Called with no arguments, it means we want the real depth of
122        the stack. */
123     frame_high = -1;
124
125   for (i = 0, fi = get_current_frame ();
126        fi && (i < frame_high || frame_high == -1);
127        i++, fi = get_prev_frame (fi))
128     QUIT;
129
130   ui_out_field_int (uiout, "depth", i);
131
132   return MI_CMD_DONE;
133 }
134
135 /* Print a list of the locals for the current frame. With argument of
136    0, print only the names, with argument of 1 print also the
137    values. */
138 enum mi_cmd_result
139 mi_cmd_stack_list_locals (char *command, char **argv, int argc)
140 {
141   if (argc != 1)
142     error ("mi_cmd_stack_list_locals: Usage: PRINT_VALUES");
143
144   list_args_or_locals (1, atoi (argv[0]), selected_frame);
145   return MI_CMD_DONE;
146 }
147
148 /* Print a list of the arguments for the current frame. With argument
149    of 0, print only the names, with argument of 1 print also the
150    values. */
151 enum mi_cmd_result
152 mi_cmd_stack_list_args (char *command, char **argv, int argc)
153 {
154   int frame_low;
155   int frame_high;
156   int i;
157   struct frame_info *fi;
158
159   if (argc < 1 || argc > 3 || argc == 2)
160     error ("mi_cmd_stack_list_args: Usage: PRINT_VALUES [FRAME_LOW FRAME_HIGH]");
161
162   if (argc == 3)
163     {
164       frame_low = atoi (argv[1]);
165       frame_high = atoi (argv[2]);
166     }
167   else
168     {
169       /* Called with no arguments, it means we want args for the whole
170          backtrace. */
171       frame_low = -1;
172       frame_high = -1;
173     }
174
175   /* Let's position fi on the frame at which to start the
176      display. Could be the innermost frame if the whole stack needs
177      displaying, or if frame_low is 0. */
178   for (i = 0, fi = get_current_frame ();
179        fi && i < frame_low;
180        i++, fi = get_prev_frame (fi));
181
182   if (fi == NULL)
183     error ("mi_cmd_stack_list_args: Not enough frames in stack.");
184
185   ui_out_list_begin (uiout, "stack-args");
186
187   /* Now let's print the frames up to frame_high, or until there are
188      frames in the stack. */
189   for (;
190        fi && (i <= frame_high || frame_high == -1);
191        i++, fi = get_prev_frame (fi))
192     {
193       QUIT;
194       ui_out_tuple_begin (uiout, "frame");
195       ui_out_field_int (uiout, "level", i);
196       list_args_or_locals (0, atoi (argv[0]), fi);
197       ui_out_tuple_end (uiout);
198     }
199
200   ui_out_list_end (uiout);
201   if (i < frame_high)
202     error ("mi_cmd_stack_list_args: Not enough frames in stack.");
203
204   return MI_CMD_DONE;
205 }
206
207 /* Print a list of the locals or the arguments for the currently
208    selected frame.  If the argument passed is 0, printonly the names
209    of the variables, if an argument of 1 is passed, print the values
210    as well. */
211 static void
212 list_args_or_locals (int locals, int values, struct frame_info *fi)
213 {
214   struct block *block;
215   struct symbol *sym;
216   int i, nsyms;
217   int print_me = 0;
218   static struct ui_stream *stb = NULL;
219
220   stb = ui_out_stream_new (uiout);
221
222   block = get_frame_block (fi);
223
224   ui_out_list_begin (uiout, locals ? "locals" : "args");
225
226   while (block != 0)
227     {
228       ALL_BLOCK_SYMBOLS (block, i, sym)
229         {
230           switch (SYMBOL_CLASS (sym))
231             {
232             default:
233             case LOC_UNDEF:     /* catches errors        */
234             case LOC_CONST:     /* constant              */
235             case LOC_TYPEDEF:   /* local typedef         */
236             case LOC_LABEL:     /* local label           */
237             case LOC_BLOCK:     /* local function        */
238             case LOC_CONST_BYTES:       /* loc. byte seq.        */
239             case LOC_UNRESOLVED:        /* unresolved static     */
240             case LOC_OPTIMIZED_OUT:     /* optimized out         */
241               print_me = 0;
242               break;
243
244             case LOC_ARG:       /* argument              */
245             case LOC_REF_ARG:   /* reference arg         */
246             case LOC_REGPARM:   /* register arg          */
247             case LOC_REGPARM_ADDR:      /* indirect register arg */
248             case LOC_LOCAL_ARG: /* stack arg             */
249             case LOC_BASEREG_ARG:       /* basereg arg           */
250               if (!locals)
251                 print_me = 1;
252               break;
253
254             case LOC_LOCAL:     /* stack local           */
255             case LOC_BASEREG:   /* basereg local         */
256             case LOC_STATIC:    /* static                */
257             case LOC_REGISTER:  /* register              */
258               if (locals)
259                 print_me = 1;
260               break;
261             }
262           if (print_me)
263             {
264               if (values)
265                 ui_out_tuple_begin (uiout, NULL);
266               ui_out_field_string (uiout, "name", SYMBOL_NAME (sym));
267
268               if (values)
269                 {
270                   struct symbol *sym2;
271                   if (!locals)
272                     sym2 = lookup_symbol (SYMBOL_NAME (sym),
273                                           block, VAR_NAMESPACE,
274                                           (int *) NULL,
275                                           (struct symtab **) NULL);
276                   else
277                     sym2 = sym;
278                   print_variable_value (sym2, fi, stb->stream);
279                   ui_out_field_stream (uiout, "value", stb);
280                   ui_out_tuple_end (uiout);
281                 }
282             }
283         }
284       if (BLOCK_FUNCTION (block))
285         break;
286       else
287         block = BLOCK_SUPERBLOCK (block);
288     }
289   ui_out_list_end (uiout);
290   ui_out_stream_delete (stb);
291 }
292
293 enum mi_cmd_result
294 mi_cmd_stack_select_frame (char *command, char **argv, int argc)
295 {
296   if (!target_has_stack)
297     error ("mi_cmd_stack_select_frame: No stack.");
298
299   if (argc > 1)
300     error ("mi_cmd_stack_select_frame: Usage: [FRAME_SPEC]");
301
302   /* with no args, don't change frame */
303   if (argc == 0)
304     select_frame_command_wrapper (0, 1 /* not used */ );
305   else
306     select_frame_command_wrapper (argv[0], 1 /* not used */ );
307   return MI_CMD_DONE;
308 }