/* * Copyright (c) 2026-present, Ali Mohammad Pur * * SPDX-License-Identifier: BSD-2-Clause */ #include namespace Wasm { bool try_cranelift_compile(CompiledInstructions&, u32) { return false; } void flush_cranelift_batch() { } void discard_cranelift_batch() { } void free_cranelift_code(void*) { } void set_cranelift_active_function_index(u32) { } void begin_cranelift_cache_capture() { } void abort_cranelift_cache_capture() { } void abort_cranelift_cache_install() { } Optional serialize_cranelift_cache_blob(ReadonlyBytes) { return {}; } bool try_install_cranelift_cache_blob(ReadonlyBytes, ReadonlyBytes) { return false; } }