1 /* Simulator tracing/debugging support.
2 Copyright (C) 1997-2023 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/>. */
20 /* This file is meant to be included by sim-basics.h. */
31 /* Standard traceable entities. */
34 /* Trace insn execution. The port itself is responsible for displaying what
35 it thinks it is decoding. */
38 /* Disassemble code addresses. Like insn tracing, but relies on the opcode
39 framework for displaying code. Can be slower, more accurate as to what
40 the binary code actually is, but not how the sim is decoding it. */
43 /* Trace insn decoding.
44 ??? This is more of a simulator debugging operation and might best be
45 moved to --debug-decode. */
48 /* Trace insn extraction.
49 ??? This is more of a simulator debugging operation and might best be
50 moved to --debug-extract. */
53 /* Trace insn execution but include line numbers. */
56 /* Trace memory operations.
57 The difference between this and TRACE_CORE_IDX is (I think) that this
58 is intended to apply to a higher level. TRACE_CORE_IDX applies to the
59 low level core operations. */
62 /* Include model performance data in tracing output. */
65 /* Trace ALU (Arithmetic Logic Unit) operations. */
68 /* Trace memory core operations. */
74 /* Trace FPU (Floating Point Unit) operations. */
77 /* Trace VPU (Vector Processing Unit) operations. */
80 /* Trace branching. */
86 /* Trace cpu register accesses. Registers that are part of hardware devices
87 should use the HW_TRACE macros instead. */
90 /* Add information useful for debugging the simulator to trace output. */
93 /* Simulator specific trace bits begin here. */
97 /* Maximum number of traceable entities. */
98 #ifndef MAX_TRACE_VALUES
99 #define MAX_TRACE_VALUES 32
102 /* The -t option only prints useful values. It's easy to type and shouldn't
103 splat on the screen everything under the sun making nothing easy to
105 #define TRACE_USEFUL_MASK \
106 (TRACE_insn | TRACE_linenum | TRACE_memory | TRACE_model)
108 /* Masks so WITH_TRACE can have symbolic values.
109 The case choice here is on purpose. The lowercase parts are args to
111 #define TRACE_insn (1 << TRACE_INSN_IDX)
112 #define TRACE_disasm (1 << TRACE_DISASM_IDX)
113 #define TRACE_decode (1 << TRACE_DECODE_IDX)
114 #define TRACE_extract (1 << TRACE_EXTRACT_IDX)
115 #define TRACE_linenum (1 << TRACE_LINENUM_IDX)
116 #define TRACE_memory (1 << TRACE_MEMORY_IDX)
117 #define TRACE_model (1 << TRACE_MODEL_IDX)
118 #define TRACE_alu (1 << TRACE_ALU_IDX)
119 #define TRACE_core (1 << TRACE_CORE_IDX)
120 #define TRACE_events (1 << TRACE_EVENTS_IDX)
121 #define TRACE_fpu (1 << TRACE_FPU_IDX)
122 #define TRACE_vpu (1 << TRACE_VPU_IDX)
123 #define TRACE_branch (1 << TRACE_BRANCH_IDX)
124 #define TRACE_syscall (1 << TRACE_SYSCALL_IDX)
125 #define TRACE_register (1 << TRACE_REGISTER_IDX)
126 #define TRACE_debug (1 << TRACE_DEBUG_IDX)
128 /* Return non-zero if tracing of idx is enabled (compiled in). */
129 #define WITH_TRACE_P(idx) ((WITH_TRACE & (1 << idx)) != 0)
131 /* Preprocessor macros to simplify tests of WITH_TRACE. */
132 #define WITH_TRACE_ANY_P (WITH_TRACE != 0)
133 #define WITH_TRACE_INSN_P WITH_TRACE_P (TRACE_INSN_IDX)
134 #define WITH_TRACE_DISASM_P WITH_TRACE_P (TRACE_DISASM_IDX)
135 #define WITH_TRACE_DECODE_P WITH_TRACE_P (TRACE_DECODE_IDX)
136 #define WITH_TRACE_EXTRACT_P WITH_TRACE_P (TRACE_EXTRACT_IDX)
137 #define WITH_TRACE_LINENUM_P WITH_TRACE_P (TRACE_LINENUM_IDX)
138 #define WITH_TRACE_MEMORY_P WITH_TRACE_P (TRACE_MEMORY_IDX)
139 #define WITH_TRACE_MODEL_P WITH_TRACE_P (TRACE_MODEL_IDX)
140 #define WITH_TRACE_ALU_P WITH_TRACE_P (TRACE_ALU_IDX)
141 #define WITH_TRACE_CORE_P WITH_TRACE_P (TRACE_CORE_IDX)
142 #define WITH_TRACE_EVENTS_P WITH_TRACE_P (TRACE_EVENTS_IDX)
143 #define WITH_TRACE_FPU_P WITH_TRACE_P (TRACE_FPU_IDX)
144 #define WITH_TRACE_VPU_P WITH_TRACE_P (TRACE_VPU_IDX)
145 #define WITH_TRACE_BRANCH_P WITH_TRACE_P (TRACE_BRANCH_IDX)
146 #define WITH_TRACE_SYSCALL_P WITH_TRACE_P (TRACE_SYSCALL_IDX)
147 #define WITH_TRACE_REGISTER_P WITH_TRACE_P (TRACE_REGISTER_IDX)
148 #define WITH_TRACE_DEBUG_P WITH_TRACE_P (TRACE_DEBUG_IDX)
150 /* Struct containing all system and cpu trace data.
152 System trace data is stored with the associated module.
153 System and cpu tracing must share the same space of bitmasks as they
154 are arguments to --with-trace. One could have --with-trace and
155 --with-cpu-trace or some such but that's an over-complication at this point
156 in time. Also, there may be occasions where system and cpu tracing may
157 wish to share a name. */
159 typedef struct _trace_data
{
161 /* Global summary of all the current trace options */
164 /* Boolean array of specified tracing flags. */
165 /* ??? It's not clear that using an array vs a bit mask is faster.
166 Consider the case where one wants to test whether any of several bits
168 char trace_flags
[MAX_TRACE_VALUES
];
169 #define TRACE_FLAGS(t) ((t)->trace_flags)
171 /* Tracing output goes to this or stderr if NULL.
172 We can't store `stderr' here as stderr goes through a callback. */
174 #define TRACE_FILE(t) ((t)->trace_file)
176 /* Buffer to store the prefix to be printed before any trace line. */
177 char trace_prefix
[256];
178 #define TRACE_PREFIX(t) ((t)->trace_prefix)
180 /* Buffer to save the inputs for the current instruction. Use a
181 union to force the buffer into correct alignment */
187 } trace_input_data
[16];
188 uint8_t trace_input_fmt
[16];
189 uint8_t trace_input_size
[16];
191 #define TRACE_INPUT_DATA(t) ((t)->trace_input_data)
192 #define TRACE_INPUT_FMT(t) ((t)->trace_input_fmt)
193 #define TRACE_INPUT_SIZE(t) ((t)->trace_input_size)
194 #define TRACE_INPUT_IDX(t) ((t)->trace_input_idx)
196 /* Category of trace being performed */
198 #define TRACE_IDX(t) ((t)->trace_idx)
201 ??? Not all cpu's support this. */
203 #define TRACE_RANGE(t) (& (t)->range)
205 /* The bfd used to disassemble code. Should compare against STATE_PROG_BFD
206 before using the disassembler helper.
207 Meant for use by the internal trace module only. */
210 /* The function used to actually disassemble code.
211 Meant for use by the internal trace module only. */
212 disassembler_ftype disassembler
;
214 /* State used with the disassemble function.
215 Meant for use by the internal trace module only. */
216 disassemble_info dis_info
;
219 /* System tracing support. */
221 #define STATE_TRACE_FLAGS(sd) TRACE_FLAGS (STATE_TRACE_DATA (sd))
223 /* Return non-zero if tracing of IDX is enabled for non-cpu specific
224 components. The "S" in "STRACE" refers to "System". */
225 #define STRACE_P(sd,idx) \
226 (WITH_TRACE_P (idx) && STATE_TRACE_FLAGS (sd)[idx] != 0)
228 /* Non-zero if --trace-<xxxx> was specified for SD. */
229 #define STRACE_ANY_P(sd) (WITH_TRACE_ANY_P && (STATE_TRACE_DATA (sd)->trace_any_p))
230 #define STRACE_INSN_P(sd) STRACE_P (sd, TRACE_INSN_IDX)
231 #define STRACE_DISASM_P(sd) STRACE_P (sd, TRACE_DISASM_IDX)
232 #define STRACE_DECODE_P(sd) STRACE_P (sd, TRACE_DECODE_IDX)
233 #define STRACE_EXTRACT_P(sd) STRACE_P (sd, TRACE_EXTRACT_IDX)
234 #define STRACE_LINENUM_P(sd) STRACE_P (sd, TRACE_LINENUM_IDX)
235 #define STRACE_MEMORY_P(sd) STRACE_P (sd, TRACE_MEMORY_IDX)
236 #define STRACE_MODEL_P(sd) STRACE_P (sd, TRACE_MODEL_IDX)
237 #define STRACE_ALU_P(sd) STRACE_P (sd, TRACE_ALU_IDX)
238 #define STRACE_CORE_P(sd) STRACE_P (sd, TRACE_CORE_IDX)
239 #define STRACE_EVENTS_P(sd) STRACE_P (sd, TRACE_EVENTS_IDX)
240 #define STRACE_FPU_P(sd) STRACE_P (sd, TRACE_FPU_IDX)
241 #define STRACE_VPU_P(sd) STRACE_P (sd, TRACE_VPU_IDX)
242 #define STRACE_BRANCH_P(sd) STRACE_P (sd, TRACE_BRANCH_IDX)
243 #define STRACE_SYSCALL_P(sd) STRACE_P (sd, TRACE_SYSCALL_IDX)
244 #define STRACE_REGISTER_P(sd) STRACE_P (sd, TRACE_REGISTER_IDX)
245 #define STRACE_DEBUG_P(sd) STRACE_P (sd, TRACE_DEBUG_IDX)
247 /* Helper functions for printing messages. */
248 #define STRACE(sd, idx, fmt, args...) \
250 if (STRACE_P (sd, idx)) \
251 trace_generic (sd, NULL, idx, fmt, ## args); \
253 #define STRACE_INSN(sd, fmt, args...) STRACE (sd, TRACE_INSN_IDX, fmt, ## args)
254 #define STRACE_DISASM(sd, fmt, args...) STRACE (sd, TRACE_DISASM_IDX, fmt, ## args)
255 #define STRACE_DECODE(sd, fmt, args...) STRACE (sd, TRACE_DECODE_IDX, fmt, ## args)
256 #define STRACE_EXTRACT(sd, fmt, args...) STRACE (sd, TRACE_EXTRACT_IDX, fmt, ## args)
257 #define STRACE_LINENUM(sd, fmt, args...) STRACE (sd, TRACE_LINENUM_IDX, fmt, ## args)
258 #define STRACE_MEMORY(sd, fmt, args...) STRACE (sd, TRACE_MEMORY_IDX, fmt, ## args)
259 #define STRACE_MODEL(sd, fmt, args...) STRACE (sd, TRACE_MODEL_IDX, fmt, ## args)
260 #define STRACE_ALU(sd, fmt, args...) STRACE (sd, TRACE_ALU_IDX, fmt, ## args)
261 #define STRACE_CORE(sd, fmt, args...) STRACE (sd, TRACE_CORE_IDX, fmt, ## args)
262 #define STRACE_EVENTS(sd, fmt, args...) STRACE (sd, TRACE_EVENTS_IDX, fmt, ## args)
263 #define STRACE_FPU(sd, fmt, args...) STRACE (sd, TRACE_FPU_IDX, fmt, ## args)
264 #define STRACE_VPU(sd, fmt, args...) STRACE (sd, TRACE_VPU_IDX, fmt, ## args)
265 #define STRACE_BRANCH(sd, fmt, args...) STRACE (sd, TRACE_BRANCH_IDX, fmt, ## args)
266 #define STRACE_SYSCALL(sd, fmt, args...) STRACE (sd, TRACE_SYSCALL_IDX, fmt, ## args)
267 #define STRACE_REGISTER(sd, fmt, args...) STRACE (sd, TRACE_REGISTER_IDX, fmt, ## args)
268 #define STRACE_DEBUG(sd, fmt, args...) STRACE (sd, TRACE_DEBUG_IDX, fmt, ## args)
270 /* CPU tracing support. */
272 #define CPU_TRACE_FLAGS(cpu) TRACE_FLAGS (CPU_TRACE_DATA (cpu))
274 /* Return non-zero if tracing of IDX is enabled for CPU. */
275 #define TRACE_P(cpu,idx) \
276 (WITH_TRACE_P (idx) && CPU_TRACE_FLAGS (cpu)[idx] != 0)
278 /* Non-zero if --trace-<xxxx> was specified for CPU. */
279 #define TRACE_ANY_P(cpu) (WITH_TRACE_ANY_P && (CPU_TRACE_DATA (cpu)->trace_any_p))
280 #define TRACE_INSN_P(cpu) TRACE_P (cpu, TRACE_INSN_IDX)
281 #define TRACE_DISASM_P(cpu) TRACE_P (cpu, TRACE_DISASM_IDX)
282 #define TRACE_DECODE_P(cpu) TRACE_P (cpu, TRACE_DECODE_IDX)
283 #define TRACE_EXTRACT_P(cpu) TRACE_P (cpu, TRACE_EXTRACT_IDX)
284 #define TRACE_LINENUM_P(cpu) TRACE_P (cpu, TRACE_LINENUM_IDX)
285 #define TRACE_MEMORY_P(cpu) TRACE_P (cpu, TRACE_MEMORY_IDX)
286 #define TRACE_MODEL_P(cpu) TRACE_P (cpu, TRACE_MODEL_IDX)
287 #define TRACE_ALU_P(cpu) TRACE_P (cpu, TRACE_ALU_IDX)
288 #define TRACE_CORE_P(cpu) TRACE_P (cpu, TRACE_CORE_IDX)
289 #define TRACE_EVENTS_P(cpu) TRACE_P (cpu, TRACE_EVENTS_IDX)
290 #define TRACE_FPU_P(cpu) TRACE_P (cpu, TRACE_FPU_IDX)
291 #define TRACE_VPU_P(cpu) TRACE_P (cpu, TRACE_VPU_IDX)
292 #define TRACE_BRANCH_P(cpu) TRACE_P (cpu, TRACE_BRANCH_IDX)
293 #define TRACE_SYSCALL_P(cpu) TRACE_P (cpu, TRACE_SYSCALL_IDX)
294 #define TRACE_REGISTER_P(cpu) TRACE_P (cpu, TRACE_REGISTER_IDX)
295 #define TRACE_DEBUG_P(cpu) TRACE_P (cpu, TRACE_DEBUG_IDX)
296 #define TRACE_DISASM_P(cpu) TRACE_P (cpu, TRACE_DISASM_IDX)
298 /* Helper functions for printing messages. */
299 #define TRACE(cpu, idx, fmt, args...) \
301 if (TRACE_P (cpu, idx)) \
302 trace_generic (CPU_STATE (cpu), cpu, idx, fmt, ## args); \
304 #define TRACE_INSN(cpu, fmt, args...) TRACE (cpu, TRACE_INSN_IDX, fmt, ## args)
305 #define TRACE_DECODE(cpu, fmt, args...) TRACE (cpu, TRACE_DECODE_IDX, fmt, ## args)
306 #define TRACE_EXTRACT(cpu, fmt, args...) TRACE (cpu, TRACE_EXTRACT_IDX, fmt, ## args)
307 #define TRACE_LINENUM(cpu, fmt, args...) TRACE (cpu, TRACE_LINENUM_IDX, fmt, ## args)
308 #define TRACE_MEMORY(cpu, fmt, args...) TRACE (cpu, TRACE_MEMORY_IDX, fmt, ## args)
309 #define TRACE_MODEL(cpu, fmt, args...) TRACE (cpu, TRACE_MODEL_IDX, fmt, ## args)
310 #define TRACE_ALU(cpu, fmt, args...) TRACE (cpu, TRACE_ALU_IDX, fmt, ## args)
311 #define TRACE_CORE(cpu, fmt, args...) TRACE (cpu, TRACE_CORE_IDX, fmt, ## args)
312 #define TRACE_EVENTS(cpu, fmt, args...) TRACE (cpu, TRACE_EVENTS_IDX, fmt, ## args)
313 #define TRACE_FPU(cpu, fmt, args...) TRACE (cpu, TRACE_FPU_IDX, fmt, ## args)
314 #define TRACE_VPU(cpu, fmt, args...) TRACE (cpu, TRACE_VPU_IDX, fmt, ## args)
315 #define TRACE_BRANCH(cpu, fmt, args...) TRACE (cpu, TRACE_BRANCH_IDX, fmt, ## args)
316 #define TRACE_SYSCALL(cpu, fmt, args...) TRACE (cpu, TRACE_SYSCALL_IDX, fmt, ## args)
317 #define TRACE_REGISTER(cpu, fmt, args...) TRACE (cpu, TRACE_REGISTER_IDX, fmt, ## args)
318 #define TRACE_DEBUG(cpu, fmt, args...) TRACE (cpu, TRACE_DEBUG_IDX, fmt, ## args)
319 #define TRACE_DISASM(cpu, addr) \
321 if (TRACE_DISASM_P (cpu)) \
322 trace_disasm (CPU_STATE (cpu), cpu, addr); \
325 /* Tracing functions. */
327 /* Prime the trace buffers ready for any trace output.
328 Must be called prior to any other trace operation */
329 extern void trace_prefix (SIM_DESC sd
,
334 const char *file_name
,
337 ...) ATTRIBUTE_PRINTF (8, 9);
339 /* Generic trace print, assumes trace_prefix() has been called */
341 extern void trace_generic (SIM_DESC sd
,
345 ...) ATTRIBUTE_PRINTF (4, 5);
347 /* Disassemble the specified address. */
349 extern void trace_disasm (SIM_DESC sd
, sim_cpu
*cpu
, address_word addr
);
359 trace_fmt_instruction_incomplete
,
362 /* Trace a varying number of word sized inputs/outputs. trace_result*
363 must be called to close the trace operation. */
365 extern void save_data (SIM_DESC sd
,
371 extern void trace_input0 (SIM_DESC sd
,
375 extern void trace_input_word1 (SIM_DESC sd
,
380 extern void trace_input_word2 (SIM_DESC sd
,
386 extern void trace_input_word3 (SIM_DESC sd
,
393 extern void trace_input_word4 (SIM_DESC sd
,
401 extern void trace_input_addr1 (SIM_DESC sd
,
406 extern void trace_input_bool1 (SIM_DESC sd
,
411 extern void trace_input_fp1 (SIM_DESC sd
,
416 extern void trace_input_fp2 (SIM_DESC sd
,
422 extern void trace_input_fp3 (SIM_DESC sd
,
429 extern void trace_input_fpu1 (SIM_DESC sd
,
432 struct _sim_fpu
*f0
);
434 extern void trace_input_fpu2 (SIM_DESC sd
,
438 struct _sim_fpu
*f1
);
440 extern void trace_input_fpu3 (SIM_DESC sd
,
445 struct _sim_fpu
*f2
);
447 /* Other trace_input{_<fmt><nr-inputs>} functions can go here */
449 extern void trace_result0 (SIM_DESC sd
,
453 extern void trace_result_word1 (SIM_DESC sd
,
458 extern void trace_result_word2 (SIM_DESC sd
,
464 extern void trace_result_word4 (SIM_DESC sd
,
472 extern void trace_result_bool1 (SIM_DESC sd
,
477 extern void trace_result_addr1 (SIM_DESC sd
,
482 extern void trace_result_fp1 (SIM_DESC sd
,
487 extern void trace_result_fp2 (SIM_DESC sd
,
493 extern void trace_result_fpu1 (SIM_DESC sd
,
496 struct _sim_fpu
*f0
);
498 extern void trace_result_string1 (SIM_DESC sd
,
503 extern void trace_result_word1_string1 (SIM_DESC sd
,
509 /* Other trace_result{_<type><nr-results>} */
512 /* Macros for tracing ALU instructions */
514 #define TRACE_ALU_INPUT0() \
516 if (TRACE_ALU_P (CPU)) \
517 trace_input0 (SD, CPU, TRACE_ALU_IDX); \
520 #define TRACE_ALU_INPUT1(V0) \
522 if (TRACE_ALU_P (CPU)) \
523 trace_input_word1 (SD, CPU, TRACE_ALU_IDX, (V0)); \
526 #define TRACE_ALU_INPUT2(V0,V1) \
528 if (TRACE_ALU_P (CPU)) \
529 trace_input_word2 (SD, CPU, TRACE_ALU_IDX, (V0), (V1)); \
532 #define TRACE_ALU_INPUT3(V0,V1,V2) \
534 if (TRACE_ALU_P (CPU)) \
535 trace_input_word3 (SD, CPU, TRACE_ALU_IDX, (V0), (V1), (V2)); \
538 #define TRACE_ALU_INPUT4(V0,V1,V2,V3) \
540 if (TRACE_ALU_P (CPU)) \
541 trace_input_word4 (SD, CPU, TRACE_ALU_IDX, (V0), (V1), (V2), (V3)); \
544 #define TRACE_ALU_RESULT(R0) TRACE_ALU_RESULT1(R0)
546 #define TRACE_ALU_RESULT0() \
548 if (TRACE_ALU_P (CPU)) \
549 trace_result0 (SD, CPU, TRACE_ALU_IDX); \
552 #define TRACE_ALU_RESULT1(R0) \
554 if (TRACE_ALU_P (CPU)) \
555 trace_result_word1 (SD, CPU, TRACE_ALU_IDX, (R0)); \
558 #define TRACE_ALU_RESULT2(R0,R1) \
560 if (TRACE_ALU_P (CPU)) \
561 trace_result_word2 (SD, CPU, TRACE_ALU_IDX, (R0), (R1)); \
564 #define TRACE_ALU_RESULT4(R0,R1,R2,R3) \
566 if (TRACE_ALU_P (CPU)) \
567 trace_result_word4 (SD, CPU, TRACE_ALU_IDX, (R0), (R1), (R2), (R3)); \
570 /* Macros for tracing inputs to comparative branch instructions. */
572 #define TRACE_BRANCH_INPUT1(V0) \
574 if (TRACE_BRANCH_P (CPU)) \
575 trace_input_word1 (SD, CPU, TRACE_BRANCH_IDX, (V0)); \
578 #define TRACE_BRANCH_INPUT2(V0,V1) \
580 if (TRACE_BRANCH_P (CPU)) \
581 trace_input_word2 (SD, CPU, TRACE_BRANCH_IDX, (V0), (V1)); \
584 /* Macros for tracing FPU instructions */
586 #define TRACE_FP_INPUT0() \
588 if (TRACE_FPU_P (CPU)) \
589 trace_input0 (SD, CPU, TRACE_FPU_IDX); \
592 #define TRACE_FP_INPUT1(V0) \
594 if (TRACE_FPU_P (CPU)) \
595 trace_input_fp1 (SD, CPU, TRACE_FPU_IDX, (V0)); \
598 #define TRACE_FP_INPUT2(V0,V1) \
600 if (TRACE_FPU_P (CPU)) \
601 trace_input_fp2 (SD, CPU, TRACE_FPU_IDX, (V0), (V1)); \
604 #define TRACE_FP_INPUT3(V0,V1,V2) \
606 if (TRACE_FPU_P (CPU)) \
607 trace_input_fp3 (SD, CPU, TRACE_FPU_IDX, (V0), (V1), (V2)); \
610 #define TRACE_FP_INPUT_WORD1(V0) \
612 if (TRACE_FPU_P (CPU)) \
613 trace_input_word1 (SD, CPU, TRACE_FPU_IDX, (V0)); \
616 #define TRACE_FP_RESULT(R0) \
618 if (TRACE_FPU_P (CPU)) \
619 trace_result_fp1 (SD, CPU, TRACE_FPU_IDX, (R0)); \
622 #define TRACE_FP_RESULT2(R0,R1) \
624 if (TRACE_FPU_P (CPU)) \
625 trace_result_fp2 (SD, CPU, TRACE_FPU_IDX, (R0), (R1)); \
628 #define TRACE_FP_RESULT_BOOL(R0) \
630 if (TRACE_FPU_P (CPU)) \
631 trace_result_bool1 (SD, CPU, TRACE_FPU_IDX, (R0)); \
634 #define TRACE_FP_RESULT_WORD(R0) \
636 if (TRACE_FPU_P (CPU)) \
637 trace_result_word1 (SD, CPU, TRACE_FPU_IDX, (R0)); \
641 /* Macros for tracing branches */
643 #define TRACE_BRANCH_INPUT(COND) \
645 if (TRACE_BRANCH_P (CPU)) \
646 trace_input_bool1 (SD, CPU, TRACE_BRANCH_IDX, (COND)); \
649 #define TRACE_BRANCH_RESULT(DEST) \
651 if (TRACE_BRANCH_P (CPU)) \
652 trace_result_addr1 (SD, CPU, TRACE_BRANCH_IDX, (DEST)); \
656 extern void trace_printf (SIM_DESC
, sim_cpu
*, const char *, ...)
657 ATTRIBUTE_PRINTF (3, 4);
659 extern void trace_vprintf (SIM_DESC
, sim_cpu
*, const char *, va_list)
660 ATTRIBUTE_PRINTF (3, 0);
663 This is included here because there isn't enough of it to justify
666 /* Return non-zero if debugging of IDX for CPU is enabled. */
667 #define DEBUG_P(cpu, idx) \
668 ((WITH_DEBUG & (1 << (idx))) != 0 \
669 && CPU_DEBUG_FLAGS (cpu)[idx] != 0)
671 /* Non-zero if "--debug-insn" specified. */
672 #define DEBUG_INSN_P(cpu) DEBUG_P (cpu, DEBUG_INSN_IDX)
674 /* Symbol related helpers. */
675 int trace_load_symbols (SIM_DESC
);
676 bfd_vma
trace_sym_value (SIM_DESC
, const char *name
);
678 extern void sim_debug_printf (sim_cpu
*, const char *, ...)
679 ATTRIBUTE_PRINTF (2, 3);
681 #endif /* SIM_TRACE_H */