| /wasmtime-44.0.1/crates/fuzzing/src/generators/ |
| H A D | stacks.rs | 41 ReturnCall(u32), enumerator 88 3 => Op::ReturnCall(*u.choose(funcs_with_same_results)?), in arbitrary_funcs() 94 if let Some(Op::ReturnCall(_)) = f.ops.last() { in arbitrary_funcs() 330 Op::ReturnCall(f) => { in wasm() 335 body.instruction(&Instruction::ReturnCall(f + num_imported_funcs)); in wasm()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/pulley_shared/inst/ |
| H A D | mod.rs | 231 Inst::ReturnCall { info } => { in pulley_get_operands() 487 Inst::ReturnCall { .. } | Inst::ReturnIndirectCall { .. } => MachTerminator::RetCall, in is_term() 507 Inst::ReturnCall { .. } | Inst::ReturnIndirectCall { .. } => CallType::TailCall, in call_type() 727 Inst::ReturnCall { info } => { in print_with_state()
|
| H A D | emit.rs | 278 Inst::ReturnCall { info } => { in pulley_emit()
|
| /wasmtime-44.0.1/cranelift/codegen/src/ |
| H A D | inline.rs | 151 opcode: opcode @ ir::Opcode::Call | opcode @ ir::Opcode::ReturnCall, in do_inlining() 467 debug_assert_eq!(call_opcode, ir::Opcode::ReturnCall); in inline_one() 812 opcode: ir::Opcode::ReturnCall, in fixup_inst_that_returns() 1118 opcode == ir::Opcode::ReturnCall || opcode == ir::Opcode::TryCall, in split_off_return_block()
|
| /wasmtime-44.0.1/cranelift/interpreter/src/ |
| H A D | step.rs | 319 Opcode::ReturnCall | Opcode::ReturnCallIndirect, in step() 392 Opcode::Call | Opcode::ReturnCall => { in step() 421 Opcode::ReturnCall => ControlFlow::ReturnCall, in step() 440 Opcode::ReturnCallIndirect => ControlFlow::ReturnCall, in step() 1399 ReturnCall(&'a Function, SmallVec<[DataValue; 1]>), enumerator
|
| H A D | interpreter.rs | 133 ControlFlow::ReturnCall(callee, args) => { in block()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/riscv64/inst/ |
| H A D | mod.rs | 368 Inst::ReturnCall { info } => { in riscv64_get_operands() 771 Inst::ReturnCall { .. } | Inst::ReturnCallInd { .. } => CallType::TailCall, in call_type() 784 &Inst::ReturnCall { .. } | &Inst::ReturnCallInd { .. } => MachTerminator::RetCall, in is_term() 1359 &MInst::ReturnCall { ref info } => { in print_with_state()
|
| H A D | emit.rs | 170 | Inst::ReturnCall { .. } in expected_vstate() 263 | Inst::ReturnCall { .. } in emit() 1295 &Inst::ReturnCall { ref info } => { in emit_uncompressed()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/pulley_shared/ |
| H A D | inst.isle | 55 (ReturnCall (info BoxReturnCallInfo)) 752 ;; Helper for creating `MInst.ReturnCall` instructions. 755 (SideEffectNoResult.Inst (MInst.ReturnCall info)))
|
| /wasmtime-44.0.1/cranelift/fuzzgen/src/ |
| H A D | function_generator.rs | 90 Opcode::ReturnCall => builder.ins().return_call(func_ref, &actuals), in insert_call_to_function() 823 | Opcode::ReturnCall 1553 BlockTerminator::TailCall(_) => Opcode::ReturnCall, in insert_terminator()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/s390x/inst/ |
| H A D | mod.rs | 224 | Inst::ReturnCall { .. } in available_in_isa() 972 Inst::ReturnCall { info } => { in s390x_get_operands() 1153 &Inst::ReturnCall { .. } => MachTerminator::RetCall, in is_term() 1178 Inst::ReturnCall { .. } => CallType::TailCall, in call_type() 3356 &Inst::ReturnCall { ref info } => { in print_with_state()
|
| H A D | emit.rs | 3497 &Inst::ReturnCall { ref info } => { in emit_with_alloc_consumer()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/aarch64/inst/ |
| H A D | mod.rs | 839 Inst::ReturnCall { info } => { in aarch64_get_operands() 1014 Inst::ReturnCall { .. } | Inst::ReturnCallInd { .. } => CallType::TailCall, in call_type() 1023 &Inst::ReturnCall { .. } | &Inst::ReturnCallInd { .. } => MachTerminator::RetCall, in is_term() 2601 &Inst::ReturnCall { ref info } => { in print_with_state()
|
| H A D | emit.rs | 3046 &Inst::ReturnCall { ref info } => { in emit()
|
| /wasmtime-44.0.1/cranelift/codegen/src/verifier/ |
| H A D | mod.rs | 925 if patchable && (opcode == Opcode::ReturnCall || opcode == Opcode::ReturnCallIndirect) { in verify_callee_patchability() 1656 opcode: Opcode::ReturnCall, in typecheck_return()
|
| /wasmtime-44.0.1/winch/codegen/src/codegen/ |
| H A D | mod.rs | 1362 | Operator::ReturnCall { .. } in fuel_before_visit_op()
|
| /wasmtime-44.0.1/cranelift/codegen/src/ir/ |
| H A D | dfg.rs | 1110 ir::Opcode::ReturnCall | ir::Opcode::ReturnCallIndirect => None, in non_tail_call_or_try_call_signature()
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/riscv64/ |
| H A D | inst.isle | 121 (ReturnCall (info BoxReturnCallInfo)) 3129 ;; Helper for creating `MInst.ReturnCall` instructions. 3132 (SideEffectNoResult.Inst (MInst.ReturnCall info)))
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/s390x/ |
| H A D | inst.isle | 927 (ReturnCall 2825 ;; Helper for emitting `MInst.ReturnCall` instructions. 2828 (SideEffectNoResult.Inst (MInst.ReturnCall info)))
|
| /wasmtime-44.0.1/cranelift/codegen/src/isa/aarch64/ |
| H A D | inst.isle | 815 (ReturnCall (info BoxReturnCallInfo)) 4510 ;; Helper for creating `MInst.ReturnCall` instructions. 4513 (SideEffectNoResult.Inst (MInst.ReturnCall info)))
|
| /wasmtime-44.0.1/crates/cranelift/src/ |
| H A D | func_environ.rs | 427 | Operator::ReturnCall { .. } in fuel_before_op()
|
| /wasmtime-44.0.1/crates/cranelift/src/translate/ |
| H A D | code_translator.rs | 748 Operator::ReturnCall { function_index } => { in translate_operator()
|