Home
last modified time | relevance | path

Searched refs:ret_place (Results 1 – 8 of 8) sorted by relevance

/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_cranelift/src/abi/
H A Dreturning.rs51 ret_place in codegen_return_param()
59 ret_place: Option<CPlace<'tcx>>, in codegen_with_call_return_arg()
65 Some(ret_place) if matches!(ret_place.inner(), CPlaceInner::Addr(_, None)) => { in codegen_with_call_return_arg()
69 (None, Some(ret_place.to_ptr().get_addr(fx))) in codegen_with_call_return_arg()
87 if let Some(ret_place) = ret_place { in codegen_with_call_return_arg()
93 if let Some(ret_place) = ret_place { in codegen_with_call_return_arg()
96 ret_place.write_cvalue( in codegen_with_call_return_arg()
103 if let Some(ret_place) = ret_place { in codegen_with_call_return_arg()
112 ret_place.write_cvalue(fx, result); in codegen_with_call_return_arg()
116 if let (Some(ret_place), Some(ret_temp_place)) = (ret_place, ret_temp_place) { in codegen_with_call_return_arg()
[all …]
H A Dmod.rs170 let ret_place = in codegen_fn_prelude() localVariable
172 assert_eq!(fx.local_map.push(ret_place), RETURN_PLACE); in codegen_fn_prelude()
450 let ret_place = destination.map(|(place, _)| place); in codegen_terminator_call() localVariable
451 self::returning::codegen_with_call_return_arg(fx, &fn_abi.ret, ret_place, |fx, return_ptr| { in codegen_terminator_call()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_codegen_cranelift/src/
H A Dcodegen_i128.rs34 let ret_place = CPlace::new_stack_slot(fx, lhs.layout()); in maybe_codegen() localVariable
40 ret_place.to_ptr().get_addr(fx), in maybe_codegen()
54 Some(ret_place.to_cvalue(fx)) in maybe_codegen()
140 let ret_place = CPlace::new_stack_slot(fx, lhs.layout()); in maybe_codegen() localVariable
141 ret_place.to_ptr().store(fx, ret, MemFlags::trusted()); in maybe_codegen()
142 Some(ret_place.to_cvalue(fx)) in maybe_codegen()
/dports/comms/xastir/Xastir-Release-2.1.8/src/
H A Dforked_getaddrinfo.c67 jmp_buf ret_place; variable
69 static sigjmp_buf ret_place; /* Jump address if alarm */ variable
86 siglongjmp(ret_place,0); in host_time_out()
200 if (sigsetjmp(ret_place,-1)!=0) in forked_getaddrinfo()
/dports/lang/rust/rustc-1.58.1-src/src/tools/miri/src/shims/
H A Dtls.rs256 let ret_place = MPlaceTy::dangling(this.machine.layouts.unit).into(); in schedule_windows_tls_dtors() localVariable
261 Some(&ret_place), in schedule_windows_tls_dtors()
279 let ret_place = MPlaceTy::dangling(this.machine.layouts.unit).into(); in schedule_macos_tls_dtor() localVariable
284 Some(&ret_place), in schedule_macos_tls_dtor()
322 let ret_place = MPlaceTy::dangling(this.machine.layouts.unit).into(); in schedule_next_pthread_tls_dtor() localVariable
327 Some(&ret_place), in schedule_next_pthread_tls_dtor()
H A Dpanic.rs94 let ret_place = MPlaceTy::dangling(this.machine.layouts.unit).into(); in handle_try() localVariable
99 Some(&ret_place), in handle_try()
151 let ret_place = MPlaceTy::dangling(this.machine.layouts.unit).into(); in handle_stack_pop() localVariable
156 Some(&ret_place), in handle_stack_pop()
/dports/lang/rust/rustc-1.58.1-src/src/tools/miri/src/
H A Deval.rs226 let ret_place = ecx.allocate(ecx.machine.layouts.isize, MiriMemoryKind::Machine.into())?; in create_ecx() localVariable
249 Some(&ret_place.into()), in create_ecx()
258 Some(&ret_place.into()), in create_ecx()
264 Ok((ecx, ret_place)) in create_ecx()
279 let (mut ecx, ret_place) = match create_ecx(tcx, entry_id, entry_type, config) { in eval_entry()
316 let return_code = ecx.read_scalar(&ret_place.into())?.to_machine_isize(&ecx)?; in eval_entry()
/dports/lang/rust/rustc-1.58.1-src/src/tools/miri/src/shims/posix/
H A Dthread.rs49 let ret_place = in pthread_create() localVariable
56 Some(&ret_place.into()), in pthread_create()