mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-01-11 23:43:15 +00:00
The VUnit log package is a SW style logging framework in VHDL and the check package is an assertion library doing its error reporting with VUnit logging. These testbenches don't use, and do not need, very advanced logging/checking features but the following was possible to improve - Checking equality in VHDL can be quite tedious with a lot of type conversions and long message strings to explain the data received and what was expected. VUnit's check_equal procedure allow comparison between same or similar types and automatically create the error message for you. - The code has report statements used for testbench progress reporting and debugging. These were replaced with the info and debug procedures. info logs are visible by default while debug is not. This means that debug logs don't have to be commented, which they are now, when not used. Instead there is a show procedure making debug messages visible. The show procedure has been commented to hide the debug messages but a more elegant solution is to control visibility from a generic and then set that generic from the command line. I've left this as a TODO but the run script allow you to extend the standard CLI of VUnit to add new options and you can also set generics from the run script. - VUnit log messages are color coded if color codes are supported by the terminal. It makes it quicker to spot messages of different types when there are many log messages. Error messages will always be made visible on the terminal but you must use the -v (verbose) to see other logs. - Some tests have a lot of "metvalue detected" warning messages from the numeric_std package and these clutter the logs when using the -v option. VUnit has a simulator independent option allowing you to suppress those messages. That option has been enabled. Signed-off-by: Lars Asplund <lars.anders.asplund@gmail.com>
117 lines
3.8 KiB
VHDL
117 lines
3.8 KiB
VHDL
library vunit_lib;
|
|
context vunit_lib.vunit_context;
|
|
|
|
library ieee;
|
|
use ieee.std_logic_1164.all;
|
|
use ieee.numeric_std.all;
|
|
|
|
library work;
|
|
use work.common.all;
|
|
|
|
library osvvm;
|
|
use osvvm.RandomPkg.all;
|
|
|
|
entity countzero_tb is
|
|
generic (runner_cfg : string := runner_cfg_default);
|
|
end countzero_tb;
|
|
|
|
architecture behave of countzero_tb is
|
|
constant clk_period: time := 10 ns;
|
|
signal rs: std_ulogic_vector(63 downto 0);
|
|
signal is_32bit, count_right: std_ulogic := '0';
|
|
signal res: std_ulogic_vector(63 downto 0);
|
|
signal clk: std_ulogic;
|
|
|
|
begin
|
|
zerocounter_0: entity work.zero_counter
|
|
port map (
|
|
clk => clk,
|
|
rs => rs,
|
|
result => res,
|
|
count_right => count_right,
|
|
is_32bit => is_32bit
|
|
);
|
|
|
|
clk_process: process
|
|
begin
|
|
clk <= '0';
|
|
wait for clk_period/2;
|
|
clk <= '1';
|
|
wait for clk_period/2;
|
|
end process;
|
|
|
|
stim_process: process
|
|
variable r: std_ulogic_vector(63 downto 0);
|
|
variable rnd : RandomPType;
|
|
begin
|
|
rnd.InitSeed(stim_process'path_name);
|
|
|
|
test_runner_setup(runner, runner_cfg);
|
|
|
|
while test_suite loop
|
|
if run("Test with input = 0") then
|
|
rs <= (others => '0');
|
|
is_32bit <= '0';
|
|
count_right <= '0';
|
|
wait for clk_period;
|
|
check_equal(res, 16#40#, result("for cntlzd"));
|
|
count_right <= '1';
|
|
wait for clk_period;
|
|
check_equal(res, 16#40#, result("for cnttzd"));
|
|
is_32bit <= '1';
|
|
count_right <= '0';
|
|
wait for clk_period;
|
|
check_equal(res, 16#20#, result("for cntlzw"));
|
|
count_right <= '1';
|
|
wait for clk_period;
|
|
check_equal(res, 16#20#, result("for cnttzw"));
|
|
|
|
elsif run("Test cntlzd/w") then
|
|
count_right <= '0';
|
|
for j in 0 to 100 loop
|
|
r := rnd.RandSlv(64);
|
|
r(63) := '1';
|
|
for i in 0 to 63 loop
|
|
rs <= r;
|
|
is_32bit <= '0';
|
|
wait for clk_period;
|
|
check_equal(res, i, result("for cntlzd " & to_hstring(rs)));
|
|
rs <= r(31 downto 0) & r(63 downto 32);
|
|
is_32bit <= '1';
|
|
wait for clk_period;
|
|
if i < 32 then
|
|
check_equal(res, i, result("for cntlzw " & to_hstring(rs)));
|
|
else
|
|
check_equal(res, 32, result("for cntlzw " & to_hstring(rs)));
|
|
end if;
|
|
r := '0' & r(63 downto 1);
|
|
end loop;
|
|
end loop;
|
|
|
|
elsif run("Test cnttzd/w") then
|
|
count_right <= '1';
|
|
for j in 0 to 100 loop
|
|
r := rnd.RandSlv(64);
|
|
r(0) := '1';
|
|
for i in 0 to 63 loop
|
|
rs <= r;
|
|
is_32bit <= '0';
|
|
wait for clk_period;
|
|
check_equal(res, i, result("for cnttzd " & to_hstring(rs)));
|
|
is_32bit <= '1';
|
|
wait for clk_period;
|
|
if i < 32 then
|
|
check_equal(res, i, result("for cnttzw " & to_hstring(rs)));
|
|
else
|
|
check_equal(res, 32, result("for cnttzw " & to_hstring(rs)));
|
|
end if;
|
|
r := r(62 downto 0) & '0';
|
|
end loop;
|
|
end loop;
|
|
end if;
|
|
end loop;
|
|
|
|
test_runner_cleanup(runner);
|
|
end process;
|
|
end behave;
|