Add test_too_many_hwbp.
[riscv-tests.git] / debug / gdbserver.py
1 #!/usr/bin/python
2
3 import os
4 import sys
5 import argparse
6 import testlib
7 import unittest
8 import tempfile
9 import time
10 import random
11 import binascii
12
13 def ihex_line(address, record_type, data):
14 assert len(data) < 128
15 line = ":%02X%04X%02X" % (len(data), address, record_type)
16 check = len(data)
17 check += address % 256
18 check += address >> 8
19 check += record_type
20 for char in data:
21 value = ord(char)
22 check += value
23 line += "%02X" % value
24 line += "%02X\n" % ((256-check)%256)
25 return line
26
27 def ihex_parse(line):
28 assert line.startswith(":")
29 line = line[1:]
30 data_len = int(line[:2], 16)
31 address = int(line[2:6], 16)
32 record_type = int(line[6:8], 16)
33 data = ""
34 for i in range(data_len):
35 data += "%c" % int(line[8+2*i:10+2*i], 16)
36 return record_type, address, data
37
38 class DeleteServer(unittest.TestCase):
39 def tearDown(self):
40 del self.server
41
42 class SimpleRegisterTest(DeleteServer):
43 def setUp(self):
44 self.server = target.server()
45 self.gdb = testlib.Gdb()
46 self.gdb.command("target extended-remote localhost:%d" % self.server.port)
47
48 # 0x13 is nop
49 self.gdb.command("p *((int*) 0x%x)=0x13" % target.ram)
50 self.gdb.command("p *((int*) 0x%x)=0x13" % (target.ram + 4))
51 self.gdb.command("p *((int*) 0x%x)=0x13" % (target.ram + 8))
52 self.gdb.p("$pc=0x%x" % target.ram)
53
54 def check_reg(self, name):
55 a = random.randrange(1<<target.xlen)
56 b = random.randrange(1<<target.xlen)
57 self.gdb.p("$%s=0x%x" % (name, a))
58 self.gdb.stepi()
59 self.assertEqual(self.gdb.p("$%s" % name), a)
60 self.gdb.p("$%s=0x%x" % (name, b))
61 self.gdb.stepi()
62 self.assertEqual(self.gdb.p("$%s" % name), b)
63
64 def test_s0(self):
65 # S0 is saved/restored in DSCRATCH
66 self.check_reg("s0")
67
68 def test_s1(self):
69 # S1 is saved/restored in Debug RAM
70 self.check_reg("s1")
71
72 def test_t0(self):
73 # T0 is not saved/restored at all
74 self.check_reg("t2")
75
76 def test_t2(self):
77 # T2 is not saved/restored at all
78 self.check_reg("t2")
79
80 class SimpleMemoryTest(DeleteServer):
81 def setUp(self):
82 self.server = target.server()
83 self.gdb = testlib.Gdb()
84 self.gdb.command("target extended-remote localhost:%d" % self.server.port)
85
86 def access_test(self, size, data_type):
87 a = 0x86753095555aaaa & ((1<<(size*8))-1)
88 b = 0xdeadbeef12345678 & ((1<<(size*8))-1)
89 self.gdb.p("*((%s*)0x%x) = 0x%x" % (data_type, target.ram, a))
90 self.gdb.p("*((%s*)0x%x) = 0x%x" % (data_type, target.ram + size, b))
91 self.assertEqual(self.gdb.p("*((%s*)0x%x)" % (data_type, target.ram)), a)
92 self.assertEqual(self.gdb.p("*((%s*)0x%x)" % (data_type, target.ram + size)), b)
93
94 def test_8(self):
95 self.access_test(1, 'char')
96
97 def test_16(self):
98 self.access_test(2, 'short')
99
100 def test_32(self):
101 self.access_test(4, 'long')
102
103 def test_64(self):
104 self.access_test(8, 'long long')
105
106 def test_block(self):
107 length = 1024
108 line_length = 16
109 fd = file("write.ihex", "w")
110 data = ""
111 for i in range(length / line_length):
112 line_data = "".join(["%c" % random.randrange(256) for _ in range(line_length)])
113 data += line_data
114 fd.write(ihex_line(i * line_length, 0, line_data))
115 fd.close()
116
117 self.gdb.command("restore write.ihex 0x%x" % target.ram)
118 for offset in range(0, length, 19*4) + [length-4]:
119 value = self.gdb.p("*((long*)0x%x)" % (target.ram + offset))
120 written = ord(data[offset]) | \
121 (ord(data[offset+1]) << 8) | \
122 (ord(data[offset+2]) << 16) | \
123 (ord(data[offset+3]) << 24)
124 self.assertEqual(value, written)
125
126 self.gdb.command("dump ihex memory read.ihex 0x%x 0x%x" % (target.ram,
127 target.ram + length))
128 for line in file("read.ihex"):
129 record_type, address, line_data = ihex_parse(line)
130 if (record_type == 0):
131 self.assertEqual(line_data, data[address:address+len(line_data)])
132
133 class InstantHaltTest(DeleteServer):
134 def setUp(self):
135 self.server = target.server()
136 self.gdb = testlib.Gdb()
137 self.gdb.command("target extended-remote localhost:%d" % self.server.port)
138
139 def test_instant_halt(self):
140 self.assertEqual(0x1000, self.gdb.p("$pc"))
141 # For some reason instret resets to 0.
142 self.assertLess(self.gdb.p("$instret"), 8)
143 self.gdb.stepi()
144 self.assertNotEqual(0x1000, self.gdb.p("$pc"))
145
146 def test_change_pc(self):
147 """Change the PC right as we come out of reset."""
148 # 0x13 is nop
149 self.gdb.command("p *((int*) 0x%x)=0x13" % target.ram)
150 self.gdb.command("p *((int*) 0x%x)=0x13" % (target.ram + 4))
151 self.gdb.command("p *((int*) 0x%x)=0x13" % (target.ram + 8))
152 self.gdb.p("$pc=0x%x" % target.ram)
153 self.gdb.stepi()
154 self.assertEqual((target.ram + 4), self.gdb.p("$pc"))
155 self.gdb.stepi()
156 self.assertEqual((target.ram + 8), self.gdb.p("$pc"))
157
158 class DebugTest(DeleteServer):
159 def setUp(self):
160 self.binary = target.compile("programs/debug.c", "programs/checksum.c")
161 self.server = target.server()
162 self.gdb = testlib.Gdb()
163 self.gdb.command("file %s" % self.binary)
164 self.gdb.command("target extended-remote localhost:%d" % self.server.port)
165 self.gdb.load()
166 self.gdb.b("_exit")
167
168 def exit(self):
169 output = self.gdb.c()
170 self.assertIn("Breakpoint", output)
171 #TODO self.assertIn("_exit", output)
172 #TODO self.assertEqual(self.gdb.p("status"), 0xc86455d4)
173 # Use a0 until gdb can resolve "status"
174 self.assertEqual(self.gdb.p("$a0") & 0xffffffff, 0xc86455d4)
175
176 def test_turbostep(self):
177 """Single step a bunch of times."""
178 self.gdb.command("p i=0");
179 last_pc = None
180 for _ in range(100):
181 self.gdb.stepi()
182 pc = self.gdb.command("p $pc")
183 self.assertNotEqual(last_pc, pc)
184 last_pc = pc
185
186 def test_exit(self):
187 self.exit()
188
189 def test_breakpoint(self):
190 self.gdb.b("rot13")
191 # The breakpoint should be hit exactly 2 times.
192 for i in range(2):
193 output = self.gdb.c()
194 self.gdb.p("$pc")
195 self.assertIn("Breakpoint ", output)
196 #TODO self.assertIn("rot13 ", output)
197 self.exit()
198
199 def test_hwbp(self):
200 self.gdb.hbreak("rot13")
201 # The breakpoint should be hit exactly 2 times.
202 for i in range(2):
203 output = self.gdb.c()
204 self.gdb.p("$pc")
205 self.assertIn("Breakpoint ", output)
206 #TODO self.assertIn("rot13 ", output)
207 self.exit()
208
209 def test_too_many_hwbp(self):
210 for i in range(30):
211 self.gdb.hbreak("*rot13 + %d" % (i * 4))
212
213 output = self.gdb.c()
214 self.assertIn("Cannot insert hardware breakpoint", output)
215
216 def test_registers(self):
217 # Get to a point in the code where some registers have actually been
218 # used.
219 self.gdb.b("rot13")
220 self.gdb.c()
221 self.gdb.c()
222 # Try both forms to test gdb.
223 for cmd in ("info all-registers", "info registers all"):
224 output = self.gdb.command(cmd)
225 self.assertNotIn("Could not", output)
226 for reg in ('zero', 'ra', 'sp', 'gp', 'tp'):
227 self.assertIn(reg, output)
228
229 #TODO
230 # mcpuid is one of the few registers that should have the high bit set
231 # (for rv64).
232 # Leave this commented out until gdb and spike agree on the encoding of
233 # mcpuid (which is going to be renamed to misa in any case).
234 #self.assertRegexpMatches(output, ".*mcpuid *0x80")
235
236 #TODO:
237 # The instret register should always be changing.
238 #last_instret = None
239 #for _ in range(5):
240 # instret = self.gdb.p("$instret")
241 # self.assertNotEqual(instret, last_instret)
242 # last_instret = instret
243 # self.gdb.stepi()
244
245 self.exit()
246
247 def test_interrupt(self):
248 """Sending gdb ^C while the program is running should cause it to halt."""
249 self.gdb.b("main:start")
250 self.gdb.c()
251 self.gdb.p("i=123");
252 self.gdb.c(wait=False)
253 time.sleep(0.1)
254 output = self.gdb.interrupt()
255 #TODO: assert "main" in output
256 self.assertGreater(self.gdb.p("j"), 10)
257 self.gdb.p("i=0");
258 self.exit()
259
260 class RegsTest(DeleteServer):
261 def setUp(self):
262 self.binary = target.compile("programs/regs.S")
263 self.server = target.server()
264 self.gdb = testlib.Gdb()
265 self.gdb.command("file %s" % self.binary)
266 self.gdb.command("target extended-remote localhost:%d" % self.server.port)
267 self.gdb.load()
268 self.gdb.b("main")
269 self.gdb.b("handle_trap")
270 self.gdb.c()
271
272 def test_write_gprs(self):
273 regs = [("x%d" % n) for n in range(2, 32)]
274
275 self.gdb.p("$pc=write_regs")
276 for i, r in enumerate(regs):
277 self.gdb.command("p $%s=%d" % (r, (0xdeadbeef<<i)+17))
278 self.gdb.command("p $x1=data")
279 self.gdb.command("b all_done")
280 output = self.gdb.c()
281 self.assertIn("Breakpoint ", output)
282
283 # Just to get this data in the log.
284 self.gdb.command("x/30gx data")
285 self.gdb.command("info registers")
286 for n in range(len(regs)):
287 self.assertEqual(self.gdb.x("data+%d" % (8*n), 'g'),
288 ((0xdeadbeef<<n)+17) & ((1<<target.xlen)-1))
289
290 def test_write_csrs(self):
291 # As much a test of gdb as of the simulator.
292 self.gdb.p("$mscratch=0")
293 self.gdb.stepi()
294 self.assertEqual(self.gdb.p("$mscratch"), 0)
295 self.gdb.p("$mscratch=123")
296 self.gdb.stepi()
297 self.assertEqual(self.gdb.p("$mscratch"), 123)
298
299 self.gdb.command("p $pc=write_regs")
300 self.gdb.command("p $a0=data")
301 self.gdb.command("b all_done")
302 self.gdb.command("c")
303
304 self.assertEqual(123, self.gdb.p("$mscratch"))
305 self.assertEqual(123, self.gdb.p("$x1"))
306 self.assertEqual(123, self.gdb.p("$csr832"))
307
308 class DownloadTest(DeleteServer):
309 def setUp(self):
310 length = 2**20
311 fd = file("download.c", "w")
312 fd.write("#include <stdint.h>\n")
313 fd.write("unsigned int crc32a(uint8_t *message, unsigned int size);\n")
314 fd.write("uint32_t length = %d;\n" % length)
315 fd.write("uint8_t d[%d] = {\n" % length)
316 self.crc = 0
317 for i in range(length / 16):
318 fd.write(" /* 0x%04x */ " % (i * 16));
319 for _ in range(16):
320 value = random.randrange(1<<8)
321 fd.write("%d, " % value)
322 self.crc = binascii.crc32("%c" % value, self.crc)
323 fd.write("\n");
324 fd.write("};\n");
325 fd.write("uint8_t *data = &d[0];\n");
326 fd.write("uint32_t main() { return crc32a(data, length); }\n")
327 fd.close()
328
329 if self.crc < 0:
330 self.crc += 2**32
331
332 self.binary = target.compile("download.c", "programs/checksum.c")
333 self.server = target.server()
334 self.gdb = testlib.Gdb()
335 self.gdb.command("file %s" % self.binary)
336 self.gdb.command("target extended-remote localhost:%d" % self.server.port)
337
338 def test_download(self):
339 output = self.gdb.load()
340 self.gdb.command("b _exit")
341 self.gdb.c()
342 self.assertEqual(self.gdb.p("status"), self.crc)
343
344 class MprvTest(DeleteServer):
345 def setUp(self):
346 self.binary = target.compile("programs/mprv.S")
347 self.server = target.server()
348 self.gdb = testlib.Gdb()
349 self.gdb.command("file %s" % self.binary)
350 self.gdb.command("target extended-remote localhost:%d" % self.server.port)
351 self.gdb.load()
352
353 def test_mprv(self):
354 """Test that the debugger can access memory when MPRV is set."""
355 self.gdb.c(wait=False)
356 self.gdb.interrupt()
357 output = self.gdb.command("p/x *(int*)(((char*)&data)-0x80000000)")
358 self.assertIn("0xbead", output)
359
360 class Target(object):
361 directory = None
362
363 def server(self):
364 raise NotImplementedError
365
366 def compile(self, *sources):
367 return testlib.compile(sources +
368 ("programs/entry.S", "programs/init.c",
369 "-I", "../env",
370 "-T", "targets/%s/link.lds" % (self.directory or self.name),
371 "-nostartfiles",
372 "-mcmodel=medany"), xlen=self.xlen)
373
374 class Spike64Target(Target):
375 name = "spike"
376 xlen = 64
377 ram = 0x80010000
378
379 def server(self):
380 return testlib.Spike(parsed.cmd, halted=True)
381
382 class Spike32Target(Target):
383 name = "spike32"
384 directory = "spike"
385 xlen = 32
386 ram = 0x80010000
387
388 def server(self):
389 return testlib.Spike(parsed.cmd, halted=True, xlen=32)
390
391 class MicroSemiTarget(Target):
392 name = "m2gl_m2s"
393 xlen = 32
394 ram = 0x80000000
395
396 def server(self):
397 return testlib.Openocd(cmd=parsed.cmd,
398 config="targets/%s/openocd.cfg" % self.name)
399
400 targets = [
401 Spike32Target,
402 Spike64Target,
403 MicroSemiTarget
404 ]
405
406 def main():
407 parser = argparse.ArgumentParser(
408 epilog="""
409 Example command line from the real world:
410 Run all RegsTest cases against a MicroSemi m2gl_m2s board, with custom openocd command:
411 ./gdbserver.py --m2gl_m2s --cmd "$HOME/SiFive/openocd/src/openocd -s $HOME/SiFive/openocd/tcl -d" -- -vf RegsTest
412 """)
413 group = parser.add_mutually_exclusive_group(required=True)
414 for t in targets:
415 group.add_argument("--%s" % t.name, action="store_const", const=t,
416 dest="target")
417 parser.add_argument("--cmd",
418 help="The command to use to start the debug server.")
419 parser.add_argument("unittest", nargs="*")
420 global parsed
421 parsed = parser.parse_args()
422
423 global target
424 target = parsed.target()
425 unittest.main(argv=[sys.argv[0]] + parsed.unittest)
426
427 # TROUBLESHOOTING TIPS
428 # If a particular test fails, run just that one test, eg.:
429 # ./tests/gdbserver.py MprvTest.test_mprv
430 # Then inspect gdb.log and spike.log to see what happened in more detail.
431
432 if __name__ == '__main__':
433 sys.exit(main())