Enum spirt::spv::lift::Merge

source ·
enum Merge<L> {
    Selection(L),
    Loop {
        loop_merge: L,
        loop_continue: L,
    },
}

Variants§

§

Selection(L)

§

Loop

Fields

§loop_merge: L

The label just after the whole loop, i.e. the break target.

§loop_continue: L

A label that the back-edge block post-dominates, i.e. some point in the loop body where looping around is inevitable (modulo breaking out of the loop through a do-while-style conditional back-edge).

SPIR-V calls this “the continue target”, but unlike other aspects of SPIR-V “structured control-flow”, there can be multiple valid choices (any that fit the post-dominator/“inevitability” definition).

Trait Implementations§

source§

impl<L: Clone> Clone for Merge<L>

source§

fn clone(&self) -> Merge<L>

Returns a copy 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<L: Copy> Copy for Merge<L>

Auto Trait Implementations§

§

impl<L> RefUnwindSafe for Merge<L>
where L: RefUnwindSafe,

§

impl<L> Send for Merge<L>
where L: Send,

§

impl<L> Sync for Merge<L>
where L: Sync,

§

impl<L> Unpin for Merge<L>
where L: Unpin,

§

impl<L> UnwindSafe for Merge<L>
where L: 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> 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,

§

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

§

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

§

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.