Andrew's latest changes & print all instruction counts if -I
[external/binutils.git] / sim / ppc / debug.c
1 /*  This file is part of the program psim.
2
3     Copyright (C) 1994-1995, Andrew Cagney <cagney@highland.com.au>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14  
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  
19     */
20
21
22 #ifndef _DEBUG_C_
23 #define _DEBUG_C_
24
25 #include "basics.h"
26 #include <stdlib.h>
27
28 int ppc_trace[nr_trace_options];
29 int print_info;
30
31 typedef struct _trace_option_descriptor {
32   trace_options option;
33   const char *name;
34   const char *description;
35 } trace_option_descriptor;
36
37 static trace_option_descriptor trace_description[] = {
38   { trace_gdb, "gdb", "calls made by gdb to the sim_calls.c file" },
39   { trace_os_emul, "os-emul", "VEA mode sytem calls - like strace/spy" },
40   /* decode/issue */
41   { trace_semantics, "semantics", "Instruction execution (issue)" },
42   { trace_idecode, "idecode", "instruction decode (when miss in cache)" },
43   { trace_alu, "alu", "results of integer ALU" },
44   { trace_load_store, "load-store", "transfers to from data registers" },
45   /* devices */
46   { trace_device_tree, "device-tree",  },
47   { trace_devices, "devices" },
48   { trace_pass_device, "pass-device" },
49   { trace_console_device, "console-device" },
50   { trace_icu_device, "icu-device" },
51   { trace_halt_device, "halt-device" },
52   { trace_register_device, "register-device" },
53   { trace_vm_device, "vm-device" },
54   { trace_memory_device, "memory-device" },
55   { trace_htab_device, "htab-device" },
56   { trace_pte_device, "pte-device" },
57   { trace_binary_device, "binary-device" },
58   { trace_file_device, "file-device" },
59   { trace_core_device, "core-device" },
60   { trace_stack_device, "stack-device" },
61   /* misc */
62   /* sentinal */
63   { nr_trace_options, NULL },
64 };
65
66 extern void
67 trace_option(const char *option)
68 {
69   int setting = 1;
70   if (option[0] == '!') {
71     setting = 0; /* clear it */
72     option += 1;
73   }
74   if (strcmp(option, "all") == 0) {
75     trace_options i;
76     for (i = 0; i < nr_trace_options; i++)
77       ppc_trace[i] = setting;
78   }
79   else {
80     int i = 0;
81     while (trace_description[i].option < nr_trace_options
82            && strcmp(option, trace_description[i].name) != 0)
83       i++;
84     if (trace_description[i].option < nr_trace_options)
85       ppc_trace[trace_description[i].option] = setting;
86     else {
87       i = strtoul(option, 0, 0);
88       if (i > 0 && i < nr_trace_options)
89         ppc_trace[i] = setting;
90       else
91         error("Unknown trace option: %s\n", option);
92     }
93       
94   }
95 }
96
97
98 extern void
99 trace_usage(void)
100 {
101   const char *format = "\t%-18s%s\n";
102   int i;
103   printf_filtered("Possible <trace-option>s are:\n");
104   printf_filtered(format, "!<trace-option>", "Disable the specified option");
105   printf_filtered(format, "all", "enable all the trace options");
106   for (i = 0; trace_description[i].option < nr_trace_options; i++)
107     printf_filtered(format,
108                     trace_description[i].name,
109                     (trace_description[i].description
110                      ? trace_description[i].description
111                      : ""));
112 }
113
114 #endif /* _DEBUG_C_ */