![]() |
HAL
|
#include <latch_component.h>
Public Member Functions | |
LatchComponent (std::unique_ptr< GateTypeComponent > component) | |
ComponentType | get_type () const override |
std::vector< GateTypeComponent * > | get_components (const std::function< bool(const GateTypeComponent *)> &filter=nullptr) const override |
BooleanFunction | get_data_in_function () const |
void | set_data_in_function (const BooleanFunction &data_in_bf) |
BooleanFunction | get_enable_function () const |
void | set_enable_function (const BooleanFunction &enable_bf) |
BooleanFunction | get_async_reset_function () const |
void | set_async_reset_function (const BooleanFunction &async_reset_bf) |
BooleanFunction | get_async_set_function () const |
void | set_async_set_function (const BooleanFunction &async_set_bf) |
const std::pair< AsyncSetResetBehavior, AsyncSetResetBehavior > & | get_async_set_reset_behavior () const |
void | set_async_set_reset_behavior (AsyncSetResetBehavior behav_state, AsyncSetResetBehavior behav_neg_state) |
![]() | |
virtual | ~GateTypeComponent ()=default |
template<typename T > | |
T * | convert_to () |
template<typename T > | |
const T * | convert_to () const |
GateTypeComponent * | get_component (const std::function< bool(const GateTypeComponent *)> &filter=nullptr) const |
template<typename T > | |
T * | get_component_as (const std::function< bool(const GateTypeComponent *)> &filter=nullptr) |
Static Public Member Functions | |
static bool | is_class_of (const GateTypeComponent *component) |
![]() | |
static std::unique_ptr< GateTypeComponent > | create_lut_component (std::unique_ptr< GateTypeComponent > component, bool init_ascending) |
static std::unique_ptr< GateTypeComponent > | create_ff_component (std::unique_ptr< GateTypeComponent > component, const BooleanFunction &next_state_bf, const BooleanFunction &clock_bf) |
static std::unique_ptr< GateTypeComponent > | create_latch_component (std::unique_ptr< GateTypeComponent > component) |
static std::unique_ptr< GateTypeComponent > | create_ram_component (std::unique_ptr< GateTypeComponent > component, const u32 bit_size) |
static std::unique_ptr< GateTypeComponent > | create_mac_component () |
static std::unique_ptr< GateTypeComponent > | create_init_component (const std::string &init_category, const std::vector< std::string > &init_identifiers) |
static std::unique_ptr< GateTypeComponent > | create_state_component (std::unique_ptr< GateTypeComponent > component, const std::string &state_identifier, const std::string &neg_state_identifier) |
static std::unique_ptr< GateTypeComponent > | create_ram_port_component (std::unique_ptr< GateTypeComponent > component, const std::string &data_group, const std::string &addr_group, const BooleanFunction &clock_bf, const BooleanFunction &enable_bf, bool is_write) |
Additional Inherited Members | |
![]() | |
enum class | ComponentType { lut , ff , latch , ram , mac , init , state , ram_port } |
Definition at line 34 of file latch_component.h.
hal::LatchComponent::LatchComponent | ( | std::unique_ptr< GateTypeComponent > | component | ) |
Construct a new LatchComponent with given child component and the Boolean functions describing the data input and the enable signal.
[in] | component | - Another component to be added as a child component. |
Definition at line 5 of file latch_component.cpp.
BooleanFunction hal::LatchComponent::get_async_reset_function | ( | ) | const |
Get the Boolean function describing the asynchronous reset behavior of the latch. Returns an empty function if asynchronous reset is not supported by the latch.
Definition at line 62 of file latch_component.cpp.
References hal::BooleanFunction::clone().
Referenced by hal::gate_type_components_init(), and hal::TEST_F().
BooleanFunction hal::LatchComponent::get_async_set_function | ( | ) | const |
Get the Boolean function describing the asynchronous set behavior of the latch. Returns an empty function if asynchronous set is not supported by the latch.
Definition at line 72 of file latch_component.cpp.
References hal::BooleanFunction::clone().
Referenced by hal::gate_type_components_init(), and hal::TEST_F().
const std::pair< AsyncSetResetBehavior, AsyncSetResetBehavior > & hal::LatchComponent::get_async_set_reset_behavior | ( | ) | const |
Get the behavior of the internal state and the negated internal state when both asynchronous set and reset are active at the same time.
Definition at line 82 of file latch_component.cpp.
Referenced by hal::gate_type_components_init(), and hal::TEST_F().
|
overridevirtual |
Get the sub-components of the gate type component. A user-defined filter may be applied to the result vector, but is disabled by default.
[in] | filter | - The user-defined filter function applied to all candidate components. |
Implements hal::GateTypeComponent.
Definition at line 19 of file latch_component.cpp.
BooleanFunction hal::LatchComponent::get_data_in_function | ( | ) | const |
Get the Boolean function describing the data input of the latch.
Definition at line 42 of file latch_component.cpp.
References hal::BooleanFunction::clone().
Referenced by hal::gate_type_components_init(), and hal::TEST_F().
BooleanFunction hal::LatchComponent::get_enable_function | ( | ) | const |
Get the Boolean function describing the enable behavior of the latch.
Definition at line 52 of file latch_component.cpp.
References hal::BooleanFunction::clone().
Referenced by hal::gate_type_components_init(), and hal::TEST_F().
|
overridevirtual |
Get the type of the gate type component.
Implements hal::GateTypeComponent.
Definition at line 9 of file latch_component.cpp.
|
static |
Check whether a component is a LatchComponent.
[in] | component | - The component to check. |
Definition at line 14 of file latch_component.cpp.
References hal::GateTypeComponent::get_type().
Referenced by hal::gate_type_components_init(), hal::LatchWizardPage::setData(), hal::TEST_F(), and hal::GateLibraryFrameLatch::update().
void hal::LatchComponent::set_async_reset_function | ( | const BooleanFunction & | async_reset_bf | ) |
Set the Boolean function describing the asynchronous reset behavior of the latch.
[in] | async_reset_bf | - The function describing the asynchronous reset behavior. |
Definition at line 67 of file latch_component.cpp.
References hal::BooleanFunction::clone().
Referenced by hal::gate_type_components_init(), and hal::GateLibraryWizard::setComponents().
void hal::LatchComponent::set_async_set_function | ( | const BooleanFunction & | async_set_bf | ) |
Set the Boolean function describing the asynchronous set behavior of the latch.
[in] | async_set_bf | - The function describing the asynchronous set behavior. |
Definition at line 77 of file latch_component.cpp.
References hal::BooleanFunction::clone().
Referenced by hal::gate_type_components_init(), and hal::GateLibraryWizard::setComponents().
void hal::LatchComponent::set_async_set_reset_behavior | ( | AsyncSetResetBehavior | behav_state, |
AsyncSetResetBehavior | behav_neg_state | ||
) |
Set the behavior of the internal state and the negated internal state when both asynchronous set and reset are active at the same time.
[in] | behav_state | - The behavior of the internal state. |
[in] | behav_neg_state | - The behavior of the negated internal state. |
Definition at line 87 of file latch_component.cpp.
Referenced by hal::gate_type_components_init(), and hal::GateLibraryWizard::setComponents().
void hal::LatchComponent::set_data_in_function | ( | const BooleanFunction & | data_in_bf | ) |
Set the Boolean function describing the data input of the latch.
[in] | data_in_bf | - The function describing the internal state. |
Definition at line 47 of file latch_component.cpp.
References hal::BooleanFunction::clone().
Referenced by hal::gate_type_components_init(), and hal::GateLibraryWizard::setComponents().
void hal::LatchComponent::set_enable_function | ( | const BooleanFunction & | enable_bf | ) |
Set the Boolean function describing the enable behavior of the latch.
[in] | enable_bf | - The function describing the enable behavior. |
Definition at line 57 of file latch_component.cpp.
References hal::BooleanFunction::clone().
Referenced by hal::gate_type_components_init(), and hal::GateLibraryWizard::setComponents().