| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /*
- * 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, uint32 offset, uint32 bytes, bool sign,
- bool atomic);
- bool
- aot_compile_op_i64_load(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset, uint32 bytes, bool sign,
- bool atomic);
- bool
- aot_compile_op_f32_load(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset);
- bool
- aot_compile_op_f64_load(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset);
- bool
- aot_compile_op_i32_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset, uint32 bytes,
- bool atomic);
- bool
- aot_compile_op_i64_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset, uint32 bytes,
- bool atomic);
- bool
- aot_compile_op_f32_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset);
- bool
- aot_compile_op_f64_store(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 align, uint32 offset);
- LLVMValueRef
- aot_check_memory_overflow(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint32 offset, uint32 bytes);
- bool
- aot_compile_op_memory_size(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx);
- bool
- aot_compile_op_memory_grow(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx);
- #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);
- 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,
- uint32 offset, uint32 bytes);
- bool
- aot_compile_op_atomic_cmpxchg(AOTCompContext *comp_ctx,
- AOTFuncContext *func_ctx, uint8 op_type,
- uint32 align, uint32 offset, uint32 bytes);
- bool
- aot_compile_op_atomic_wait(AOTCompContext *comp_ctx, AOTFuncContext *func_ctx,
- uint8 op_type, uint32 align, uint32 offset,
- uint32 bytes);
- bool
- aot_compiler_op_atomic_notify(AOTCompContext *comp_ctx,
- AOTFuncContext *func_ctx, uint32 align,
- uint32 offset, uint32 bytes);
- #endif
- #ifdef __cplusplus
- } /* end of extern "C" */
- #endif
- #endif /* end of _AOT_EMIT_MEMORY_H_ */
|