Skip to main content

cranelift_filetests/
function_runner.rs

1//! Provides functionality for compiling and running CLIF IR for `run` tests.
2use anyhow::{Context as _, Result, anyhow};
3use core::mem;
4use cranelift::prelude::Imm64;
5use cranelift_codegen::cursor::{Cursor, FuncCursor};
6use cranelift_codegen::data_value::DataValue;
7use cranelift_codegen::ir::{
8    ExternalName, Function, InstBuilder, InstructionData, LibCall, Opcode, Signature,
9    UserExternalName, UserFuncName,
10};
11use cranelift_codegen::isa::{OwnedTargetIsa, TargetIsa};
12use cranelift_codegen::{CodegenError, Context, ir, settings};
13use cranelift_control::ControlPlane;
14use cranelift_frontend::{FunctionBuilder, FunctionBuilderContext};
15use cranelift_jit::{JITBuilder, JITModule};
16use cranelift_module::{FuncId, Linkage, Module, ModuleError};
17use cranelift_native::builder_with_options;
18use cranelift_reader::TestFile;
19use pulley_interpreter::interp as pulley;
20use std::cell::Cell;
21use std::cmp::max;
22use std::collections::hash_map::Entry;
23use std::collections::{HashMap, HashSet};
24use std::ptr::NonNull;
25use target_lexicon::Architecture;
26use thiserror::Error;
27
28const TESTFILE_NAMESPACE: u32 = 0;
29
30/// Holds information about a previously defined function.
31#[derive(Debug)]
32struct DefinedFunction {
33    /// This is the name that the function is internally known as.
34    ///
35    /// The JIT module does not support linking / calling [TestcaseName]'s, so
36    /// we rename every function into a [UserExternalName].
37    ///
38    /// By doing this we also have to rename functions that previously were using a
39    /// [UserFuncName], since they may now be in conflict after the renaming that
40    /// occurred.
41    new_name: UserExternalName,
42
43    /// The function signature
44    signature: ir::Signature,
45
46    /// JIT [FuncId]
47    func_id: FuncId,
48}
49
50/// Compile a test case.
51///
52/// Several Cranelift functions need the ability to run Cranelift IR (e.g. `test_run`); this
53/// [TestFileCompiler] provides a way for compiling Cranelift [Function]s to
54/// `CompiledFunction`s and subsequently calling them through the use of a `Trampoline`. As its
55/// name indicates, this compiler is limited: any functionality that requires knowledge of things
56/// outside the [Function] will likely not work (e.g. global values, calls). For an example of this
57/// "outside-of-function" functionality, see `cranelift_jit::backend::JITBackend`.
58///
59/// ```
60/// # let ctrl_plane = &mut Default::default();
61/// use cranelift_filetests::TestFileCompiler;
62/// use cranelift_reader::parse_functions;
63/// use cranelift_codegen::data_value::DataValue;
64///
65/// let code = "test run \n function %add(i32, i32) -> i32 {  block0(v0:i32, v1:i32):  v2 = iadd v0, v1  return v2 }".into();
66/// let func = parse_functions(code).unwrap().into_iter().nth(0).unwrap();
67/// let Ok(mut compiler) = TestFileCompiler::with_default_host_isa() else {
68///     return;
69/// };
70/// compiler.declare_function(&func).unwrap();
71/// compiler.define_function(func.clone(), ctrl_plane).unwrap();
72/// compiler.create_trampoline_for_function(&func, ctrl_plane).unwrap();
73/// let compiled = compiler.compile().unwrap();
74/// let trampoline = compiled.get_trampoline(&func).unwrap();
75///
76/// let returned = trampoline.call(&compiled, &vec![DataValue::I32(2), DataValue::I32(40)]);
77/// assert_eq!(vec![DataValue::I32(42)], returned);
78/// ```
79pub struct TestFileCompiler {
80    module: JITModule,
81    ctx: Context,
82
83    /// Holds info about the functions that have already been defined.
84    /// Use look them up by their original [UserFuncName] since that's how the caller
85    /// passes them to us.
86    defined_functions: HashMap<UserFuncName, DefinedFunction>,
87
88    /// We deduplicate trampolines by the signature of the function that they target.
89    /// This map holds as a key the [Signature] of the target function, and as a value
90    /// the [UserFuncName] of the trampoline for that [Signature].
91    ///
92    /// The trampoline is defined in `defined_functions` as any other regular function.
93    trampolines: HashMap<Signature, UserFuncName>,
94}
95
96impl TestFileCompiler {
97    /// Build a [TestFileCompiler] from a [TargetIsa]. For functions to be runnable on the
98    /// host machine, this [TargetIsa] must match the host machine's ISA (see
99    /// [TestFileCompiler::with_host_isa]).
100    pub fn new(isa: OwnedTargetIsa) -> Self {
101        let mut builder = JITBuilder::with_isa(isa, cranelift_module::default_libcall_names());
102        builder.symbol_lookup_fn(Box::new(lookup_libcall));
103
104        // On Unix platforms force `libm` to get linked into this executable
105        // because tests that use libcalls rely on this library being present.
106        // Without this it's been seen that when cross-compiled to riscv64 the
107        // final binary doesn't link in `libm`.
108        #[cfg(unix)]
109        {
110            unsafe extern "C" {
111                safe fn cosf(f: f32) -> f32;
112            }
113            let f = std::hint::black_box(1.2_f32);
114            assert_eq!(f.cos(), cosf(f));
115        }
116
117        let module = JITModule::new(builder);
118        let ctx = module.make_context();
119
120        Self {
121            module,
122            ctx,
123            defined_functions: HashMap::new(),
124            trampolines: HashMap::new(),
125        }
126    }
127
128    /// Build a [TestFileCompiler] using the host machine's ISA and the passed flags.
129    pub fn with_host_isa(flags: settings::Flags) -> Result<Self> {
130        let builder = builder_with_options(true)
131            .map_err(anyhow::Error::msg)
132            .context("Unable to build a TargetIsa for the current host")?;
133        let isa = builder.finish(flags)?;
134        Ok(Self::new(isa))
135    }
136
137    /// Build a [TestFileCompiler] using the host machine's ISA and the default flags for this
138    /// ISA.
139    pub fn with_default_host_isa() -> Result<Self> {
140        let flags = settings::Flags::new(settings::builder());
141        Self::with_host_isa(flags)
142    }
143
144    /// Declares and compiles all functions in `functions`. Additionally creates a trampoline for
145    /// each one of them.
146    pub fn add_functions(
147        &mut self,
148        functions: &[Function],
149        ctrl_planes: Vec<ControlPlane>,
150    ) -> Result<()> {
151        // Declare all functions in the file, so that they may refer to each other.
152        for func in functions {
153            self.declare_function(func)?;
154        }
155
156        let ctrl_planes = ctrl_planes
157            .into_iter()
158            .chain(std::iter::repeat(ControlPlane::default()));
159
160        // Define all functions and trampolines
161        for (func, ref mut ctrl_plane) in functions.iter().zip(ctrl_planes) {
162            self.define_function(func.clone(), ctrl_plane)?;
163            self.create_trampoline_for_function(func, ctrl_plane)?;
164        }
165
166        Ok(())
167    }
168
169    /// Registers all functions in a [TestFile]. Additionally creates a trampoline for each one
170    /// of them.
171    pub fn add_testfile(&mut self, testfile: &TestFile) -> Result<()> {
172        let functions = testfile
173            .functions
174            .iter()
175            .map(|(f, _)| f)
176            .cloned()
177            .collect::<Vec<_>>();
178
179        self.add_functions(&functions[..], Vec::new())?;
180        Ok(())
181    }
182
183    /// Declares a function an registers it as a linkable and callable target internally
184    pub fn declare_function(&mut self, func: &Function) -> Result<()> {
185        let next_id = self.defined_functions.len() as u32;
186        match self.defined_functions.entry(func.name.clone()) {
187            Entry::Occupied(_) => {
188                anyhow::bail!("Duplicate function with name {} found!", &func.name)
189            }
190            Entry::Vacant(v) => {
191                let name = func.name.to_string();
192                let func_id =
193                    self.module
194                        .declare_function(&name, Linkage::Local, &func.signature)?;
195
196                v.insert(DefinedFunction {
197                    new_name: UserExternalName::new(TESTFILE_NAMESPACE, next_id),
198                    signature: func.signature.clone(),
199                    func_id,
200                });
201            }
202        };
203
204        Ok(())
205    }
206
207    /// Renames the function to its new [UserExternalName], as well as any other function that
208    /// it may reference.
209    ///
210    /// We have to do this since the JIT cannot link Testcase functions.
211    fn apply_func_rename(
212        &self,
213        mut func: Function,
214        defined_func: &DefinedFunction,
215    ) -> Result<Function> {
216        // First, rename the function
217        let func_original_name = func.name;
218        func.name = UserFuncName::User(defined_func.new_name.clone());
219
220        // Rename any functions that it references
221        // Do this in stages to appease the borrow checker
222        let mut redefines = Vec::with_capacity(func.dfg.ext_funcs.len());
223        for (ext_ref, ext_func) in &func.dfg.ext_funcs {
224            let old_name = match &ext_func.name {
225                ExternalName::TestCase(tc) => UserFuncName::Testcase(tc.clone()),
226                ExternalName::User(username) => {
227                    UserFuncName::User(func.params.user_named_funcs()[*username].clone())
228                }
229                // The other cases don't need renaming, so lets just continue...
230                _ => continue,
231            };
232
233            let target_df = self.defined_functions.get(&old_name).ok_or(anyhow!(
234                "Undeclared function {} is referenced by {}!",
235                &old_name,
236                &func_original_name
237            ))?;
238
239            redefines.push((ext_ref, target_df.new_name.clone()));
240        }
241
242        // Now register the redefines
243        for (ext_ref, new_name) in redefines.into_iter() {
244            // Register the new name in the func, so that we can get a reference to it.
245            let new_name_ref = func.params.ensure_user_func_name(new_name);
246
247            // Finally rename the ExtFunc
248            func.dfg.ext_funcs[ext_ref].name = ExternalName::User(new_name_ref);
249        }
250
251        Ok(func)
252    }
253
254    /// Defines the body of a function
255    pub fn define_function(
256        &mut self,
257        mut func: Function,
258        ctrl_plane: &mut ControlPlane,
259    ) -> Result<()> {
260        Self::replace_hostcall_references(&mut func);
261
262        let defined_func = self
263            .defined_functions
264            .get(&func.name)
265            .ok_or(anyhow!("Undeclared function {} found!", &func.name))?;
266
267        self.ctx.func = self.apply_func_rename(func, defined_func)?;
268        self.module.define_function_with_control_plane(
269            defined_func.func_id,
270            &mut self.ctx,
271            ctrl_plane,
272        )?;
273        self.module.clear_context(&mut self.ctx);
274        Ok(())
275    }
276
277    fn replace_hostcall_references(func: &mut Function) {
278        // For every `func_addr` referring to a hostcall that we
279        // define, replace with an `iconst` with the actual
280        // address. Then modify the external func references to
281        // harmless libcall references (that will be unused so
282        // ignored).
283        let mut funcrefs_to_remove = HashSet::new();
284        let mut cursor = FuncCursor::new(func);
285        while let Some(_block) = cursor.next_block() {
286            while let Some(inst) = cursor.next_inst() {
287                match &cursor.func.dfg.insts[inst] {
288                    InstructionData::FuncAddr {
289                        opcode: Opcode::FuncAddr,
290                        func_ref,
291                    } => {
292                        let ext_func = &cursor.func.dfg.ext_funcs[*func_ref];
293                        let hostcall_addr = match &ext_func.name {
294                            ExternalName::TestCase(tc) if tc.raw() == b"__cranelift_throw" => {
295                                Some((__cranelift_throw as *const ()).addr())
296                            }
297                            _ => None,
298                        };
299
300                        if let Some(addr) = hostcall_addr {
301                            funcrefs_to_remove.insert(*func_ref);
302                            cursor.func.dfg.insts[inst] = InstructionData::UnaryImm {
303                                opcode: Opcode::Iconst,
304                                imm: Imm64::new(addr as i64),
305                            };
306                        }
307                    }
308                    _ => {}
309                }
310            }
311        }
312
313        for to_remove in funcrefs_to_remove {
314            func.dfg.ext_funcs[to_remove].name = ExternalName::LibCall(LibCall::Probestack);
315        }
316    }
317
318    /// Creates and registers a trampoline for a function if none exists.
319    pub fn create_trampoline_for_function(
320        &mut self,
321        func: &Function,
322        ctrl_plane: &mut ControlPlane,
323    ) -> Result<()> {
324        if !self.defined_functions.contains_key(&func.name) {
325            anyhow::bail!("Undeclared function {} found!", &func.name);
326        }
327
328        // Check if a trampoline for this function signature already exists
329        if self.trampolines.contains_key(&func.signature) {
330            return Ok(());
331        }
332
333        // Create a trampoline and register it
334        let name = UserFuncName::user(TESTFILE_NAMESPACE, self.defined_functions.len() as u32);
335        let trampoline = make_trampoline(name.clone(), &func.signature, self.module.isa());
336
337        self.declare_function(&trampoline)?;
338        self.define_function(trampoline, ctrl_plane)?;
339
340        self.trampolines.insert(func.signature.clone(), name);
341
342        Ok(())
343    }
344
345    /// Finalize this TestFile and link all functions.
346    pub fn compile(mut self) -> Result<CompiledTestFile, CompilationError> {
347        // Finalize the functions which we just defined, which resolves any
348        // outstanding relocations (patching in addresses, now that they're
349        // available).
350        self.module.finalize_definitions()?;
351
352        Ok(CompiledTestFile {
353            module: Some(self.module),
354            defined_functions: self.defined_functions,
355            trampolines: self.trampolines,
356        })
357    }
358}
359
360/// A finalized Test File
361pub struct CompiledTestFile {
362    /// We need to store [JITModule] since it contains the underlying memory for the functions.
363    /// Store it in an [Option] so that we can later drop it.
364    module: Option<JITModule>,
365
366    /// Holds info about the functions that have been registered in `module`.
367    /// See [TestFileCompiler] for more info.
368    defined_functions: HashMap<UserFuncName, DefinedFunction>,
369
370    /// Trampolines available in this [JITModule].
371    /// See [TestFileCompiler] for more info.
372    trampolines: HashMap<Signature, UserFuncName>,
373}
374
375impl CompiledTestFile {
376    /// Return a trampoline for calling.
377    ///
378    /// Returns None if [TestFileCompiler::create_trampoline_for_function] wasn't called for this function.
379    pub fn get_trampoline(&self, func: &Function) -> Option<Trampoline<'_>> {
380        let defined_func = self.defined_functions.get(&func.name)?;
381        let trampoline_id = self
382            .trampolines
383            .get(&func.signature)
384            .and_then(|name| self.defined_functions.get(name))
385            .map(|df| df.func_id)?;
386        Some(Trampoline {
387            module: self.module.as_ref()?,
388            func_id: defined_func.func_id,
389            func_signature: &defined_func.signature,
390            trampoline_id,
391        })
392    }
393}
394
395impl Drop for CompiledTestFile {
396    fn drop(&mut self) {
397        // Freeing the module's memory erases the compiled functions.
398        // This should be safe since their pointers never leave this struct.
399        unsafe { self.module.take().unwrap().free_memory() }
400    }
401}
402
403std::thread_local! {
404    /// TLS slot used to store a CompiledTestFile reference so that it
405    /// can be recovered when a hostcall (such as the exception-throw
406    /// handler) is invoked.
407    pub static COMPILED_TEST_FILE: Cell<*const CompiledTestFile> = Cell::new(std::ptr::null());
408}
409
410/// A callable trampoline
411pub struct Trampoline<'a> {
412    module: &'a JITModule,
413    func_id: FuncId,
414    func_signature: &'a Signature,
415    trampoline_id: FuncId,
416}
417
418impl<'a> Trampoline<'a> {
419    /// Call the target function of this trampoline, passing in [DataValue]s using a compiled trampoline.
420    pub fn call(&self, compiled: &CompiledTestFile, arguments: &[DataValue]) -> Vec<DataValue> {
421        let mut values = UnboxedValues::make_arguments(arguments, &self.func_signature);
422        let arguments_address = values.as_mut_ptr();
423
424        let function_ptr = self.module.get_finalized_function(self.func_id);
425        let trampoline_ptr = self.module.get_finalized_function(self.trampoline_id);
426
427        COMPILED_TEST_FILE.set(compiled as *const _);
428        unsafe {
429            self.call_raw(trampoline_ptr, function_ptr, arguments_address);
430        }
431        COMPILED_TEST_FILE.set(std::ptr::null());
432
433        values.collect_returns(&self.func_signature)
434    }
435
436    unsafe fn call_raw(
437        &self,
438        trampoline_ptr: *const u8,
439        function_ptr: *const u8,
440        arguments_address: *mut u128,
441    ) {
442        match self.module.isa().triple().architecture {
443            // For the pulley target this is pulley bytecode, not machine code,
444            // so run the interpreter.
445            Architecture::Pulley32
446            | Architecture::Pulley64
447            | Architecture::Pulley32be
448            | Architecture::Pulley64be => {
449                let mut state = pulley::Vm::new().unwrap();
450                unsafe {
451                    state.call(
452                        NonNull::new(trampoline_ptr.cast_mut()).unwrap(),
453                        &[
454                            pulley::XRegVal::new_ptr(function_ptr.cast_mut()).into(),
455                            pulley::XRegVal::new_ptr(arguments_address).into(),
456                        ],
457                        [],
458                    );
459                }
460            }
461
462            // Other targets natively execute this machine code.
463            _ => {
464                let callable_trampoline: fn(*const u8, *mut u128) -> () =
465                    unsafe { mem::transmute(trampoline_ptr) };
466                callable_trampoline(function_ptr, arguments_address);
467            }
468        }
469    }
470}
471
472/// Compilation Error when compiling a function.
473#[derive(Error, Debug)]
474pub enum CompilationError {
475    /// Cranelift codegen error.
476    #[error("Cranelift codegen error")]
477    CodegenError(#[from] CodegenError),
478    /// Module Error
479    #[error("Module error")]
480    ModuleError(#[from] ModuleError),
481    /// Memory mapping error.
482    #[error("Memory mapping error")]
483    IoError(#[from] std::io::Error),
484}
485
486/// A container for laying out the [ValueData]s in memory in a way that the [Trampoline] can
487/// understand.
488struct UnboxedValues(Vec<u128>);
489
490impl UnboxedValues {
491    /// The size in bytes of each slot location in the allocated [DataValue]s. Though [DataValue]s
492    /// could be smaller than 16 bytes (e.g. `I16`), this simplifies the creation of the [DataValue]
493    /// array and could be used to align the slots to the largest used [DataValue] (i.e. 128-bit
494    /// vectors).
495    const SLOT_SIZE: usize = 16;
496
497    /// Build the arguments vector for passing the [DataValue]s into the [Trampoline]. The size of
498    /// `u128` used here must match [Trampoline::SLOT_SIZE].
499    pub fn make_arguments(arguments: &[DataValue], signature: &ir::Signature) -> Self {
500        assert_eq!(arguments.len(), signature.params.len());
501        let mut values_vec = vec![0; max(signature.params.len(), signature.returns.len())];
502
503        // Store the argument values into `values_vec`.
504        for ((arg, slot), param) in arguments.iter().zip(&mut values_vec).zip(&signature.params) {
505            assert!(
506                arg.ty() == param.value_type || arg.is_vector(),
507                "argument type mismatch: {} != {}",
508                arg.ty(),
509                param.value_type
510            );
511            unsafe {
512                arg.write_value_to(slot);
513            }
514        }
515
516        Self(values_vec)
517    }
518
519    /// Return a pointer to the underlying memory for passing to the trampoline.
520    pub fn as_mut_ptr(&mut self) -> *mut u128 {
521        self.0.as_mut_ptr()
522    }
523
524    /// Collect the returned [DataValue]s into a [Vec]. The size of `u128` used here must match
525    /// [Trampoline::SLOT_SIZE].
526    pub fn collect_returns(&self, signature: &ir::Signature) -> Vec<DataValue> {
527        assert!(self.0.len() >= signature.returns.len());
528        let mut returns = Vec::with_capacity(signature.returns.len());
529
530        // Extract the returned values from this vector.
531        for (slot, param) in self.0.iter().zip(&signature.returns) {
532            let value = unsafe { DataValue::read_value_from(slot, param.value_type) };
533            returns.push(value);
534        }
535
536        returns
537    }
538}
539
540/// Build the Cranelift IR for moving the memory-allocated [DataValue]s to their correct location
541/// (e.g. register, stack) prior to calling a [CompiledFunction]. The [Function] returned by
542/// [make_trampoline] is compiled to a [Trampoline]. Note that this uses the [TargetIsa]'s default
543/// calling convention so we must also check that the [CompiledFunction] has the same calling
544/// convention (see [TestFileCompiler::compile]).
545fn make_trampoline(name: UserFuncName, signature: &ir::Signature, isa: &dyn TargetIsa) -> Function {
546    // Create the trampoline signature: (callee_address: pointer, values_vec: pointer) -> ()
547    let pointer_type = isa.pointer_type();
548    let mut wrapper_sig = ir::Signature::new(isa.frontend_config().default_call_conv);
549    wrapper_sig.params.push(ir::AbiParam::new(pointer_type)); // Add the `callee_address` parameter.
550    wrapper_sig.params.push(ir::AbiParam::new(pointer_type)); // Add the `values_vec` parameter.
551
552    let mut func = ir::Function::with_name_signature(name, wrapper_sig);
553
554    // The trampoline has a single block filled with loads, one call to callee_address, and some loads.
555    let mut builder_context = FunctionBuilderContext::new();
556    let mut builder = FunctionBuilder::new(&mut func, &mut builder_context);
557    let block0 = builder.create_block();
558    builder.append_block_params_for_function_params(block0);
559    builder.switch_to_block(block0);
560    builder.seal_block(block0);
561
562    // Extract the incoming SSA values.
563    let (callee_value, values_vec_ptr_val) = {
564        let params = builder.func.dfg.block_params(block0);
565        (params[0], params[1])
566    };
567
568    // Load the argument values out of `values_vec`.
569    let callee_args = signature
570        .params
571        .iter()
572        .enumerate()
573        .map(|(i, param)| {
574            // We always store vector types in little-endian byte order as DataValue.
575            let mut flags = ir::MemFlagsData::trusted();
576            if param.value_type.is_vector() {
577                flags.set_endianness(ir::Endianness::Little);
578            }
579
580            // Load the value.
581            builder.ins().load(
582                param.value_type,
583                flags,
584                values_vec_ptr_val,
585                (i * UnboxedValues::SLOT_SIZE) as i32,
586            )
587        })
588        .collect::<Vec<_>>();
589
590    // Call the passed function.
591    let new_sig = builder.import_signature(signature.clone());
592    let call = builder
593        .ins()
594        .call_indirect(new_sig, callee_value, &callee_args);
595
596    // Store the return values into `values_vec`.
597    let results = builder.func.dfg.inst_results(call).to_vec();
598    for ((i, value), param) in results.iter().enumerate().zip(&signature.returns) {
599        // We always store vector types in little-endian byte order as DataValue.
600        let mut flags = ir::MemFlagsData::trusted();
601        if param.value_type.is_vector() {
602            flags.set_endianness(ir::Endianness::Little);
603        }
604        // Store the value.
605        builder.ins().store(
606            flags,
607            *value,
608            values_vec_ptr_val,
609            (i * UnboxedValues::SLOT_SIZE) as i32,
610        );
611    }
612
613    builder.ins().return_(&[]);
614    builder.finalize(isa.frontend_config());
615
616    func
617}
618
619/// Hostcall invoked directly from a compiled function body to test
620/// exception throws.
621///
622/// This function does not return normally: it either uses the
623/// unwinder to jump directly to a Cranelift frame further up the
624/// stack, if a handler is found; or it panics, if not.
625#[cfg(any(
626    target_arch = "x86_64",
627    target_arch = "aarch64",
628    target_arch = "s390x",
629    target_arch = "riscv64"
630))]
631extern "C-unwind" fn __cranelift_throw(
632    entry_fp: usize,
633    exit_fp: usize,
634    exit_pc: usize,
635    tag: u32,
636    payload1: usize,
637    payload2: usize,
638) -> ! {
639    let compiled_test_file = unsafe { &*COMPILED_TEST_FILE.get() };
640    let unwind_host = wasmtime_unwinder::UnwindHost;
641    let frame_handler = |frame: &wasmtime_unwinder::Frame| -> Option<(usize, usize)> {
642        let (base, table) = compiled_test_file
643            .module
644            .as_ref()
645            .unwrap()
646            .lookup_wasmtime_exception_data(frame.pc())?;
647        let relative_pc = u32::try_from(
648            frame
649                .pc()
650                .checked_sub(base)
651                .expect("module lookup did not return a module base below the PC"),
652        )
653        .expect("module larger than 4GiB");
654
655        let (frame_offset, mut handlers) = table.lookup_pc(relative_pc);
656        handlers
657            .find(|handler| handler.tag == Some(tag) || handler.tag.is_none())
658            .map(|handler| {
659                let handler_sp = frame
660                    .fp()
661                    .wrapping_sub(usize::try_from(frame_offset.unwrap_or(0)).unwrap());
662                let handler_pc = base
663                    .checked_add(usize::try_from(handler.handler_offset).unwrap())
664                    .expect("Handler address computation overflowed");
665                (handler_pc, handler_sp)
666            })
667    };
668    unsafe {
669        match wasmtime_unwinder::Handler::find(
670            &unwind_host,
671            frame_handler,
672            exit_pc,
673            exit_fp,
674            entry_fp,
675        ) {
676            Some(handler) => handler.resume_tailcc(payload1, payload2),
677            None => {
678                panic!("Expected a handler to exit for throw of tag {tag} at pc {exit_pc:x}");
679            }
680        }
681    }
682}
683
684#[cfg(not(any(
685    target_arch = "x86_64",
686    target_arch = "aarch64",
687    target_arch = "s390x",
688    target_arch = "riscv64"
689)))]
690extern "C-unwind" fn __cranelift_throw(
691    _entry_fp: usize,
692    _exit_fp: usize,
693    _exit_pc: usize,
694    _tag: u32,
695    _payload1: usize,
696    _payload2: usize,
697) -> ! {
698    panic!("Throw not implemented on platforms without native backends.");
699}
700
701// Manually define all libcalls here to avoid relying on `libm` or diverging
702// behavior across platforms from libm-like functionality. Note that this also
703// serves as insurance that the libcall implementation in the Cranelift
704// interpreter is the same as the libcall implementation used by compiled code.
705// This is important for differential fuzzing where manual invocations of
706// libcalls are expected to return the same result, so here they get identical
707// implementations.
708fn lookup_libcall(name: &str) -> Option<*const u8> {
709    match name {
710        "ceil" => {
711            extern "C" fn ceil(a: f64) -> f64 {
712                a.ceil()
713            }
714            Some(ceil as *const u8)
715        }
716        "ceilf" => {
717            extern "C" fn ceilf(a: f32) -> f32 {
718                a.ceil()
719            }
720            Some(ceilf as *const u8)
721        }
722        "trunc" => {
723            extern "C" fn trunc(a: f64) -> f64 {
724                a.trunc()
725            }
726            Some(trunc as *const u8)
727        }
728        "truncf" => {
729            extern "C" fn truncf(a: f32) -> f32 {
730                a.trunc()
731            }
732            Some(truncf as *const u8)
733        }
734        "floor" => {
735            extern "C" fn floor(a: f64) -> f64 {
736                a.floor()
737            }
738            Some(floor as *const u8)
739        }
740        "floorf" => {
741            extern "C" fn floorf(a: f32) -> f32 {
742                a.floor()
743            }
744            Some(floorf as *const u8)
745        }
746        "nearbyint" => {
747            extern "C" fn nearbyint(a: f64) -> f64 {
748                a.round_ties_even()
749            }
750            Some(nearbyint as *const u8)
751        }
752        "nearbyintf" => {
753            extern "C" fn nearbyintf(a: f32) -> f32 {
754                a.round_ties_even()
755            }
756            Some(nearbyintf as *const u8)
757        }
758        "fma" => {
759            // The `fma` function for `x86_64-pc-windows-gnu` is incorrect. Use
760            // `libm`'s instead.  See:
761            // https://github.com/bytecodealliance/wasmtime/issues/4512
762            extern "C" fn fma(a: f64, b: f64, c: f64) -> f64 {
763                #[cfg(all(target_os = "windows", target_env = "gnu"))]
764                return libm::fma(a, b, c);
765                #[cfg(not(all(target_os = "windows", target_env = "gnu")))]
766                return a.mul_add(b, c);
767            }
768            Some(fma as *const u8)
769        }
770        "fmaf" => {
771            extern "C" fn fmaf(a: f32, b: f32, c: f32) -> f32 {
772                #[cfg(all(target_os = "windows", target_env = "gnu"))]
773                return libm::fmaf(a, b, c);
774                #[cfg(not(all(target_os = "windows", target_env = "gnu")))]
775                return a.mul_add(b, c);
776            }
777            Some(fmaf as *const u8)
778        }
779
780        #[cfg(target_arch = "x86_64")]
781        "__cranelift_x86_pshufb" => Some(__cranelift_x86_pshufb as *const u8),
782
783        _ => panic!("unknown libcall {name}"),
784    }
785}
786
787#[cfg(target_arch = "x86_64")]
788use std::arch::x86_64::__m128i;
789#[cfg(target_arch = "x86_64")]
790#[expect(
791    improper_ctypes_definitions,
792    reason = "manually verified to work for now"
793)]
794extern "C" fn __cranelift_x86_pshufb(a: __m128i, b: __m128i) -> __m128i {
795    union U {
796        reg: __m128i,
797        mem: [u8; 16],
798    }
799
800    unsafe {
801        let a = U { reg: a }.mem;
802        let b = U { reg: b }.mem;
803
804        let select = |arr: &[u8; 16], byte: u8| {
805            if byte & 0x80 != 0 {
806                0x00
807            } else {
808                arr[(byte & 0xf) as usize]
809            }
810        };
811
812        U {
813            mem: [
814                select(&a, b[0]),
815                select(&a, b[1]),
816                select(&a, b[2]),
817                select(&a, b[3]),
818                select(&a, b[4]),
819                select(&a, b[5]),
820                select(&a, b[6]),
821                select(&a, b[7]),
822                select(&a, b[8]),
823                select(&a, b[9]),
824                select(&a, b[10]),
825                select(&a, b[11]),
826                select(&a, b[12]),
827                select(&a, b[13]),
828                select(&a, b[14]),
829                select(&a, b[15]),
830            ],
831        }
832        .reg
833    }
834}
835
836#[cfg(test)]
837mod test {
838    use super::*;
839    use cranelift_reader::{ParseOptions, parse_functions, parse_test};
840
841    fn parse(code: &str) -> Function {
842        parse_functions(code).unwrap().into_iter().nth(0).unwrap()
843    }
844
845    #[test]
846    fn nop() {
847        // Skip this test when cranelift doesn't support the native platform.
848        if cranelift_native::builder().is_err() {
849            return;
850        }
851        let code = String::from(
852            "
853            test run
854            function %test() -> i8 {
855            block0:
856                nop
857                v1 = iconst.i8 -1
858                return v1
859            }",
860        );
861        let ctrl_plane = &mut ControlPlane::default();
862
863        // extract function
864        let test_file = parse_test(code.as_str(), ParseOptions::default()).unwrap();
865        assert_eq!(1, test_file.functions.len());
866        let function = test_file.functions[0].0.clone();
867
868        // execute function
869        let mut compiler = TestFileCompiler::with_default_host_isa().unwrap();
870        compiler.declare_function(&function).unwrap();
871        compiler
872            .define_function(function.clone(), ctrl_plane)
873            .unwrap();
874        compiler
875            .create_trampoline_for_function(&function, ctrl_plane)
876            .unwrap();
877        let compiled = compiler.compile().unwrap();
878        let trampoline = compiled.get_trampoline(&function).unwrap();
879        let returned = trampoline.call(&compiled, &[]);
880        assert_eq!(returned, vec![DataValue::I8(-1)])
881    }
882
883    #[test]
884    fn trampolines() {
885        // Skip this test when cranelift doesn't support the native platform.
886        if cranelift_native::builder().is_err() {
887            return;
888        }
889        let function = parse(
890            "
891            function %test(f32, i8, i64x2, i8) -> f32x4, i64 {
892            block0(v0: f32, v1: i8, v2: i64x2, v3: i8):
893                v4 = vconst.f32x4 [0x0.1 0x0.2 0x0.3 0x0.4]
894                v5 = iconst.i64 -1
895                return v4, v5
896            }",
897        );
898
899        let compiler = TestFileCompiler::with_default_host_isa().unwrap();
900        let trampoline = make_trampoline(
901            UserFuncName::user(0, 0),
902            &function.signature,
903            compiler.module.isa(),
904        );
905        println!("{trampoline}");
906        assert!(format!("{trampoline}").ends_with(
907            "sig0 = (f32, i8, i64x2, i8) -> f32x4, i64 fast
908
909block0(v0: i64, v1: i64):
910    v2 = load.f32 notrap aligned v1
911    v3 = load.i8 notrap aligned v1+16
912    v4 = load.i64x2 notrap aligned little v1+32
913    v5 = load.i8 notrap aligned v1+48
914    v6, v7 = call_indirect sig0, v0(v2, v3, v4, v5)
915    store notrap aligned little v6, v1
916    store notrap aligned v7, v1+16
917    return
918}
919"
920        ));
921    }
922}