pub struct Funclet<'ll> {
    cleanuppad: &'ll Value,
    operand: OperandBundleDef<'ll>,
}
Expand description

A structure representing an active landing pad for the duration of a basic block.

Each Block may contain an instance of this, indicating whether the block is part of a landing pad or not. This is used to make decision about whether to emit invoke instructions (e.g., in a landing pad we don’t continue to use invoke) and also about various function call metadata.

For GNU exceptions (landingpad + resume instructions) this structure is just a bunch of None instances (not too interesting), but for MSVC exceptions (cleanuppad + cleanupret instructions) this contains data. When inside of a landing pad, each function call in LLVM IR needs to be annotated with which landing pad it’s a part of. This is accomplished via the OperandBundleDef value created for MSVC landing pads.

Fields§

§cleanuppad: &'ll Value§operand: OperandBundleDef<'ll>

Implementations§

source§

impl<'ll> Funclet<'ll>

source

pub fn new(cleanuppad: &'ll Value) -> Self

source

pub fn cleanuppad(&self) -> &'ll Value

source

pub fn bundle(&self) -> &OperandBundleDef<'ll>

Auto Trait Implementations§

§

impl<'ll> !RefUnwindSafe for Funclet<'ll>

§

impl<'ll> !Send for Funclet<'ll>

§

impl<'ll> !Sync for Funclet<'ll>

§

impl<'ll> Unpin for Funclet<'ll>

§

impl<'ll> !UnwindSafe for Funclet<'ll>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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, U> TryFrom<U> for Twhere 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 Twhere 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.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 16 bytes