Struct lldb::SBAddress
[−]
[src]
pub struct SBAddress { pub raw: SBAddressRef, }
A section + offset based address class.
The SBAddress
class allows addresses to be relative to a section
that can move during runtime due to images (executables, shared
libraries, bundles, frameworks) being loaded at different
addresses than the addresses found in the object file that
represents them on disk. There are currently two types of addresses
for a section:
- file addresses
- load addresses
File addresses represents the virtual addresses that are in the 'on disk' object files. These virtual addresses are converted to be relative to unique sections scoped to the object file so that when/if the addresses slide when the images are loaded/unloaded in memory, we can easily track these changes without having to update every object (compile unit ranges, line tables, function address ranges, lexical block and inlined subroutine address ranges, global and static variables) each time an image is loaded or unloaded.
Load addresses represents the virtual addresses where each section
ends up getting loaded at runtime. Before executing a program, it
is common for all of the load addresses to be unresolved. When a
DynamicLoader
plug-in receives notification that shared libraries
have been loaded/unloaded, the load addresses of the main executable
and any images (shared libraries) will be resolved/unresolved. When
this happens, breakpoints that are in one of these sections can be
set/cleared.
Fields
raw: SBAddressRef
The underlying raw SBAddressRef
.
Methods
impl SBAddress
[src]
fn wrap(raw: SBAddressRef) -> SBAddress
[src]
Construct a new SBAddress
.
fn maybe_wrap(raw: SBAddressRef) -> Option<SBAddress>
[src]
Construct a new Some(SBAddress)
or None
.
fn is_valid(&self) -> bool
[src]
Check whether or not this is a valid SBAddress
value.
fn file_address(&self) -> u64
[src]
The address that represents the address as it is found in the object file that defines it.
fn load_address(&self, target: &SBTarget) -> u64
[src]
The address as it has been loaded into memory by a target.
fn address_class(&self) -> AddressClass
[src]
Get the address class for this address.
fn symbol_context(&self, resolve_scope: u32) -> SBSymbolContext
[src]
Get the SBSymbolContext
for a given address.
An address might refer to code or data from an existing
module, or it might refer to something on the stack or heap.
This will only return valid values if the address has been
resolved to a code or data address using
SBAddress::set_load_address
or SBTarget::resolve_load_address
.
resolve_scope
: Flags that specify what type of symbol context is needed by the caller. These flags have constants starting withSYMBOL_CONTEXT_ITEM_
.
fn module(&self) -> Option<SBModule>
[src]
Get the SBModule
for a given address.
An address might refer to code or data from an existing
module, or it might refer to something on the stack or heap.
This will only return valid values if the address has been
resolved to a code or data address using
SBAddress::set_load_address
or SBTarget::resolve_load_address
.
This grabs an individual object for a given address and is less efficient if you want more than one symbol related objects. Use one of the following when you want multiple debug symbol related objects for an address:
SBAddress::symbol_context
SBTarget::resolve_symbol_context_for_address
One or more bits from the SymbolContextItem
enumerations can be logically
OR'ed together to more efficiently retrieve multiple symbol objects.
fn compile_unit(&self) -> Option<SBCompileUnit>
[src]
Get the SBCompileUnit
for a given address.
An address might refer to code or data from an existing
module, or it might refer to something on the stack or heap.
This will only return valid values if the address has been
resolved to a code or data address using
SBAddress::set_load_address
or SBTarget::resolve_load_address
.
This grabs an individual object for a given address and is less efficient if you want more than one symbol related objects. Use one of the following when you want multiple debug symbol related objects for an address:
SBAddress::symbol_context
SBTarget::resolve_symbol_context_for_address
One or more bits from the SymbolContextItem
enumerations can be logically
OR'ed together to more efficiently retrieve multiple symbol objects.
fn function(&self) -> Option<SBFunction>
[src]
Get the SBFunction
for a given address.
An address might refer to code or data from an existing
module, or it might refer to something on the stack or heap.
This will only return valid values if the address has been
resolved to a code or data address using
SBAddress::set_load_address
or SBTarget::resolve_load_address
.
This grabs an individual object for a given address and is less efficient if you want more than one symbol related objects. Use one of the following when you want multiple debug symbol related objects for an address:
SBAddress::symbol_context
SBTarget::resolve_symbol_context_for_address
One or more bits from the SymbolContextItem
enumerations can be logically
OR'ed together to more efficiently retrieve multiple symbol objects.
fn block(&self) -> Option<SBBlock>
[src]
Get the SBBlock
for a given address.
An address might refer to code or data from an existing
module, or it might refer to something on the stack or heap.
This will only return valid values if the address has been
resolved to a code or data address using
SBAddress::set_load_address
or SBTarget::resolve_load_address
.
This grabs an individual object for a given address and is less efficient if you want more than one symbol related objects. Use one of the following when you want multiple debug symbol related objects for an address:
SBAddress::symbol_context
SBTarget::resolve_symbol_context_for_address
One or more bits from the SymbolContextItem
enumerations can be logically
OR'ed together to more efficiently retrieve multiple symbol objects.
fn symbol(&self) -> Option<SBSymbol>
[src]
Get the SBSymbol
for a given address.
An address might refer to code or data from an existing
module, or it might refer to something on the stack or heap.
This will only return valid values if the address has been
resolved to a code or data address using
SBAddress::set_load_address
or SBTarget::resolve_load_address
.
This grabs an individual object for a given address and is less efficient if you want more than one symbol related objects. Use one of the following when you want multiple debug symbol related objects for an address:
SBAddress::symbol_context
SBTarget::resolve_symbol_context_for_address
One or more bits from the SymbolContextItem
enumerations can be logically
OR'ed together to more efficiently retrieve multiple symbol objects.
fn line_entry(&self) -> Option<SBLineEntry>
[src]
Get the SBLineEntry
for a given address.
An address might refer to code or data from an existing
module, or it might refer to something on the stack or heap.
This will only return valid values if the address has been
resolved to a code or data address using
SBAddress::set_load_address
or SBTarget::resolve_load_address
.
This grabs an individual object for a given address and is less efficient if you want more than one symbol related objects. Use one of the following when you want multiple debug symbol related objects for an address:
SBAddress::symbol_context
SBTarget::resolve_symbol_context_for_address
One or more bits from the SymbolContextItem
enumerations can be logically
OR'ed together to more efficiently retrieve multiple symbol objects.