2024-01-18 21:09:11 +00:00
|
|
|
//! Instance identification for instructions and their glue.
|
|
|
|
//!
|
|
|
|
//! Instructions as defined in [`crate::instruction::Kind`] and descendants are very useful,
|
|
|
|
//! but they cannot be directly used as vertices in the graph IR,
|
|
|
|
//! as there may easily be multiple instructions of the same kind in the same program.
|
|
|
|
//!
|
|
|
|
//! Instead, this module offers an alternative way to refer to specific instances:
|
|
|
|
//!
|
2024-01-19 13:26:20 +00:00
|
|
|
//! - [`Instruction`]s are effectively just a number floating in space,
|
|
|
|
//! incremented each time a new instruction is referred to.
|
2024-01-18 21:09:11 +00:00
|
|
|
//! - [`Socket`]s contain
|
|
|
|
//! - what [`Instruction`] they belong to
|
|
|
|
//! - which index they occupy on it
|
|
|
|
//!
|
|
|
|
//! The distinction between [`Input`] and [`Output`] is implemented
|
|
|
|
//! as them being different types.
|
|
|
|
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2024-01-19 13:26:20 +00:00
|
|
|
/// One specific instruction.
|
2024-01-18 21:09:11 +00:00
|
|
|
///
|
|
|
|
/// It does **not** contain what kind of instruction this is.
|
|
|
|
/// Refer to [`crate::instruction::Kind`] for this instead.
|
2024-01-18 23:45:01 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
|
2024-01-19 13:26:20 +00:00
|
|
|
pub struct Instruction(pub(super) u64);
|
2024-01-18 21:09:11 +00:00
|
|
|
|
|
|
|
/// On an **instruction**, accepts incoming data.
|
|
|
|
///
|
|
|
|
/// An **instruction** cannot run if any of these are not connected.
|
2024-01-18 23:45:01 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
|
2024-01-18 21:09:11 +00:00
|
|
|
pub struct Input(pub(super) Socket);
|
|
|
|
|
2024-01-18 23:45:01 +00:00
|
|
|
impl Input {
|
|
|
|
#[must_use]
|
|
|
|
pub fn socket(&self) -> &Socket {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-18 21:09:11 +00:00
|
|
|
/// On an **instruction**, returns outgoing data to be fed to [`Input`]s.
|
|
|
|
///
|
|
|
|
/// In contrast to [`Input`]s, [`Output`]s may be used or unused.
|
2024-01-18 23:45:01 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
|
2024-01-18 21:09:11 +00:00
|
|
|
pub struct Output(pub(super) Socket);
|
|
|
|
|
2024-01-18 23:45:01 +00:00
|
|
|
impl Output {
|
|
|
|
#[must_use]
|
|
|
|
pub fn socket(&self) -> &Socket {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-18 21:09:11 +00:00
|
|
|
/// An unspecified socket on a specific **instruction**,
|
|
|
|
/// and where it is on that **instruction**.
|
2024-01-18 23:45:01 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
|
2024-01-18 21:09:11 +00:00
|
|
|
pub struct Socket {
|
|
|
|
pub belongs_to: Instruction,
|
|
|
|
pub idx: SocketIdx,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Where a [`Socket`] is on an **instruction**.
|
2024-01-18 23:45:01 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash, Serialize, Deserialize)]
|
2024-01-18 21:09:11 +00:00
|
|
|
pub struct SocketIdx(pub u16);
|