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 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

The underlying raw SBAddressRef.

Methods

impl SBAddress
[src]

[src]

Construct a new SBAddress.

[src]

Construct a new Some(SBAddress) or None.

[src]

Check whether or not this is a valid SBAddress value.

[src]

The address that represents the address as it is found in the object file that defines it.

[src]

The address as it has been loaded into memory by a target.

[src]

Get the address class for this address.

[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 with SYMBOL_CONTEXT_ITEM_.

[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.

[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.

[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.

[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.

[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.

[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.

Trait Implementations

impl Debug for SBAddress
[src]

[src]

Formats the value using the given formatter.

impl Drop for SBAddress
[src]

[src]

Executes the destructor for this type. Read more