Trait mach_object::SymbolReference [] [src]

pub trait SymbolReference {
    fn desc(&self) -> u16;

    fn ref_type(&self) -> u8 { ... }
fn is_ref_dyn(&self) -> bool { ... }
fn lib_ordinal(&self) -> u8 { ... }
fn is_no_dead_strip(&self) -> bool { ... }
fn is_discarded(&self) -> bool { ... }
fn is_weak_ref(&self) -> bool { ... }
fn is_weak_def(&self) -> bool { ... }
fn is_ref_to_weak(&self) -> bool { ... }
fn is_arm_thumb_def(&self) -> bool { ... }
fn is_resolver(&self) -> bool { ... }
fn is_alt_entry(&self) -> bool { ... } }

Reference type and flags of symbol

Required Methods

raw desc value

Provided Methods

types of references

To simplify stripping of objects that use are used with the dynamic link editor, the static link editor marks the symbols defined an object that are referenced by a dynamicly bound object (dynamic shared libraries, bundles). With this marking strip knows not to strip these symbols.

The ordinal recorded references the libraries listed in the Mach-O file

symbol is not to be dead stripped

symbol is discarded

symbol is weak referenced

coalesed symbol is a weak definition

reference to a weak symbol

symbol is a Thumb function (ARM)

the function is actually a resolver function and should be called to get the address of the real function to use.

symbol is pinned to the previous content.

Implementors