diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-04-11 07:59:12 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-04-11 07:59:12 +0200 |
commit | 4231913909ebc0dfd8edcfa979ef6791b0a5675a (patch) | |
tree | 39281cfe7a945a51a1aec55027f556b4bfa94006 /testsuite/synth/issue1207 | |
parent | 077dae8aaa89cd74f18190a0de0d4b501935b39c (diff) | |
download | ghdl-4231913909ebc0dfd8edcfa979ef6791b0a5675a.tar.gz ghdl-4231913909ebc0dfd8edcfa979ef6791b0a5675a.tar.bz2 ghdl-4231913909ebc0dfd8edcfa979ef6791b0a5675a.zip |
testsuite/synth: add a test for #1207
Diffstat (limited to 'testsuite/synth/issue1207')
-rw-r--r-- | testsuite/synth/issue1207/alphablender.vhdl | 67 | ||||
-rwxr-xr-x | testsuite/synth/issue1207/testsuite.sh | 7 |
2 files changed, 74 insertions, 0 deletions
diff --git a/testsuite/synth/issue1207/alphablender.vhdl b/testsuite/synth/issue1207/alphablender.vhdl new file mode 100644 index 000000000..7d8cc946b --- /dev/null +++ b/testsuite/synth/issue1207/alphablender.vhdl @@ -0,0 +1,67 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.std_logic_signed.all; +use ieee.std_logic_arith.all; + +entity AlphaBlender is + generic ( + PixelWidth : natural := 8; + AlphaWidth : natural := 8 + ); + port( + clk : in std_logic; + alpha : in std_logic_vector(AlphaWidth-1 downto 0); + pixel1 : in std_logic_vector(PixelWidth-1 downto 0); + pixel2 : in std_logic_vector(PixelWidth-1 downto 0); + pixelout : out std_logic_vector(PixelWidth-1 downto 0) + ); +end AlphaBlender; + +architecture behavioral of AlphaBlender is + + constant DspDataWidth : natural := 18; + constant DspCascadeWidth : natural := 48; + + constant AlphaPadding : std_logic_vector(AlphaWidth-1 downto 0) := (others => '0'); + + signal ain : std_logic_vector(DspDataWidth-1 downto 0); + signal ain_r1 : std_logic_vector(DspDataWidth-1 downto 0) := (others => '0'); + signal ain_r2 : std_logic_vector(DspDataWidth-1 downto 0) := (others => '0'); + signal bin : std_logic_vector(DspDataWidth-1 downto 0); + signal cin : std_logic_vector(DspCascadeWidth-1 downto 0); + signal din : std_logic_vector(DspDataWidth-1 downto 0); + signal bin_r : std_logic_vector(DspDataWidth-1 downto 0) := (others => '0'); + signal din_r : std_logic_vector(DspDataWidth-1 downto 0) := (others => '0'); + signal cin_r1 : std_logic_vector(DspCascadeWidth-1 downto 0) := (others => '0'); + signal cin_r2 : std_logic_vector(DspCascadeWidth-1 downto 0) := (others => '0'); + signal cin_r3 : std_logic_vector(DspCascadeWidth-1 downto 0) := (others => '0'); + signal preadd_r : std_logic_vector(DspDataWidth-1 downto 0) := (others => '0'); + signal mult_r : std_logic_vector(2*DspDataWidth-1 downto 0) := (others => '0'); + signal sum_r : std_logic_vector(DspCascadeWidth-1 downto 0) := (others => '0'); + +begin + + bin <= ext(pixel1 & AlphaPadding, DspDataWidth); + cin <= ext(pixel1 & AlphaPadding & AlphaPadding, DspCascadeWidth); + din <= ext(pixel2 & AlphaPadding, DspDataWidth); + ain <= ext(alpha, DspDataWidth); + + addmultadd : process (clk) + begin + if rising_edge(clk) then + ain_r1 <= ain; + ain_r2 <= ain_r1; + bin_r <= bin; + din_r <= din; + cin_r1 <= cin; + cin_r2 <= cin_r1; + cin_r3 <= cin_r2; + preadd_r <= din_r - bin_r; + mult_r <= preadd_r * ain_r2; + sum_r <= mult_r + cin_r3; + end if; + end process addmultadd; + + pixelout <= sum_r(2*AlphaWidth+PixelWidth-1 downto 2*AlphaWidth); + +end behavioral; diff --git a/testsuite/synth/issue1207/testsuite.sh b/testsuite/synth/issue1207/testsuite.sh new file mode 100755 index 000000000..52986f05c --- /dev/null +++ b/testsuite/synth/issue1207/testsuite.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +. ../../testenv.sh + +synth -fsynopsys alphablender.vhdl -e > syn_alphablender.vhdl + +echo "Test successful" |