class documentation

class LogicalAddressSegmentIndex(_AbstractAddress):

View In Hierarchy

Representation of a logical address based on a segment index.

Examples

>>> addr = address.LogicalAddressSegmentIndex(0x33, 0xfffff800c99455b0L)
>>> hex(addr.offset)
'0xfffff800c99455b0L'
>>> print(addr)
0x33:0xfffff800c99455b0
Method __init__ Initializes a LogicalAddress from an offset and a segment index.
Property segment_index Property: The segment index of the logical address.
Method translate Translates this virtual address to a physical address, if it is mapped at the specified context.
Method __repr__ Undocumented
Method __str__ Undocumented
Instance Variable _offset Undocumented
Instance Variable _index Undocumented
Instance Variable _formatter Undocumented
Method _pack Pack a LogicalAddressSegmentIndex to its high level representation.
Method _is_comparable Whether two address objects are comparable or not.
Method _address_data Undocumented

Inherited from _AbstractAddress:

Property offset Property: The offset of the address.
Method __eq__ Undocumented
Method __ne__ Undocumented
Method __lt__ Undocumented
Method __le__ Undocumented
Method __gt__ Undocumented
Method __ge__ Undocumented
Method __iadd__ Undocumented
Method __isub__ Undocumented
Method __add__ Undocumented
Method __sub__ Undocumented
Method format_as_html This method gets an html formatting string representation for this class instance.
Class Variable _unique_count Undocumented
Class Method _unique_id Undocumented
Static Method _unpack_segment_register Undocumented
Static Method _unpack Unpack a low level representation of an address to its high level representation.
Method _repr_html_ Representation used by Jupyter Notebook when an instance of the address classes is displayed in a cell.
def __init__(self, segment_index, offset, formatter=None):

Initializes a LogicalAddress from an offset and a segment index.

Examples

>>> print(address.LogicalAddressSegmentIndex(0x33, 0x10))
0x33:0x10
>>> print(address.LogicalAddressSegmentIndex(0x33, 256))
0x33:0x100
>>> print(address.LogicalAddressSegmentIndex(0x10, 0xfffff800c99455b0L))
0x10:0xfffff800c99455b0

Information

Parameterssegment_indexThe segment index of the logical address. (type: 16 bits integer)
offsetThe offset of the logical address. (type: integer)
formatterThe formatter for this address (type: Formatter)
RaisesTypeErrorif offset or segment_index are not integer.
ValueErrorif `offset` or `segment_index` can not be converted to an integer or `segment_index` is bigger than a 16 bits integer.
_offset =

Undocumented

_index =

Undocumented

_formatter =

Undocumented

@property
segment_index =

Property: The segment index of the logical address.

Examples

>>> address.LogicalAddressSegmentIndex(0x33, 0xfffff800c99455b0L).segment_index
0x33

Information

ReturnsAn integer.
def translate(self, context):

Translates this virtual address to a physical address, if it is mapped at the specified context.

Information

ParameterscontextThe reven2.trace.Context at which the translation should be attempted
ReturnsA PhysicalAddress if the current virtual address is mapped at the specified context, otherwise None
def _pack(self):

Pack a LogicalAddressSegmentIndex to its high level representation.

Information

ReturnsA reven_api.VirtualAddress.
def _is_comparable(self, other):

Whether two address objects are comparable or not.

def __repr__(self):

Undocumented

def __str__(self):

Undocumented

def _address_data(self):

Undocumented

API Documentation for reven2, generated by pydoctor 21.2.2 at 2021-10-01 07:18:12.