Add test_hwbp_2.
[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_1(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_hwbp_2(self):
210 self.gdb.hbreak("main")
211 self.gdb.hbreak("rot13")
212 # We should hit 3 breakpoints.
213 for i in range(3):
214 output = self.gdb.c()
215 self.gdb.p("$pc")
216 self.assertIn("Breakpoint ", output)
217 #TODO self.assertIn("rot13 ", output)
218 self.exit()
219
220 def test_too_many_hwbp(self):
221 for i in range(30):
222 self.gdb.hbreak("*rot13 + %d" % (i * 4))
223
224 output = self.gdb.c()
225 self.assertIn("Cannot insert hardware breakpoint", output)
226
227 def test_registers(self):
228 # Get to a point in the code where some registers have actually been
229 # used.
230 self.gdb.b("rot13")
231 self.gdb.c()
232 self.gdb.c()
233 # Try both forms to test gdb.
234 for cmd in ("info all-registers", "info registers all"):
235 output = self.gdb.command(cmd)
236 self.assertNotIn("Could not", output)
237 for reg in ('zero', 'ra', 'sp', 'gp', 'tp'):
238 self.assertIn(reg, output)
239
240 #TODO
241 # mcpuid is one of the few registers that should have the high bit set
242 # (for rv64).
243 # Leave this commented out until gdb and spike agree on the encoding of
244 # mcpuid (which is going to be renamed to misa in any case).
245 #self.assertRegexpMatches(output, ".*mcpuid *0x80")
246
247 #TODO:
248 # The instret register should always be changing.
249 #last_instret = None
250 #for _ in range(5):
251 # instret = self.gdb.p("$instret")
252 # self.assertNotEqual(instret, last_instret)
253 # last_instret = instret
254 # self.gdb.stepi()
255
256 self.exit()
257
258 def test_interrupt(self):
259 """Sending gdb ^C while the program is running should cause it to halt."""
260 self.gdb.b("main:start")
261 self.gdb.c()
262 self.gdb.p("i=123");
263 self.gdb.c(wait=False)
264 time.sleep(0.1)
265 output = self.gdb.interrupt()
266 #TODO: assert "main" in output
267 self.assertGreater(self.gdb.p("j"), 10)
268 self.gdb.p("i=0");
269 self.exit()
270
271 class RegsTest(DeleteServer):
272 def setUp(self):
273 self.binary = target.compile("programs/regs.S")
274 self.server = target.server()
275 self.gdb = testlib.Gdb()
276 self.gdb.command("file %s" % self.binary)
277 self.gdb.command("target extended-remote localhost:%d" % self.server.port)
278 self.gdb.load()
279 self.gdb.b("main")
280 self.gdb.b("handle_trap")
281 self.gdb.c()
282
283 def test_write_gprs(self):
284 regs = [("x%d" % n) for n in range(2, 32)]
285
286 self.gdb.p("$pc=write_regs")
287 for i, r in enumerate(regs):
288 self.gdb.command("p $%s=%d" % (r, (0xdeadbeef<<i)+17))
289 self.gdb.command("p $x1=data")
290 self.gdb.command("b all_done")
291 output = self.gdb.c()
292 self.assertIn("Breakpoint ", output)
293
294 # Just to get this data in the log.
295 self.gdb.command("x/30gx data")
296 self.gdb.command("info registers")
297 for n in range(len(regs)):
298 self.assertEqual(self.gdb.x("data+%d" % (8*n), 'g'),
299 ((0xdeadbeef<<n)+17) & ((1<<target.xlen)-1))
300
301 def test_write_csrs(self):
302 # As much a test of gdb as of the simulator.
303 self.gdb.p("$mscratch=0")
304 self.gdb.stepi()
305 self.assertEqual(self.gdb.p("$mscratch"), 0)
306 self.gdb.p("$mscratch=123")
307 self.gdb.stepi()
308 self.assertEqual(self.gdb.p("$mscratch"), 123)
309
310 self.gdb.command("p $pc=write_regs")
311 self.gdb.command("p $a0=data")
312 self.gdb.command("b all_done")
313 self.gdb.command("c")
314
315 self.assertEqual(123, self.gdb.p("$mscratch"))
316 self.assertEqual(123, self.gdb.p("$x1"))
317 self.assertEqual(123, self.gdb.p("$csr832"))
318
319 class DownloadTest(DeleteServer):
320 def setUp(self):
321 length = 2**20
322 fd = file("download.c", "w")
323 fd.write("#include <stdint.h>\n")
324 fd.write("unsigned int crc32a(uint8_t *message, unsigned int size);\n")
325 fd.write("uint32_t length = %d;\n" % length)
326 fd.write("uint8_t d[%d] = {\n" % length)
327 self.crc = 0
328 for i in range(length / 16):
329 fd.write(" /* 0x%04x */ " % (i * 16));
330 for _ in range(16):
331 value = random.randrange(1<<8)
332 fd.write("%d, " % value)
333 self.crc = binascii.crc32("%c" % value, self.crc)
334 fd.write("\n");
335 fd.write("};\n");
336 fd.write("uint8_t *data = &d[0];\n");
337 fd.write("uint32_t main() { return crc32a(data, length); }\n")
338 fd.close()
339
340 if self.crc < 0:
341 self.crc += 2**32
342
343 self.binary = target.compile("download.c", "programs/checksum.c")
344 self.server = target.server()
345 self.gdb = testlib.Gdb()
346 self.gdb.command("file %s" % self.binary)
347 self.gdb.command("target extended-remote localhost:%d" % self.server.port)
348
349 def test_download(self):
350 output = self.gdb.load()
351 self.gdb.command("b _exit")
352 self.gdb.c()
353 self.assertEqual(self.gdb.p("status"), self.crc)
354
355 class MprvTest(DeleteServer):
356 def setUp(self):
357 self.binary = target.compile("programs/mprv.S")
358 self.server = target.server()
359 self.gdb = testlib.Gdb()
360 self.gdb.command("file %s" % self.binary)
361 self.gdb.command("target extended-remote localhost:%d" % self.server.port)
362 self.gdb.load()
363
364 def test_mprv(self):
365 """Test that the debugger can access memory when MPRV is set."""
366 self.gdb.c(wait=False)
367 self.gdb.interrupt()
368 output = self.gdb.command("p/x *(int*)(((char*)&data)-0x80000000)")
369 self.assertIn("0xbead", output)
370
371 class Target(object):
372 directory = None
373
374 def server(self):
375 raise NotImplementedError
376
377 def compile(self, *sources):
378 return testlib.compile(sources +
379 ("programs/entry.S", "programs/init.c",
380 "-I", "../env",
381 "-T", "targets/%s/link.lds" % (self.directory or self.name),
382 "-nostartfiles",
383 "-mcmodel=medany"), xlen=self.xlen)
384
385 class Spike64Target(Target):
386 name = "spike"
387 xlen = 64
388 ram = 0x80010000
389
390 def server(self):
391 return testlib.Spike(parsed.cmd, halted=True)
392
393 class Spike32Target(Target):
394 name = "spike32"
395 directory = "spike"
396 xlen = 32
397 ram = 0x80010000
398
399 def server(self):
400 return testlib.Spike(parsed.cmd, halted=True, xlen=32)
401
402 class MicroSemiTarget(Target):
403 name = "m2gl_m2s"
404 xlen = 32
405 ram = 0x80000000
406
407 def server(self):
408 return testlib.Openocd(cmd=parsed.cmd,
409 config="targets/%s/openocd.cfg" % self.name)
410
411 targets = [
412 Spike32Target,
413 Spike64Target,
414 MicroSemiTarget
415 ]
416
417 def main():
418 parser = argparse.ArgumentParser(
419 epilog="""
420 Example command line from the real world:
421 Run all RegsTest cases against a MicroSemi m2gl_m2s board, with custom openocd command:
422 ./gdbserver.py --m2gl_m2s --cmd "$HOME/SiFive/openocd/src/openocd -s $HOME/SiFive/openocd/tcl -d" -- -vf RegsTest
423 """)
424 group = parser.add_mutually_exclusive_group(required=True)
425 for t in targets:
426 group.add_argument("--%s" % t.name, action="store_const", const=t,
427 dest="target")
428 parser.add_argument("--cmd",
429 help="The command to use to start the debug server.")
430 parser.add_argument("unittest", nargs="*")
431 global parsed
432 parsed = parser.parse_args()
433
434 global target
435 target = parsed.target()
436 unittest.main(argv=[sys.argv[0]] + parsed.unittest)
437
438 # TROUBLESHOOTING TIPS
439 # If a particular test fails, run just that one test, eg.:
440 # ./tests/gdbserver.py MprvTest.test_mprv
441 # Then inspect gdb.log and spike.log to see what happened in more detail.
442
443 if __name__ == '__main__':
444 sys.exit(main())