Struct gimli::read::BaseAddresses [−][src]
pub struct BaseAddresses { pub eh_frame_hdr: SectionBaseAddresses, pub eh_frame: SectionBaseAddresses, }
Expand description
Optional base addresses for the relative DW_EH_PE_*
encoded pointers.
During CIE/FDE parsing, if a relative pointer is encountered for a base address that is unknown, an Err will be returned.
use gimli::BaseAddresses; let bases = BaseAddresses::default() .set_eh_frame_hdr(address_of_eh_frame_hdr_section_in_memory) .set_eh_frame(address_of_eh_frame_section_in_memory) .set_text(address_of_text_section_in_memory) .set_got(address_of_got_section_in_memory);
Fields
eh_frame_hdr: SectionBaseAddresses
The base addresses to use for pointers in the .eh_frame_hdr
section.
eh_frame: SectionBaseAddresses
The base addresses to use for pointers in the .eh_frame
section.
Implementations
Set the .eh_frame_hdr
section base address.
Set the .eh_frame
section base address.
Trait Implementations
Returns the “default value” for a type. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more