pub struct LiftToSpvPtrs<'a> { /* private fields */ }
Expand description
Context for lifting QPtr
s to SPIR-V OpTypePointer
s.
See also passes::qptr::lift_to_spv_ptrs
(which drives this).
Implementations§
Source§impl<'a> LiftToSpvPtrs<'a>
impl<'a> LiftToSpvPtrs<'a>
pub fn new(cx: Rc<Context>, layout_config: &'a LayoutConfig) -> Self
pub fn lift_global_var(&self, global_var_decl: &mut GlobalVarDecl)
pub fn lift_all_funcs( &self, module: &mut Module, funcs: impl IntoIterator<Item = Func>, )
Auto Trait Implementations§
impl<'a> !Freeze for LiftToSpvPtrs<'a>
impl<'a> !RefUnwindSafe for LiftToSpvPtrs<'a>
impl<'a> !Send for LiftToSpvPtrs<'a>
impl<'a> !Sync for LiftToSpvPtrs<'a>
impl<'a> Unpin for LiftToSpvPtrs<'a>
impl<'a> !UnwindSafe for LiftToSpvPtrs<'a>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more