pub struct DefSet { /* private fields */ }
Expand description
A datastructure used to represent a set of definitions/uses. These are represented as pairs of (Id, GroupOrInvoke) where the Id is the identifier being defined, and the second term represents the defining location (or use location). In the case of a group, this location is just the group Id. In the case of an invoke the “location” is a unique label assigned to each invoke statement that beings with the INVOKE_PREFIX.
Defsets are constructed based on the assignments in a group and the ports in an invoke. If a group writes to a register then it corresponds to a definition (REGID, GROUPNAME). Similarly, this can be used to represent a use of the register REGID in the very same group.
These structs are used both to determine what definitions reach a given location and are also used to ensure that uses of a given definition (or group of definitions are appropriately tied to any renaming that the particular definition undergoes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DefSet
impl RefUnwindSafe for DefSet
impl Send for DefSet
impl Sync for DefSet
impl Unpin for DefSet
impl UnwindSafe for DefSet
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more