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 Valueoperand: OperandBundleDef<'ll>

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion 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