You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
3.9 KiB
VHDL

-- © IBM Corp. 2020
-- Licensed under the Apache License, Version 2.0 (the "License"), as modified by
-- the terms below; you may not use the files in this repository except in
-- compliance with the License as modified.
-- You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
--
-- Modified Terms:
--
-- 1) For the purpose of the patent license granted to you in Section 3 of the
-- License, the "Work" hereby includes implementations of the work of authorship
-- in physical form.
--
-- 2) Notwithstanding any terms to the contrary in the License, any licenses
-- necessary for implementation of the Work that are available from OpenPOWER
-- via the Power ISA End User License Agreement (EULA) are explicitly excluded
-- hereunder, and may be obtained from OpenPOWER under the terms and conditions
-- of the EULA.
--
-- Unless required by applicable law or agreed to in writing, the reference design
-- distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
-- for the specific language governing permissions and limitations under the License.
--
-- Additional rights, including the ability to physically implement a softcore that
-- is compliant with the required sections of the Power ISA Specification, are
-- available at no cost under the terms of the OpenPOWER Power ISA EULA, which can be
-- obtained (along with the Power ISA) here: https://openpowerfoundation.org.
library ieee; use ieee.std_logic_1164.all ;
library ibm;
use ibm.std_ulogic_support.all;
use ibm.std_ulogic_function_support.all;
use ibm.std_ulogic_ao_support.all;
use ibm.std_ulogic_mux_support.all;
entity fuq_loc8inc_lsb is port(
x :in std_ulogic_vector(0 to 4); --48 to 52
co_b :out std_ulogic;
s0 :out std_ulogic_vector(0 to 4);
s1 :out std_ulogic_vector(0 to 4)
);
END fuq_loc8inc_lsb;
ARCHITECTURE fuq_loc8inc_lsb OF fuq_loc8inc_lsb IS
signal x_b, t2_b, t4 :std_ulogic_vector(0 to 4);
-- FOLDED layout
-- i0_xb i2_xb i4_xb skip skip skip skip
-- i1_xb i3_xb skip skip skip skip skip
-- i0_t2 i2_t2 i4_t2 skip skip skip skip
-- skip i1_t2 i3_t2 skip skip skip skip
-- i0_t2 i2_t2 i4_t2 skip skip skip skip
-- i0_t8 i1_t2 i3_t2 skip skip skip skip
-- i0_s0 i2_s0 i4_s0 skip skip skip skip
-- i1_s0 i3_s0 skip skip skip skip skip
-- i0_s1 i2_s1 i4_s1 skip skip skip skip
-- i1_s1 i3_s1 skip skip skip skip skip
BEGIN
---------------------------------
-- buffer off non critical path
---------------------------------
i0_xb: x_b(0) <= not x(0) ;
i1_xb: x_b(1) <= not x(1) ;
i2_xb: x_b(2) <= not x(2) ;
i3_xb: x_b(3) <= not x(3) ;
i4_xb: x_b(4) <= not x(4) ;
----------------------------
-- local carry chain
----------------------------
i0_t2: t2_b(0) <= not( x(0) );
i1_t2: t2_b(1) <= not( x(1) and x(2) );
i2_t2: t2_b(2) <= not( x(2) and x(3) );
i3_t2: t2_b(3) <= not( x(3) and x(4) );
i4_t2: t2_b(4) <= not( x(4) );
i0_t4: t4(0) <= not( t2_b(0) );
i1_t4: t4(1) <= not( t2_b(1) or t2_b(3) );
i2_t4: t4(2) <= not( t2_b(2) or t2_b(4) );
i3_t4: t4(3) <= not( t2_b(3) );
i4_t4: t4(4) <= not( t2_b(4) );
i0_t8: co_b <= not( t4(0) and t4(1) );
--------------------------
-- sum generation
--------------------------
i0_s0: s0(0) <= not( x_b(0) );
i1_s0: s0(1) <= not( x_b(1) );
i2_s0: s0(2) <= not( x_b(2) );
i3_s0: s0(3) <= not( x_b(3) );
i4_s0: s0(4) <= not( x_b(4) );
i0_s1: s1(0) <= not( x_b(0) xor t4(1) );
i1_s1: s1(1) <= not( x_b(1) xor t4(2) );
i2_s1: s1(2) <= not( x_b(2) xor t4(3) );
i3_s1: s1(3) <= not( x_b(3) xor t4(4) );
i4_s1: s1(4) <= not( t4(4) );
END; -- ARCH fuq_loc8inc_lsb