]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/tui/tui-disasm.c
2004-02-07 Andrew Cagney <cagney@redhat.com>
[thirdparty/binutils-gdb.git] / gdb / tui / tui-disasm.c
1 /* Disassembly display.
2
3 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software
4 Foundation, Inc.
5
6 Contributed by Hewlett-Packard Company.
7
8 This file is part of GDB.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
24
25 #include "defs.h"
26 #include "symtab.h"
27 #include "breakpoint.h"
28 #include "frame.h"
29 #include "value.h"
30 #include "source.h"
31 #include "disasm.h"
32
33 #include "tui/tui.h"
34 #include "tui/tui-data.h"
35 #include "tui/tui-win.h"
36 #include "tui/tui-layout.h"
37 #include "tui/tui-winsource.h"
38 #include "tui/tui-stack.h"
39 #include "tui/tui-file.h"
40
41 #ifdef HAVE_NCURSES_H
42 #include <ncurses.h>
43 #else
44 #ifdef HAVE_CURSES_H
45 #include <curses.h>
46 #endif
47 #endif
48
49 struct tui_asm_line
50 {
51 CORE_ADDR addr;
52 char* addr_string;
53 char* insn;
54 };
55
56 /* Function to set the disassembly window's content.
57 Disassemble count lines starting at pc.
58 Return address of the count'th instruction after pc. */
59 static CORE_ADDR
60 tui_disassemble (struct tui_asm_line* lines, CORE_ADDR pc, int count)
61 {
62 struct ui_file *gdb_dis_out;
63
64 /* now init the ui_file structure */
65 gdb_dis_out = tui_sfileopen (256);
66
67 /* Now construct each line */
68 for (; count > 0; count--, lines++)
69 {
70 if (lines->addr_string)
71 xfree (lines->addr_string);
72 if (lines->insn)
73 xfree (lines->insn);
74
75 print_address (pc, gdb_dis_out);
76 lines->addr = pc;
77 lines->addr_string = xstrdup (tui_file_get_strbuf (gdb_dis_out));
78
79 ui_file_rewind (gdb_dis_out);
80
81 pc = pc + gdb_print_insn (pc, gdb_dis_out);
82
83 lines->insn = xstrdup (tui_file_get_strbuf (gdb_dis_out));
84
85 /* reset the buffer to empty */
86 ui_file_rewind (gdb_dis_out);
87 }
88 ui_file_delete (gdb_dis_out);
89 return pc;
90 }
91
92 /* Find the disassembly address that corresponds to FROM lines
93 above or below the PC. Variable sized instructions are taken
94 into account by the algorithm. */
95 static CORE_ADDR
96 tui_find_disassembly_address (CORE_ADDR pc, int from)
97 {
98 register CORE_ADDR newLow;
99 int maxLines;
100 int i;
101 struct tui_asm_line* lines;
102
103 maxLines = (from > 0) ? from : - from;
104 if (maxLines <= 1)
105 return pc;
106
107 lines = (struct tui_asm_line*) alloca (sizeof (struct tui_asm_line)
108 * maxLines);
109 memset (lines, 0, sizeof (struct tui_asm_line) * maxLines);
110
111 newLow = pc;
112 if (from > 0)
113 {
114 tui_disassemble (lines, pc, maxLines);
115 newLow = lines[maxLines - 1].addr;
116 }
117 else
118 {
119 CORE_ADDR last_addr;
120 int pos;
121 struct minimal_symbol* msymbol;
122
123 /* Find backward an address which is a symbol
124 and for which disassembling from that address will fill
125 completely the window. */
126 pos = maxLines - 1;
127 do {
128 newLow -= 1 * maxLines;
129 msymbol = lookup_minimal_symbol_by_pc_section (newLow, 0);
130
131 if (msymbol)
132 newLow = SYMBOL_VALUE_ADDRESS (msymbol);
133 else
134 newLow += 1 * maxLines;
135
136 tui_disassemble (lines, newLow, maxLines);
137 last_addr = lines[pos].addr;
138 } while (last_addr > pc && msymbol);
139
140 /* Scan forward disassembling one instruction at a time
141 until the last visible instruction of the window
142 matches the pc. We keep the disassembled instructions
143 in the 'lines' window and shift it downward (increasing
144 its addresses). */
145 if (last_addr < pc)
146 do
147 {
148 CORE_ADDR next_addr;
149
150 pos++;
151 if (pos >= maxLines)
152 pos = 0;
153
154 next_addr = tui_disassemble (&lines[pos], last_addr, 1);
155
156 /* If there are some problems while disassembling exit. */
157 if (next_addr <= last_addr)
158 break;
159 last_addr = next_addr;
160 } while (last_addr <= pc);
161 pos++;
162 if (pos >= maxLines)
163 pos = 0;
164 newLow = lines[pos].addr;
165 }
166 for (i = 0; i < maxLines; i++)
167 {
168 xfree (lines[i].addr_string);
169 xfree (lines[i].insn);
170 }
171 return newLow;
172 }
173
174 /* Function to set the disassembly window's content. */
175 enum tui_status
176 tui_set_disassem_content (CORE_ADDR pc)
177 {
178 enum tui_status ret = TUI_FAILURE;
179 register int i;
180 register int offset = disassemWin->detail.sourceInfo.horizontalOffset;
181 register int lineWidth, maxLines;
182 CORE_ADDR cur_pc;
183 struct tui_gen_win_info * locator = tui_locator_win_info_ptr ();
184 int tab_len = tui_default_tab_len ();
185 struct tui_asm_line* lines;
186 int insn_pos;
187 int addr_size, max_size;
188 char* line;
189
190 if (pc == 0)
191 return TUI_FAILURE;
192
193 ret = tui_alloc_source_buffer (disassemWin);
194 if (ret != TUI_SUCCESS)
195 return ret;
196
197 disassemWin->detail.sourceInfo.startLineOrAddr.addr = pc;
198 cur_pc = (CORE_ADDR)
199 (((struct tui_win_element *) locator->content[0])->whichElement.locator.addr);
200
201 maxLines = disassemWin->generic.height - 2; /* account for hilite */
202
203 /* Get temporary table that will hold all strings (addr & insn). */
204 lines = (struct tui_asm_line*) alloca (sizeof (struct tui_asm_line)
205 * maxLines);
206 memset (lines, 0, sizeof (struct tui_asm_line) * maxLines);
207
208 lineWidth = disassemWin->generic.width - 1;
209
210 tui_disassemble (lines, pc, maxLines);
211
212 /* See what is the maximum length of an address and of a line. */
213 addr_size = 0;
214 max_size = 0;
215 for (i = 0; i < maxLines; i++)
216 {
217 size_t len = strlen (lines[i].addr_string);
218 if (len > addr_size)
219 addr_size = len;
220
221 len = strlen (lines[i].insn) + tab_len;
222 if (len > max_size)
223 max_size = len;
224 }
225 max_size += addr_size + tab_len;
226
227 /* Allocate memory to create each line. */
228 line = (char*) alloca (max_size);
229 insn_pos = (1 + (addr_size / tab_len)) * tab_len;
230
231 /* Now construct each line */
232 for (i = 0; i < maxLines; i++)
233 {
234 struct tui_win_element * element;
235 struct tui_source_element* src;
236 int curLen;
237
238 element = (struct tui_win_element *) disassemWin->generic.content[i];
239 src = &element->whichElement.source;
240 strcpy (line, lines[i].addr_string);
241 curLen = strlen (line);
242
243 /* Add spaces to make the instructions start on the same column */
244 while (curLen < insn_pos)
245 {
246 strcat (line, " ");
247 curLen++;
248 }
249
250 strcat (line, lines[i].insn);
251
252 /* Now copy the line taking the offset into account */
253 if (strlen (line) > offset)
254 strcpy (src->line, &line[offset]);
255 else
256 src->line[0] = '\0';
257
258 src->lineOrAddr.addr = lines[i].addr;
259 src->isExecPoint = lines[i].addr == cur_pc;
260
261 /* See whether there is a breakpoint installed. */
262 src->hasBreak = (!src->isExecPoint
263 && breakpoint_here_p (pc) != no_breakpoint_here);
264
265 xfree (lines[i].addr_string);
266 xfree (lines[i].insn);
267 }
268 disassemWin->generic.contentSize = i;
269 return TUI_SUCCESS;
270 }
271
272
273 /* Function to display the disassembly window with disassembled code. */
274 void
275 tui_show_disassem (CORE_ADDR startAddr)
276 {
277 struct symtab *s = find_pc_symtab (startAddr);
278 struct tui_win_info * winWithFocus = tui_win_with_focus ();
279 union tui_line_or_address val;
280
281 val.addr = startAddr;
282 tui_add_win_to_layout (DISASSEM_WIN);
283 tui_update_source_window (disassemWin, s, val, FALSE);
284 /*
285 ** if the focus was in the src win, put it in the asm win, if the
286 ** source view isn't split
287 */
288 if (tui_current_layout () != SRC_DISASSEM_COMMAND && winWithFocus == srcWin)
289 tui_set_win_focus_to (disassemWin);
290
291 return;
292 }
293
294
295 /* Function to display the disassembly window. */
296 void
297 tui_show_disassem_and_update_source (CORE_ADDR startAddr)
298 {
299 struct symtab_and_line sal;
300
301 tui_show_disassem (startAddr);
302 if (tui_current_layout () == SRC_DISASSEM_COMMAND)
303 {
304 union tui_line_or_address val;
305
306 /*
307 ** Update what is in the source window if it is displayed too,
308 ** note that it follows what is in the disassembly window and visa-versa
309 */
310 sal = find_pc_line (startAddr, 0);
311 val.lineNo = sal.line;
312 tui_update_source_window (srcWin, sal.symtab, val, TRUE);
313 if (sal.symtab)
314 {
315 set_current_source_symtab_and_line (&sal);
316 tui_update_locator_filename (sal.symtab->filename);
317 }
318 else
319 tui_update_locator_filename ("?");
320 }
321
322 return;
323 }
324
325 CORE_ADDR
326 tui_get_begin_asm_address (void)
327 {
328 struct tui_gen_win_info * locator;
329 struct tui_locator_element * element;
330 CORE_ADDR addr;
331
332 locator = tui_locator_win_info_ptr ();
333 element = &((struct tui_win_element *) locator->content[0])->whichElement.locator;
334
335 if (element->addr == 0)
336 {
337 struct minimal_symbol *main_symbol;
338
339 /* Find address of the start of program.
340 Note: this should be language specific. */
341 main_symbol = lookup_minimal_symbol ("main", NULL, NULL);
342 if (main_symbol == 0)
343 main_symbol = lookup_minimal_symbol ("MAIN", NULL, NULL);
344 if (main_symbol == 0)
345 main_symbol = lookup_minimal_symbol ("_start", NULL, NULL);
346 if (main_symbol)
347 addr = SYMBOL_VALUE_ADDRESS (main_symbol);
348 else
349 addr = 0;
350 }
351 else /* the target is executing */
352 addr = element->addr;
353
354 return addr;
355 }
356
357 /* Determine what the low address will be to display in the TUI's
358 disassembly window. This may or may not be the same as the
359 low address input. */
360 CORE_ADDR
361 tui_get_low_disassembly_address (CORE_ADDR low, CORE_ADDR pc)
362 {
363 int pos;
364
365 /* Determine where to start the disassembly so that the pc is about in the
366 middle of the viewport. */
367 pos = tui_default_win_viewport_height (DISASSEM_WIN, DISASSEM_COMMAND) / 2;
368 pc = tui_find_disassembly_address (pc, -pos);
369
370 if (pc < low)
371 pc = low;
372 return pc;
373 }
374
375 /* Scroll the disassembly forward or backward vertically. */
376 void
377 tui_vertical_disassem_scroll (enum tui_scroll_direction scrollDirection,
378 int numToScroll)
379 {
380 if (disassemWin->generic.content != NULL)
381 {
382 CORE_ADDR pc;
383 tui_win_content content;
384 struct symtab *s;
385 union tui_line_or_address val;
386 int maxLines, dir;
387 struct symtab_and_line cursal = get_current_source_symtab_and_line ();
388
389 content = (tui_win_content) disassemWin->generic.content;
390 if (cursal.symtab == (struct symtab *) NULL)
391 s = find_pc_symtab (get_frame_pc (deprecated_selected_frame));
392 else
393 s = cursal.symtab;
394
395 /* account for hilite */
396 maxLines = disassemWin->generic.height - 2;
397 pc = content[0]->whichElement.source.lineOrAddr.addr;
398 dir = (scrollDirection == FORWARD_SCROLL) ? maxLines : - maxLines;
399
400 val.addr = tui_find_disassembly_address (pc, dir);
401 tui_update_source_window_as_is (disassemWin, s, val, FALSE);
402 }
403 }