pub struct Xadd128 {
pub dst_lo: XReg,
pub dst_hi: XReg,
pub lhs_lo: XReg,
pub lhs_hi: XReg,
pub rhs_lo: XReg,
pub rhs_hi: XReg,
}
Expand description
dst_hi:dst_lo = lhs_hi:lhs_lo + rhs_hi:rhs_lo
Fields§
§dst_lo: XReg
§dst_hi: XReg
§lhs_lo: XReg
§lhs_hi: XReg
§rhs_lo: XReg
§rhs_hi: XReg
Implementations§
Trait Implementations§
Source§impl From<Xadd128> for ExtendedOp
impl From<Xadd128> for ExtendedOp
impl Copy for Xadd128
impl Eq for Xadd128
impl StructuralPartialEq for Xadd128
Auto Trait Implementations§
impl Freeze for Xadd128
impl RefUnwindSafe for Xadd128
impl Send for Xadd128
impl Sync for Xadd128
impl Unpin for Xadd128
impl UnwindSafe for Xadd128
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more