1 /* Simulator tracing/debugging support.
2 Copyright (C) 1997, 1998, 2001 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 2, or (at your option)
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 along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* This file is meant to be included by sim-basics.h. */
26 /* Standard traceable entities. */
29 /* Trace insn execution. */
32 /* Trace insn decoding.
33 ??? This is more of a simulator debugging operation and might best be
34 moved to --debug-decode. */
37 /* Trace insn extraction.
38 ??? This is more of a simulator debugging operation and might best be
39 moved to --debug-extract. */
42 /* Trace insn execution but include line numbers. */
45 /* Trace memory operations.
46 The difference between this and TRACE_CORE_IDX is (I think) that this
47 is intended to apply to a higher level. TRACE_CORE_IDX applies to the
48 low level core operations. */
51 /* Include model performance data in tracing output. */
54 /* Trace ALU operations. */
57 /* Trace memory core operations. */
63 /* Trace fpu operations. */
66 /* Trace vpu operations. */
69 /* Trace branching. */
72 /* Add information useful for debugging the simulator to trace output. */
75 /* Simulator specific trace bits begin here. */
79 /* Maximum number of traceable entities. */
80 #ifndef MAX_TRACE_VALUES
81 #define MAX_TRACE_VALUES 32
84 /* The -t option only prints useful values. It's easy to type and shouldn't
85 splat on the screen everything under the sun making nothing easy to
87 #define TRACE_USEFUL_MASK \
88 ((1 << TRACE_INSN_IDX) \
89 | (1 << TRACE_LINENUM_IDX) \
90 | (1 << TRACE_MEMORY_IDX) \
91 | (1 << TRACE_MODEL_IDX))
93 /* Masks so WITH_TRACE can have symbolic values.
94 The case choice here is on purpose. The lowercase parts are args to
96 #define TRACE_insn (1 << TRACE_INSN_IDX)
97 #define TRACE_decode (1 << TRACE_DECODE_IDX)
98 #define TRACE_extract (1 << TRACE_EXTRACT_IDX)
99 #define TRACE_linenum (1 << TRACE_LINENUM_IDX)
100 #define TRACE_memory (1 << TRACE_MEMORY_IDX)
101 #define TRACE_model (1 << TRACE_MODEL_IDX)
102 #define TRACE_alu (1 << TRACE_ALU_IDX)
103 #define TRACE_core (1 << TRACE_CORE_IDX)
104 #define TRACE_events (1 << TRACE_EVENTS_IDX)
105 #define TRACE_fpu (1 << TRACE_FPU_IDX)
106 #define TRACE_vpu (1 << TRACE_VPU_IDX)
107 #define TRACE_branch (1 << TRACE_BRANCH_IDX)
108 #define TRACE_debug (1 << TRACE_DEBUG_IDX)
110 /* Preprocessor macros to simplify tests of WITH_TRACE. */
111 #define WITH_TRACE_INSN_P (WITH_TRACE & TRACE_insn)
112 #define WITH_TRACE_DECODE_P (WITH_TRACE & TRACE_decode)
113 #define WITH_TRACE_EXTRACT_P (WITH_TRACE & TRACE_extract)
114 #define WITH_TRACE_LINENUM_P (WITH_TRACE & TRACE_linenum)
115 #define WITH_TRACE_MEMORY_P (WITH_TRACE & TRACE_memory)
116 #define WITH_TRACE_MODEL_P (WITH_TRACE & TRACE_model)
117 #define WITH_TRACE_ALU_P (WITH_TRACE & TRACE_alu)
118 #define WITH_TRACE_CORE_P (WITH_TRACE & TRACE_core)
119 #define WITH_TRACE_EVENTS_P (WITH_TRACE & TRACE_events)
120 #define WITH_TRACE_FPU_P (WITH_TRACE & TRACE_fpu)
121 #define WITH_TRACE_VPU_P (WITH_TRACE & TRACE_vpu)
122 #define WITH_TRACE_BRANCH_P (WITH_TRACE & TRACE_branch)
123 #define WITH_TRACE_DEBUG_P (WITH_TRACE & TRACE_debug)
125 /* Tracing install handler. */
126 MODULE_INSTALL_FN trace_install
;
128 /* Struct containing all system and cpu trace data.
130 System trace data is stored with the associated module.
131 System and cpu tracing must share the same space of bitmasks as they
132 are arguments to --with-trace. One could have --with-trace and
133 --with-cpu-trace or some such but that's an over-complication at this point
134 in time. Also, there may be occasions where system and cpu tracing may
135 wish to share a name. */
137 typedef struct _trace_data
{
139 /* Global summary of all the current trace options */
142 /* Boolean array of specified tracing flags. */
143 /* ??? It's not clear that using an array vs a bit mask is faster.
144 Consider the case where one wants to test whether any of several bits
146 char trace_flags
[MAX_TRACE_VALUES
];
147 #define TRACE_FLAGS(t) ((t)->trace_flags)
149 /* Tracing output goes to this or stderr if NULL.
150 We can't store `stderr' here as stderr goes through a callback. */
152 #define TRACE_FILE(t) ((t)->trace_file)
154 /* Buffer to store the prefix to be printed before any trace line. */
155 char trace_prefix
[256];
156 #define TRACE_PREFIX(t) ((t)->trace_prefix)
158 /* Buffer to save the inputs for the current instruction. Use a
159 union to force the buffer into correct alignment */
165 } trace_input_data
[16];
166 unsigned8 trace_input_fmt
[16];
167 unsigned8 trace_input_size
[16];
169 #define TRACE_INPUT_DATA(t) ((t)->trace_input_data)
170 #define TRACE_INPUT_FMT(t) ((t)->trace_input_fmt)
171 #define TRACE_INPUT_SIZE(t) ((t)->trace_input_size)
172 #define TRACE_INPUT_IDX(t) ((t)->trace_input_idx)
174 /* Category of trace being performed */
176 #define TRACE_IDX(t) ((t)->trace_idx)
179 ??? Not all cpu's support this. */
181 #define TRACE_RANGE(t) (& (t)->range)
184 /* System tracing support. */
186 #define STATE_TRACE_FLAGS(sd) TRACE_FLAGS (STATE_TRACE_DATA (sd))
188 /* Return non-zero if tracing of IDX is enabled for non-cpu specific
189 components. The "S" in "STRACE" refers to "System". */
190 #define STRACE_P(sd,idx) \
191 ((WITH_TRACE & (1 << (idx))) != 0 \
192 && STATE_TRACE_FLAGS (sd)[idx] != 0)
194 /* Non-zero if --trace-<xxxx> was specified for SD. */
195 #define STRACE_DEBUG_P(sd) STRACE_P (sd, TRACE_DEBUG_IDX)
197 /* CPU tracing support. */
199 #define CPU_TRACE_FLAGS(cpu) TRACE_FLAGS (CPU_TRACE_DATA (cpu))
201 /* Return non-zero if tracing of IDX is enabled for CPU. */
202 #define TRACE_P(cpu,idx) \
203 ((WITH_TRACE & (1 << (idx))) != 0 \
204 && CPU_TRACE_FLAGS (cpu)[idx] != 0)
206 /* Non-zero if --trace-<xxxx> was specified for CPU. */
207 #define TRACE_ANY_P(cpu) ((WITH_TRACE) && (CPU_TRACE_DATA (cpu)->trace_any_p))
208 #define TRACE_INSN_P(cpu) TRACE_P (cpu, TRACE_INSN_IDX)
209 #define TRACE_DECODE_P(cpu) TRACE_P (cpu, TRACE_DECODE_IDX)
210 #define TRACE_EXTRACT_P(cpu) TRACE_P (cpu, TRACE_EXTRACT_IDX)
211 #define TRACE_LINENUM_P(cpu) TRACE_P (cpu, TRACE_LINENUM_IDX)
212 #define TRACE_MEMORY_P(cpu) TRACE_P (cpu, TRACE_MEMORY_IDX)
213 #define TRACE_MODEL_P(cpu) TRACE_P (cpu, TRACE_MODEL_IDX)
214 #define TRACE_ALU_P(cpu) TRACE_P (cpu, TRACE_ALU_IDX)
215 #define TRACE_CORE_P(cpu) TRACE_P (cpu, TRACE_CORE_IDX)
216 #define TRACE_EVENTS_P(cpu) TRACE_P (cpu, TRACE_EVENTS_IDX)
217 #define TRACE_FPU_P(cpu) TRACE_P (cpu, TRACE_FPU_IDX)
218 #define TRACE_VPU_P(cpu) TRACE_P (cpu, TRACE_VPU_IDX)
219 #define TRACE_BRANCH_P(cpu) TRACE_P (cpu, TRACE_BRANCH_IDX)
220 #define TRACE_DEBUG_P(cpu) TRACE_P (cpu, TRACE_DEBUG_IDX)
222 /* Tracing functions. */
224 /* Prime the trace buffers ready for any trace output.
225 Must be called prior to any other trace operation */
226 extern void trace_prefix
PARAMS ((SIM_DESC sd
,
231 const char *file_name
,
235 __attribute__((format (printf
, 8, 9)));
237 /* Generic trace print, assumes trace_prefix() has been called */
239 extern void trace_generic
PARAMS ((SIM_DESC sd
,
244 __attribute__((format (printf
, 4, 5)));
246 /* Trace a varying number of word sized inputs/outputs. trace_result*
247 must be called to close the trace operation. */
249 extern void trace_input0
PARAMS ((SIM_DESC sd
,
253 extern void trace_input_word1
PARAMS ((SIM_DESC sd
,
258 extern void trace_input_word2
PARAMS ((SIM_DESC sd
,
264 extern void trace_input_word3
PARAMS ((SIM_DESC sd
,
271 extern void trace_input_word4
PARAMS ((SIM_DESC sd
,
279 extern void trace_input_addr1
PARAMS ((SIM_DESC sd
,
284 extern void trace_input_bool1
PARAMS ((SIM_DESC sd
,
289 extern void trace_input_fp1
PARAMS ((SIM_DESC sd
,
294 extern void trace_input_fp2
PARAMS ((SIM_DESC sd
,
300 extern void trace_input_fp3
PARAMS ((SIM_DESC sd
,
307 extern void trace_input_fpu1
PARAMS ((SIM_DESC sd
,
310 struct _sim_fpu
*f0
));
312 extern void trace_input_fpu2
PARAMS ((SIM_DESC sd
,
316 struct _sim_fpu
*f1
));
318 extern void trace_input_fpu3
PARAMS ((SIM_DESC sd
,
323 struct _sim_fpu
*f2
));
325 /* Other trace_input{_<fmt><nr-inputs>} functions can go here */
327 extern void trace_result0
PARAMS ((SIM_DESC sd
,
331 extern void trace_result_word1
PARAMS ((SIM_DESC sd
,
336 extern void trace_result_word2
PARAMS ((SIM_DESC sd
,
342 extern void trace_result_word4
PARAMS ((SIM_DESC sd
,
350 extern void trace_result_bool1
PARAMS ((SIM_DESC sd
,
355 extern void trace_result_addr1
PARAMS ((SIM_DESC sd
,
360 extern void trace_result_fp1
PARAMS ((SIM_DESC sd
,
365 extern void trace_result_fp2
PARAMS ((SIM_DESC sd
,
371 extern void trace_result_fpu1
PARAMS ((SIM_DESC sd
,
374 struct _sim_fpu
*f0
));
376 extern void trace_result_string1
PARAMS ((SIM_DESC sd
,
381 extern void trace_result_word1_string1
PARAMS ((SIM_DESC sd
,
387 /* Other trace_result{_<type><nr-results>} */
390 /* Macros for tracing ALU instructions */
392 #define TRACE_ALU_INPUT0() \
394 if (TRACE_ALU_P (CPU)) \
395 trace_input0 (SD, CPU, TRACE_ALU_IDX); \
398 #define TRACE_ALU_INPUT1(V0) \
400 if (TRACE_ALU_P (CPU)) \
401 trace_input_word1 (SD, CPU, TRACE_ALU_IDX, (V0)); \
404 #define TRACE_ALU_INPUT2(V0,V1) \
406 if (TRACE_ALU_P (CPU)) \
407 trace_input_word2 (SD, CPU, TRACE_ALU_IDX, (V0), (V1)); \
410 #define TRACE_ALU_INPUT3(V0,V1,V2) \
412 if (TRACE_ALU_P (CPU)) \
413 trace_input_word3 (SD, CPU, TRACE_ALU_IDX, (V0), (V1), (V2)); \
416 #define TRACE_ALU_INPUT4(V0,V1,V2,V3) \
418 if (TRACE_ALU_P (CPU)) \
419 trace_input_word4 (SD, CPU, TRACE_ALU_IDX, (V0), (V1), (V2), (V3)); \
422 #define TRACE_ALU_RESULT(R0) TRACE_ALU_RESULT1(R0)
424 #define TRACE_ALU_RESULT0() \
426 if (TRACE_ALU_P (CPU)) \
427 trace_result0 (SD, CPU, TRACE_ALU_IDX); \
430 #define TRACE_ALU_RESULT1(R0) \
432 if (TRACE_ALU_P (CPU)) \
433 trace_result_word1 (SD, CPU, TRACE_ALU_IDX, (R0)); \
436 #define TRACE_ALU_RESULT2(R0,R1) \
438 if (TRACE_ALU_P (CPU)) \
439 trace_result_word2 (SD, CPU, TRACE_ALU_IDX, (R0), (R1)); \
442 #define TRACE_ALU_RESULT4(R0,R1,R2,R3) \
444 if (TRACE_ALU_P (CPU)) \
445 trace_result_word4 (SD, CPU, TRACE_ALU_IDX, (R0), (R1), (R2), (R3)); \
448 /* Macros for tracing inputs to comparative branch instructions. */
450 #define TRACE_BRANCH_INPUT1(V0) \
452 if (TRACE_BRANCH_P (CPU)) \
453 trace_input_word1 (SD, CPU, TRACE_BRANCH_IDX, (V0)); \
456 #define TRACE_BRANCH_INPUT2(V0,V1) \
458 if (TRACE_BRANCH_P (CPU)) \
459 trace_input_word2 (SD, CPU, TRACE_BRANCH_IDX, (V0), (V1)); \
462 /* Macros for tracing FPU instructions */
464 #define TRACE_FP_INPUT0() \
466 if (TRACE_FPU_P (CPU)) \
467 trace_input0 (SD, CPU, TRACE_FPU_IDX); \
470 #define TRACE_FP_INPUT1(V0) \
472 if (TRACE_FPU_P (CPU)) \
473 trace_input_fp1 (SD, CPU, TRACE_FPU_IDX, (V0)); \
476 #define TRACE_FP_INPUT2(V0,V1) \
478 if (TRACE_FPU_P (CPU)) \
479 trace_input_fp2 (SD, CPU, TRACE_FPU_IDX, (V0), (V1)); \
482 #define TRACE_FP_INPUT3(V0,V1,V2) \
484 if (TRACE_FPU_P (CPU)) \
485 trace_input_fp3 (SD, CPU, TRACE_FPU_IDX, (V0), (V1), (V2)); \
488 #define TRACE_FP_INPUT_WORD1(V0) \
490 if (TRACE_FPU_P (CPU)) \
491 trace_input_word1 (SD, CPU, TRACE_FPU_IDX, (V0)); \
494 #define TRACE_FP_RESULT(R0) \
496 if (TRACE_FPU_P (CPU)) \
497 trace_result_fp1 (SD, CPU, TRACE_FPU_IDX, (R0)); \
500 #define TRACE_FP_RESULT2(R0,R1) \
502 if (TRACE_FPU_P (CPU)) \
503 trace_result_fp2 (SD, CPU, TRACE_FPU_IDX, (R0), (R1)); \
506 #define TRACE_FP_RESULT_BOOL(R0) \
508 if (TRACE_FPU_P (CPU)) \
509 trace_result_bool1 (SD, CPU, TRACE_FPU_IDX, (R0)); \
512 #define TRACE_FP_RESULT_WORD(R0) \
514 if (TRACE_FPU_P (CPU)) \
515 trace_result_word1 (SD, CPU, TRACE_FPU_IDX, (R0)); \
519 /* Macros for tracing branches */
521 #define TRACE_BRANCH_INPUT(COND) \
523 if (TRACE_BRANCH_P (CPU)) \
524 trace_input_bool1 (SD, CPU, TRACE_BRANCH_IDX, (COND)); \
527 #define TRACE_BRANCH_RESULT(DEST) \
529 if (TRACE_BRANCH_P (CPU)) \
530 trace_result_addr1 (SD, CPU, TRACE_BRANCH_IDX, (DEST)); \
534 /* The function trace_one_insn has been replaced by the function pair
535 trace_prefix() + trace_generic() */
536 extern void trace_one_insn
PARAMS ((SIM_DESC sd
,
540 const char *file_name
,
545 __attribute__((format (printf
, 8, 9)));
547 extern void trace_printf
PARAMS ((SIM_DESC
, sim_cpu
*, const char *, ...))
548 __attribute__((format (printf
, 3, 4)));
550 extern void trace_vprintf
PARAMS ((SIM_DESC
, sim_cpu
*, const char *, va_list));
553 This is included here because there isn't enough of it to justify
556 /* Return non-zero if debugging of IDX for CPU is enabled. */
557 #define DEBUG_P(cpu, idx) \
558 ((WITH_DEBUG & (1 << (idx))) != 0 \
559 && CPU_DEBUG_FLAGS (cpu)[idx] != 0)
561 /* Non-zero if "--debug-insn" specified. */
562 #define DEBUG_INSN_P(cpu) DEBUG_P (cpu, DEBUG_INSN_IDX)
564 extern void debug_printf
PARAMS ((sim_cpu
*, const char *, ...))
565 __attribute__((format (printf
, 2, 3)));
567 #endif /* SIM_TRACE_H */