ArrayRegisterData

Struct ArrayRegisterData 

Source
pub struct ArrayRegisterData<const SIZE: usize, RB> { /* private fields */ }
Expand description

A collection of registers, backed by a stack allocated array.

SIZE is the maximum amount of registers this collection can hold.

Implementations§

Source§

impl<const SIZE: usize, RB: Integral> ArrayRegisterData<SIZE, RB>

Source

pub fn new(starting_register: Register, registers: ArrayVec<RB, SIZE>) -> Self

Create a new register collection backed by an array

  • The registers must be sequential according to the dwarf register numbers.
  • All registers that are in the collection must have their true value.
Source

pub fn bytes(&self) -> RegisterDataBytesIterator<'_, RB>

Get a byte iterator for this collection.

This iterator can be used to store the collection as bytes or to stream over a network. The iterated bytes include the length so that if you use the FromIterator implementation, it consumes only the bytes that are part of the collection. This means you can chain multiple of these iterators after each other.

use arrayvec::ArrayVec;
use stackdump_core::register_data::{ArrayRegisterData, RegisterData};

let regs1 = ArrayRegisterData::<4, u32>::new(stackdump_core::gimli::Arm::R0, ArrayVec::from([1, 2, 3, 4]));
let regs2 = ArrayRegisterData::<4, u32>::new(stackdump_core::gimli::Arm::R0, ArrayVec::from([5, 6, 7, 8]));

let mut intermediate_buffer = Vec::new();

intermediate_buffer.extend(regs1.bytes());
intermediate_buffer.extend(regs2.bytes());

let mut intermediate_iter = intermediate_buffer.iter().copied();

assert_eq!(regs1, ArrayRegisterData::<4, u32>::from_iter(&mut intermediate_iter));
assert_eq!(regs2, ArrayRegisterData::<4, u32>::from_iter(&mut intermediate_iter));

Trait Implementations§

Source§

impl<const SIZE: usize, RB: Clone> Clone for ArrayRegisterData<SIZE, RB>

Source§

fn clone(&self) -> ArrayRegisterData<SIZE, RB>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<const SIZE: usize, RB: Debug> Debug for ArrayRegisterData<SIZE, RB>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<const SIZE: usize, RB: Default> Default for ArrayRegisterData<SIZE, RB>

Source§

fn default() -> ArrayRegisterData<SIZE, RB>

Returns the “default value” for a type. Read more
Source§

impl<'de, const SIZE: usize, RB> Deserialize<'de> for ArrayRegisterData<SIZE, RB>
where RB: Deserialize<'de>,

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<const SIZE: usize, RB> FromIterator<u8> for ArrayRegisterData<SIZE, RB>
where RB: Integral, RB::Bytes: for<'a> TryFrom<&'a [u8]>,

Source§

fn from_iter<T: IntoIterator<Item = u8>>(iter: T) -> Self

Creates a value from an iterator. Read more
Source§

impl<const SIZE: usize, RB: PartialEq> PartialEq for ArrayRegisterData<SIZE, RB>

Source§

fn eq(&self, other: &ArrayRegisterData<SIZE, RB>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<const SIZE: usize, RB: Integral> RegisterData<RB> for ArrayRegisterData<SIZE, RB>

Source§

fn register(&self, register: Register) -> Option<RB>

Try to get the value of the given register. Returns None if the register is not present in this collection.
Source§

fn register_ref(&self, register: Register) -> Option<&RB>

Try to get a reference to the given register. Returns None if the register is not present in this collection.
Source§

fn register_mut(&mut self, register: Register) -> Option<&mut RB>

Try to get a mutable reference to the given register. Returns None if the register is not present in this collection.
Source§

impl<const SIZE: usize, RB> Serialize for ArrayRegisterData<SIZE, RB>
where RB: Serialize,

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<const SIZE: usize, RB: Eq> Eq for ArrayRegisterData<SIZE, RB>

Source§

impl<const SIZE: usize, RB> StructuralPartialEq for ArrayRegisterData<SIZE, RB>

Auto Trait Implementations§

§

impl<const SIZE: usize, RB> Freeze for ArrayRegisterData<SIZE, RB>
where RB: Freeze,

§

impl<const SIZE: usize, RB> RefUnwindSafe for ArrayRegisterData<SIZE, RB>
where RB: RefUnwindSafe,

§

impl<const SIZE: usize, RB> Send for ArrayRegisterData<SIZE, RB>
where RB: Send,

§

impl<const SIZE: usize, RB> Sync for ArrayRegisterData<SIZE, RB>
where RB: Sync,

§

impl<const SIZE: usize, RB> Unpin for ArrayRegisterData<SIZE, RB>
where RB: Unpin,

§

impl<const SIZE: usize, RB> UnwindSafe for ArrayRegisterData<SIZE, RB>
where RB: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,