Searched refs:TryCallRet (Results 1 – 8 of 8) sorted by relevance
| /wasmtime-44.0.1/cranelift/codegen/src/ir/ |
| H A D | instructions.rs | 208 TryCallRet(u32), enumerator 225 BlockArg::TryCallRet(i) => (1, i), in encode_as_value() 240 1 => BlockArg::TryCallRet(payload), in decode_from_value() 268 BlockArg::TryCallRet(i) => write!(f, "ret{i}"), in fmt()
|
| /wasmtime-44.0.1/cranelift/codegen/src/ |
| H A D | inline.rs | 668 (0..returns_len).map(|i| ir::BlockArg::TryCallRet(i)), in fixup_inlined_call_exception_tables() 981 ir::BlockArg::TryCallRet(_) | ir::BlockArg::TryCallExn(_) => arg, in map_block_call() 1136 arg == ir::BlockArg::TryCallRet(i) in split_off_return_block() 1164 ir::BlockArg::TryCallRet(i) => { in split_off_return_block()
|
| /wasmtime-44.0.1/cranelift/reader/src/ |
| H A D | lexer.rs | 52 TryCallRet(u32), // ret123 enumerator 360 "ret" => Some(Token::TryCallRet(number)), in numbered_entity()
|
| H A D | parser.rs | 2415 Some(Token::TryCallRet(i)) => { in parse_block_call_arg() 2417 Ok(BlockArg::TryCallRet(i)) in parse_block_call_arg()
|
| /wasmtime-44.0.1/cranelift/codegen/src/verifier/ |
| H A D | mod.rs | 1519 BlockArg::TryCallRet(_) | BlockArg::TryCallExn(_) => { in block_call_arg_ty() 1538 (BlockArg::TryCallRet(i), BlockCallTargetType::ExNormalRet) in block_call_arg_ty() 1543 (BlockArg::TryCallRet(_), BlockCallTargetType::ExNormalRet) => { in block_call_arg_ty() 1551 (BlockArg::TryCallRet(_), _) => { in block_call_arg_ty()
|
| /wasmtime-44.0.1/cranelift/codegen/src/machinst/ |
| H A D | lower.rs | 1100 BlockArg::TryCallRet(i) => {
|
| /wasmtime-44.0.1/crates/cranelift/src/ |
| H A D | compiler.rs | 1402 .map(|i| ir::BlockArg::TryCallRet(i.try_into().unwrap())), in array_to_wasm_trampoline()
|
| H A D | func_environ.rs | 2224 args.push(BlockArg::TryCallRet(u32::try_from(i).unwrap())); in exception_table()
|