Struct cranelift_codegen::ir::AbiParam [−][src]
pub struct AbiParam {
pub value_type: Type,
pub purpose: ArgumentPurpose,
pub extension: ArgumentExtension,
pub location: ArgumentLoc,
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.
location: ArgumentLocABI-specific location of this argument, or Unassigned for arguments that have not yet
been legalized.
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.
Create a parameter for a special-purpose 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.