topstitch 0.96.0

Stitch together Verilog modules with Rust
Documentation
// SPDX-License-Identifier: Apache-2.0

use num_bigint::BigInt;

use crate::PortSlice;
use crate::connection::connected_item::{Tieoff, Unused};
use crate::port_slice::{ConvertibleToPortSlice, PortDirectionality};

impl PortSlice {
    /// Ties off this port slice to the given constant value, specified as a
    /// `BigInt` or type that can be converted to a `BigInt`.
    pub fn tieoff<T: Into<BigInt>>(&self, value: T) {
        let big_int_value = value.into();

        self.port
            .get_port_connections_define_if_missing()
            .write()
            .add(
                self.to_port_slice(),
                Tieoff::new(big_int_value, self.width()),
            );
    }

    /// Marks this port slice as unused, meaning that if it is an module
    /// instance output or module definition input, validation will not fail if
    /// the slice drives nothing. In fact, validation will fail if the slice
    /// drives anything.
    pub fn unused(&self) {
        self.port
            .get_port_connections_define_if_missing()
            .write()
            .add(self.to_port_slice(), Unused::new());
    }

    /// Marks this PortSlice as unused or ties it off to the given value,
    /// depending on the directionality of the port. ModDef Input and
    /// InOut ports are marked as unused, as well as ModInst Output and
    /// InOut ports. ModDef Output and ModInst Input ports are tied off.
    pub fn unused_or_tieoff<T: Into<BigInt>>(&self, value: T) {
        match self.get_directionality() {
            PortDirectionality::Driver | PortDirectionality::InOut => {
                self.unused();
            }
            PortDirectionality::Receiver => {
                self.tieoff(value);
            }
        }
    }
}