851644b0e586c9a686e2428ee3ca309f8797d025
[riscv-tests.git] / debug / gdbserver.py
1 #!/usr/bin/env python
2
3 import os
4 import sys
5 import argparse
6 import unittest
7 import tempfile
8 import time
9 import random
10 import binascii
11
12 import testlib
13
14
15 MSTATUS_UIE = 0x00000001
16 MSTATUS_SIE = 0x00000002
17 MSTATUS_HIE = 0x00000004
18 MSTATUS_MIE = 0x00000008
19 MSTATUS_UPIE = 0x00000010
20 MSTATUS_SPIE = 0x00000020
21 MSTATUS_HPIE = 0x00000040
22 MSTATUS_MPIE = 0x00000080
23 MSTATUS_SPP = 0x00000100
24 MSTATUS_HPP = 0x00000600
25 MSTATUS_MPP = 0x00001800
26 MSTATUS_FS = 0x00006000
27 MSTATUS_XS = 0x00018000
28 MSTATUS_MPRV = 0x00020000
29 MSTATUS_PUM = 0x00040000
30 MSTATUS_MXR = 0x00080000
31 MSTATUS_VM = 0x1F000000
32 MSTATUS32_SD = 0x80000000
33 MSTATUS64_SD = 0x8000000000000000
34
35 def gdb(
36 target=None,
37 port=None,
38 binary=None
39 ):
40
41 gdb = None
42 if parsed.gdb:
43 gdb = testlib.Gdb(parsed.gdb)
44 else:
45 gdb = testlib.Gdb()
46
47 if binary:
48 gdb.command("file %s" % binary)
49 if target:
50 gdb.command("set arch riscv:rv%d" % target.xlen)
51 gdb.command("set remotetimeout %d" % target.timeout_sec)
52 if port:
53 gdb.command("target extended-remote localhost:%d" % port)
54
55 gdb.p("$priv=3")
56
57 return gdb
58
59
60 def ihex_line(address, record_type, data):
61 assert len(data) < 128
62 line = ":%02X%04X%02X" % (len(data), address, record_type)
63 check = len(data)
64 check += address % 256
65 check += address >> 8
66 check += record_type
67 for char in data:
68 value = ord(char)
69 check += value
70 line += "%02X" % value
71 line += "%02X\n" % ((256-check)%256)
72 return line
73
74 def ihex_parse(line):
75 assert line.startswith(":")
76 line = line[1:]
77 data_len = int(line[:2], 16)
78 address = int(line[2:6], 16)
79 record_type = int(line[6:8], 16)
80 data = ""
81 for i in range(data_len):
82 data += "%c" % int(line[8+2*i:10+2*i], 16)
83 return record_type, address, data
84
85 def readable_binary_string(s):
86 return "".join("%02x" % ord(c) for c in s)
87
88 class DeleteServer(unittest.TestCase):
89 def tearDown(self):
90 del self.server
91
92 class SimpleRegisterTest(DeleteServer):
93 def setUp(self):
94 self.server = target.server()
95 self.gdb = gdb(target, self.server.port)
96
97 # 0x13 is nop
98 self.gdb.command("p *((int*) 0x%x)=0x13" % target.ram)
99 self.gdb.command("p *((int*) 0x%x)=0x13" % (target.ram + 4))
100 self.gdb.command("p *((int*) 0x%x)=0x13" % (target.ram + 8))
101 self.gdb.p("$pc=0x%x" % target.ram)
102
103 def check_reg(self, name):
104 a = random.randrange(1<<target.xlen)
105 b = random.randrange(1<<target.xlen)
106 self.gdb.p("$%s=0x%x" % (name, a))
107 self.gdb.stepi()
108 self.assertEqual(self.gdb.p("$%s" % name), a)
109 self.gdb.p("$%s=0x%x" % (name, b))
110 self.gdb.stepi()
111 self.assertEqual(self.gdb.p("$%s" % name), b)
112
113 def test_s0(self):
114 # S0 is saved/restored in DSCRATCH
115 self.check_reg("s0")
116
117 def test_s1(self):
118 # S1 is saved/restored in Debug RAM
119 self.check_reg("s1")
120
121 def test_t0(self):
122 # T0 is not saved/restored at all
123 self.check_reg("t2")
124
125 def test_t2(self):
126 # T2 is not saved/restored at all
127 self.check_reg("t2")
128
129 class SimpleMemoryTest(DeleteServer):
130 def setUp(self):
131 self.server = target.server()
132 self.gdb = gdb(target, self.server.port)
133
134 def access_test(self, size, data_type):
135 self.assertEqual(self.gdb.p("sizeof(%s)" % data_type),
136 size)
137 a = 0x86753095555aaaa & ((1<<(size*8))-1)
138 b = 0xdeadbeef12345678 & ((1<<(size*8))-1)
139 self.gdb.p("*((%s*)0x%x) = 0x%x" % (data_type, target.ram, a))
140 self.gdb.p("*((%s*)0x%x) = 0x%x" % (data_type, target.ram + size, b))
141 self.assertEqual(self.gdb.p("*((%s*)0x%x)" % (data_type, target.ram)), a)
142 self.assertEqual(self.gdb.p("*((%s*)0x%x)" % (data_type, target.ram + size)), b)
143
144 def test_8(self):
145 self.access_test(1, 'char')
146
147 def test_16(self):
148 self.access_test(2, 'short')
149
150 def test_32(self):
151 self.access_test(4, 'int')
152
153 def test_64(self):
154 self.access_test(8, 'long long')
155
156 def test_block(self):
157 length = 1024
158 line_length = 16
159 a = tempfile.NamedTemporaryFile(suffix=".ihex")
160 data = ""
161 for i in range(length / line_length):
162 line_data = "".join(["%c" % random.randrange(256) for _ in range(line_length)])
163 data += line_data
164 a.write(ihex_line(i * line_length, 0, line_data))
165 a.flush()
166
167 self.gdb.command("restore %s 0x%x" % (a.name, target.ram))
168 for offset in range(0, length, 19*4) + [length-4]:
169 value = self.gdb.p("*((int*)0x%x)" % (target.ram + offset))
170 written = ord(data[offset]) | \
171 (ord(data[offset+1]) << 8) | \
172 (ord(data[offset+2]) << 16) | \
173 (ord(data[offset+3]) << 24)
174 self.assertEqual(value, written)
175
176 b = tempfile.NamedTemporaryFile(suffix=".ihex")
177 self.gdb.command("dump ihex memory %s 0x%x 0x%x" % (b.name, target.ram,
178 target.ram + length))
179 for line in b:
180 record_type, address, line_data = ihex_parse(line)
181 if (record_type == 0):
182 self.assertEqual(readable_binary_string(line_data),
183 readable_binary_string(data[address:address+len(line_data)]))
184
185 class InstantHaltTest(DeleteServer):
186 def setUp(self):
187 self.server = target.server()
188 self.gdb = gdb(target, self.server.port)
189
190 def test_instant_halt(self):
191 self.assertEqual(target.reset_vector, self.gdb.p("$pc"))
192 # mcycle and minstret have no defined reset value.
193 mstatus = self.gdb.p("$mstatus")
194 self.assertEqual(mstatus & (MSTATUS_MIE | MSTATUS_MPRV |
195 MSTATUS_VM), 0)
196
197 def test_change_pc(self):
198 """Change the PC right as we come out of reset."""
199 # 0x13 is nop
200 self.gdb.command("p *((int*) 0x%x)=0x13" % target.ram)
201 self.gdb.command("p *((int*) 0x%x)=0x13" % (target.ram + 4))
202 self.gdb.command("p *((int*) 0x%x)=0x13" % (target.ram + 8))
203 self.gdb.p("$pc=0x%x" % target.ram)
204 self.gdb.stepi()
205 self.assertEqual((target.ram + 4), self.gdb.p("$pc"))
206 self.gdb.stepi()
207 self.assertEqual((target.ram + 8), self.gdb.p("$pc"))
208
209 class DebugTest(DeleteServer):
210 def setUp(self):
211 # Include malloc so that gdb can make function calls. I suspect this
212 # malloc will silently blow through the memory set aside for it, so be
213 # careful.
214 self.binary = target.compile("programs/debug.c", "programs/checksum.c",
215 "programs/tiny-malloc.c", "-DDEFINE_MALLOC", "-DDEFINE_FREE")
216 self.server = target.server()
217 self.gdb = gdb(target, self.server.port, self.binary)
218 self.gdb.load()
219 self.gdb.b("_exit")
220
221 def exit(self, expected_result = 0xc86455d4):
222 output = self.gdb.c()
223 self.assertIn("Breakpoint", output)
224 self.assertIn("_exit", output)
225 self.assertEqual(self.gdb.p("status"), expected_result)
226
227 def test_function_call(self):
228 self.gdb.b("main:start")
229 self.gdb.c()
230 self.assertEqual(self.gdb.p('fib(6)'), 8)
231 self.assertEqual(self.gdb.p('fib(7)'), 13)
232 self.exit()
233
234 def test_change_string(self):
235 text = "This little piggy went to the market."
236 self.gdb.b("main:start")
237 self.gdb.c()
238 self.gdb.p('fox = "%s"' % text)
239 self.exit(0x43b497b8)
240
241 def test_turbostep(self):
242 """Single step a bunch of times."""
243 self.gdb.b("main:start")
244 self.gdb.c()
245 self.gdb.command("p i=0");
246 last_pc = None
247 advances = 0
248 jumps = 0
249 for _ in range(100):
250 self.gdb.stepi()
251 pc = self.gdb.p("$pc")
252 self.assertNotEqual(last_pc, pc)
253 if (last_pc and pc > last_pc and pc - last_pc <= 4):
254 advances += 1
255 else:
256 jumps += 1
257 last_pc = pc
258 # Some basic sanity that we're not running between breakpoints or
259 # something.
260 self.assertGreater(jumps, 10)
261 self.assertGreater(advances, 50)
262
263 def test_exit(self):
264 self.exit()
265
266 def test_symbols(self):
267 self.gdb.b("main")
268 self.gdb.b("rot13")
269 output = self.gdb.c()
270 self.assertIn(", main ", output)
271 output = self.gdb.c()
272 self.assertIn(", rot13 ", output)
273
274 def test_breakpoint(self):
275 self.gdb.b("rot13")
276 # The breakpoint should be hit exactly 2 times.
277 for i in range(2):
278 output = self.gdb.c()
279 self.gdb.p("$pc")
280 self.assertIn("Breakpoint ", output)
281 #TODO self.assertIn("rot13 ", output)
282 self.exit()
283
284 def test_hwbp_1(self):
285 if target.instruction_hardware_breakpoint_count < 1:
286 return
287
288 self.gdb.hbreak("rot13")
289 # The breakpoint should be hit exactly 2 times.
290 for i in range(2):
291 output = self.gdb.c()
292 self.gdb.p("$pc")
293 self.assertIn("Breakpoint ", output)
294 #TODO self.assertIn("rot13 ", output)
295 self.exit()
296
297 def test_hwbp_2(self):
298 if target.instruction_hardware_breakpoint_count < 2:
299 return
300
301 self.gdb.hbreak("main")
302 self.gdb.hbreak("rot13")
303 # We should hit 3 breakpoints.
304 for i in range(3):
305 output = self.gdb.c()
306 self.gdb.p("$pc")
307 self.assertIn("Breakpoint ", output)
308 #TODO self.assertIn("rot13 ", output)
309 self.exit()
310
311 def test_too_many_hwbp(self):
312 for i in range(30):
313 self.gdb.hbreak("*rot13 + %d" % (i * 4))
314
315 output = self.gdb.c()
316 self.assertIn("Cannot insert hardware breakpoint", output)
317 # Clean up, otherwise the hardware breakpoints stay set and future
318 # tests may fail.
319 self.gdb.command("D")
320
321 def test_registers(self):
322 # Get to a point in the code where some registers have actually been
323 # used.
324 self.gdb.b("rot13")
325 self.gdb.c()
326 self.gdb.c()
327 # Try both forms to test gdb.
328 for cmd in ("info all-registers", "info registers all"):
329 output = self.gdb.command(cmd)
330 self.assertNotIn("Could not", output)
331 for reg in ('zero', 'ra', 'sp', 'gp', 'tp'):
332 self.assertIn(reg, output)
333
334 #TODO
335 # mcpuid is one of the few registers that should have the high bit set
336 # (for rv64).
337 # Leave this commented out until gdb and spike agree on the encoding of
338 # mcpuid (which is going to be renamed to misa in any case).
339 #self.assertRegexpMatches(output, ".*mcpuid *0x80")
340
341 #TODO:
342 # The instret register should always be changing.
343 #last_instret = None
344 #for _ in range(5):
345 # instret = self.gdb.p("$instret")
346 # self.assertNotEqual(instret, last_instret)
347 # last_instret = instret
348 # self.gdb.stepi()
349
350 self.exit()
351
352 def test_interrupt(self):
353 """Sending gdb ^C while the program is running should cause it to halt."""
354 self.gdb.b("main:start")
355 self.gdb.c()
356 self.gdb.p("i=123");
357 self.gdb.c(wait=False)
358 time.sleep(0.1)
359 output = self.gdb.interrupt()
360 #TODO: assert "main" in output
361 self.assertGreater(self.gdb.p("j"), 10)
362 self.gdb.p("i=0");
363 self.exit()
364
365 class StepTest(DeleteServer):
366 def setUp(self):
367 self.binary = target.compile("programs/step.S")
368 self.server = target.server()
369 self.gdb = gdb(target, self.server.port, self.binary)
370 self.gdb.load()
371 self.gdb.b("main")
372 self.gdb.c()
373
374 def test_step(self):
375 main = self.gdb.p("$pc")
376 for expected in (4, 8, 0xc, 0x10, 0x18, 0x1c, 0x28, 0x20, 0x2c, 0x2c):
377 self.gdb.stepi()
378 pc = self.gdb.p("$pc")
379 self.assertEqual("%x" % pc, "%x" % (expected + main))
380
381 class TriggerTest(DeleteServer):
382 def setUp(self):
383 self.binary = target.compile("programs/trigger.S")
384 self.server = target.server()
385 self.gdb = gdb(target, self.server.port, self.binary)
386 self.gdb.load()
387 self.gdb.b("_exit")
388 self.gdb.b("main")
389 self.gdb.c()
390
391 def exit(self):
392 output = self.gdb.c()
393 self.assertIn("Breakpoint", output)
394 self.assertIn("_exit", output)
395
396 def test_execute_immediate(self):
397 """Test an execute breakpoint on the first instruction executed out of
398 debug mode."""
399 main = self.gdb.p("$pc")
400 self.gdb.command("hbreak *0x%x" % (main + 4))
401 self.gdb.c()
402 self.assertEqual(self.gdb.p("$pc"), main+4)
403
404 def test_load_address(self):
405 self.gdb.command("rwatch *((&data)+1)");
406 output = self.gdb.c()
407 self.assertIn("read_loop", output)
408 self.assertEqual(self.gdb.p("$a0"),
409 self.gdb.p("(&data)+1"))
410 self.exit()
411
412 def test_load_address_immediate(self):
413 """Test a load address breakpoint on the first instruction executed out
414 of debug mode."""
415 write_loop = self.gdb.p("&write_loop")
416 self.gdb.command("rwatch data");
417 self.gdb.c()
418 self.assertEqual(self.gdb.p("$pc"), write_loop)
419 self.assertEqual(self.gdb.p("$a0"), self.gdb.p("(&data)+1"))
420
421 def test_store_address(self):
422 self.gdb.command("watch *((&data)+3)");
423 output = self.gdb.c()
424 self.assertIn("write_loop", output)
425 self.assertEqual(self.gdb.p("$a0"),
426 self.gdb.p("(&data)+3"))
427 self.exit()
428
429 def test_dmode(self):
430 self.gdb.command("hbreak handle_trap")
431 self.gdb.p("$pc=write_valid")
432 output = self.gdb.c()
433 self.assertIn("handle_trap", output)
434 self.assertIn("mcause=2", output)
435 self.assertIn("mepc=%d" % self.gdb.p("&write_invalid_illegal"), output)
436
437 class RegsTest(DeleteServer):
438 def setUp(self):
439 self.binary = target.compile("programs/regs.S")
440 self.server = target.server()
441 self.gdb = gdb(target, self.server.port, self.binary)
442 self.gdb.load()
443 self.gdb.b("main")
444 self.gdb.b("handle_trap")
445 self.gdb.c()
446
447 def test_write_gprs(self):
448 regs = [("x%d" % n) for n in range(2, 32)]
449
450 self.gdb.p("$pc=write_regs")
451 for i, r in enumerate(regs):
452 self.gdb.p("$%s=%d" % (r, (0xdeadbeef<<i)+17))
453 self.gdb.p("$x1=data")
454 self.gdb.command("b all_done")
455 output = self.gdb.c()
456 self.assertIn("Breakpoint ", output)
457
458 # Just to get this data in the log.
459 self.gdb.command("x/30gx data")
460 self.gdb.command("info registers")
461 for n in range(len(regs)):
462 self.assertEqual(self.gdb.x("data+%d" % (8*n), 'g'),
463 ((0xdeadbeef<<n)+17) & ((1<<target.xlen)-1))
464
465 def test_write_csrs(self):
466 # As much a test of gdb as of the simulator.
467 self.gdb.p("$mscratch=0")
468 self.gdb.stepi()
469 self.assertEqual(self.gdb.p("$mscratch"), 0)
470 self.gdb.p("$mscratch=123")
471 self.gdb.stepi()
472 self.assertEqual(self.gdb.p("$mscratch"), 123)
473
474 self.gdb.command("p $pc=write_regs")
475 self.gdb.command("p $a0=data")
476 self.gdb.command("b all_done")
477 self.gdb.command("c")
478
479 self.assertEqual(123, self.gdb.p("$mscratch"))
480 self.assertEqual(123, self.gdb.p("$x1"))
481 self.assertEqual(123, self.gdb.p("$csr832"))
482
483 class DownloadTest(DeleteServer):
484 def setUp(self):
485 length = min(2**20, target.ram_size - 2048)
486 download_c = tempfile.NamedTemporaryFile(prefix="download_", suffix=".c")
487 download_c.write("#include <stdint.h>\n")
488 download_c.write("unsigned int crc32a(uint8_t *message, unsigned int size);\n")
489 download_c.write("uint32_t length = %d;\n" % length)
490 download_c.write("uint8_t d[%d] = {\n" % length)
491 self.crc = 0
492 for i in range(length / 16):
493 download_c.write(" /* 0x%04x */ " % (i * 16));
494 for _ in range(16):
495 value = random.randrange(1<<8)
496 download_c.write("%d, " % value)
497 self.crc = binascii.crc32("%c" % value, self.crc)
498 download_c.write("\n");
499 download_c.write("};\n");
500 download_c.write("uint8_t *data = &d[0];\n");
501 download_c.write("uint32_t main() { return crc32a(data, length); }\n")
502 download_c.flush()
503
504 if self.crc < 0:
505 self.crc += 2**32
506
507 self.binary = target.compile(download_c.name, "programs/checksum.c")
508 self.server = target.server()
509 self.gdb = gdb(target, self.server.port, self.binary)
510
511 def test_download(self):
512 output = self.gdb.load()
513 self.gdb.command("b _exit")
514 self.gdb.c()
515 self.assertEqual(self.gdb.p("status"), self.crc)
516
517 class MprvTest(DeleteServer):
518 def setUp(self):
519 self.binary = target.compile("programs/mprv.S")
520 self.server = target.server()
521 self.gdb = gdb(target, self.server.port, self.binary)
522 self.gdb.load()
523
524 def test_mprv(self):
525 """Test that the debugger can access memory when MPRV is set."""
526 self.gdb.c(wait=False)
527 time.sleep(0.5)
528 self.gdb.interrupt()
529 output = self.gdb.command("p/x *(int*)(((char*)&data)-0x80000000)")
530 self.assertIn("0xbead", output)
531
532 class PrivTest(DeleteServer):
533 def setUp(self):
534 self.binary = target.compile("programs/priv.S")
535 self.server = target.server()
536 self.gdb = gdb(target, self.server.port, self.binary)
537 self.gdb.load()
538
539 misa = self.gdb.p("$misa")
540 self.supported = set()
541 if misa & (1<<20):
542 self.supported.add(0)
543 if misa & (1<<18):
544 self.supported.add(1)
545 if misa & (1<<7):
546 self.supported.add(2)
547 self.supported.add(3)
548
549 def test_rw(self):
550 """Test reading/writing priv."""
551 for privilege in range(4):
552 self.gdb.p("$priv=%d" % privilege)
553 self.gdb.stepi()
554 actual = self.gdb.p("$priv")
555 self.assertIn(actual, self.supported)
556 if privilege in self.supported:
557 self.assertEqual(actual, privilege)
558
559 def test_change(self):
560 """Test that the core's privilege level actually changes."""
561
562 if 0 not in self.supported:
563 # TODO: return not applicable
564 return
565
566 self.gdb.b("main")
567 self.gdb.c()
568
569 # Machine mode
570 self.gdb.p("$priv=3")
571 main = self.gdb.p("$pc")
572 self.gdb.stepi()
573 self.assertEqual("%x" % self.gdb.p("$pc"), "%x" % (main+4))
574
575 # User mode
576 self.gdb.p("$priv=0")
577 self.gdb.stepi()
578 # Should have taken an exception, so be nowhere near main.
579 pc = self.gdb.p("$pc")
580 self.assertTrue(pc < main or pc > main + 0x100)
581
582 class Target(object):
583 directory = None
584 timeout_sec = 2
585
586 def server(self):
587 raise NotImplementedError
588
589 def compile(self, *sources):
590 binary_name = "%s_%s-%d" % (
591 self.name,
592 os.path.basename(os.path.splitext(sources[0])[0]),
593 self.xlen)
594 if parsed.isolate:
595 self.temporary_binary = tempfile.NamedTemporaryFile(
596 prefix=binary_name + "_")
597 binary_name = self.temporary_binary.name
598 testlib.compile(sources +
599 ("programs/entry.S", "programs/init.c",
600 "-I", "../env",
601 "-T", "targets/%s/link.lds" % (self.directory or self.name),
602 "-nostartfiles",
603 "-mcmodel=medany",
604 "-o", binary_name),
605 xlen=self.xlen)
606 return binary_name
607
608 class SpikeTarget(Target):
609 directory = "spike"
610 ram = 0x80010000
611 ram_size = 5 * 1024 * 1024
612 instruction_hardware_breakpoint_count = 4
613 reset_vector = 0x1000
614
615 class Spike64Target(SpikeTarget):
616 name = "spike64"
617 xlen = 64
618
619 def server(self):
620 return testlib.Spike(parsed.cmd, halted=True)
621
622 class Spike32Target(SpikeTarget):
623 name = "spike32"
624 xlen = 32
625
626 def server(self):
627 return testlib.Spike(parsed.cmd, halted=True, xlen=32)
628
629 class FreedomE300Target(Target):
630 name = "freedom-e300"
631 xlen = 32
632 ram = 0x80000000
633 ram_size = 16 * 1024
634 instruction_hardware_breakpoint_count = 2
635
636 def server(self):
637 return testlib.Openocd(cmd=parsed.cmd,
638 config="targets/%s/openocd.cfg" % self.name)
639
640 class FreedomE300SimTarget(Target):
641 name = "freedom-e300-sim"
642 xlen = 32
643 timeout_sec = 240
644 ram = 0x80000000
645 ram_size = 256 * 1024 * 1024
646 instruction_hardware_breakpoint_count = 2
647
648 def server(self):
649 sim = testlib.VcsSim(simv=parsed.run, debug=False)
650 openocd = testlib.Openocd(cmd=parsed.cmd,
651 config="targets/%s/openocd.cfg" % self.name,
652 otherProcess = sim)
653 time.sleep(20)
654 return openocd
655
656 class FreedomU500Target(Target):
657 name = "freedom-u500"
658 xlen = 64
659 ram = 0x80000000
660 ram_size = 16 * 1024
661 instruction_hardware_breakpoint_count = 2
662
663 def server(self):
664 return testlib.Openocd(cmd=parsed.cmd,
665 config="targets/%s/openocd.cfg" % self.name)
666
667 class FreedomU500SimTarget(Target):
668 name = "freedom-u500-sim"
669 xlen = 64
670 timeout_sec = 240
671 ram = 0x80000000
672 ram_size = 256 * 1024 * 1024
673 instruction_hardware_breakpoint_count = 2
674
675 def server(self):
676 sim = testlib.VcsSim(simv=parsed.run, debug=False)
677 openocd = testlib.Openocd(cmd=parsed.cmd,
678 config="targets/%s/openocd.cfg" % self.name,
679 otherProcess = sim)
680 time.sleep(20)
681 return openocd
682
683 targets = [
684 Spike32Target,
685 Spike64Target,
686 FreedomE300Target,
687 FreedomU500Target,
688 FreedomE300SimTarget,
689 FreedomU500SimTarget]
690
691 def main():
692 parser = argparse.ArgumentParser(
693 epilog="""
694 Example command line from the real world:
695 Run all RegsTest cases against a physical FPGA, with custom openocd command:
696 ./gdbserver.py --freedom-e-300 --cmd "$HOME/SiFive/openocd/src/openocd -s $HOME/SiFive/openocd/tcl -d" -- -vf RegsTest
697 """)
698 group = parser.add_mutually_exclusive_group(required=True)
699 for t in targets:
700 group.add_argument("--%s" % t.name, action="store_const", const=t,
701 dest="target")
702 parser.add_argument("--run",
703 help="The command to use to start the actual target (e.g. simulation)")
704 parser.add_argument("--cmd",
705 help="The command to use to start the debug server.")
706 parser.add_argument("--gdb",
707 help="The command to use to start gdb.")
708
709 xlen_group = parser.add_mutually_exclusive_group()
710 xlen_group.add_argument("--32", action="store_const", const=32, dest="xlen",
711 help="Force the target to be 32-bit.")
712 xlen_group.add_argument("--64", action="store_const", const=64, dest="xlen",
713 help="Force the target to be 64-bit.")
714
715 parser.add_argument("--isolate", action="store_true",
716 help="Try to run in such a way that multiple instances can run at "
717 "the same time. This may make it harder to debug a failure if it "
718 "does occur.")
719
720 parser.add_argument("unittest", nargs="*")
721 global parsed
722 parsed = parser.parse_args()
723
724 global target
725 target = parsed.target()
726
727 if parsed.xlen:
728 target.xlen = parsed.xlen
729
730 unittest.main(argv=[sys.argv[0]] + parsed.unittest)
731
732 # TROUBLESHOOTING TIPS
733 # If a particular test fails, run just that one test, eg.:
734 # ./gdbserver.py MprvTest.test_mprv
735 # Then inspect gdb.log and spike.log to see what happened in more detail.
736
737 if __name__ == '__main__':
738 sys.exit(main())