File size: 43,510 Bytes
cb65407 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 | # Copyright cocotb contributors
# Licensed under the Revised BSD License, see LICENSE for details.
# SPDX-License-Identifier: BSD-3-Clause
"""Build HDL and run cocotb tests."""
# TODO: maybe do globbing and expanduser/expandvars in --include, --vhdl-sources, --verilog-sources
# TODO: create a short README and a .gitignore (content: "*") in both build_dir and test_dir? (Some other tools do this.)
# TODO: support timescale on all simulators
# TODO: support custom dependencies
import abc
import os
import re
import shlex
import shutil
import subprocess
import sys
import tempfile
import warnings
from contextlib import suppress
from pathlib import Path
from typing import Dict, List, Mapping, Optional, Sequence, TextIO, Tuple, Type, Union
from xml.etree import ElementTree as ET
import find_libpython
import cocotb.config
PathLike = Union["os.PathLike[str]", str]
Command = List[str]
Timescale = Tuple[str, str]
warnings.warn(
"Python runners and associated APIs are an experimental feature and subject to change.",
UserWarning,
stacklevel=2,
)
_magic_re = re.compile(r"([\\{}])")
_space_re = re.compile(r"([\s])", re.ASCII)
def as_tcl_value(value: str) -> str:
# add '\' before special characters and spaces
value = _magic_re.sub(r"\\\1", value)
value = value.replace("\n", r"\n")
value = _space_re.sub(r"\\\1", value)
if value[0] == '"':
value = "\\" + value
return value
def shlex_join(split_command):
"""
Return a shell-escaped string from *split_command*
This is here more for compatibility purposes
"""
return " ".join(shlex.quote(arg) for arg in split_command)
class Simulator(abc.ABC):
supported_gpi_interfaces: Dict[str, List[str]] = {}
def __init__(self) -> None:
self._simulator_in_path()
self.env: Dict[str, str] = {}
# for running test() independently of build()
self.build_dir: Path = get_abs_path("sim_build")
self.parameters: Mapping[str, object] = {}
@abc.abstractmethod
def _simulator_in_path(self) -> None:
"""Raise exception if the simulator executable does not exist in :envvar:`PATH`.
Raises:
SystemExit: Simulator executable does not exist in :envvar:`PATH`.
"""
raise NotImplementedError()
def _check_hdl_toplevel_lang(self, hdl_toplevel_lang: Optional[str]) -> str:
"""Return *hdl_toplevel_lang* if supported by simulator, raise exception otherwise.
Returns:
*hdl_toplevel_lang* if supported by the simulator.
Raises:
ValueError: *hdl_toplevel_lang* is not supported by the simulator.
"""
if hdl_toplevel_lang is None:
if self.vhdl_sources and not self.verilog_sources:
lang = "vhdl"
elif self.verilog_sources and not self.vhdl_sources:
lang = "verilog"
else:
raise ValueError(
f"{type(self).__qualname__}: Must specify a hdl_toplevel_lang in a mixed-language design"
)
else:
lang = hdl_toplevel_lang
if lang in self.supported_gpi_interfaces.keys():
return lang
else:
raise ValueError(
f"{type(self).__qualname__}: hdl_toplevel_lang {hdl_toplevel_lang!r} is not "
f"in supported list: {', '.join(self.supported_gpi_interfaces.keys())}"
)
def _set_env(self) -> None:
"""Set environment variables for sub-processes."""
for e in os.environ:
self.env[e] = os.environ[e]
if "LIBPYTHON_LOC" not in self.env:
self.env["LIBPYTHON_LOC"] = find_libpython.find_libpython()
self.env["PATH"] += os.pathsep + cocotb.config.libs_dir
self.env["PYTHONPATH"] = os.pathsep.join(sys.path)
self.env["PYTHONHOME"] = sys.prefix
self.env["TOPLEVEL"] = self.sim_hdl_toplevel
self.env["MODULE"] = self.test_module
self.env["TOPLEVEL_LANG"] = self.hdl_toplevel_lang
@abc.abstractmethod
def _build_command(self) -> Sequence[Command]:
"""Return command to build the HDL sources."""
raise NotImplementedError()
@abc.abstractmethod
def _test_command(self) -> Sequence[Command]:
"""Return command to run a test."""
raise NotImplementedError()
def build(
self,
hdl_library: str = "top",
verilog_sources: Sequence[PathLike] = [],
vhdl_sources: Sequence[PathLike] = [],
includes: Sequence[PathLike] = [],
defines: Mapping[str, object] = {},
parameters: Mapping[str, object] = {},
build_args: Sequence[str] = [],
hdl_toplevel: Optional[str] = None,
always: bool = False,
build_dir: PathLike = "sim_build",
clean: bool = False,
verbose: bool = False,
timescale: Optional[Timescale] = None,
waves: Optional[bool] = None,
log_file: Optional[PathLike] = None,
) -> None:
"""Build the HDL sources.
Args:
hdl_library: The library name to compile into.
verilog_sources: Verilog source files to build.
vhdl_sources: VHDL source files to build.
includes: Verilog include directories.
defines: Defines to set.
parameters: Verilog parameters or VHDL generics.
build_args: Extra build arguments for the simulator.
hdl_toplevel: The name of the HDL toplevel module.
always: Always run the build step.
build_dir: Directory to run the build step in.
clean: Delete build_dir before building
verbose: Enable verbose messages.
timescale: Tuple containing time unit and time precision for simulation.
waves: Record signal traces.
log_file: File to write the build log to.
"""
self.clean: bool = clean
self.build_dir = get_abs_path(build_dir)
if self.clean:
self.rm_build_folder(self.build_dir)
os.makedirs(self.build_dir, exist_ok=True)
# note: to avoid mutating argument defaults, we ensure that no value
# is written without a copy. This is much more concise and leads to
# a better docstring than using `None` as a default in the parameters
# list.
self.hdl_library: str = hdl_library
self.verilog_sources: List[Path] = get_abs_paths(verilog_sources)
self.vhdl_sources: List[Path] = get_abs_paths(vhdl_sources)
self.includes: List[Path] = get_abs_paths(includes)
self.defines = dict(defines)
self.parameters = dict(parameters)
self.build_args = list(build_args)
self.always: bool = always
self.hdl_toplevel: Optional[str] = hdl_toplevel
self.verbose: bool = verbose
self.timescale: Optional[Timescale] = timescale
self.log_file: Optional[PathLike] = log_file
self.waves = bool(waves)
for e in os.environ:
self.env[e] = os.environ[e]
cmds: Sequence[Command] = self._build_command()
self._execute(cmds, cwd=self.build_dir)
def test(
self,
test_module: Union[str, Sequence[str]],
hdl_toplevel: str,
hdl_toplevel_library: str = "top",
hdl_toplevel_lang: Optional[str] = None,
gpi_interfaces: Optional[List[str]] = None,
testcase: Optional[Union[str, Sequence[str]]] = None,
seed: Optional[Union[str, int]] = None,
test_args: Sequence[str] = [],
plusargs: Sequence[str] = [],
extra_env: Mapping[str, str] = {},
waves: Optional[bool] = None,
gui: Optional[bool] = None,
parameters: Mapping[str, object] = None,
build_dir: Optional[PathLike] = None,
test_dir: Optional[PathLike] = None,
results_xml: Optional[str] = None,
verbose: bool = False,
timescale: Optional[Timescale] = None,
log_file: Optional[PathLike] = None,
) -> Path:
"""Run the tests.
Args:
test_module: Name(s) of the Python module(s) containing the tests to run.
Can be a comma-separated list.
hdl_toplevel: Name of the HDL toplevel module.
hdl_toplevel_library: The library name for HDL toplevel module.
hdl_toplevel_lang: Language of the HDL toplevel module.
gpi_interfaces: List of GPI interfaces to use, with the first one being the entry point.
testcase: Name(s) of a specific testcase(s) to run.
If not set, run all testcases found in *test_module*.
Can be a comma-separated list.
seed: A specific random seed to use.
test_args: A list of extra arguments for the simulator.
plusargs: 'plusargs' to set for the simulator.
extra_env: Extra environment variables to set.
waves: Record signal traces.
gui: Run with simulator GUI.
parameters: Verilog parameters or VHDL generics.
build_dir: Directory the build step has been run in.
test_dir: Directory to run the tests in.
results_xml: Name of xUnit XML file to store test results in.
If an absolute path is provided it will be used as-is,
``{build_dir}/results.xml`` otherwise.
This argument should not be set when run with ``pytest``.
verbose: Enable verbose messages.
timescale: Tuple containing time unit and time precision for simulation.
log_file: File to write the test log to.
Returns:
The absolute location of the results XML file which can be
defined by the *results_xml* argument.
"""
__tracebackhide__ = True # Hide the traceback when using pytest
if build_dir is not None:
self.build_dir = get_abs_path(build_dir)
if parameters is not None:
self.parameters = dict(parameters)
if test_dir is None:
self.test_dir = self.build_dir
else:
self.test_dir = get_abs_path(test_dir)
os.makedirs(self.test_dir, exist_ok=True)
if isinstance(test_module, str):
self.test_module = test_module
else:
self.test_module = ",".join(test_module)
# note: to avoid mutating argument defaults, we ensure that no value
# is written without a copy. This is much more concise and leads to
# a better docstring than using `None` as a default in the parameters
# list.
self.sim_hdl_toplevel = hdl_toplevel
self.hdl_toplevel_library: str = hdl_toplevel_library
self.hdl_toplevel_lang = self._check_hdl_toplevel_lang(hdl_toplevel_lang)
if gpi_interfaces:
self.gpi_interfaces = gpi_interfaces
else:
self.gpi_interfaces = []
for gpi_if in self.supported_gpi_interfaces.values():
self.gpi_interfaces.append(gpi_if[0])
self.test_args = list(test_args)
self.plusargs = list(plusargs)
self.env = dict(extra_env)
if testcase is not None:
if isinstance(testcase, str):
self.env["TESTCASE"] = testcase
else:
self.env["TESTCASE"] = ",".join(testcase)
if seed is not None:
self.env["RANDOM_SEED"] = str(seed)
self.log_file = log_file
self.waves = bool(waves)
self.gui = bool(gui)
self.timescale: Optional[Timescale] = timescale
if verbose is not None:
self.verbose = verbose
# When using pytest, use test name as result file name
pytest_current_test = os.getenv("PYTEST_CURRENT_TEST", None)
test_dir_path = Path(self.test_dir)
self.current_test_name = "test"
if results_xml is not None:
# PYTEST_CURRENT_TEST only allowed when results_xml is not set
assert not pytest_current_test
results_xml_path = Path(results_xml)
if results_xml_path.is_absolute():
results_xml_file = results_xml_path
else:
results_xml_file = test_dir_path / results_xml_path
elif pytest_current_test is not None:
self.current_test_name = pytest_current_test.split(":")[-1].split(" ")[0]
results_xml_file = test_dir_path / f"{self.current_test_name}.{results_xml}"
else:
results_xml_file = test_dir_path / "results.xml"
with suppress(OSError):
os.remove(results_xml_file)
# transport the settings to cocotb via environment variables
self._set_env()
self.env["COCOTB_RESULTS_FILE"] = str(results_xml_file)
cmds: Sequence[Command] = self._test_command()
self._execute(cmds, cwd=self.test_dir)
# Only when running under pytest, check the results file here,
# potentially raising an exception with failing testcases,
# otherwise return the results file for later analysis.
if pytest_current_test:
check_results_file(results_xml_file)
print(f"INFO: Results file: {results_xml_file}")
return results_xml_file
@staticmethod
def _get_include_options(self, includes: Sequence[PathLike]) -> Command:
"""Return simulator-specific formatted option strings with *includes* directories."""
raise NotImplementedError()
@staticmethod
def _get_define_options(self, defines: Mapping[str, object]) -> Command:
"""Return simulator-specific formatted option strings with *defines* macros."""
raise NotImplementedError()
@abc.abstractmethod
def _get_parameter_options(self, parameters: Mapping[str, object]) -> Command:
"""Return simulator-specific formatted option strings with *parameters*/generics."""
raise NotImplementedError()
def _execute(self, cmds: Sequence[Command], cwd: PathLike) -> None:
__tracebackhide__ = True # Hide the traceback when using PyTest.
if self.log_file is None:
self._execute_cmds(cmds, cwd)
else:
with open(self.log_file, "w") as f:
self._execute_cmds(cmds, cwd, f)
def _execute_cmds(
self, cmds: Sequence[Command], cwd: PathLike, stdout: Optional[TextIO] = None
) -> None:
__tracebackhide__ = True # Hide the traceback when using PyTest.
for cmd in cmds:
print(f"INFO: Running command {shlex_join(cmd)} in directory {cwd}")
# TODO: create a thread to handle stderr and log as error?
# TODO: log forwarding
stderr = None if stdout is None else subprocess.STDOUT
subprocess.run(
cmd, cwd=cwd, env=self.env, check=True, stdout=stdout, stderr=stderr
)
def rm_build_folder(self, build_dir: Path):
if os.path.isdir(build_dir):
print("Removing:", build_dir)
shutil.rmtree(build_dir, ignore_errors=True)
def get_results(results_xml_file: Path) -> Tuple[int, int]:
"""Return number of tests and fails in *results_xml_file*.
Returns:
Tuple of number of tests and number of fails.
Raises:
SystemExit: *results_xml_file* is non-existent.
"""
__tracebackhide__ = True # Hide the traceback when using PyTest.
if not results_xml_file.is_file():
raise SystemExit(
f"ERROR: Simulation terminated abnormally. Results file {results_xml_file} not found."
)
num_tests = 0
num_failed = 0
tree = ET.parse(results_xml_file)
for ts in tree.iter("testsuite"):
for tc in ts.iter("testcase"):
num_tests += 1
for _ in tc.iter("failure"):
num_failed += 1
return (num_tests, num_failed)
def check_results_file(results_xml_file: Path) -> None:
"""Raise exception if *results_xml_file* does not exist or contains failed tests.
Raises:
SystemExit: *results_xml_file* is non-existent or contains fails.
"""
__tracebackhide__ = True # Hide the traceback when using PyTest.
(num_tests, num_failed) = get_results(results_xml_file)
if num_failed:
raise SystemExit(f"ERROR: Failed {num_failed} of {num_tests} tests.")
def outdated(output: Path, dependencies: Sequence[Path]) -> bool:
"""Return ``True`` if any source files in *dependencies* are newer than the *output* directory.
Returns:
``True`` if any source files are newer, ``False`` otherwise.
"""
if not output.is_file():
return True
output_mtime = output.stat().st_mtime
dep_mtime = 0.0
for dependency in dependencies:
mtime = dependency.stat().st_mtime
if mtime > dep_mtime:
dep_mtime = mtime
return dep_mtime > output_mtime
def get_abs_path(path: PathLike) -> Path:
"""Return *path* in absolute form."""
path = Path(path)
if path.is_absolute():
return path.resolve()
else:
return Path(Path.cwd() / path).resolve()
def get_abs_paths(paths: Sequence[PathLike]) -> List[Path]:
"""Return list of *paths* in absolute form."""
return [get_abs_path(path) for path in paths]
class Icarus(Simulator):
supported_gpi_interfaces = {"verilog": ["vpi"]}
@staticmethod
def _simulator_in_path() -> None:
if shutil.which("iverilog") is None:
raise SystemExit("ERROR: iverilog executable not found!")
@staticmethod
def _get_include_options(includes: Sequence[PathLike]) -> Command:
return [f"-I{include}" for include in includes]
@staticmethod
def _get_define_options(defines: Mapping[str, object]) -> Command:
return [f"-D{name}={value}" for name, value in defines.items()]
def _get_parameter_options(self, parameters: Mapping[str, object]) -> Command:
assert self.hdl_toplevel is not None
return [
f"-P{self.hdl_toplevel}.{name}={value}"
for name, value in parameters.items()
]
def _create_cmd_file(self) -> None:
with open(self.cmds_file, "w") as f:
f.write("+timescale+{}/{}\n".format(*self.timescale))
def _create_iverilog_dump_file(self) -> None:
dumpfile_path = Path(self.build_dir, f"{self.hdl_toplevel}.fst").as_posix()
with open(self.iverilog_dump_file, "w") as f:
f.write("module cocotb_iverilog_dump();\n")
f.write("initial begin\n")
f.write(f' $dumpfile("{dumpfile_path}");\n')
f.write(f" $dumpvars(0, {self.hdl_toplevel});\n")
f.write("end\n")
f.write("endmodule\n")
@property
def sim_file(self) -> Path:
return self.build_dir / "sim.vvp"
@property
def iverilog_dump_file(self) -> Path:
return self.build_dir / "cocotb_iverilog_dump.v"
@property
def cmds_file(self) -> Path:
return self.build_dir / "cmds.f"
def _test_command(self) -> List[Command]:
plusargs = self.plusargs
if self.waves:
plusargs += ["-fst"]
return [
[
"vvp",
"-M",
cocotb.config.libs_dir,
"-m",
cocotb.config.lib_name("vpi", "icarus"),
]
+ self.test_args
+ [str(self.sim_file)]
+ plusargs
]
def _build_command(self) -> List[Command]:
if self.vhdl_sources:
raise ValueError(
f"{type(self).__qualname__}: Simulator does not support VHDL"
)
build_args = list(self.build_args)
if self.waves:
self._create_iverilog_dump_file()
build_args += ["-s", "cocotb_iverilog_dump"]
if self.timescale is not None:
self._create_cmd_file()
build_args += ["-f", str(self.cmds_file)]
cmds = []
if outdated(self.sim_file, self.verilog_sources) or self.always:
cmds = [
[
"iverilog",
"-o",
str(self.sim_file),
"-D",
"COCOTB_SIM=1",
"-s",
self.hdl_toplevel,
"-g2012",
]
+ self._get_define_options(self.defines)
+ self._get_include_options(self.includes)
+ self._get_parameter_options(self.parameters)
+ build_args
+ [str(source_file) for source_file in self.verilog_sources]
+ [
str(source_file)
for source_file in [self.iverilog_dump_file]
if self.waves
]
]
else:
print("WARNING: Skipping compilation of", self.sim_file)
return cmds
class Questa(Simulator):
supported_gpi_interfaces = {"verilog": ["vpi"], "vhdl": ["fli", "vhpi"]}
@staticmethod
def _simulator_in_path() -> None:
if shutil.which("vsim") is None:
raise SystemExit("ERROR: vsim executable not found!")
@staticmethod
def _get_include_options(includes: Sequence[PathLike]) -> Command:
return [f"+incdir+{as_tcl_value(str(include))}" for include in includes]
@staticmethod
def _get_define_options(defines: Mapping[str, object]) -> Command:
return [
f"+define+{as_tcl_value(name)}={as_tcl_value(str(value))}"
for name, value in defines.items()
]
@staticmethod
def _get_parameter_options(parameters: Mapping[str, object]) -> Command:
return [f"-g{name}={value}" for name, value in parameters.items()]
def _build_command(self) -> List[Command]:
cmds = []
if self.vhdl_sources:
cmds.append(["vlib", as_tcl_value(self.hdl_library)])
cmds.append(
["vcom"]
+ ["-work", as_tcl_value(self.hdl_library)]
+ [as_tcl_value(v) for v in self.build_args]
+ [as_tcl_value(str(v)) for v in self.vhdl_sources]
)
if self.verilog_sources:
cmds.append(["vlib", as_tcl_value(self.hdl_library)])
cmds.append(
["vlog"]
+ ([] if self.always else ["-incr"])
+ ["-work", as_tcl_value(self.hdl_library)]
+ ["+define+COCOTB_SIM"]
+ ["-sv"]
+ self._get_define_options(self.defines)
+ self._get_include_options(self.includes)
+ [as_tcl_value(v) for v in self.build_args]
+ [as_tcl_value(str(v)) for v in self.verilog_sources]
)
return cmds
def _test_command(self) -> List[Command]:
cmds = []
do_script = ""
if self.waves:
do_script += "log -recursive /*;"
if not self.gui:
do_script += "run -all; quit"
gpi_if_entry = self.gpi_interfaces[0]
gpi_if_entry_lib_path = cocotb.config.lib_name_path(gpi_if_entry, "questa")
if gpi_if_entry == "fli":
lib_opts = [
"-foreign",
"cocotb_init "
+ as_tcl_value(cocotb.config.lib_name_path("fli", "questa")),
]
elif gpi_if_entry == "vhpi":
lib_opts = ["-voptargs=-access=rw+/."]
lib_opts += [
"-foreign",
"vhpi_startup_routines_bootstrap "
+ as_tcl_value(cocotb.config.lib_name_path("vhpi", "questa")),
]
else:
lib_opts = [
"-pli",
as_tcl_value(cocotb.config.lib_name_path("vpi", "questa")),
]
if not Path(gpi_if_entry_lib_path).is_file():
raise SystemExit(
"ERROR: cocotb was not installed with a {gpi_if_entry} library."
)
cmds.append(
["vsim"]
+ ["-gui" if self.gui else "-c"]
+ ["-onfinish", "stop" if self.gui else "exit"]
+ lib_opts
+ [as_tcl_value(v) for v in self.test_args]
+ [as_tcl_value(v) for v in self._get_parameter_options(self.parameters)]
+ [as_tcl_value(f"{self.hdl_toplevel_library}.{self.sim_hdl_toplevel}")]
+ [as_tcl_value(v) for v in self.plusargs]
+ ["-do", do_script]
)
gpi_extra_list = []
for gpi_if in self.gpi_interfaces[1:]:
gpi_if_lib_path = cocotb.config.lib_name_path(gpi_if, "questa")
if Path(gpi_if_lib_path).is_file():
gpi_extra_list.append(
cocotb.config.lib_name_path(gpi_if, "questa")
+ f":cocotb{gpi_if}_entry_point"
)
else:
print("WARNING: {gpi_if_lib_path} library not found.")
self.env["GPI_EXTRA"] = ",".join(gpi_extra_list)
return cmds
class Ghdl(Simulator):
supported_gpi_interfaces = {"vhdl": ["vpi"]}
@staticmethod
def _simulator_in_path() -> None:
if shutil.which("ghdl") is None:
raise SystemExit("ERROR: ghdl executable not found!")
def _is_mcode_backend(self) -> bool:
"""Is GHDL using the mcode backend?"""
result = subprocess.run(
["ghdl", "--version"],
check=True,
text=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
)
return "mcode" in result.stdout
@staticmethod
def _get_parameter_options(parameters: Mapping[str, object]) -> Command:
return [f"-g{name}={value}" for name, value in parameters.items()]
def _build_command(self) -> List[Command]:
if self.verilog_sources:
raise ValueError(
f"{type(self).__qualname__}: Simulator does not support Verilog"
)
cmds = [
["ghdl", "-i"]
+ [f"--work={self.hdl_library}"]
+ self.build_args
+ [str(source_file) for source_file in self.vhdl_sources]
]
if self.hdl_toplevel is not None:
cmds += [
["ghdl", "-m"]
+ [f"--work={self.hdl_library}"]
+ self.build_args
+ [self.hdl_toplevel]
]
return cmds
def _test_command(self) -> List[Command]:
ghdl_run_args = self.test_args
if self._is_mcode_backend() and self.timescale:
_, precision = self.timescale
# Convert the time precision to a format string supported by GHDL,
# if possible.
# GHDL only supports setting the time precision if the mcode backend
# is used, using the --time-resolution argument causes GHDL to error
# out otherwise.
# https://ghdl.github.io/ghdl/using/InvokingGHDL.html#cmdoption-ghdl-time-resolution
if precision == "1fs":
ghdl_time_resolution = "fs"
elif precision == "1ps":
ghdl_time_resolution = "ps"
elif precision == "1ns":
ghdl_time_resolution = "ns"
elif precision == "1us":
ghdl_time_resolution = "us"
elif precision == "1ms":
ghdl_time_resolution = "ms"
elif precision == "1s":
ghdl_time_resolution = "sec"
else:
raise ValueError(
"GHDL only supports the following precisions in timescale: 1fs, 1ps, 1us, 1ms, 1s"
)
ghdl_run_args.append(f"--time-resolution={ghdl_time_resolution}")
cmds = [
["ghdl", "-r"]
+ [f"--work={self.hdl_toplevel_library}"]
+ ghdl_run_args
+ [self.sim_hdl_toplevel]
+ ["--vpi=" + cocotb.config.lib_name_path("vpi", "ghdl")]
+ self.plusargs
+ self._get_parameter_options(self.parameters)
]
return cmds
class Nvc(Simulator):
supported_gpi_interfaces = {"vhdl": ["vhpi"]}
@staticmethod
def _simulator_in_path() -> None:
if shutil.which("nvc") is None:
raise SystemExit("ERROR: nvc executable not found!")
@staticmethod
def _get_parameter_options(parameters: Mapping[str, object]) -> Command:
return [f"-g{name}={value}" for name, value in parameters.items()]
def _build_command(self) -> List[Command]:
if self.verilog_sources:
raise ValueError(
f"{type(self).__qualname__}: Simulator does not support Verilog"
)
cmds = [
["nvc", f"--work={self.hdl_library}"]
+ self.build_args
+ ["-a"]
+ [str(source_file) for source_file in self.vhdl_sources]
]
return cmds
def _test_command(self) -> List[Command]:
cmds = [
["nvc", f"--work={self.hdl_toplevel_library}"]
+ self.build_args
+ ["-e", self.sim_hdl_toplevel, "--no-save", "--jit"]
+ self._get_parameter_options(self.parameters)
+ ["-r"]
+ self.test_args
+ ["--load=" + cocotb.config.lib_name_path("vhpi", "nvc")]
+ self.plusargs
]
return cmds
class Riviera(Simulator):
supported_gpi_interfaces = {"verilog": ["vpi"], "vhdl": ["vhpi"]}
@staticmethod
def _simulator_in_path() -> None:
if shutil.which("vsimsa") is None:
raise SystemExit("ERROR: vsimsa executable not found!")
@staticmethod
def _get_include_options(includes: Sequence[PathLike]) -> Command:
return [f"+incdir+{as_tcl_value(str(include))}" for include in includes]
@staticmethod
def _get_define_options(defines: Mapping[str, object]) -> Command:
return [
f"+define+{as_tcl_value(name)}={as_tcl_value(str(value))}"
for name, value in defines.items()
]
@staticmethod
def _get_parameter_options(parameters: Mapping[str, object]) -> Command:
return [f"-g{name}={value}" for name, value in parameters.items()]
def _build_command(self) -> List[Command]:
do_script = "\nonerror {\n quit -code 1 \n} \n"
out_file = self.build_dir / self.hdl_library / f"{self.hdl_library}.lib"
if outdated(out_file, self.verilog_sources + self.vhdl_sources) or self.always:
do_script += f"alib {as_tcl_value(self.hdl_library)} \n"
if self.vhdl_sources:
do_script += (
"acom -work {RTL_LIBRARY} {EXTRA_ARGS} {VHDL_SOURCES}\n".format(
RTL_LIBRARY=as_tcl_value(self.hdl_library),
VHDL_SOURCES=" ".join(
as_tcl_value(str(v)) for v in self.vhdl_sources
),
EXTRA_ARGS=" ".join(as_tcl_value(v) for v in self.build_args),
)
)
if self.verilog_sources:
do_script += "alog -work {RTL_LIBRARY} +define+COCOTB_SIM -pli {EXT_NAME} -sv {DEFINES} {INCDIR} {EXTRA_ARGS} {VERILOG_SOURCES} \n".format(
RTL_LIBRARY=as_tcl_value(self.hdl_library),
EXT_NAME=as_tcl_value(
cocotb.config.lib_name_path("vpi", "riviera")
),
VERILOG_SOURCES=" ".join(
as_tcl_value(str(v)) for v in self.verilog_sources
),
DEFINES=" ".join(self._get_define_options(self.defines)),
INCDIR=" ".join(self._get_include_options(self.includes)),
EXTRA_ARGS=" ".join(as_tcl_value(v) for v in self.build_args),
)
else:
print("WARNING: Skipping compilation of", out_file)
# Explicitly exit the script at the end. In batch mode, which is invoked
# implicitly by redirecting STDOUT/STDERR of the alog/acom commands,
# the tool exits by itself even without this 'exit' command -- but not
# when running from an interactive terminal. Be explicit for predictable
# behavior.
do_script += "\nexit"
do_file = tempfile.NamedTemporaryFile(delete=False)
do_file.write(do_script.encode())
do_file.close()
return [["vsimsa"] + ["-do"] + ["do"] + [do_file.name]]
def _test_command(self) -> List[Command]:
do_script = "\nonerror {\n quit -code 1 \n} \n"
if self.hdl_toplevel_lang == "vhdl":
do_script += "asim +access +w_nets -interceptcoutput -loadvhpi {EXT_NAME} {EXTRA_ARGS} {TOPLEVEL} {PLUSARGS}\n".format(
TOPLEVEL=as_tcl_value(
f"{self.hdl_toplevel_library}.{self.sim_hdl_toplevel}"
),
EXT_NAME=as_tcl_value(cocotb.config.lib_name_path("vhpi", "riviera")),
EXTRA_ARGS=" ".join(
as_tcl_value(v)
for v in (
self.test_args + self._get_parameter_options(self.parameters)
)
),
PLUSARGS=" ".join(as_tcl_value(v) for v in self.plusargs),
)
self.env["GPI_EXTRA"] = (
cocotb.config.lib_name_path("vpi", "riviera") + ":cocotbvpi_entry_point"
)
else:
do_script += "asim +access +w_nets -interceptcoutput -pli {EXT_NAME} {EXTRA_ARGS} {TOPLEVEL} {PLUSARGS} \n".format(
TOPLEVEL=as_tcl_value(
f"{self.hdl_toplevel_library}.{self.sim_hdl_toplevel}"
),
EXT_NAME=as_tcl_value(cocotb.config.lib_name_path("vpi", "riviera")),
EXTRA_ARGS=" ".join(
as_tcl_value(v)
for v in (
self.test_args + self._get_parameter_options(self.parameters)
)
),
PLUSARGS=" ".join(as_tcl_value(v) for v in self.plusargs),
)
self.env["GPI_EXTRA"] = (
cocotb.config.lib_name_path("vhpi", "riviera")
+ ":cocotbvhpi_entry_point"
)
if self.waves:
do_script += "log -recursive /*;"
do_script += "run -all \nexit"
do_file = tempfile.NamedTemporaryFile(delete=False)
do_file.write(do_script.encode())
do_file.close()
return [["vsimsa"] + ["-do"] + ["do"] + [do_file.name]]
class Verilator(Simulator):
supported_gpi_interfaces = {"verilog": ["vpi"]}
def _simulator_in_path(self) -> None:
# the verilator binary is only needed for building
return
def _simulator_in_path_build_only(self) -> None:
executable = shutil.which("verilator")
if executable is None:
raise SystemExit("ERROR: verilator executable not found!")
self.executable: str = executable
@staticmethod
def _get_include_options(includes: Sequence[PathLike]) -> Command:
return [f"-I{include}" for include in includes]
@staticmethod
def _get_define_options(defines: Mapping[str, object]) -> Command:
return [f"-D{name}={value}" for name, value in defines.items()]
@staticmethod
def _get_parameter_options(parameters: Mapping[str, object]) -> Command:
return [f"-G{name}={value}" for name, value in parameters.items()]
def _build_command(self) -> List[Command]:
self._simulator_in_path_build_only()
if self.vhdl_sources:
raise ValueError(
f"{type(self).__qualname__}: Simulator does not support VHDL"
)
if self.hdl_toplevel is None:
raise ValueError(
f"{type(self).__qualname__}: Simulator requires the hdl_toplevel parameter to be specified"
)
# TODO: set "--debug" if self.verbose
# TODO: support "--always"
verilator_cpp = str(
Path(cocotb.__file__).parent
/ "share"
/ "lib"
/ "verilator"
/ "verilator.cpp"
)
cmds = []
cmds.append(
[
"perl",
self.executable,
"-cc",
"--exe",
"-Mdir",
str(self.build_dir),
"-DCOCOTB_SIM=1",
"--top-module",
self.hdl_toplevel,
"--vpi",
"--public-flat-rw",
"--prefix",
"Vtop",
"-o",
self.hdl_toplevel,
"-LDFLAGS",
"-Wl,-rpath,{LIB_DIR} -L{LIB_DIR} -lcocotbvpi_verilator".format(
LIB_DIR=cocotb.config.libs_dir
),
]
+ (["--trace"] if self.waves else [])
+ self.build_args
+ self._get_define_options(self.defines)
+ self._get_include_options(self.includes)
+ self._get_parameter_options(self.parameters)
+ [verilator_cpp]
+ [str(source_file) for source_file in self.verilog_sources]
)
cmds.append(
[
"make",
"-C",
str(self.build_dir),
"-f",
"Vtop.mk",
f"VM_TRACE={int(self.waves)}",
]
)
return cmds
def _test_command(self) -> List[Command]:
out_file = self.build_dir / self.sim_hdl_toplevel
return [
[str(out_file)]
+ (["--trace"] if self.waves else [])
+ self.test_args
+ self.plusargs
]
class Xcelium(Simulator):
supported_gpi_interfaces = {"verilog": ["vpi"], "vhdl": ["vhpi"]}
@staticmethod
def _simulator_in_path() -> None:
if shutil.which("xrun") is None:
raise SystemExit("ERROR: xrun executable not found!")
@staticmethod
def _get_include_options(includes: Sequence[PathLike]) -> Command:
return [f"-incdir {include}" for include in includes]
@staticmethod
def _get_define_options(defines: Mapping[str, object]) -> Command:
return [f"-define {name}={value}" for name, value in defines.items()]
@staticmethod
def _get_parameter_options(parameters: Mapping[str, object]) -> Command:
return [f'-gpg "{name} => {value}"' for name, value in parameters.items()]
def _build_command(self) -> List[Command]:
self.env["CDS_AUTO_64BIT"] = "all"
assert self.hdl_toplevel, "A HDL toplevel is required in all Xcelium compiles."
verbosity_opts = []
if self.verbose:
verbosity_opts += ["-messages"]
verbosity_opts += ["-status"]
verbosity_opts += ["-gverbose"] # print assigned generics/parameters
verbosity_opts += ["-pliverbose"]
verbosity_opts += ["-plidebug"] # Enhance the profile output with PLI info
verbosity_opts += [
"-plierr_verbose"
] # Expand handle info in PLI/VPI/VHPI messages
else:
verbosity_opts += ["-quiet"]
verbosity_opts += ["-plinowarn"]
vhpi_opts = []
# Xcelium 23.09.004 fixes cocotb issue #1076 as long as the
# following define is set.
vhpi_opts.append("-NEW_VHPI_PROPAGATE_DELAY")
cmds = [
["xrun"]
+ ["-logfile"]
+ ["xrun_build.log"]
+ ["-elaborate"]
+ ["-xmlibdirname"]
+ [f"{self.build_dir}/xrun_snapshot"]
+ ["-licqueue"]
+ (["-clean"] if self.always else [])
+ verbosity_opts
# + ["-vpicompat 1800v2005"] # <1364v1995|1364v2001|1364v2005|1800v2005> Specify the IEEE VPI
+ ["-access +rwc"]
+ ["-loadvpi"]
# always start with VPI on Xcelium
+ [
cocotb.config.lib_name_path("vpi", "xcelium")
+ ":vlog_startup_routines_bootstrap"
]
+ vhpi_opts
+ [f"-work {self.hdl_library}"]
+ self.build_args
+ ["-define COCOTB_SIM"]
+ self._get_include_options(self.includes)
+ self._get_define_options(self.defines)
+ self._get_parameter_options(self.parameters)
+ [f"-top {self.hdl_toplevel}"]
+ [
str(source_file)
for source_file in self.vhdl_sources + self.verilog_sources
]
]
return cmds
def _test_command(self) -> List[Command]:
self.env["CDS_AUTO_64BIT"] = "all"
verbosity_opts = []
if self.verbose:
verbosity_opts += ["-messages"]
verbosity_opts += ["-status"]
verbosity_opts += ["-gverbose"] # print assigned generics/parameters
verbosity_opts += ["-pliverbose"]
verbosity_opts += ["-plidebug"] # Enhance the profile output with PLI info
verbosity_opts += [
"-plierr_verbose"
] # Expand handle info in PLI/VPI/VHPI messages
else:
verbosity_opts += ["-quiet"]
verbosity_opts += ["-plinowarn"]
tmpdir = f"implicit_tmpdir_{self.current_test_name}"
if self.hdl_toplevel_lang == "vhdl":
xrun_top = ":"
else:
xrun_top = self.sim_hdl_toplevel
if self.waves:
input_tcl = [
f'-input "@database -open cocotb_waves -default" '
f'-input "@probe -database cocotb_waves -create {xrun_top} -all -depth all" '
f'-input "@run" '
f'-input "@exit" '
]
else:
input_tcl = ["-input", "@run; exit;"]
vhpi_opts = []
# Xcelium 23.09.004 fixes cocotb issue #1076 as long as the
# following define is set.
vhpi_opts.append("-NEW_VHPI_PROPAGATE_DELAY")
cmds = [["mkdir", "-p", tmpdir]]
cmds += [
["xrun"]
+ ["-logfile"]
+ [f"xrun_{self.current_test_name}.log"]
+ ["-xmlibdirname"]
+ [f"{self.build_dir}/xrun_snapshot"]
+ ["-cds_implicit_tmpdir"]
+ [tmpdir]
+ ["-licqueue"]
+ vhpi_opts
+ verbosity_opts
+ ["-R"]
+ self.test_args
+ self.plusargs
+ ["-gui" if self.gui else ""]
+ input_tcl
]
self.env["GPI_EXTRA"] = (
cocotb.config.lib_name_path("vhpi", "xcelium") + ":cocotbvhpi_entry_point"
)
return cmds
def get_runner(simulator_name: str) -> Simulator:
"""Return the *simulator_name* instance."""
supported_sims: Dict[str, Type[Simulator]] = {
"icarus": Icarus,
"questa": Questa,
"ghdl": Ghdl,
"riviera": Riviera,
"verilator": Verilator,
"xcelium": Xcelium,
"nvc": Nvc,
# TODO: "vcs": Vcs,
# TODO: "activehdl": ActiveHdl,
}
try:
return supported_sims[simulator_name]()
except KeyError:
raise ValueError(
f"Simulator {simulator_name!r} is not in supported list: {', '.join(supported_sims)}"
) from None
|