Move much closer to new platform-M memory map
[riscv-isa-sim.git] / riscv / interactive.cc
1 // See LICENSE for license details.
2
3 #include "decode.h"
4 #include "disasm.h"
5 #include "sim.h"
6 #include "mmu.h"
7 #include "htif.h"
8 #include <sys/mman.h>
9 #include <termios.h>
10 #include <map>
11 #include <iostream>
12 #include <climits>
13 #include <cinttypes>
14 #include <assert.h>
15 #include <stdlib.h>
16 #include <unistd.h>
17 #include <sstream>
18 #include <string>
19 #include <vector>
20 #include <algorithm>
21
22 processor_t *sim_t::get_core(const std::string& i)
23 {
24 char *ptr;
25 unsigned long p = strtoul(i.c_str(), &ptr, 10);
26 if (*ptr || p >= num_cores())
27 throw trap_illegal_instruction();
28 return get_core(p);
29 }
30
31 static std::string readline(int fd)
32 {
33 struct termios tios;
34 bool noncanonical = tcgetattr(fd, &tios) == 0 && (tios.c_lflag & ICANON) == 0;
35
36 std::string s;
37 for (char ch; read(fd, &ch, 1) == 1; )
38 {
39 if (ch == '\x7f')
40 {
41 if (s.empty())
42 continue;
43 s.erase(s.end()-1);
44
45 if (noncanonical && write(fd, "\b \b", 3) != 3)
46 ; // shut up gcc
47 }
48 else if (noncanonical && write(fd, &ch, 1) != 1)
49 ; // shut up gcc
50
51 if (ch == '\n')
52 break;
53 if (ch != '\x7f')
54 s += ch;
55 }
56 return s;
57 }
58
59 void sim_t::interactive()
60 {
61 typedef void (sim_t::*interactive_func)(const std::string&, const std::vector<std::string>&);
62 std::map<std::string,interactive_func> funcs;
63
64 funcs["run"] = &sim_t::interactive_run_noisy;
65 funcs["r"] = funcs["run"];
66 funcs["rs"] = &sim_t::interactive_run_silent;
67 funcs["reg"] = &sim_t::interactive_reg;
68 funcs["fregs"] = &sim_t::interactive_fregs;
69 funcs["fregd"] = &sim_t::interactive_fregd;
70 funcs["pc"] = &sim_t::interactive_pc;
71 funcs["mem"] = &sim_t::interactive_mem;
72 funcs["str"] = &sim_t::interactive_str;
73 funcs["until"] = &sim_t::interactive_until;
74 funcs["while"] = &sim_t::interactive_until;
75 funcs["quit"] = &sim_t::interactive_quit;
76 funcs["q"] = funcs["quit"];
77 funcs["help"] = &sim_t::interactive_help;
78 funcs["h"] = funcs["help"];
79
80 while (!htif->done())
81 {
82 std::cerr << ": " << std::flush;
83 std::string s = readline(2);
84
85 std::stringstream ss(s);
86 std::string cmd, tmp;
87 std::vector<std::string> args;
88
89 if (!(ss >> cmd))
90 {
91 set_procs_debug(true);
92 step(1);
93 continue;
94 }
95
96 while (ss >> tmp)
97 args.push_back(tmp);
98
99 try
100 {
101 if(funcs.count(cmd))
102 (this->*funcs[cmd])(cmd, args);
103 }
104 catch(trap_t t) {}
105 }
106 ctrlc_pressed = false;
107 }
108
109 void sim_t::interactive_help(const std::string& cmd, const std::vector<std::string>& args)
110 {
111 std::cerr <<
112 "Interactive commands:\n"
113 "reg <core> [reg] # Display [reg] (all if omitted) in <core>\n"
114 "fregs <core> <reg> # Display single precision <reg> in <core>\n"
115 "fregd <core> <reg> # Display double precision <reg> in <core>\n"
116 "pc <core> # Show current PC in <core>\n"
117 "mem <hex addr> # Show contents of physical memory\n"
118 "str <hex addr> # Show NUL-terminated C string\n"
119 "until reg <core> <reg> <val> # Stop when <reg> in <core> hits <val>\n"
120 "until pc <core> <val> # Stop when PC in <core> hits <val>\n"
121 "until mem <addr> <val> # Stop when memory <addr> becomes <val>\n"
122 "while reg <core> <reg> <val> # Run while <reg> in <core> is <val>\n"
123 "while pc <core> <val> # Run while PC in <core> is <val>\n"
124 "while mem <addr> <val> # Run while memory <addr> is <val>\n"
125 "run [count] # Resume noisy execution (until CTRL+C, or [count] insns)\n"
126 "r [count] Alias for run\n"
127 "rs [count] # Resume silent execution (until CTRL+C, or [count] insns)\n"
128 "quit # End the simulation\n"
129 "q Alias for quit\n"
130 "help # This screen!\n"
131 "h Alias for help\n"
132 "Note: Hitting enter is the same as: run 1\n"
133 << std::flush;
134 }
135
136 void sim_t::interactive_run_noisy(const std::string& cmd, const std::vector<std::string>& args)
137 {
138 interactive_run(cmd,args,true);
139 }
140
141 void sim_t::interactive_run_silent(const std::string& cmd, const std::vector<std::string>& args)
142 {
143 interactive_run(cmd,args,false);
144 }
145
146 void sim_t::interactive_run(const std::string& cmd, const std::vector<std::string>& args, bool noisy)
147 {
148 size_t steps = args.size() ? atoll(args[0].c_str()) : -1;
149 ctrlc_pressed = false;
150 set_procs_debug(noisy);
151 for (size_t i = 0; i < steps && !ctrlc_pressed && !htif->done(); i++)
152 step(1);
153 }
154
155 void sim_t::interactive_quit(const std::string& cmd, const std::vector<std::string>& args)
156 {
157 exit(0);
158 }
159
160 reg_t sim_t::get_pc(const std::vector<std::string>& args)
161 {
162 if(args.size() != 1)
163 throw trap_illegal_instruction();
164
165 processor_t *p = get_core(args[0]);
166 return p->state.pc;
167 }
168
169 void sim_t::interactive_pc(const std::string& cmd, const std::vector<std::string>& args)
170 {
171 fprintf(stderr, "0x%016" PRIx64 "\n", get_pc(args));
172 }
173
174 reg_t sim_t::get_reg(const std::vector<std::string>& args)
175 {
176 if(args.size() != 2)
177 throw trap_illegal_instruction();
178
179 processor_t *p = get_core(args[0]);
180
181 unsigned long r = std::find(xpr_name, xpr_name + NXPR, args[1]) - xpr_name;
182 if (r == NXPR) {
183 char *ptr;
184 r = strtoul(args[1].c_str(), &ptr, 10);
185 if (*ptr) {
186 #define DECLARE_CSR(name, number) if (args[1] == #name) return p->get_csr(number);
187 #include "encoding.h" // generates if's for all csrs
188 r = NXPR; // else case (csr name not found)
189 #undef DECLARE_CSR
190 }
191 }
192
193 if (r >= NXPR)
194 throw trap_illegal_instruction();
195
196 return p->state.XPR[r];
197 }
198
199 reg_t sim_t::get_freg(const std::vector<std::string>& args)
200 {
201 if(args.size() != 2)
202 throw trap_illegal_instruction();
203
204 processor_t *p = get_core(args[0]);
205 int r = std::find(fpr_name, fpr_name + NFPR, args[1]) - fpr_name;
206 if (r == NFPR)
207 r = atoi(args[1].c_str());
208 if (r >= NFPR)
209 throw trap_illegal_instruction();
210
211 return p->state.FPR[r];
212 }
213
214 void sim_t::interactive_reg(const std::string& cmd, const std::vector<std::string>& args)
215 {
216 if (args.size() == 1) {
217 // Show all the regs!
218 processor_t *p = get_core(args[0]);
219
220 for (int r = 0; r < NXPR; ++r) {
221 fprintf(stderr, "%-4s: 0x%016" PRIx64 " ", xpr_name[r], p->state.XPR[r]);
222 if ((r + 1) % 4 == 0)
223 fprintf(stderr, "\n");
224 }
225 } else
226 fprintf(stderr, "0x%016" PRIx64 "\n", get_reg(args));
227 }
228
229 union fpr
230 {
231 reg_t r;
232 float s;
233 double d;
234 };
235
236 void sim_t::interactive_fregs(const std::string& cmd, const std::vector<std::string>& args)
237 {
238 fpr f;
239 f.r = get_freg(args);
240 fprintf(stderr, "%g\n",f.s);
241 }
242
243 void sim_t::interactive_fregd(const std::string& cmd, const std::vector<std::string>& args)
244 {
245 fpr f;
246 f.r = get_freg(args);
247 fprintf(stderr, "%g\n",f.d);
248 }
249
250 reg_t sim_t::get_mem(const std::vector<std::string>& args)
251 {
252 if(args.size() != 1 && args.size() != 2)
253 throw trap_illegal_instruction();
254
255 std::string addr_str = args[0];
256 mmu_t* mmu = debug_mmu;
257 if(args.size() == 2)
258 {
259 processor_t *p = get_core(args[0]);
260 mmu = p->get_mmu();
261 addr_str = args[1];
262 }
263
264 reg_t addr = strtol(addr_str.c_str(),NULL,16), val;
265 if(addr == LONG_MAX)
266 addr = strtoul(addr_str.c_str(),NULL,16);
267
268 switch(addr % 8)
269 {
270 case 0:
271 val = mmu->load_uint64(addr);
272 break;
273 case 4:
274 val = mmu->load_uint32(addr);
275 break;
276 case 2:
277 case 6:
278 val = mmu->load_uint16(addr);
279 break;
280 default:
281 val = mmu->load_uint8(addr);
282 break;
283 }
284 return val;
285 }
286
287 void sim_t::interactive_mem(const std::string& cmd, const std::vector<std::string>& args)
288 {
289 fprintf(stderr, "0x%016" PRIx64 "\n", get_mem(args));
290 }
291
292 void sim_t::interactive_str(const std::string& cmd, const std::vector<std::string>& args)
293 {
294 if(args.size() != 1)
295 throw trap_illegal_instruction();
296
297 reg_t addr = strtol(args[0].c_str(),NULL,16);
298
299 char ch;
300 while((ch = debug_mmu->load_uint8(addr++)))
301 putchar(ch);
302
303 putchar('\n');
304 }
305
306 void sim_t::interactive_until(const std::string& cmd, const std::vector<std::string>& args)
307 {
308 bool cmd_until = cmd == "until";
309
310 if(args.size() < 3)
311 return;
312
313 reg_t val = strtol(args[args.size()-1].c_str(),NULL,16);
314 if(val == LONG_MAX)
315 val = strtoul(args[args.size()-1].c_str(),NULL,16);
316
317 std::vector<std::string> args2;
318 args2 = std::vector<std::string>(args.begin()+1,args.end()-1);
319
320 auto func = args[0] == "reg" ? &sim_t::get_reg :
321 args[0] == "pc" ? &sim_t::get_pc :
322 args[0] == "mem" ? &sim_t::get_mem :
323 NULL;
324
325 if (func == NULL)
326 return;
327
328 ctrlc_pressed = false;
329
330 while (1)
331 {
332 try
333 {
334 reg_t current = (this->*func)(args2);
335
336 if (cmd_until == (current == val))
337 break;
338 if (ctrlc_pressed)
339 break;
340 }
341 catch (trap_t t) {}
342
343 set_procs_debug(false);
344 step(1);
345 }
346 }