Struct cranelift_codegen::ir::AbiParam [−][src]
pub struct AbiParam {
pub value_type: Type,
pub purpose: ArgumentPurpose,
pub extension: ArgumentExtension,
pub legalized_to_pointer: bool,
}Expand description
Function parameter or return value descriptor.
This describes the value type being passed to or from a function along with flags that affect how the argument is passed.
Fields
value_type: TypeType of the argument value.
purpose: ArgumentPurposeSpecial purpose of argument, or Normal.
extension: ArgumentExtensionMethod for extending argument to a full register.
legalized_to_pointer: boolWas the argument converted to pointer during legalization?
Implementations
Create a special-purpose parameter that is not (yet) bound to a specific register.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AbiParam
impl UnwindSafe for AbiParam
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.