/* * Copyright (C) 2019 Intel Corporation. All rights reserved. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception */ #ifndef _AOT_EMIT_MEMORY_H_ #define _AOT_EMIT_MEMORY_H_ #include "aot_compiler.h" #if WASM_ENABLE_SHARED_MEMORY != 0 #include "wasm_shared_memory.h" #endif #ifdef __cplusplus extern "C" { #endif bool aot_compile_op_i32_load(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint32 align, mem_offset_t offset, uint32 bytes, bool sign, bool atomic); bool aot_compile_op_i64_load(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint32 align, mem_offset_t offset, uint32 bytes, bool sign, bool atomic); bool aot_compile_op_f32_load(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint32 align, mem_offset_t offset); bool aot_compile_op_f64_load(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint32 align, mem_offset_t offset); bool aot_compile_op_i32_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint32 align, mem_offset_t offset, uint32 bytes, bool atomic); bool aot_compile_op_i64_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint32 align, mem_offset_t offset, uint32 bytes, bool atomic); bool aot_compile_op_f32_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint32 align, mem_offset_t offset); bool aot_compile_op_f64_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint32 align, mem_offset_t offset); LLVMValueRef aot_check_memory_overflow(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, mem_offset_t offset, uint32 bytes, bool enable_segue, unsigned int *alignp); bool aot_compile_op_memory_size(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx); bool aot_compile_op_memory_grow(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx); bool check_memory_alignment(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, LLVMValueRef addr, uint32 align); LLVMValueRef check_bulk_memory_overflow(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, LLVMValueRef offset, LLVMValueRef bytes); #if WASM_ENABLE_BULK_MEMORY != 0 bool aot_compile_op_memory_init(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint32 seg_index); bool aot_compile_op_data_drop(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint32 seg_index); #endif #if WASM_ENABLE_BULK_MEMORY_OPT != 0 bool aot_compile_op_memory_copy(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx); bool aot_compile_op_memory_fill(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx); #endif #if WASM_ENABLE_SHARED_MEMORY != 0 bool aot_compile_op_atomic_rmw(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint8 atomic_op, uint8 op_type, uint32 align, mem_offset_t offset, uint32 bytes); bool aot_compile_op_atomic_cmpxchg(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint8 op_type, uint32 align, mem_offset_t offset, uint32 bytes); bool aot_compile_op_atomic_wait(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint8 op_type, uint32 align, mem_offset_t offset, uint32 bytes); bool aot_compiler_op_atomic_notify(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx, uint32 align, mem_offset_t offset, uint32 bytes); bool aot_compiler_op_atomic_fence(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx); #endif #ifdef __cplusplus } /* end of extern "C" */ #endif #endif /* end of _AOT_EMIT_MEMORY_H_ */