]> git.lizzy.rs Git - rust.git/blob - src/shims/foreign_items.rs
Auto merge of #2141 - saethlin:early-diagnostics-ice, r=RalfJung
[rust.git] / src / shims / foreign_items.rs
1 use std::{collections::hash_map::Entry, iter};
2
3 use log::trace;
4
5 use rustc_apfloat::Float;
6 use rustc_ast::expand::allocator::AllocatorKind;
7 use rustc_hir::{
8     def::DefKind,
9     def_id::{CrateNum, DefId, LOCAL_CRATE},
10 };
11 use rustc_middle::middle::{
12     codegen_fn_attrs::CodegenFnAttrFlags, dependency_format::Linkage,
13     exported_symbols::ExportedSymbol,
14 };
15 use rustc_middle::mir;
16 use rustc_middle::ty;
17 use rustc_session::config::CrateType;
18 use rustc_span::Symbol;
19 use rustc_target::{
20     abi::{Align, Size},
21     spec::abi::Abi,
22 };
23
24 use super::backtrace::EvalContextExt as _;
25 use crate::helpers::convert::Truncate;
26 use crate::*;
27
28 /// Returned by `emulate_foreign_item_by_name`.
29 pub enum EmulateByNameResult<'mir, 'tcx> {
30     /// The caller is expected to jump to the return block.
31     NeedsJumping,
32     /// Jumping has already been taken care of.
33     AlreadyJumped,
34     /// A MIR body has been found for the function
35     MirBody(&'mir mir::Body<'tcx>, ty::Instance<'tcx>),
36     /// The item is not supported.
37     NotSupported,
38 }
39
40 impl<'mir, 'tcx: 'mir> EvalContextExt<'mir, 'tcx> for crate::MiriEvalContext<'mir, 'tcx> {}
41 pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriEvalContextExt<'mir, 'tcx> {
42     /// Returns the minimum alignment for the target architecture for allocations of the given size.
43     fn min_align(&self, size: u64, kind: MiriMemoryKind) -> Align {
44         let this = self.eval_context_ref();
45         // List taken from `library/std/src/sys/common/alloc.rs`.
46         // This list should be kept in sync with the one from libstd.
47         let min_align = match this.tcx.sess.target.arch.as_ref() {
48             "x86" | "arm" | "mips" | "powerpc" | "powerpc64" | "asmjs" | "wasm32" => 8,
49             "x86_64" | "aarch64" | "mips64" | "s390x" | "sparc64" => 16,
50             arch => bug!("Unsupported target architecture: {}", arch),
51         };
52         // Windows always aligns, even small allocations.
53         // Source: <https://support.microsoft.com/en-us/help/286470/how-to-use-pageheap-exe-in-windows-xp-windows-2000-and-windows-server>
54         // But jemalloc does not, so for the C heap we only align if the allocation is sufficiently big.
55         if kind == MiriMemoryKind::WinHeap || size >= min_align {
56             return Align::from_bytes(min_align).unwrap();
57         }
58         // We have `size < min_align`. Round `size` *down* to the next power of two and use that.
59         fn prev_power_of_two(x: u64) -> u64 {
60             let next_pow2 = x.next_power_of_two();
61             if next_pow2 == x {
62                 // x *is* a power of two, just use that.
63                 x
64             } else {
65                 // x is between two powers, so next = 2*prev.
66                 next_pow2 / 2
67             }
68         }
69         Align::from_bytes(prev_power_of_two(size)).unwrap()
70     }
71
72     fn malloc(
73         &mut self,
74         size: u64,
75         zero_init: bool,
76         kind: MiriMemoryKind,
77     ) -> InterpResult<'tcx, Pointer<Option<Tag>>> {
78         let this = self.eval_context_mut();
79         if size == 0 {
80             Ok(Pointer::null())
81         } else {
82             let align = this.min_align(size, kind);
83             let ptr = this.allocate_ptr(Size::from_bytes(size), align, kind.into())?;
84             if zero_init {
85                 // We just allocated this, the access is definitely in-bounds.
86                 this.write_bytes_ptr(ptr.into(), iter::repeat(0u8).take(size as usize)).unwrap();
87             }
88             Ok(ptr.into())
89         }
90     }
91
92     fn free(&mut self, ptr: Pointer<Option<Tag>>, kind: MiriMemoryKind) -> InterpResult<'tcx> {
93         let this = self.eval_context_mut();
94         if !this.ptr_is_null(ptr)? {
95             this.deallocate_ptr(ptr, None, kind.into())?;
96         }
97         Ok(())
98     }
99
100     fn realloc(
101         &mut self,
102         old_ptr: Pointer<Option<Tag>>,
103         new_size: u64,
104         kind: MiriMemoryKind,
105     ) -> InterpResult<'tcx, Pointer<Option<Tag>>> {
106         let this = self.eval_context_mut();
107         let new_align = this.min_align(new_size, kind);
108         if this.ptr_is_null(old_ptr)? {
109             if new_size == 0 {
110                 Ok(Pointer::null())
111             } else {
112                 let new_ptr =
113                     this.allocate_ptr(Size::from_bytes(new_size), new_align, kind.into())?;
114                 Ok(new_ptr.into())
115             }
116         } else {
117             if new_size == 0 {
118                 this.deallocate_ptr(old_ptr, None, kind.into())?;
119                 Ok(Pointer::null())
120             } else {
121                 let new_ptr = this.reallocate_ptr(
122                     old_ptr,
123                     None,
124                     Size::from_bytes(new_size),
125                     new_align,
126                     kind.into(),
127                 )?;
128                 Ok(new_ptr.into())
129             }
130         }
131     }
132
133     /// Lookup the body of a function that has `link_name` as the symbol name.
134     fn lookup_exported_symbol(
135         &mut self,
136         link_name: Symbol,
137     ) -> InterpResult<'tcx, Option<(&'mir mir::Body<'tcx>, ty::Instance<'tcx>)>> {
138         let this = self.eval_context_mut();
139         let tcx = this.tcx.tcx;
140
141         // If the result was cached, just return it.
142         // (Cannot use `or_insert` since the code below might have to throw an error.)
143         let entry = this.machine.exported_symbols_cache.entry(link_name);
144         let instance = *match entry {
145             Entry::Occupied(e) => e.into_mut(),
146             Entry::Vacant(e) => {
147                 // Find it if it was not cached.
148                 let mut instance_and_crate: Option<(ty::Instance<'_>, CrateNum)> = None;
149                 // `dependency_formats` includes all the transitive informations needed to link a crate,
150                 // which is what we need here since we need to dig out `exported_symbols` from all transitive
151                 // dependencies.
152                 let dependency_formats = tcx.dependency_formats(());
153                 let dependency_format = dependency_formats
154                     .iter()
155                     .find(|(crate_type, _)| *crate_type == CrateType::Executable)
156                     .expect("interpreting a non-executable crate");
157                 for cnum in iter::once(LOCAL_CRATE).chain(
158                     dependency_format.1.iter().enumerate().filter_map(|(num, &linkage)| {
159                         (linkage != Linkage::NotLinked).then_some(CrateNum::new(num + 1))
160                     }),
161                 ) {
162                     // We can ignore `_export_info` here: we are a Rust crate, and everything is exported
163                     // from a Rust crate.
164                     for &(symbol, _export_info) in tcx.exported_symbols(cnum) {
165                         if let ExportedSymbol::NonGeneric(def_id) = symbol {
166                             let attrs = tcx.codegen_fn_attrs(def_id);
167                             let symbol_name = if let Some(export_name) = attrs.export_name {
168                                 export_name
169                             } else if attrs.flags.contains(CodegenFnAttrFlags::NO_MANGLE) {
170                                 tcx.item_name(def_id)
171                             } else {
172                                 // Skip over items without an explicitly defined symbol name.
173                                 continue;
174                             };
175                             if symbol_name == link_name {
176                                 if let Some((original_instance, original_cnum)) = instance_and_crate
177                                 {
178                                     // Make sure we are consistent wrt what is 'first' and 'second'.
179                                     let original_span =
180                                         tcx.def_span(original_instance.def_id()).data();
181                                     let span = tcx.def_span(def_id).data();
182                                     if original_span < span {
183                                         throw_machine_stop!(
184                                             TerminationInfo::MultipleSymbolDefinitions {
185                                                 link_name,
186                                                 first: original_span,
187                                                 first_crate: tcx.crate_name(original_cnum),
188                                                 second: span,
189                                                 second_crate: tcx.crate_name(cnum),
190                                             }
191                                         );
192                                     } else {
193                                         throw_machine_stop!(
194                                             TerminationInfo::MultipleSymbolDefinitions {
195                                                 link_name,
196                                                 first: span,
197                                                 first_crate: tcx.crate_name(cnum),
198                                                 second: original_span,
199                                                 second_crate: tcx.crate_name(original_cnum),
200                                             }
201                                         );
202                                     }
203                                 }
204                                 if !matches!(tcx.def_kind(def_id), DefKind::Fn | DefKind::AssocFn) {
205                                     throw_ub_format!(
206                                         "attempt to call an exported symbol that is not defined as a function"
207                                     );
208                                 }
209                                 instance_and_crate = Some((ty::Instance::mono(tcx, def_id), cnum));
210                             }
211                         }
212                     }
213                 }
214
215                 e.insert(instance_and_crate.map(|ic| ic.0))
216             }
217         };
218         match instance {
219             None => Ok(None), // no symbol with this name
220             Some(instance) => Ok(Some((this.load_mir(instance.def, None)?, instance))),
221         }
222     }
223
224     /// Emulates calling a foreign item, failing if the item is not supported.
225     /// This function will handle `goto_block` if needed.
226     /// Returns Ok(None) if the foreign item was completely handled
227     /// by this function.
228     /// Returns Ok(Some(body)) if processing the foreign item
229     /// is delegated to another function.
230     fn emulate_foreign_item(
231         &mut self,
232         def_id: DefId,
233         abi: Abi,
234         args: &[OpTy<'tcx, Tag>],
235         ret: Option<(&PlaceTy<'tcx, Tag>, mir::BasicBlock)>,
236         unwind: StackPopUnwind,
237     ) -> InterpResult<'tcx, Option<(&'mir mir::Body<'tcx>, ty::Instance<'tcx>)>> {
238         let this = self.eval_context_mut();
239         let link_name = this.item_link_name(def_id);
240         let tcx = this.tcx.tcx;
241
242         // First: functions that diverge.
243         let (dest, ret) = match ret {
244             None =>
245                 match &*link_name.as_str() {
246                     "miri_start_panic" => {
247                         // `check_shim` happens inside `handle_miri_start_panic`.
248                         this.handle_miri_start_panic(abi, link_name, args, unwind)?;
249                         return Ok(None);
250                     }
251                     // This matches calls to the foreign item `panic_impl`.
252                     // The implementation is provided by the function with the `#[panic_handler]` attribute.
253                     "panic_impl" => {
254                         // We don't use `check_shim` here because we are just forwarding to the lang
255                         // item. Argument count checking will be performed when the returned `Body` is
256                         // called.
257                         this.check_abi_and_shim_symbol_clash(abi, Abi::Rust, link_name)?;
258                         let panic_impl_id = tcx.lang_items().panic_impl().unwrap();
259                         let panic_impl_instance = ty::Instance::mono(tcx, panic_impl_id);
260                         return Ok(Some((
261                             &*this.load_mir(panic_impl_instance.def, None)?,
262                             panic_impl_instance,
263                         )));
264                     }
265                     #[rustfmt::skip]
266                     | "exit"
267                     | "ExitProcess"
268                     => {
269                         let exp_abi = if link_name.as_str() == "exit" {
270                             Abi::C { unwind: false }
271                         } else {
272                             Abi::System { unwind: false }
273                         };
274                         let [code] = this.check_shim(abi, exp_abi, link_name, args)?;
275                         // it's really u32 for ExitProcess, but we have to put it into the `Exit` variant anyway
276                         let code = this.read_scalar(code)?.to_i32()?;
277                         throw_machine_stop!(TerminationInfo::Exit(code.into()));
278                     }
279                     "abort" => {
280                         let [] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
281                         throw_machine_stop!(TerminationInfo::Abort(
282                             "the program aborted execution".to_owned()
283                         ))
284                     }
285                     _ => {
286                         if let Some(body) = this.lookup_exported_symbol(link_name)? {
287                             return Ok(Some(body));
288                         }
289                         this.handle_unsupported(format!(
290                             "can't call (diverging) foreign function: {}",
291                             link_name
292                         ))?;
293                         return Ok(None);
294                     }
295                 },
296             Some(p) => p,
297         };
298
299         // Second: functions that return.
300         match this.emulate_foreign_item_by_name(link_name, abi, args, dest, ret)? {
301             EmulateByNameResult::NeedsJumping => {
302                 trace!("{:?}", this.dump_place(**dest));
303                 this.go_to_block(ret);
304             }
305             EmulateByNameResult::AlreadyJumped => (),
306             EmulateByNameResult::MirBody(mir, instance) => return Ok(Some((mir, instance))),
307             EmulateByNameResult::NotSupported => {
308                 if let Some(body) = this.lookup_exported_symbol(link_name)? {
309                     return Ok(Some(body));
310                 }
311
312                 this.handle_unsupported(format!("can't call foreign function: {}", link_name))?;
313                 return Ok(None);
314             }
315         }
316
317         Ok(None)
318     }
319
320     /// Emulates calling the internal __rust_* allocator functions
321     fn emulate_allocator(
322         &mut self,
323         symbol: Symbol,
324         default: impl FnOnce(&mut MiriEvalContext<'mir, 'tcx>) -> InterpResult<'tcx>,
325     ) -> InterpResult<'tcx, EmulateByNameResult<'mir, 'tcx>> {
326         let this = self.eval_context_mut();
327
328         let allocator_kind = if let Some(allocator_kind) = this.tcx.allocator_kind(()) {
329             allocator_kind
330         } else {
331             // in real code, this symbol does not exist without an allocator
332             return Ok(EmulateByNameResult::NotSupported);
333         };
334
335         match allocator_kind {
336             AllocatorKind::Global => {
337                 let (body, instance) = this
338                     .lookup_exported_symbol(symbol)?
339                     .expect("symbol should be present if there is a global allocator");
340
341                 Ok(EmulateByNameResult::MirBody(body, instance))
342             }
343             AllocatorKind::Default => {
344                 default(this)?;
345                 Ok(EmulateByNameResult::NeedsJumping)
346             }
347         }
348     }
349
350     /// Emulates calling a foreign item using its name.
351     fn emulate_foreign_item_by_name(
352         &mut self,
353         link_name: Symbol,
354         abi: Abi,
355         args: &[OpTy<'tcx, Tag>],
356         dest: &PlaceTy<'tcx, Tag>,
357         ret: mir::BasicBlock,
358     ) -> InterpResult<'tcx, EmulateByNameResult<'mir, 'tcx>> {
359         let this = self.eval_context_mut();
360
361         // Here we dispatch all the shims for foreign functions. If you have a platform specific
362         // shim, add it to the corresponding submodule.
363         match &*link_name.as_str() {
364             // Miri-specific extern functions
365             "miri_static_root" => {
366                 let [ptr] = this.check_shim(abi, Abi::Rust, link_name, args)?;
367                 let ptr = this.read_pointer(ptr)?;
368                 let (alloc_id, offset, _) = this.ptr_get_alloc_id(ptr)?;
369                 if offset != Size::ZERO {
370                     throw_unsup_format!("pointer passed to miri_static_root must point to beginning of an allocated block");
371                 }
372                 this.machine.static_roots.push(alloc_id);
373             }
374
375             // Obtains the size of a Miri backtrace. See the README for details.
376             "miri_backtrace_size" => {
377                 this.handle_miri_backtrace_size(abi, link_name, args, dest)?;
378             }
379
380             // Obtains a Miri backtrace. See the README for details.
381             "miri_get_backtrace" => {
382                 // `check_shim` happens inside `handle_miri_get_backtrace`.
383                 this.handle_miri_get_backtrace(abi, link_name, args, dest)?;
384             }
385
386             // Resolves a Miri backtrace frame. See the README for details.
387             "miri_resolve_frame" => {
388                 // `check_shim` happens inside `handle_miri_resolve_frame`.
389                 this.handle_miri_resolve_frame(abi, link_name, args, dest)?;
390             }
391
392             // Writes the function and file names of a Miri backtrace frame into a user provided buffer. See the README for details.
393             "miri_resolve_frame_names" => {
394                 this.handle_miri_resolve_frame_names(abi, link_name, args)?;
395             }
396
397             // Standard C allocation
398             "malloc" => {
399                 let [size] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
400                 let size = this.read_scalar(size)?.to_machine_usize(this)?;
401                 let res = this.malloc(size, /*zero_init:*/ false, MiriMemoryKind::C)?;
402                 this.write_pointer(res, dest)?;
403             }
404             "calloc" => {
405                 let [items, len] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
406                 let items = this.read_scalar(items)?.to_machine_usize(this)?;
407                 let len = this.read_scalar(len)?.to_machine_usize(this)?;
408                 let size =
409                     items.checked_mul(len).ok_or_else(|| err_ub_format!("overflow during calloc size computation"))?;
410                 let res = this.malloc(size, /*zero_init:*/ true, MiriMemoryKind::C)?;
411                 this.write_pointer(res, dest)?;
412             }
413             "free" => {
414                 let [ptr] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
415                 let ptr = this.read_pointer(ptr)?;
416                 this.free(ptr, MiriMemoryKind::C)?;
417             }
418             "realloc" => {
419                 let [old_ptr, new_size] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
420                 let old_ptr = this.read_pointer(old_ptr)?;
421                 let new_size = this.read_scalar(new_size)?.to_machine_usize(this)?;
422                 let res = this.realloc(old_ptr, new_size, MiriMemoryKind::C)?;
423                 this.write_pointer(res, dest)?;
424             }
425
426             // Rust allocation
427             "__rust_alloc" => {
428                 let [size, align] = this.check_shim(abi, Abi::Rust, link_name, args)?;
429                 let size = this.read_scalar(size)?.to_machine_usize(this)?;
430                 let align = this.read_scalar(align)?.to_machine_usize(this)?;
431
432                 return this.emulate_allocator(Symbol::intern("__rg_alloc"), |this| {
433                     Self::check_alloc_request(size, align)?;
434
435                     let ptr = this.allocate_ptr(
436                         Size::from_bytes(size),
437                         Align::from_bytes(align).unwrap(),
438                         MiriMemoryKind::Rust.into(),
439                     )?;
440
441                     this.write_pointer(ptr, dest)
442                 });
443             }
444             "__rust_alloc_zeroed" => {
445                 let [size, align] = this.check_shim(abi, Abi::Rust, link_name, args)?;
446                 let size = this.read_scalar(size)?.to_machine_usize(this)?;
447                 let align = this.read_scalar(align)?.to_machine_usize(this)?;
448
449                 return this.emulate_allocator(Symbol::intern("__rg_alloc_zeroed"), |this| {
450                     Self::check_alloc_request(size, align)?;
451
452                     let ptr = this.allocate_ptr(
453                         Size::from_bytes(size),
454                         Align::from_bytes(align).unwrap(),
455                         MiriMemoryKind::Rust.into(),
456                     )?;
457
458                     // We just allocated this, the access is definitely in-bounds.
459                     this.write_bytes_ptr(ptr.into(), iter::repeat(0u8).take(usize::try_from(size).unwrap())).unwrap();
460                     this.write_pointer(ptr, dest)
461                 });
462             }
463             "__rust_dealloc" => {
464                 let [ptr, old_size, align] = this.check_shim(abi, Abi::Rust, link_name, args)?;
465                 let ptr = this.read_pointer(ptr)?;
466                 let old_size = this.read_scalar(old_size)?.to_machine_usize(this)?;
467                 let align = this.read_scalar(align)?.to_machine_usize(this)?;
468
469                 return this.emulate_allocator(Symbol::intern("__rg_dealloc"), |this| {
470                     // No need to check old_size/align; we anyway check that they match the allocation.
471                     this.deallocate_ptr(
472                         ptr,
473                         Some((Size::from_bytes(old_size), Align::from_bytes(align).unwrap())),
474                         MiriMemoryKind::Rust.into(),
475                     )
476                 });
477             }
478             "__rust_realloc" => {
479                 let [ptr, old_size, align, new_size] = this.check_shim(abi, Abi::Rust, link_name, args)?;
480                 let ptr = this.read_pointer(ptr)?;
481                 let old_size = this.read_scalar(old_size)?.to_machine_usize(this)?;
482                 let align = this.read_scalar(align)?.to_machine_usize(this)?;
483                 let new_size = this.read_scalar(new_size)?.to_machine_usize(this)?;
484                 // No need to check old_size; we anyway check that they match the allocation.
485
486                 return this.emulate_allocator(Symbol::intern("__rg_realloc"), |this| {
487                     Self::check_alloc_request(new_size, align)?;
488
489                     let align = Align::from_bytes(align).unwrap();
490                     let new_ptr = this.reallocate_ptr(
491                         ptr,
492                         Some((Size::from_bytes(old_size), align)),
493                         Size::from_bytes(new_size),
494                         align,
495                         MiriMemoryKind::Rust.into(),
496                     )?;
497                     this.write_pointer(new_ptr, dest)
498                 });
499             }
500
501             // C memory handling functions
502             "memcmp" => {
503                 let [left, right, n] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
504                 let left = this.read_pointer(left)?;
505                 let right = this.read_pointer(right)?;
506                 let n = Size::from_bytes(this.read_scalar(n)?.to_machine_usize(this)?);
507
508                 let result = {
509                     let left_bytes = this.read_bytes_ptr(left, n)?;
510                     let right_bytes = this.read_bytes_ptr(right, n)?;
511
512                     use std::cmp::Ordering::*;
513                     match left_bytes.cmp(right_bytes) {
514                         Less => -1i32,
515                         Equal => 0,
516                         Greater => 1,
517                     }
518                 };
519
520                 this.write_scalar(Scalar::from_i32(result), dest)?;
521             }
522             "memrchr" => {
523                 let [ptr, val, num] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
524                 let ptr = this.read_pointer(ptr)?;
525                 let val = this.read_scalar(val)?.to_i32()? as u8;
526                 let num = this.read_scalar(num)?.to_machine_usize(this)?;
527                 if let Some(idx) = this
528                     .read_bytes_ptr(ptr, Size::from_bytes(num))?
529                     .iter()
530                     .rev()
531                     .position(|&c| c == val)
532                 {
533                     let new_ptr = ptr.offset(Size::from_bytes(num - idx as u64 - 1), this)?;
534                     this.write_pointer(new_ptr, dest)?;
535                 } else {
536                     this.write_null(dest)?;
537                 }
538             }
539             "memchr" => {
540                 let [ptr, val, num] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
541                 let ptr = this.read_pointer(ptr)?;
542                 let val = this.read_scalar(val)?.to_i32()? as u8;
543                 let num = this.read_scalar(num)?.to_machine_usize(this)?;
544                 let idx = this
545                     .read_bytes_ptr(ptr, Size::from_bytes(num))?
546                     .iter()
547                     .position(|&c| c == val);
548                 if let Some(idx) = idx {
549                     let new_ptr = ptr.offset(Size::from_bytes(idx as u64), this)?;
550                     this.write_pointer(new_ptr, dest)?;
551                 } else {
552                     this.write_null(dest)?;
553                 }
554             }
555             "strlen" => {
556                 let [ptr] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
557                 let ptr = this.read_pointer(ptr)?;
558                 let n = this.read_c_str(ptr)?.len();
559                 this.write_scalar(Scalar::from_machine_usize(u64::try_from(n).unwrap(), this), dest)?;
560             }
561
562             // math functions
563             #[rustfmt::skip]
564             | "cbrtf"
565             | "coshf"
566             | "sinhf"
567             | "tanf"
568             | "acosf"
569             | "asinf"
570             | "atanf"
571             => {
572                 let [f] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
573                 // FIXME: Using host floats.
574                 let f = f32::from_bits(this.read_scalar(f)?.to_u32()?);
575                 let f = match &*link_name.as_str() {
576                     "cbrtf" => f.cbrt(),
577                     "coshf" => f.cosh(),
578                     "sinhf" => f.sinh(),
579                     "tanf" => f.tan(),
580                     "acosf" => f.acos(),
581                     "asinf" => f.asin(),
582                     "atanf" => f.atan(),
583                     _ => bug!(),
584                 };
585                 this.write_scalar(Scalar::from_u32(f.to_bits()), dest)?;
586             }
587             #[rustfmt::skip]
588             | "_hypotf"
589             | "hypotf"
590             | "atan2f"
591             => {
592                 let [f1, f2] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
593                 // underscore case for windows, here and below
594                 // (see https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/floating-point-primitives?view=vs-2019)
595                 // FIXME: Using host floats.
596                 let f1 = f32::from_bits(this.read_scalar(f1)?.to_u32()?);
597                 let f2 = f32::from_bits(this.read_scalar(f2)?.to_u32()?);
598                 let n = match &*link_name.as_str() {
599                     "_hypotf" | "hypotf" => f1.hypot(f2),
600                     "atan2f" => f1.atan2(f2),
601                     _ => bug!(),
602                 };
603                 this.write_scalar(Scalar::from_u32(n.to_bits()), dest)?;
604             }
605             #[rustfmt::skip]
606             | "cbrt"
607             | "cosh"
608             | "sinh"
609             | "tan"
610             | "acos"
611             | "asin"
612             | "atan"
613             => {
614                 let [f] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
615                 // FIXME: Using host floats.
616                 let f = f64::from_bits(this.read_scalar(f)?.to_u64()?);
617                 let f = match &*link_name.as_str() {
618                     "cbrt" => f.cbrt(),
619                     "cosh" => f.cosh(),
620                     "sinh" => f.sinh(),
621                     "tan" => f.tan(),
622                     "acos" => f.acos(),
623                     "asin" => f.asin(),
624                     "atan" => f.atan(),
625                     _ => bug!(),
626                 };
627                 this.write_scalar(Scalar::from_u64(f.to_bits()), dest)?;
628             }
629             #[rustfmt::skip]
630             | "_hypot"
631             | "hypot"
632             | "atan2"
633             => {
634                 let [f1, f2] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
635                 // FIXME: Using host floats.
636                 let f1 = f64::from_bits(this.read_scalar(f1)?.to_u64()?);
637                 let f2 = f64::from_bits(this.read_scalar(f2)?.to_u64()?);
638                 let n = match &*link_name.as_str() {
639                     "_hypot" | "hypot" => f1.hypot(f2),
640                     "atan2" => f1.atan2(f2),
641                     _ => bug!(),
642                 };
643                 this.write_scalar(Scalar::from_u64(n.to_bits()), dest)?;
644             }
645             #[rustfmt::skip]
646             | "_ldexp"
647             | "ldexp"
648             | "scalbn"
649             => {
650                 let [x, exp] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
651                 // For radix-2 (binary) systems, `ldexp` and `scalbn` are the same.
652                 let x = this.read_scalar(x)?.to_f64()?;
653                 let exp = this.read_scalar(exp)?.to_i32()?;
654
655                 // Saturating cast to i16. Even those are outside the valid exponent range to
656                 // `scalbn` below will do its over/underflow handling.
657                 let exp = if exp > i32::from(i16::MAX) {
658                     i16::MAX
659                 } else if exp < i32::from(i16::MIN) {
660                     i16::MIN
661                 } else {
662                     exp.try_into().unwrap()
663                 };
664
665                 let res = x.scalbn(exp);
666                 this.write_scalar(Scalar::from_f64(res), dest)?;
667             }
668
669             // Architecture-specific shims
670             "llvm.x86.addcarry.64" if this.tcx.sess.target.arch == "x86_64" => {
671                 // Computes u8+u64+u64, returning tuple (u8,u64) comprising the output carry and truncated sum.
672                 let [c_in, a, b] = this.check_shim(abi, Abi::Unadjusted, link_name, args)?;
673                 let c_in = this.read_scalar(c_in)?.to_u8()?;
674                 let a = this.read_scalar(a)?.to_u64()?;
675                 let b = this.read_scalar(b)?.to_u64()?;
676
677                 let wide_sum = u128::from(c_in) + u128::from(a) + u128::from(b);
678                 let (c_out, sum) = ((wide_sum >> 64).truncate::<u8>(), wide_sum.truncate::<u64>());
679
680                 let c_out_field = this.place_field(dest, 0)?;
681                 this.write_scalar(Scalar::from_u8(c_out), &c_out_field)?;
682                 let sum_field = this.place_field(dest, 1)?;
683                 this.write_scalar(Scalar::from_u64(sum), &sum_field)?;
684             }
685             "llvm.x86.sse2.pause" if this.tcx.sess.target.arch == "x86" || this.tcx.sess.target.arch == "x86_64" => {
686                 let [] = this.check_shim(abi, Abi::C { unwind: false }, link_name, args)?;
687                 this.yield_active_thread();
688             }
689             "llvm.aarch64.isb" if this.tcx.sess.target.arch == "aarch64" => {
690                 let [arg] = this.check_shim(abi, Abi::Unadjusted, link_name, args)?;
691                 let arg = this.read_scalar(arg)?.to_i32()?;
692                 match arg {
693                     15 => { // SY ("full system scope")
694                         this.yield_active_thread();
695                     }
696                     _ => {
697                         throw_unsup_format!("unsupported llvm.aarch64.isb argument {}", arg);
698                     }
699                 }
700             }
701
702             // Platform-specific shims
703             _ => match this.tcx.sess.target.os.as_ref() {
704                 "linux" | "macos" => return shims::posix::foreign_items::EvalContextExt::emulate_foreign_item_by_name(this, link_name, abi, args, dest, ret),
705                 "windows" => return shims::windows::foreign_items::EvalContextExt::emulate_foreign_item_by_name(this, link_name, abi, args, dest, ret),
706                 target => throw_unsup_format!("the target `{}` is not supported", target),
707             }
708         };
709
710         // We only fall through to here if we did *not* hit the `_` arm above,
711         // i.e., if we actually emulated the function.
712         Ok(EmulateByNameResult::NeedsJumping)
713     }
714
715     /// Check some basic requirements for this allocation request:
716     /// non-zero size, power-of-two alignment.
717     fn check_alloc_request(size: u64, align: u64) -> InterpResult<'tcx> {
718         if size == 0 {
719             throw_ub_format!("creating allocation with size 0");
720         }
721         if !align.is_power_of_two() {
722             throw_ub_format!("creating allocation with non-power-of-two alignment {}", align);
723         }
724         Ok(())
725     }
726 }