11 # Note that gdb comes with its own testsuite. I was unable to figure out how to
12 # run that testsuite against the spike simulator.
15 for directory
in (os
.getcwd(), os
.path
.dirname(__file__
)):
16 fullpath
= os
.path
.join(directory
, path
)
17 if os
.path
.exists(fullpath
):
21 def compile(args
, xlen
=32): # pylint: disable=redefined-builtin
22 cc
= os
.path
.expandvars("$RISCV/bin/riscv64-unknown-elf-gcc")
25 cmd
.append("-march=rv32imac")
26 cmd
.append("-mabi=ilp32")
28 cmd
.append("-march=rv64imac")
29 cmd
.append("-mabi=lp64")
31 found
= find_file(arg
)
36 process
= subprocess
.Popen(cmd
, stdout
=subprocess
.PIPE
,
37 stderr
=subprocess
.PIPE
)
38 stdout
, stderr
= process
.communicate()
39 if process
.returncode
:
41 header("Compile failed")
42 print "+", " ".join(cmd
)
46 raise Exception("Compile failed!")
49 # http://stackoverflow.com/questions/2838244/get-open-tcp-port-in-python/2838309#2838309
51 s
= socket
.socket(socket
.AF_INET
, socket
.SOCK_STREAM
)
53 port
= s
.getsockname()[1]
60 def __init__(self
, sim_cmd
, binary
=None, halted
=False, with_jtag_gdb
=True,
61 timeout
=None, xlen
=64):
62 """Launch spike. Return tuple of its process and the port it's running
65 cmd
= shlex
.split(sim_cmd
)
67 spike
= os
.path
.expandvars("$RISCV/bin/spike")
70 cmd
+= ["--isa", "RV32"]
73 cmd
= ["timeout", str(timeout
)] + cmd
78 cmd
+= ['--rbb-port', '0']
79 os
.environ
['REMOTE_BITBANG_HOST'] = 'localhost'
81 cmd
.append('programs/infinite_loop')
84 logfile
= open(self
.logname
, "w")
85 logfile
.write("+ %s\n" % " ".join(cmd
))
87 self
.process
= subprocess
.Popen(cmd
, stdin
=subprocess
.PIPE
,
88 stdout
=logfile
, stderr
=logfile
)
93 m
= re
.search(r
"Listening for remote bitbang connection on "
94 r
"port (\d+).", open(self
.logname
).read())
96 self
.port
= int(m
.group(1))
97 os
.environ
['REMOTE_BITBANG_PORT'] = m
.group(1)
100 assert self
.port
, "Didn't get spike message about bitbang " \
110 def wait(self
, *args
, **kwargs
):
111 return self
.process
.wait(*args
, **kwargs
)
113 class VcsSim(object):
114 def __init__(self
, sim_cmd
=None, debug
=False):
116 cmd
= shlex
.split(simv
)
119 cmd
+= ["+jtag_vpi_enable"]
121 cmd
[0] = cmd
[0] + "-debug"
122 cmd
+= ["+vcdplusfile=output/gdbserver.vpd"]
123 logfile
= open("simv.log", "w")
124 logfile
.write("+ %s\n" % " ".join(cmd
))
126 listenfile
= open("simv.log", "r")
127 listenfile
.seek(0, 2)
128 self
.process
= subprocess
.Popen(cmd
, stdin
=subprocess
.PIPE
,
129 stdout
=logfile
, stderr
=logfile
)
132 line
= listenfile
.readline()
135 match
= re
.match(r
"^Listening on port (\d+)$", line
)
138 self
.port
= int(match
.group(1))
139 os
.environ
['JTAG_VPI_PORT'] = str(self
.port
)
148 class Openocd(object):
149 logname
= "openocd.log"
151 def __init__(self
, server_cmd
=None, config
=None, debug
=False):
153 cmd
= shlex
.split(server_cmd
)
155 openocd
= os
.path
.expandvars("$RISCV/bin/riscv-openocd")
160 # This command needs to come before any config scripts on the command
161 # line, since they are executed in order.
163 # Tell OpenOCD to bind gdb to an unused, ephemeral port.
166 # Disable tcl and telnet servers, since they are unused and because
167 # the port numbers will conflict if multiple OpenOCD processes are
168 # running on the same server.
172 "telnet_port disabled",
176 f
= find_file(config
)
178 print("Unable to read file " + config
)
185 logfile
= open(Openocd
.logname
, "w")
186 logfile
.write("+ %s\n" % " ".join(cmd
))
188 self
.process
= subprocess
.Popen(cmd
, stdin
=subprocess
.PIPE
,
189 stdout
=logfile
, stderr
=logfile
)
191 # Wait for OpenOCD to have made it through riscv_examine(). When using
192 # OpenOCD to communicate with a simulator this may take a long time,
193 # and gdb will time out when trying to connect if we attempt too early.
197 log
= open(Openocd
.logname
).read()
198 if "Ready for Remote Connections" in log
:
200 if not self
.process
.poll() is None:
202 "OpenOCD exited before completing riscv_examine()")
203 if not messaged
and time
.time() - start
> 1:
205 print "Waiting for OpenOCD to examine RISCV core..."
207 self
.port
= self
._get
_gdb
_server
_port
()
209 def _get_gdb_server_port(self
):
210 """Get port that OpenOCD's gdb server is listening on."""
212 PORT_REGEX
= re
.compile(r
'(?P<port>\d+) \(LISTEN\)')
213 for _
in range(MAX_ATTEMPTS
):
214 with
open(os
.devnull
, 'w') as devnull
:
216 output
= subprocess
.check_output([
218 '-a', # Take the AND of the following selectors
219 '-p{}'.format(self
.process
.pid
), # Filter on PID
220 '-iTCP', # Filter only TCP sockets
222 except subprocess
.CalledProcessError
:
224 matches
= list(PORT_REGEX
.finditer(output
))
225 matches
= [m
for m
in matches
226 if m
.group('port') not in ('6666', '4444')]
230 "OpenOCD listening on multiple ports. Cannot uniquely "
231 "identify gdb server port.")
234 return int(match
.group('port'))
236 raise Exception("Timed out waiting for gdb server to obtain port.")
245 class OpenocdCli(object):
246 def __init__(self
, port
=4444):
247 self
.child
= pexpect
.spawn(
248 "sh -c 'telnet localhost %d | tee openocd-cli.log'" % port
)
249 self
.child
.expect("> ")
251 def command(self
, cmd
):
252 self
.child
.sendline(cmd
)
253 self
.child
.expect(cmd
)
254 self
.child
.expect("\n")
255 self
.child
.expect("> ")
256 return self
.child
.before
.strip("\t\r\n \0")
258 def reg(self
, reg
=''):
259 output
= self
.command("reg %s" % reg
)
260 matches
= re
.findall(r
"(\w+) \(/\d+\): (0x[0-9A-F]+)", output
)
261 values
= {r
: int(v
, 0) for r
, v
in matches
}
266 def load_image(self
, image
):
267 output
= self
.command("load_image %s" % image
)
268 if 'invalid ELF file, only 32bits files are supported' in output
:
269 raise TestNotApplicable(output
)
271 class CannotAccess(Exception):
272 def __init__(self
, address
):
273 Exception.__init
__(self
)
274 self
.address
= address
278 cmd
=os
.path
.expandvars("$RISCV/bin/riscv64-unknown-elf-gdb")):
279 self
.child
= pexpect
.spawn(cmd
)
280 self
.child
.logfile
= open("gdb.log", "w")
281 self
.child
.logfile
.write("+ %s\n" % cmd
)
283 self
.command("set confirm off")
284 self
.command("set width 0")
285 self
.command("set height 0")
287 self
.command("set print entry-values no")
290 """Wait for prompt."""
291 self
.child
.expect(r
"\(gdb\)")
293 def command(self
, command
, timeout
=6000):
294 self
.child
.sendline(command
)
295 self
.child
.expect("\n", timeout
=timeout
)
296 self
.child
.expect(r
"\(gdb\)", timeout
=timeout
)
297 return self
.child
.before
.strip()
299 def c(self
, wait
=True, timeout
=-1):
301 output
= self
.command("c", timeout
=timeout
)
302 assert "Continuing" in output
305 self
.child
.sendline("c")
306 self
.child
.expect("Continuing")
309 self
.child
.send("\003")
310 self
.child
.expect(r
"\(gdb\)", timeout
=6000)
311 return self
.child
.before
.strip()
313 def x(self
, address
, size
='w'):
314 output
= self
.command("x/%s %s" % (size
, address
))
315 value
= int(output
.split(':')[1].strip(), 0)
318 def p_raw(self
, obj
):
319 output
= self
.command("p %s" % obj
)
320 m
= re
.search("Cannot access memory at address (0x[0-9a-f]+)", output
)
322 raise CannotAccess(int(m
.group(1), 0))
323 return output
.split('=')[-1].strip()
326 output
= self
.command("p/x %s" % obj
)
327 m
= re
.search("Cannot access memory at address (0x[0-9a-f]+)", output
)
329 raise CannotAccess(int(m
.group(1), 0))
330 value
= int(output
.split('=')[-1].strip(), 0)
333 def p_string(self
, obj
):
334 output
= self
.command("p %s" % obj
)
335 value
= shlex
.split(output
.split('=')[-1].strip())[1]
339 output
= self
.command("stepi")
343 output
= self
.command("load", timeout
=6000)
344 assert "failed" not in output
345 assert "Transfer rate" in output
347 def b(self
, location
):
348 output
= self
.command("b %s" % location
)
349 assert "not defined" not in output
350 assert "Breakpoint" in output
353 def hbreak(self
, location
):
354 output
= self
.command("hbreak %s" % location
)
355 assert "not defined" not in output
356 assert "Hardware assisted breakpoint" in output
359 def run_all_tests(module
, target
, parsed
):
360 good_results
= set(('pass', 'not_applicable'))
367 global gdb_cmd
# pylint: disable=global-statement
370 todo
= [("ExamineTarget", ExamineTarget
)]
371 for name
in dir(module
):
372 definition
= getattr(module
, name
)
373 if type(definition
) == type and hasattr(definition
, 'test') and \
374 (not parsed
.test
or any(test
in name
for test
in parsed
.test
)):
375 todo
.append((name
, definition
))
377 for name
, definition
in todo
:
378 instance
= definition(target
)
379 result
= instance
.run()
380 results
.setdefault(result
, []).append(name
)
382 if result
not in good_results
and parsed
.fail_fast
:
385 header("ran %d tests in %.0fs" % (count
, time
.time() - start
), dash
=':')
388 for key
, value
in results
.iteritems():
389 print "%d tests returned %s" % (len(value
), key
)
390 if key
not in good_results
:
397 def add_test_run_options(parser
):
398 parser
.add_argument("--fail-fast", "-f", action
="store_true",
399 help="Exit as soon as any test fails.")
400 parser
.add_argument("test", nargs
='*',
401 help="Run only tests that are named here.")
402 parser
.add_argument("--gdb",
403 help="The command to use to start gdb.")
405 def header(title
, dash
='-'):
407 dashes
= dash
* (36 - len(title
))
408 before
= dashes
[:len(dashes
)/2]
409 after
= dashes
[len(dashes
)/2:]
410 print "%s[ %s ]%s" % (before
, title
, after
)
416 lines
= open(path
, "r").readlines()
417 if len(lines
) > 1000:
418 for l
in lines
[:500]:
421 for l
in lines
[-500:]:
427 class BaseTest(object):
430 def __init__(self
, target
):
433 self
.target_process
= None
438 def early_applicable(self
):
439 """Return a false value if the test has determined it cannot run
440 without ever needing to talk to the target or server."""
441 # pylint: disable=no-self-use
448 compile_args
= getattr(self
, 'compile_args', None)
450 if compile_args
not in BaseTest
.compiled
:
451 # pylint: disable=star-args
452 BaseTest
.compiled
[compile_args
] = \
453 self
.target
.compile(*compile_args
)
454 self
.binary
= BaseTest
.compiled
.get(compile_args
)
456 def classSetup(self
):
458 self
.target_process
= self
.target
.target()
459 self
.server
= self
.target
.server()
460 self
.logs
.append(self
.server
.logname
)
462 def classTeardown(self
):
464 del self
.target_process
468 If compile_args is set, compile a program and set self.binary.
472 Then call test() and return the result, displaying relevant information
473 if an exception is raised.
476 print "Running", type(self
).__name
__, "...",
479 if not self
.early_applicable():
480 print "not_applicable"
481 return "not_applicable"
483 self
.start
= time
.time()
489 result
= self
.test() # pylint: disable=no-member
490 except TestNotApplicable
:
491 result
= "not_applicable"
492 except Exception as e
: # pylint: disable=broad-except
493 if isinstance(e
, TestFailed
):
497 print "%s in %.2fs" % (result
, time
.time() - self
.start
)
499 if isinstance(e
, TestFailed
):
503 traceback
.print_exc(file=sys
.stdout
)
504 for log
in self
.logs
:
514 print "%s in %.2fs" % (result
, time
.time() - self
.start
)
518 class GdbTest(BaseTest
):
519 def __init__(self
, target
):
520 BaseTest
.__init
__(self
, target
)
523 def classSetup(self
):
524 BaseTest
.classSetup(self
)
525 self
.logs
.append("gdb.log")
528 self
.gdb
= Gdb(gdb_cmd
)
533 self
.gdb
.command("file %s" % self
.binary
)
535 self
.gdb
.command("set arch riscv:rv%d" % self
.target
.xlen
)
536 self
.gdb
.command("set remotetimeout %d" % self
.target
.timeout_sec
)
539 "target extended-remote localhost:%d" % self
.server
.port
)
541 self
.gdb
.p("$priv=3")
543 def classTeardown(self
):
545 BaseTest
.classTeardown(self
)
547 class ExamineTarget(GdbTest
):
549 self
.target
.misa
= self
.gdb
.p("$misa")
552 if (self
.target
.misa
>> 30) == 1:
554 elif (self
.target
.misa
>> 62) == 2:
556 elif (self
.target
.misa
>> 126) == 3:
562 if self
.target
.misa
& (1<<i
):
563 txt
+= chr(i
+ ord('A'))
566 class TestFailed(Exception):
567 def __init__(self
, message
):
568 Exception.__init
__(self
)
569 self
.message
= message
571 class TestNotApplicable(Exception):
572 def __init__(self
, message
):
573 Exception.__init
__(self
)
574 self
.message
= message
576 def assertEqual(a
, b
):
578 raise TestFailed("%r != %r" % (a
, b
))
580 def assertNotEqual(a
, b
):
582 raise TestFailed("%r == %r" % (a
, b
))
586 raise TestFailed("%r not in %r" % (a
, b
))
588 def assertNotIn(a
, b
):
590 raise TestFailed("%r in %r" % (a
, b
))
592 def assertGreater(a
, b
):
594 raise TestFailed("%r not greater than %r" % (a
, b
))
596 def assertLess(a
, b
):
598 raise TestFailed("%r not less than %r" % (a
, b
))
602 raise TestFailed("%r is not True" % a
)
604 def assertRegexpMatches(text
, regexp
):
605 if not re
.search(regexp
, text
):
606 raise TestFailed("can't find %r in %r" % (regexp
, text
))