pub struct CodeRelocation {
pub offset: u32,
pub symbol: String,
}Expand description
A relocation entry produced during compilation
Records that a BL instruction at offset bytes into the function’s code
targets an external symbol (e.g., __meld_dispatch_import). The linker
resolves these when combining the Synth object with the Kiln bridge.
Fields§
§offset: u32Byte offset within the function’s machine code where the BL resides
symbol: StringTarget symbol name (e.g., “__meld_dispatch_import”)
Trait Implementations§
Source§impl Clone for CodeRelocation
impl Clone for CodeRelocation
Source§fn clone(&self) -> CodeRelocation
fn clone(&self) -> CodeRelocation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CodeRelocation
impl Debug for CodeRelocation
Source§impl PartialEq for CodeRelocation
impl PartialEq for CodeRelocation
Source§fn eq(&self, other: &CodeRelocation) -> bool
fn eq(&self, other: &CodeRelocation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for CodeRelocation
impl StructuralPartialEq for CodeRelocation
Auto Trait Implementations§
impl Freeze for CodeRelocation
impl RefUnwindSafe for CodeRelocation
impl Send for CodeRelocation
impl Sync for CodeRelocation
impl Unpin for CodeRelocation
impl UnsafeUnpin for CodeRelocation
impl UnwindSafe for CodeRelocation
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.