1 /* Tracing support for CGEN-based simulators.
2 Copyright (C) 1996-2018 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
5 This file is part of GDB, the GNU debugger.
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/>. */
27 #ifndef SIZE_INSTRUCTION
28 #define SIZE_INSTRUCTION 16
32 #define SIZE_LOCATION 20
39 #ifndef SIZE_LINE_NUMBER
40 #define SIZE_LINE_NUMBER 4
43 #ifndef SIZE_CYCLE_COUNT
44 #define SIZE_CYCLE_COUNT 2
47 #ifndef SIZE_TOTAL_CYCLE_COUNT
48 #define SIZE_TOTAL_CYCLE_COUNT 9
51 #ifndef SIZE_TRACE_BUF
52 #define SIZE_TRACE_BUF 1024
55 /* Text is queued in TRACE_BUF because we want to output the insn's cycle
56 count first but that isn't known until after the insn has executed.
57 This also handles the queueing of trace results, TRACE_RESULT may be
58 called multiple times for one insn. */
59 static char trace_buf
[SIZE_TRACE_BUF
];
60 /* If NULL, output to stdout directly. */
63 /* Non-zero if this is the first insn in a set of parallel insns. */
64 static int first_insn_p
;
66 /* For communication between cgen_trace_insn and cgen_trace_result. */
67 static int printed_result_p
;
69 /* Insn and its extracted fields.
70 Set by cgen_trace_insn, used by cgen_trace_insn_fini.
71 ??? Move to SIM_CPU to support heterogeneous multi-cpu case. */
72 static const struct cgen_insn
*current_insn
;
73 static const struct argbuf
*current_abuf
;
76 cgen_trace_insn_init (SIM_CPU
*cpu
, int first_p
)
80 first_insn_p
= first_p
;
82 /* Set to NULL so cgen_trace_insn_fini can know if cgen_trace_insn was
89 cgen_trace_insn_fini (SIM_CPU
*cpu
, const struct argbuf
*abuf
, int last_p
)
91 SIM_DESC sd
= CPU_STATE (cpu
);
93 /* Was insn traced? It might not be if trace ranges are in effect. */
94 if (current_insn
== NULL
)
97 /* The first thing printed is current and total cycle counts. */
99 if (PROFILE_MODEL_P (cpu
)
100 && ARGBUF_PROFILE_P (current_abuf
))
102 unsigned long total
= PROFILE_MODEL_TOTAL_CYCLES (CPU_PROFILE_DATA (cpu
));
103 unsigned long this_insn
= PROFILE_MODEL_CUR_INSN_CYCLES (CPU_PROFILE_DATA (cpu
));
107 trace_printf (sd
, cpu
, "%-*ld %-*ld ",
108 SIZE_CYCLE_COUNT
, this_insn
,
109 SIZE_TOTAL_CYCLE_COUNT
, total
);
113 trace_printf (sd
, cpu
, "%-*ld %-*s ",
114 SIZE_CYCLE_COUNT
, this_insn
,
115 SIZE_TOTAL_CYCLE_COUNT
, "---");
119 /* Print the disassembled insn. */
121 trace_printf (sd
, cpu
, "%s", TRACE_PREFIX (CPU_TRACE_DATA (cpu
)));
124 /* Print insn results. */
126 const CGEN_OPINST
*opinst
= CGEN_INSN_OPERANDS (current_insn
);
131 int indices
[MAX_OPERAND_INSTANCES
];
133 /* Fetch the operands used by the insn. */
134 /* FIXME: Add fn ptr to CGEN_CPU_DESC. */
135 CGEN_SYM (get_insn_operands
) (CPU_CPU_DESC (cpu
), current_insn
,
136 0, CGEN_FIELDS_BITSIZE (&insn_fields
),
140 CGEN_OPINST_TYPE (opinst
) != CGEN_OPINST_END
;
143 if (CGEN_OPINST_TYPE (opinst
) == CGEN_OPINST_OUTPUT
)
144 cgen_trace_result (cpu
, current_insn
, opinst
, indices
[i
]);
150 /* Print anything else requested. */
153 trace_printf (sd
, cpu
, " %s\n", trace_buf
);
155 trace_printf (sd
, cpu
, "\n");
159 cgen_trace_insn (SIM_CPU
*cpu
, const struct cgen_insn
*opcode
,
160 const struct argbuf
*abuf
, IADDR pc
)
164 printed_result_p
= 0;
165 current_insn
= opcode
;
168 if (CGEN_INSN_VIRTUAL_P (opcode
))
170 trace_prefix (CPU_STATE (cpu
), cpu
, NULL_CIA
, pc
, 0,
171 NULL
, 0, CGEN_INSN_NAME (opcode
));
175 CPU_DISASSEMBLER (cpu
) (cpu
, opcode
, abuf
, pc
, disasm_buf
);
176 trace_prefix (CPU_STATE (cpu
), cpu
, NULL_CIA
, pc
, TRACE_LINENUM_P (cpu
),
179 first_insn_p
? " " : "|",
180 SIZE_INSTRUCTION
, disasm_buf
);
184 cgen_trace_extract (SIM_CPU
*cpu
, IADDR pc
, char *name
, ...)
187 int printed_one_p
= 0;
190 va_start (args
, name
);
192 trace_printf (CPU_STATE (cpu
), cpu
, "Extract: 0x%.*lx: %s ",
193 SIZE_PC
, (unsigned long) pc
, name
);
198 fmt
= va_arg (args
, char *);
203 trace_printf (CPU_STATE (cpu
), cpu
, ", ");
205 type
= va_arg (args
, int);
209 ival
= va_arg (args
, int);
210 trace_printf (CPU_STATE (cpu
), cpu
, fmt
, ival
);
219 trace_printf (CPU_STATE (cpu
), cpu
, "\n");
223 cgen_trace_result (SIM_CPU
*cpu
, char *name
, int type
, ...)
227 va_start (args
, type
);
228 if (printed_result_p
)
229 cgen_trace_printf (cpu
, ", ");
235 cgen_trace_printf (cpu
, "%s <- 0x%x", name
, va_arg (args
, int));
242 /* this is separated from previous line for sunos cc */
243 di
= va_arg (args
, DI
);
244 sim_fpu_64to (&f
, di
);
246 cgen_trace_printf (cpu
, "%s <- ", name
);
247 sim_fpu_printn_fpu (&f
, (sim_fpu_print_func
*) cgen_trace_printf
, 4, cpu
);
253 /* this is separated from previous line for sunos cc */
254 di
= va_arg (args
, DI
);
255 cgen_trace_printf (cpu
, "%s <- 0x%x%08x", name
,
256 GETHIDI(di
), GETLODI (di
));
261 printed_result_p
= 1;
265 /* Print trace output to BUFPTR if active, otherwise print normally.
266 This is only for tracing semantic code. */
269 cgen_trace_printf (SIM_CPU
*cpu
, char *fmt
, ...)
273 va_start (args
, fmt
);
277 if (TRACE_FILE (CPU_TRACE_DATA (cpu
)) == NULL
)
278 (* STATE_CALLBACK (CPU_STATE (cpu
))->evprintf_filtered
)
279 (STATE_CALLBACK (CPU_STATE (cpu
)), fmt
, args
);
281 vfprintf (TRACE_FILE (CPU_TRACE_DATA (cpu
)), fmt
, args
);
285 vsprintf (bufptr
, fmt
, args
);
286 bufptr
+= strlen (bufptr
);
287 /* ??? Need version of SIM_ASSERT that is always enabled. */
288 if (bufptr
- trace_buf
> SIZE_TRACE_BUF
)
295 /* Disassembly support. */
297 /* sprintf to a "stream" */
300 sim_disasm_sprintf (SFILE
*f
, const char *format
, ...)
305 va_start (args
, format
);
306 vsprintf (f
->current
, format
, args
);
307 f
->current
+= n
= strlen (f
->current
);
312 /* Memory read support for an opcodes disassembler. */
315 sim_disasm_read_memory (bfd_vma memaddr
, bfd_byte
*myaddr
, unsigned int length
,
316 struct disassemble_info
*info
)
318 SIM_CPU
*cpu
= (SIM_CPU
*) info
->application_data
;
319 SIM_DESC sd
= CPU_STATE (cpu
);
320 unsigned length_read
;
322 length_read
= sim_core_read_buffer (sd
, cpu
, read_map
, myaddr
, memaddr
,
324 if (length_read
!= length
)
329 /* Memory error support for an opcodes disassembler. */
332 sim_disasm_perror_memory (int status
, bfd_vma memaddr
,
333 struct disassemble_info
*info
)
337 info
->fprintf_func (info
->stream
, "Unknown error %d.", status
);
339 /* Actually, address between memaddr and memaddr + len was
341 info
->fprintf_func (info
->stream
,
342 "Address 0x%x is out of bounds.",
346 /* Disassemble using the CGEN opcode table.
347 ??? While executing an instruction, the insn has been decoded and all its
348 fields have been extracted. It is certainly possible to do the disassembly
349 with that data. This seems simpler, but maybe in the future the already
350 extracted fields will be used. */
353 sim_cgen_disassemble_insn (SIM_CPU
*cpu
, const CGEN_INSN
*insn
,
354 const ARGBUF
*abuf
, IADDR pc
, char *buf
)
357 unsigned int base_length
;
358 unsigned long insn_value
;
359 struct disassemble_info disasm_info
;
362 unsigned8 bytes
[CGEN_MAX_INSN_SIZE
];
363 unsigned16 shorts
[8];
366 SIM_DESC sd
= CPU_STATE (cpu
);
367 CGEN_CPU_DESC cd
= CPU_CPU_DESC (cpu
);
368 CGEN_EXTRACT_INFO ex_info
;
369 CGEN_FIELDS
*fields
= alloca (CGEN_CPU_SIZEOF_FIELDS (cd
));
370 int insn_bit_length
= CGEN_INSN_BITSIZE (insn
);
371 int insn_length
= insn_bit_length
/ 8;
373 sfile
.buffer
= sfile
.current
= buf
;
374 INIT_DISASSEMBLE_INFO (disasm_info
, (FILE *) &sfile
,
375 (fprintf_ftype
) sim_disasm_sprintf
);
377 (bfd_big_endian (STATE_PROG_BFD (sd
)) ? BFD_ENDIAN_BIG
378 : bfd_little_endian (STATE_PROG_BFD (sd
)) ? BFD_ENDIAN_LITTLE
379 : BFD_ENDIAN_UNKNOWN
);
381 length
= sim_core_read_buffer (sd
, cpu
, read_map
, &insn_buf
, pc
,
384 if (length
!= insn_length
)
386 sim_io_error (sd
, "unable to read address %x", pc
);
389 /* If the entire insn will fit into an integer, then do it. Otherwise, just
390 use the bits of the base_insn. */
391 if (insn_bit_length
<= 32)
392 base_length
= insn_bit_length
;
394 base_length
= min (cd
->base_insn_bitsize
, insn_bit_length
);
397 case 0 : return; /* fake insn, typically "compile" (aka "invalid") */
398 case 8 : insn_value
= insn_buf
.bytes
[0]; break;
399 case 16 : insn_value
= T2H_2 (insn_buf
.shorts
[0]); break;
400 case 32 : insn_value
= T2H_4 (insn_buf
.words
[0]); break;
404 disasm_info
.buffer_vma
= pc
;
405 disasm_info
.buffer
= insn_buf
.bytes
;
406 disasm_info
.buffer_length
= length
;
408 ex_info
.dis_info
= (PTR
) &disasm_info
;
409 ex_info
.valid
= (1 << length
) - 1;
410 ex_info
.insn_bytes
= insn_buf
.bytes
;
412 length
= (*CGEN_EXTRACT_FN (cd
, insn
)) (cd
, insn
, &ex_info
, insn_value
, fields
, pc
);
413 /* Result of extract fn is in bits. */
414 /* ??? This assumes that each instruction has a fixed length (and thus
415 for insns with multiple versions of variable lengths they would each
416 have their own table entry). */
417 if (length
== insn_bit_length
)
419 (*CGEN_PRINT_FN (cd
, insn
)) (cd
, &disasm_info
, insn
, fields
, pc
, length
);
423 /* This shouldn't happen, but aborting is too drastic. */
424 strcpy (buf
, "***unknown***");