Struct gimli::CommonInformationEntry[][src]

pub struct CommonInformationEntry<Section, R, Offset = usize> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
{ /* fields omitted */ }

A Common Information Entry holds information that is shared among many Frame Description Entries. There is at least one CIE in every non-empty .debug_frame section.

Methods

impl<Section, R, Offset> CommonInformationEntry<Section, R, Offset> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
[src]

Signal Safe Methods

These methods are guaranteed not to allocate, acquire locks, or perform any other signal-unsafe operations.

Get the offset of this entry from the start of its containing section.

Iterate over this CIE's initial instructions.

Can be used with FallibleIterator.

A constant that gives the number of bytes of the CIE structure, not including the length field itself (see Section 7.2.2). The size of the length field plus the value of length must be an integral multiple of the address size.

A version number (see Section 7.23). This number is specific to the call frame information and is independent of the DWARF version number.

Get the augmentation data, if any exists.

The only augmentation understood by gimli is that which is defined by .eh_frame.

A constant that is factored out of all advance location instructions (see Section 6.4.2.1).

A constant that is factored out of certain offset instructions (see below). The resulting value is (operand * data_alignment_factor).

An unsigned ... constant that indicates which column in the rule table represents the return address of the function. Note that this column might not correspond to an actual machine register.

Trait Implementations

impl<Section: Clone, R: Clone, Offset: Clone> Clone for CommonInformationEntry<Section, R, Offset> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<Section: Debug, R: Debug, Offset: Debug> Debug for CommonInformationEntry<Section, R, Offset> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
[src]

Formats the value using the given formatter. Read more

impl<Section: PartialEq, R: PartialEq, Offset: PartialEq> PartialEq for CommonInformationEntry<Section, R, Offset> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<Section: Eq, R: Eq, Offset: Eq> Eq for CommonInformationEntry<Section, R, Offset> where
    R: Reader<Offset = Offset>,
    Offset: ReaderOffset,
    Section: UnwindSection<R>,
    Section::Offset: UnwindOffset<R::Offset>, 
[src]

Auto Trait Implementations

impl<Section, R, Offset> Send for CommonInformationEntry<Section, R, Offset> where
    Offset: Send,
    R: Send,
    Section: Send

impl<Section, R, Offset> Sync for CommonInformationEntry<Section, R, Offset> where
    Offset: Sync,
    R: Sync,
    Section: Sync