1 /* trace.c --- tracing output for the RL78 simulator.
3 Copyright (C) 2005-2018 Free Software Foundation, Inc.
4 Contributed by Red Hat, Inc.
6 This file is part of the GNU simulators.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
28 #include <sys/types.h>
32 #include "libiberty.h"
40 static disassembler_ftype rl78_disasm_fn
= NULL
;
43 sim_dis_read (bfd_vma memaddr
, bfd_byte
* ptr
, unsigned int length
,
44 struct disassemble_info
*info
)
46 mem_get_blk (memaddr
, ptr
, length
);
50 /* Filter out (in place) symbols that are useless for disassembly.
51 COUNT is the number of elements in SYMBOLS.
52 Return the number of useful symbols. */
55 remove_useless_symbols (asymbol
** symbols
, long count
)
57 register asymbol
**in_ptr
= symbols
, **out_ptr
= symbols
;
61 asymbol
*sym
= *in_ptr
++;
63 if (strstr (sym
->name
, "gcc2_compiled"))
65 if (sym
->name
== NULL
|| sym
->name
[0] == '\0')
67 if (sym
->flags
& (BSF_DEBUGGING
))
69 if (bfd_is_und_section (sym
->section
)
70 || bfd_is_com_section (sym
->section
))
75 return out_ptr
- symbols
;
79 compare_symbols (const PTR ap
, const PTR bp
)
81 const asymbol
*a
= *(const asymbol
**) ap
;
82 const asymbol
*b
= *(const asymbol
**) bp
;
84 if (bfd_asymbol_value (a
) > bfd_asymbol_value (b
))
86 else if (bfd_asymbol_value (a
) < bfd_asymbol_value (b
))
91 static char opbuf
[1000];
94 op_printf (char *buf
, char *fmt
, ...)
100 ret
= vsprintf (opbuf
+ strlen (opbuf
), fmt
, ap
);
105 static bfd
* current_bfd
= NULL
;
106 static asymbol
** symtab
= NULL
;
107 static int symcount
= 0;
108 static asection
* code_section
= NULL
;
109 static bfd_vma code_base
= 0;
110 static struct disassemble_info info
;
113 sim_disasm_init (bfd
*prog
)
116 rl78_disasm_fn
= NULL
;
130 load_file_and_line (const char *filename
, int lineno
)
133 for (f
= files
; f
; f
= f
->next
)
134 if (strcmp (f
->filename
, filename
) == 0)
140 const char *found_filename
, *slash
;
142 found_filename
= filename
;
145 if (stat (found_filename
, &s
) == 0)
147 slash
= strchr (found_filename
, '/');
150 found_filename
= slash
+ 1;
153 f
= (Files
*) xmalloc (sizeof (Files
));
156 f
->filename
= xstrdup (filename
);
157 f
->data
= (char *) xmalloc (s
.st_size
+ 2);
158 FILE *file
= fopen (found_filename
, "rb");
159 fread (f
->data
, 1, s
.st_size
, file
);
160 f
->data
[s
.st_size
] = 0;
164 for (i
= 0; i
< s
.st_size
; i
++)
165 if (f
->data
[i
] == '\n')
167 f
->lines
= (char **) xmalloc (f
->nlines
* sizeof (char *));
168 f
->lines
[0] = f
->data
;
170 for (i
= 0; i
< s
.st_size
; i
++)
171 if (f
->data
[i
] == '\n')
173 f
->lines
[f
->nlines
] = f
->data
+ i
+ 1;
174 while (*f
->lines
[f
->nlines
] == ' '
175 || *f
->lines
[f
->nlines
] == '\t')
176 f
->lines
[f
->nlines
] ++;
181 if (lineno
< 1 || lineno
> f
->nlines
)
183 return f
->lines
[lineno
- 1];
187 sim_get_current_source_location (const char ** pfilename
,
188 const char ** pfunctionname
,
189 unsigned int * plineno
)
191 static int initted
= 0;
194 if (current_bfd
== NULL
)
203 memset (& info
, 0, sizeof (info
));
204 INIT_DISASSEMBLE_INFO (info
, stdout
, op_printf
);
205 info
.read_memory_func
= sim_dis_read
;
206 info
.arch
= bfd_get_arch (current_bfd
);
207 info
.mach
= bfd_get_mach (current_bfd
);
209 info
.arch
= bfd_arch_rl78
;
211 disassemble_init_for_target (& info
);
213 storage
= bfd_get_symtab_upper_bound (current_bfd
);
216 symtab
= (asymbol
**) xmalloc (storage
);
217 symcount
= bfd_canonicalize_symtab (current_bfd
, symtab
);
218 symcount
= remove_useless_symbols (symtab
, symcount
);
219 qsort (symtab
, symcount
, sizeof (asymbol
*), compare_symbols
);
222 for (s
= current_bfd
->sections
; s
; s
= s
->next
)
224 if (s
->flags
& SEC_CODE
|| code_section
== 0)
227 code_base
= bfd_section_lma (current_bfd
, s
);
233 *pfilename
= *pfunctionname
= NULL
;
236 bfd_find_nearest_line
237 (current_bfd
, code_section
, symtab
, mypc
- code_base
,
238 pfilename
, pfunctionname
, plineno
);
244 sim_disasm_one (void)
246 static int last_sym
= -1;
247 static const char * prev_filename
= "";
248 static int prev_lineno
= 0;
249 const char * filename
;
250 const char * functionname
;
254 int save_trace
= trace
;
257 if (! sim_get_current_source_location (& filename
, & functionname
, & lineno
))
265 rl78_disasm_fn
= print_insn_rl78_g10
;
266 else if (g14_multiply
)
267 rl78_disasm_fn
= print_insn_rl78_g14
;
268 else if (g13_multiply
)
269 rl78_disasm_fn
= print_insn_rl78_g13
;
271 rl78_disasm_fn
= print_insn_rl78
;
274 if (filename
&& functionname
&& lineno
)
276 if (lineno
!= prev_lineno
|| strcmp (prev_filename
, filename
))
278 char * the_line
= load_file_and_line (filename
, lineno
);
279 const char * slash
= strrchr (filename
, '/');
286 ("========================================"
287 "=====================================\n");
288 printf ("\033[37;41m %s:%d: \033[33;40m %s\033[K\033[0m\n",
289 slash
, lineno
, the_line
);
291 prev_lineno
= lineno
;
292 prev_filename
= filename
;
297 while (min
< max
- 1)
301 sym
= (min
+ max
) / 2;
302 sa
= bfd_asymbol_value (symtab
[sym
]);
303 /*printf ("checking %4d %08x %s\n",
304 sym, sa, bfd_asymbol_name (symtab[sym])); */
316 if (min
!= -1 && min
!= last_sym
)
318 bestaddr
= bfd_asymbol_value (symtab
[min
]);
319 printf ("\033[43;30m%s", bfd_asymbol_name (symtab
[min
]));
320 if (bestaddr
!= mypc
)
321 printf ("+%d", mypc
- bestaddr
);
322 printf (":\t\t\t\033[0m\n");
326 if (strcmp (bfd_asymbol_name (symtab
[min
]), "abort") == 0
327 || strcmp (bfd_asymbol_name (symtab
[min
]), "exit") == 0)
335 #ifdef CYCLE_ACCURATE
336 printf ("\033[33m %04u %06x: ", (int)(regs
.cycle_count
% 10000), mypc
);
338 printf ("\033[33m %08llx %06x: ", total_clocks
, mypc
);
341 max
= rl78_disasm_fn (mypc
, & info
);
343 for (i
= 0; i
< max
; i
++)
344 printf ("%02x", mem_get_qi (mypc
+ i
));
353 printf ("%-16s ", opbuf
);
355 printf ("\033[0m\n");