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: Type
Type of the argument value.
purpose: ArgumentPurpose
Special purpose of argument, or Normal
.
extension: ArgumentExtension
Method for extending argument to a full register.
legalized_to_pointer: bool
Was 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.