Struct dynasmrt::components::RelocRegistry
source · [−]pub struct RelocRegistry<R: Relocation> { /* private fields */ }
Expand description
A registry of relocations and the respective labels they point towards.
Implementations
sourceimpl<R: Relocation> RelocRegistry<R>
impl<R: Relocation> RelocRegistry<R>
sourcepub fn new() -> RelocRegistry<R>
pub fn new() -> RelocRegistry<R>
Create a new, empty relocation registry.
sourcepub fn add_global(&mut self, name: &'static str, patchloc: PatchLoc<R>)
pub fn add_global(&mut self, name: &'static str, patchloc: PatchLoc<R>)
Add a new patch targetting the global label name
.
sourcepub fn add_dynamic(&mut self, id: DynamicLabel, patchloc: PatchLoc<R>)
pub fn add_dynamic(&mut self, id: DynamicLabel, patchloc: PatchLoc<R>)
Add a new patch targetting the dynamic label id
.
sourcepub fn add_local(&mut self, name: &'static str, patchloc: PatchLoc<R>)
pub fn add_local(&mut self, name: &'static str, patchloc: PatchLoc<R>)
Add a new patch targetting the next local label name
.
As any relocation targetting a previous local label can be immediately resolved these should not be recorded.
sourcepub fn take_locals_named<'a>(
&'a mut self,
name: &'static str
) -> impl Iterator<Item = PatchLoc<R>> + 'a
pub fn take_locals_named<'a>(
&'a mut self,
name: &'static str
) -> impl Iterator<Item = PatchLoc<R>> + 'a
Return an iterator through all defined relocations targetting local label name
.
These relocations are removed from the registry.
sourcepub fn take_globals<'a>(
&'a mut self
) -> impl Iterator<Item = (PatchLoc<R>, &'static str)> + 'a
pub fn take_globals<'a>(
&'a mut self
) -> impl Iterator<Item = (PatchLoc<R>, &'static str)> + 'a
Return an iterator through all defined relocations targeting global labels and the labels they target. These relocations are removed from the registry.
sourcepub fn take_dynamics<'a>(
&'a mut self
) -> impl Iterator<Item = (PatchLoc<R>, DynamicLabel)> + 'a
pub fn take_dynamics<'a>(
&'a mut self
) -> impl Iterator<Item = (PatchLoc<R>, DynamicLabel)> + 'a
Return an iterator through all defined relocations targeting dynamic labels and the labels they target. These relocations are removed from the registry.
sourcepub fn take_locals<'a>(
&'a mut self
) -> impl Iterator<Item = (PatchLoc<R>, &'static str)> + 'a
pub fn take_locals<'a>(
&'a mut self
) -> impl Iterator<Item = (PatchLoc<R>, &'static str)> + 'a
Return an iterator through all defined relocations targeting local labels and the labels they target. These relocations are removed from the registry.