Home
last modified time | relevance | path

Searched refs:StructArgument (Results 1 – 7 of 7) sorted by relevance

/wasmtime-44.0.1/cranelift/codegen/src/ir/
H A Dextfunc.rs239 StructArgument( enumerator
265 Self::StructArgument(size) => return write!(f, "sarg({size})"), in fmt()
285 Ok(Self::StructArgument(size)) in from_str()
386 (ArgumentPurpose::StructArgument(42), "sarg(42)"), in argument_purpose()
/wasmtime-44.0.1/cranelift/codegen/src/isa/riscv64/
H A Dabi.rs127 if let ir::ArgumentPurpose::StructArgument(_) = param.purpose { in compute_arg_locs()
/wasmtime-44.0.1/cranelift/codegen/src/isa/s390x/
H A Dabi.rs338 if let ir::ArgumentPurpose::StructArgument(_) = param.purpose { in compute_arg_locs()
/wasmtime-44.0.1/cranelift/codegen/src/isa/aarch64/
H A Dabi.rs205 if let ir::ArgumentPurpose::StructArgument(_) = param.purpose { in compute_arg_locs()
/wasmtime-44.0.1/cranelift/codegen/src/isa/x64/
H A Dabi.rs156 if let ir::ArgumentPurpose::StructArgument(size) = param.purpose { in compute_arg_locs()
/wasmtime-44.0.1/cranelift/codegen/src/verifier/
H A Dmod.rs1950 if let ArgumentPurpose::StructArgument(_) = param.purpose { in typecheck_function_signature()
/wasmtime-44.0.1/cranelift/reader/src/
H A Dparser.rs1417 arg.purpose = ArgumentPurpose::StructArgument(size.into()); in parse_abi_param()