pub struct StaticLabel { /* private fields */ }
Expand description
A static label represents either a local label or a global label reference.
Global labels are unique names, which can be referenced multiple times, but only defined once (per-crate::Assembler).
Local labels are non-unique names. They can be referenced multiple times, and any reference indicates if they refer to a label after the reference, or a label before the reference.
A static label records how many local labels with the same name have been emitted beforehand so we can treat them as local labels as well.
Implementations§
Source§impl StaticLabel
impl StaticLabel
Sourcepub fn global(name: &'static str) -> StaticLabel
pub fn global(name: &'static str) -> StaticLabel
Create a new static label for a global label
Sourcepub fn local(name: &'static str, version: usize) -> StaticLabel
pub fn local(name: &'static str, version: usize) -> StaticLabel
Create a new static label for a local label, with the given version id to distinguish it.
Sourcepub fn next(self) -> StaticLabel
pub fn next(self) -> StaticLabel
Returns the static label targetting the label with the same name, after this one. if it is a global label, returns a copy of itself.
Sourcepub fn first(name: &'static str) -> StaticLabel
pub fn first(name: &'static str) -> StaticLabel
Returns the representation of the first local label used with the given name.
Trait Implementations§
Source§impl Clone for StaticLabel
impl Clone for StaticLabel
Source§fn clone(&self) -> StaticLabel
fn clone(&self) -> StaticLabel
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more